diff --git a/Where/AGENTS.md b/Where/AGENTS.md index 5d8a8a0b..4b34eed3 100644 --- a/Where/AGENTS.md +++ b/Where/AGENTS.md @@ -85,9 +85,13 @@ views or thrown errors. - **WhereUI:** funnel every string through `Strings.swift` (keys in the module `Localizable.xcstrings`, `bundle: .module`). Counts use catalog plural variations; years use a grouping-free number style ("2026", not "2,026"). -- **WhereCore** (user-visible errors) and **RegionKit** (region names via - `Region.localizedName`) use static `String(localized:bundle: .module)` keys - in their own catalogs. +- **WhereCore:** user-visible errors use static + `String(localized:bundle: .module)` keys in its own catalog. +- **RegionKit:** region names (`Region.localizedName`) come from the + `regions.json` manifest, with an optional `localizationKey` overriding from + RegionKit's own `Localizable.xcstrings` (`bundle: .module`) — so, unlike the + other modules, region names lose static string-catalog extraction (a + deliberate trade-off for a data-driven catalog). - **Extensions** (WhereWidgets, WhereShareExtension) keep their chrome in their own catalogs and reuse WhereUI's public presentation helpers for shared copy. @@ -162,12 +166,14 @@ path. - **New library target:** add to root [`Package.swift`](../Package.swift) under `Where//Sources`, then wire a hosted test bundle in [`Project.swift`](../Project.swift) via the `unitTests` helper. -- **New region:** add the `Region` case in **`RegionKit`**, then resolve the two - compile errors it forces: a `region.` entry in RegionKit's - `Resources/Localizable.xcstrings` (for `localizedName`) and a - `Region.geometrySource` case (`.usStateFeature(name:)` or `.bundledFile` with a - new `.geojson` in RegionKit's `Resources/`). Add a - `RegionAttributorTests` spot-check (in `RegionKit/Tests`). +- **New region:** it's **pure data** now — add geometry under + `RegionKit/Tools/source/`, run `ruby Where/RegionKit/Tools/generate-regions.rb` + to regenerate `Resources/regions/` + `regions.json` (extend the script's id + map / `NON_US` list as needed), optionally add a `region.` string + + `localizationKey`, and add a `RegionAttributorTests` spot-check. No `Region` + case, no code — `RegionStyle`, region pickers, and the App Intents + `RegionEntity` all derive from the catalog. (See + [`RegionKit/README.md`](RegionKit/README.md#adding-a-region).) - **New evidence kind / sample source:** add the case and follow the compile errors through the exhaustive switches. - **New app icon:** run `./icons --add` (see the root diff --git a/Where/RegionKit/AGENTS.md b/Where/RegionKit/AGENTS.md index 6b2e68dc..5d8cf921 100644 --- a/Where/RegionKit/AGENTS.md +++ b/Where/RegionKit/AGENTS.md @@ -15,25 +15,36 @@ This file complements the root [`AGENTS.md`](../../AGENTS.md) and the feature the lowest layer of the feature, and `WhereCore` depends on *it*, never the reverse. - Library target in [`Package.swift`](../../Package.swift) - (`Where/RegionKit/Sources`). Bundled region polygons and the region-name - string catalog ship in `Sources/Resources/`. + (`Where/RegionKit/Sources`). The generated catalog manifest + per-region + polygons and the region-name string catalog ship in `Sources/Resources/`; the + (non-bundled) source geometry lives in `Tools/source/`. ## Invariants -- **`Region.geometrySource` is the single source of truth** for where a region's - polygons come from; `Region.localizedName` and `geometrySource` are exhaustive - switches, so adding a `Region` case is a compile error until its name and - geometry are declared (see [README](README.md#adding-a-region)). -- **`Region.allCases` order fixes attribution priority** — `RegionAttributor` - checks regions in declaration order and the first polygon match wins (regions - are mutually exclusive at our resolution). (Day-count ranking of regions lives - in `WhereCore`'s `Region+Ordering`, not here.) -- **Attribution loads once, lazily** (`RegionAttributor.shared`) and is UI-free: - `BoundingBox` / `LongitudeSpan` expose the min/max math, but MapKit conversion - lives in the UI layer. -- **Missing/corrupt bundled geometry is a programmer error** — the loader logs a - `fault` via `RegionLog` *and* `assertionFailure`s (debug), degrading to - `.other` in release rather than crashing. +- **`Region` is a data-driven value type, not a hardcoded enum.** It wraps a + stable `rawValue` id; the set of available regions and their metadata live in + the bundled `regions.json` manifest, read by `RegionCatalog`. Adding a region + is a data change (regenerate via `Tools/generate-regions.rb`), never a new case + — see [README](README.md#adding-a-region). `regions/` + `regions.json` are + generated; never hand-edit them. +- **The catalog's canonical order (`RegionCatalog.all`, hence `Region.allCases` + = catalog order then `.other`) fixes attribution priority** — an attributor + checks its regions in order and the first polygon match wins (regions are + mutually exclusive at our resolution). (Day-count ranking lives in `WhereCore`'s + `Region+Ordering`, not here.) +- **Attribution is per-region, on demand.** `RegionAttributor(for:)` loads only + the passed regions' `regions/.geojson` files, so the app parses only the + tracked set — never the whole US at launch. `.all` loads the whole catalog + (dev viewer/tests); `.shared` the default four. It's UI-free: `BoundingBox` / + `LongitudeSpan` expose the min/max math, but MapKit conversion lives in the UI + layer. `RegionAttributing` lets `WhereCore` supply a live, swappable attributor. +- **Region names are manifest data (a documented trade-off).** `localizedName` + resolves a manifest entry's optional `localizationKey` from the string catalog, + else the manifest's English `name` — so dynamic ids cost static string-catalog + extraction for region names. +- **Missing/corrupt bundled geometry (or manifest) is a programmer error** — the + loader logs a `fault` via `RegionLog` *and* `assertionFailure`s (debug), + degrading to `.other`/an empty catalog in release rather than crashing. - **Logging goes through `RegionLog.channel(_:)`** (subsystem `com.stuff.regionkit`), never `WhereLog` — RegionKit owns its own channel and in-memory store. diff --git a/Where/RegionKit/README.md b/Where/RegionKit/README.md index d03d6615..432c16f4 100644 --- a/Where/RegionKit/README.md +++ b/Where/RegionKit/README.md @@ -1,10 +1,10 @@ # RegionKit The geometry and region-lookup engine behind the Where app. Given a WGS84 -`Coordinate`, RegionKit answers *which tracked `Region` is it in?* — backed by -bundled GeoJSON polygons loaded once at process start. It is pure Swift + -Foundation (no SwiftUI, UIKit, SwiftData, or CoreLocation), so it can be reused -and unit-tested in isolation. +`Coordinate`, RegionKit answers *which `Region` is it in?* — backed by bundled +GeoJSON polygons loaded **on demand, per region**. It is pure Swift + Foundation +(no SwiftUI, UIKit, SwiftData, or CoreLocation), so it can be reused and +unit-tested in isolation. RegionKit is the lowest layer of the Where feature: `WhereCore` (and, through it, `WhereUI`, the widgets, and the RegionViewer) depend on RegionKit and call @@ -12,20 +12,28 @@ into it for lookup. RegionKit depends only on [`LogKit`](../../Shared/LogKit). ## What you get -- **`Region`** — the tracked-region enum (`.california`, `.newYork`, `.canada`, - `.europeanUnion`, `.other`), with a `localizedName` (from RegionKit's own - string catalog) and a `geometrySource` describing where its polygons come - from. (Day-count *ranking* of regions lives in `WhereCore`, not here — - RegionKit stays about regions and geofencing.) +- **`Region`** — a `Hashable`/`Codable` value type wrapping a stable string id + (`rawValue`, e.g. `"us-CA"`, `"canada"`), with a `localizedName`. It is **not** + a hardcoded enum: the set of *available* regions is data (see `RegionCatalog`). + Conveniences (`.california`, `.newYork`, `.canada`, `.europeanUnion`, `.other`) + read naturally at call sites; `.other` is the catch-all sentinel (no geometry). + (Day-count *ranking* lives in `WhereCore`, not here.) +- **`RegionCatalog`** — the catalog of available regions, loaded from the bundled + `regions.json` manifest: `all`, `localizedName(for:)`, canonical order, and the + per-region geometry files. Adding a region is a data change, not a code change. - **`Coordinate`** — a plain WGS84 latitude/longitude value type (no CoreLocation), plus geometry primitives `GeoPolygon`, `BoundingBox`, and the antimeridian-aware `LongitudeSpan`. -- **`RegionAttributor`** — `region(at:)` maps a coordinate to its `Region` - (bounding-box pre-pass, then an even-odd ray-cast), and `distanceToBoundary` - measures nearness to a region's edge. `RegionAttributor.shared` loads the - bundled polygons lazily. +- **`RegionAttributor`** / **`RegionAttributing`** — `region(at:)` maps a + coordinate to its `Region` (bounding-box pre-pass, then an even-odd ray-cast), + and `distanceToBoundary` measures nearness to a region's edge. An attributor is + built for a **specific set of regions** (`RegionAttributor(for:)`) and loads + only those regions' files; `.all` covers the whole catalog and `.shared` the + default four. `RegionAttributing` is the protocol the app's live, swappable + attributor also conforms to. - **`RegionGeometryCatalog`** — read-only drawable `RegionOutline`s for the - developer region-map viewer (`.attribution` vs `.source` geometry). + developer region-map viewer (`.attribution` for a given attributor vs `.source` + for the whole catalog). - **`RegionLog`** — RegionKit's LogKit facade (subsystem `com.stuff.regionkit`). ## Installation @@ -49,19 +57,81 @@ print(region.localizedName) // "California" ## Bundled data -Region polygons ship in `Sources/Resources/*.geojson`; see -[`Sources/Resources/README.md`](Sources/Resources/README.md) for provenance and -fidelity notes. Region names resolve through RegionKit's own -`Localizable.xcstrings` (`Region.localizedName`, `bundle: .module`). +The catalog manifest and one GeoJSON file per region ship in +`Sources/Resources/`. Both are **generated** — never hand-edit them. + +### `regions.json` — the catalog manifest + +An ordered array of entries, one per available region: + +```json +{ "id": "us-CA", "name": "California", "localizationKey": "region.california", + "geometry": { "file": "us-CA.geojson" } } +``` + +- `id` — a stable data identifier, never shown to the user. US states are + `us-` (`us-CA`, `us-NY`, …); countries/blocs use a slug (`canada`, + `european-union`). The `other` catch-all isn't in the manifest — it's a + sentinel with no geometry. +- `name` — the English display name (the `localizedName` fallback). +- `localizationKey` — optional; when present, `localizedName` resolves it from + `Localizable.xcstrings` (`bundle: .module`), else falls back to `name`. Only + the handful with existing translations carry one. (Dynamic ids mean names are + data, so region names lose static string-catalog extraction — a deliberate + trade-off.) +- `geometry.file` — the per-region file under `regions/`. +- **Array order is the catalog's canonical order** (US states alphabetically, + then countries/blocs, blocs last): it fixes attribution first-match priority + (regions are mutually exclusive at our resolution) and the day-count ranking + tiebreak. + +### `regions/.geojson` — per-region geometry + +One FeatureCollection per region (a single `Polygon`/`MultiPolygon` feature, +exterior rings only). `RegionAttributor` loads only the files for the regions +it's asked to attribute, so we never parse the whole US at launch. + +### Regenerating + +`regions/` and `regions.json` are generated from the (non-bundled) source data +under [`Tools/source/`](Tools/source) by +[`Tools/generate-regions.rb`](Tools/generate-regions.rb) — re-run it from the +repo root after changing the source (the `NAME → us-` map lives in the +script): + +```sh +ruby Where/RegionKit/Tools/generate-regions.rb +``` + +### Source data (not bundled) + +- **`us-states.geojson`** — US state boundaries (50 states + DC + PR), + `MultiPolygon` per feature keyed by `properties.NAME`; the generator splits it + into one `regions/us-.geojson` per feature. Originally + `gz_2010_us_040_00_5m.json` (5m, 2010 census) from + [eric.clst.org/tech/usgeojson](https://eric.clst.org/tech/usgeojson/), + converted from US Census Cartographic Boundary Files. License: US Government + works are public domain (17 U.S.C. § 105); attribution requested (see the repo + `README.md`). +- **`canada.geojson` / `europeanUnion.geojson`** — hand-simplified outlines, + deliberately coarse (fine for `RegionAttributorTests` spot-checks; should be + replaced with higher-fidelity public-domain sources before any production + residency-audit use). ## Adding a region -Add the `Region` case, then resolve the two compile errors it forces: a -`region.` entry in `Sources/Resources/Localizable.xcstrings` (for -`localizedName`) and a `Region.geometrySource` case — either -`.usStateFeature(name:)` (a feature already in `us-states.geojson`, no new file) -or `.bundledFile` with a new `.geojson` in `Sources/Resources/`. Add a -`RegionAttributorTests` spot-check. +Adding a region is now **pure data** — no new `Region` case, no code: + +1. Add its geometry to `Tools/source/` (a new feature, or a new source file). +2. Run `ruby Where/RegionKit/Tools/generate-regions.rb` to regenerate + `regions/` + `regions.json` (add the `NAME → id` mapping in the script if it's + a new US feature; blocs/countries get an entry in the script's `NON_US` list). +3. Optionally add a `region.` entry to `Localizable.xcstrings` and point the + manifest entry's `localizationKey` at it (otherwise the English `name` shows). +4. Add a `RegionAttributorTests` spot-check. + +Everything downstream (`RegionStyle`, region pickers, the App Intents +`RegionEntity`) derives from the catalog automatically. ## Testing diff --git a/Where/RegionKit/Sources/Region.swift b/Where/RegionKit/Sources/Region.swift index 0005e3b7..7fa71ee8 100644 --- a/Where/RegionKit/Sources/Region.swift +++ b/Where/RegionKit/Sources/Region.swift @@ -1,76 +1,101 @@ import Foundation /// A geographic region we track presence in for purposes like state-residency -/// audits. Not US-specific: `.canada` and `.europeanUnion` are first-class. +/// audits. Not US-specific: Canada and the European Union are first-class, and +/// any US state (plus DC / PR) is an available region. /// -/// `.other` is the catch-all for any coordinate that doesn't fall inside the -/// bundled polygons (or for manual day entries where the user wants to -/// represent "somewhere else"). +/// A `Region` is a thin `Hashable` value wrapping a **stable string id** +/// (`rawValue`, e.g. `"us-CA"`, `"canada"`) — the identifier used by SwiftData, +/// `Codable`, and lookup tables. It is **not** user-facing; use `localizedName`. +/// The set of available regions and each region's metadata (display name, +/// geometry file) live in ``RegionCatalog``, loaded from the bundled +/// `regions.json` manifest, so adding a region is a data change, not a new case. /// -/// The `rawValue` strings (`"california"`, `"newYork"`, …) are stable -/// data identifiers used by SwiftData, Codable, and lookup tables. They -/// are **not** user-facing — use `localizedName` for anything the UI -/// renders. -public enum Region: String, Codable, Sendable, Hashable, CaseIterable { - case california - case newYork - case canada - case europeanUnion - case other +/// `.other` is the catch-all for any coordinate outside every loaded region (or +/// a manual day the user marks as "somewhere else"); it has no geometry and is +/// not a catalog entry. +public struct Region: Hashable, Sendable, RawRepresentable { + /// The stable data identifier (e.g. `"us-CA"`, `"canada"`). Never shown to + /// the user — user-facing labels go through `localizedName`. + public let rawValue: String - /// User-facing name for this region, read from the `RegionKit` - /// string catalog (`Resources/Localizable.xcstrings`). - /// - /// Uses `String(localized:)` with a literal key per case (rather - /// than `NSLocalizedString` with a runtime-composed - /// `"region.\(rawValue)"`) so Xcode's string-catalog extraction - /// tooling can statically find every key. Adding a new region - /// case is intentionally a compile error here until you add a - /// matching string catalog entry. - public var localizedName: String { - switch self { - case .california: - String(localized: "region.california", bundle: .module) - case .newYork: - String(localized: "region.newYork", bundle: .module) - case .canada: - String(localized: "region.canada", bundle: .module) - case .europeanUnion: - String(localized: "region.europeanUnion", bundle: .module) - case .other: - String(localized: "region.other", bundle: .module) - } + /// Wraps `rawValue` **without** validating it against the catalog. Used to + /// rehydrate stored/decoded ids (which must round-trip even if the catalog + /// later changes) and to define the well-known conveniences. + init(unchecked rawValue: String) { + self.rawValue = rawValue } - /// Where this region's boundary geometry comes from. This is the - /// single source of truth that drives `RegionAttributor`'s bundle - /// load (and the developer region-map viewer) — collapsing what used - /// to be a hardcoded region list plus a separate name table. Like - /// `localizedName`, the exhaustive `switch` makes adding a `Region` - /// case a compile error until its geometry source is declared here. - public var geometrySource: GeometrySource { - switch self { - case .california: .usStateFeature(name: "California") - case .newYork: .usStateFeature(name: "New York") - case .canada: .bundledFile - case .europeanUnion: .bundledFile - case .other: .none + /// Creates a region only if `rawValue` names a catalog region (or is the + /// `.other` sentinel), returning `nil` otherwise — matching the former + /// enum's failable initializer. Use it for untrusted input (an intent + /// parameter, a Spotlight id); rehydrate values the app itself produced + /// through the `Codable` path or ``init(unchecked:)`` so a valid stored id + /// is never dropped. + public init?(rawValue: String) { + if rawValue == Region.other.rawValue { + self = .other + } else if RegionCatalog.shared.contains(id: rawValue) { + self.init(unchecked: rawValue) + } else { + return nil } } +} + +/// Hand-written `Codable` rather than the compiler-synthesized one: a single +/// `rawValue` field would synthesize a *keyed* container (`{"rawValue":"us-CA"}`), +/// but we want the **bare id string** (`"us-CA"`). That keeps `Set` / +/// `[Region: Int]` and the persisted `regionRaws: [String]` round-tripping as +/// plain strings — matching what the former `String`-backed enum produced, so +/// stored SwiftData, widget snapshots, and backup archives stay compatible. +extension Region: Codable { + /// Decodes the bare id string **without** catalog validation, so a stored + /// region stays honest even if the catalog changes between writes and reads. + public init(from decoder: any Decoder) throws { + let container = try decoder.singleValueContainer() + try self.init(unchecked: container.decode(String.self)) + } + + /// Encodes as the bare id string (see the type note above). + public func encode(to encoder: any Encoder) throws { + var container = encoder.singleValueContainer() + try container.encode(rawValue) + } +} + +extension Region { + /// User-facing name for this region, resolved through ``RegionCatalog`` (a + /// `localizationKey` from the bundled string catalog when present, otherwise + /// the manifest's English `name`). + public var localizedName: String { + RegionCatalog.shared.localizedName(for: self) + } +} + +// MARK: - Well-known regions + +extension Region { + /// The catch-all sentinel: any coordinate outside every loaded region. Has + /// no geometry and is not a catalog entry. + public static let other = Region(unchecked: "other") + + /// Conveniences for the regions the app has historically tracked, so call + /// sites read as naturally as the former enum cases (`.california`). Every + /// other available region is reached through ``RegionCatalog``. + public static let california = Region(unchecked: "us-CA") + public static let newYork = Region(unchecked: "us-NY") + public static let canada = Region(unchecked: "canada") + public static let europeanUnion = Region(unchecked: "european-union") +} + +// MARK: - CaseIterable compatibility - /// How a `Region`'s boundary polygons are sourced from bundled - /// GeoJSON in `Resources/`. - public enum GeometrySource: Hashable, Sendable { - /// A feature in the shared `us-states.geojson`, matched by its - /// Census `properties.NAME` (the associated value). The name is a - /// **data identifier** for matching the bundled file, never shown - /// to the user — user-facing labels go through `localizedName`. - /// Adding a US state needs no new bundled file. - case usStateFeature(name: String) - /// A dedicated `.geojson` file (e.g. `.canada`, - /// `.europeanUnion`). - case bundledFile - /// No bundled polygons — the catch-all `.other`. - case none +extension Region: CaseIterable { + /// Every available region in canonical (catalog) order, followed by the + /// `.other` sentinel. Callers that want only the *available* regions (no + /// `.other`) use ``RegionCatalog/all`` directly. + public static var allCases: [Region] { + RegionCatalog.shared.all + [.other] } } diff --git a/Where/RegionKit/Sources/RegionAttributor.swift b/Where/RegionKit/Sources/RegionAttributor.swift index 8e4579d4..56320eea 100644 --- a/Where/RegionKit/Sources/RegionAttributor.swift +++ b/Where/RegionKit/Sources/RegionAttributor.swift @@ -1,47 +1,80 @@ import Foundation import LogKit -/// Maps coordinates to the tracked `Region` they fall inside. Backed by a -/// list of polygons per region; checked in declaration order so the first -/// match wins (regions are mutually exclusive at our resolution). -/// -/// Polygons are loaded from bundled GeoJSON in `Resources/` via the -/// `GeoJSON` namespace, driven entirely by each region's -/// `Region.geometrySource`: -/// - `.usStateFeature(name:)` regions (`.california`, `.newYork`, ...) -/// come out of a single `us-states.geojson` indexed by feature `NAME`. -/// Adding another US state is just a new `Region` case whose -/// `geometrySource` names its Census feature — no new file to bundle. -/// - `.bundledFile` regions (`.canada`, `.europeanUnion`) keep a -/// dedicated per-region file named after the enum `rawValue`. +/// A coordinate-to-`Region` lookup engine. Abstracted as a protocol so callers +/// can hold either an immutable ``RegionAttributor`` snapshot or a live, +/// swappable attributor (e.g. one WhereCore rebuilds when the user's tracked +/// regions change) behind the same synchronous API. +public protocol RegionAttributing: Sendable { + /// The region `coordinate` falls inside, or `.other` if none. + func region(at coordinate: Coordinate) -> Region + /// Smallest distance in meters from `coordinate` to `region`'s boundary, or + /// `nil` for a region this attributor didn't load. + func distanceToBoundary(of region: Region, from coordinate: Coordinate) -> Double? + /// The regions this attributor loaded and attributes to (excludes `.other`). + var loadedRegions: [Region] { get } +} + +/// Maps coordinates to the `Region` they fall inside. Backed by a list of +/// polygons per region, checked in order so the first match wins (regions are +/// mutually exclusive at our resolution). /// -/// Regions are loaded in `Region.allCases` order, which fixes the -/// first-match priority in `region(at:)`. Anything not inside any -/// bundled polygon (and any `.none` region, e.g. `.other`) is `.other`. -public struct RegionAttributor: Sendable { +/// An attributor is built for a **specific set of regions** and loads only +/// those regions' bundled GeoJSON (one `Resources/regions/.geojson` per +/// region, named by ``RegionCatalog``), so we never parse regions we don't +/// track. The order of the regions passed to ``init(for:)`` fixes the +/// first-match priority in ``region(at:)``. Anything outside every loaded +/// region (and `.other` itself, which has no geometry) is `.other`. +public struct RegionAttributor: RegionAttributing { private let regionPolygons: [RegionPolygons] - public static let shared: RegionAttributor = .loadFromBundle() + /// Attributor for the default set of tracked regions (California, New York, + /// Canada, the European Union). Production derives its attributor from the + /// store's tracked regions via `WhereServices.make(...)`; this snapshot backs + /// the synchronous defaults for tests and previews (whose in-memory stores + /// resolve to this same default) and the "no tracked rows yet" fallback. The + /// developer viewer and tests use ``all`` for the whole catalog. + public static let shared = RegionAttributor(for: [ + .california, + .newYork, + .canada, + .europeanUnion, + ]) + + /// Attributor covering **every** available region in the catalog. Loads all + /// per-region files, so reserve it for the developer region-map viewer and + /// tests — production attributes against the user's tracked subset. + public static let all = RegionAttributor(for: RegionCatalog.shared.all) + + /// Builds an attributor that loads and attributes only `regions` (in the + /// given order, which fixes first-match priority). `.other` is ignored — it + /// has no geometry and is the fallback when nothing matches. + public init(for regions: [Region]) { + regionPolygons = Self.loadPolygons(for: regions) + } init(regionPolygons: [RegionPolygons]) { self.regionPolygons = regionPolygons } - /// The loaded polygons per region, exposed for the developer - /// region-map viewer (`RegionGeometryCatalog`). Internal on purpose: - /// callers outside `RegionKit` consume drawable outlines via + /// The loaded polygons per region, exposed for the developer region-map + /// viewer (`RegionGeometryCatalog`). Internal on purpose: callers outside + /// `RegionKit` consume drawable outlines via /// `RegionGeometryCatalog.outlines(for:)`, never raw `RegionPolygons`. var loadedRegionPolygons: [RegionPolygons] { regionPolygons } + /// The regions this attributor loaded, in load order (excludes `.other`). + public var loadedRegions: [Region] { + regionPolygons.map(\.region) + } + public func region(at coordinate: Coordinate) -> Region { - // Per-region bounding-box pre-pass: cheap rectangular comparison - // rejects coordinates that can't possibly be inside the - // polygons for this region before the more expensive - // even-odd ray-cast runs. For our 4-region set the boxes - // barely overlap (CA / NY / Canada / EU), so a typical - // out-of-set coordinate fails the bbox check 4 times in a row + // Per-region bounding-box pre-pass: a cheap rectangular comparison + // rejects coordinates that can't be inside a region's polygons before + // the more expensive even-odd ray-cast runs. Region boxes barely + // overlap, so a typical out-of-set coordinate fails every bbox check // and never enters `polygon.contains`. for entry in regionPolygons { guard entry.boundingBox.contains(coordinate) else { continue } @@ -55,117 +88,55 @@ public struct RegionAttributor: Sendable { } /// Smallest distance in meters from `coordinate` to the boundary of - /// `region`'s bundled polygons. Returns `nil` for regions without - /// polygons (e.g. `.other`). + /// `region`'s loaded polygons. Returns `nil` for regions this attributor + /// didn't load (including `.other`). public func distanceToBoundary(of region: Region, from coordinate: Coordinate) -> Double? { guard let entry = regionPolygons.first(where: { $0.region == region }) else { return nil } return entry.polygons.map { $0.distanceToBoundary(from: coordinate) }.min() } - /// `Logger` from `os` — used in `loadFromBundle` to surface - /// missing/unparseable bundled resources as Console.app faults - /// alongside the debug-build `assertionFailure`. + /// `RegionLog` channel — surfaces missing/unparseable bundled resources as + /// Console.app faults alongside the debug-build `assertionFailure`. private static let logger = RegionLog.channel(.attributor) - private static func loadFromBundle() -> RegionAttributor { - // Every Census `NAME` any `.usStateFeature` region wants, so the - // shared `us-states.geojson` is read and indexed in a single pass. - let wantedStateNames = Set(Region.allCases.compactMap { region -> String? in - guard case let .usStateFeature(name) = region.geometrySource else { return nil } - return name - }) - let usStateIndex = loadUSStateIndex(matching: wantedStateNames) - - // `Region.allCases` order fixes the first-match priority in - // `region(at:)`; `.none` regions (e.g. `.other`) contribute no - // polygons and are skipped. + /// Loads the exterior-ring polygons for each region from its bundled + /// per-region GeoJSON. Missing/corrupt geometry is a programmer error: it's + /// logged as a `fault` and `assertionFailure`s in debug, degrading to + /// "region simply never matches" in release rather than crashing. + private static func loadPolygons(for regions: [Region]) -> [RegionPolygons] { var entries: [RegionPolygons] = [] - for region in Region.allCases { - switch region.geometrySource { - case let .usStateFeature(name): - if let polygons = usStateIndex[name] { - entries.append(RegionPolygons(region: region, polygons: polygons)) - } else { - // Either the bundle resource is missing entirely (caught - // upstream and logged) or the named feature isn't in the - // file. Either way, this region would silently attribute - // to `.other`; surface it via fault + assertionFailure. - logger - .fault( - "Missing feature \(name) in bundled us-states.geojson for region \(region.rawValue)", - ) - assertionFailure( - "Missing feature \(name) in us-states.geojson for region \(region.rawValue)", - ) - } - - case .bundledFile: - guard let url = Bundle.module - .url(forResource: region.rawValue, withExtension: "geojson") - else { - logger - .fault( - "Missing required bundled GeoJSON for region \(region.rawValue)", - ) - assertionFailure("Missing bundled GeoJSON for region \(region.rawValue)") - continue - } - do { - let polygons = try GeoJSON.polygons(at: url) - entries.append(RegionPolygons(region: region, polygons: polygons)) - } catch { - logger - .fault( - "Failed to decode bundled GeoJSON \(region.rawValue): \(error.localizedDescription)", - ) - assertionFailure( - "Failed to decode bundled GeoJSON \(region.rawValue): \(error)", - ) - } - - case .none: + for region in regions { + guard region != .other else { continue } + guard let url = RegionCatalog.shared.geometryURL(for: region) else { + logger.fault("Missing bundled GeoJSON for region \(region.rawValue)") + assertionFailure("Missing bundled GeoJSON for region \(region.rawValue)") + continue + } + do { + let polygons = try GeoJSON.polygons(at: url) + guard !polygons.isEmpty else { + logger.fault("Region \(region.rawValue) decoded no polygons") + assertionFailure("Region \(region.rawValue) decoded no polygons") continue + } + entries.append(RegionPolygons(region: region, polygons: polygons)) + } catch { + logger + .fault( + "Failed to decode bundled GeoJSON for region \(region.rawValue): \(error.localizedDescription)", + ) + assertionFailure( + "Failed to decode bundled GeoJSON for region \(region.rawValue): \(error)", + ) } } logger.info("Loaded region polygons for \(entries.count) region(s)") - return RegionAttributor(regionPolygons: entries) - } - - /// Loads `us-states.geojson`, decodes only the features whose - /// `properties.NAME` is in `wanted`, and returns - /// `[NAME: [GeoPolygon]]`. Returns `[:]` (with logging) if the file is - /// missing or unparseable; callers then fall back to per-region - /// `assertionFailure` reporting so the diagnostic is attached to the - /// missing-state name rather than the file as a whole. - private static func loadUSStateIndex(matching wanted: Set) -> [String: [GeoPolygon]] { - guard let url = Bundle.module.url(forResource: "us-states", withExtension: "geojson") else { - logger.fault("Missing required bundled us-states.geojson") - assertionFailure("Missing bundled us-states.geojson") - return [:] - } - do { - var index: [String: [GeoPolygon]] = [:] - for feature in try GeoJSON.namedPolygons(at: url) { - guard let name = feature.name, wanted.contains(name) else { continue } - index[name, default: []].append(contentsOf: feature.polygons) - } - logger.info("Indexed \(index.count) US state(s) from us-states.geojson") - return index - } catch { - logger - .fault( - "Failed to decode bundled us-states.geojson: \(error.localizedDescription)", - ) - assertionFailure("Failed to decode bundled us-states.geojson: \(error)") - return [:] - } + return entries } } -/// One `Region` plus every polygon that defines it. Replaces an earlier -/// `(region, polygons)` tuple so the value carries a name and a -/// precomputed `boundingBox` for fast pre-screening in -/// `RegionAttributor.region(at:)`. +/// One `Region` plus every polygon that defines it, with a precomputed +/// `boundingBox` for fast pre-screening in `RegionAttributor.region(at:)`. struct RegionPolygons { let region: Region let polygons: [GeoPolygon] @@ -177,14 +148,11 @@ struct RegionPolygons { if let box = BoundingBox.enclosing(polygons) { boundingBox = box } else { - // Empty polygon set is a programmer error — every caller - // here is the bundle loader, which `assertionFailure`s - // before constructing a `RegionPolygons` with no - // polygons. The release-build fallback is `.empty`, a - // degenerate bbox that contains nothing, so the region - // simply never matches (failing to `.other` is preferable - // to a crash in production for what is fundamentally a - // missing-data condition). + // Empty polygon set is a programmer error — the loader guards + // against it before constructing a `RegionPolygons`. The + // release-build fallback is `.empty`, a degenerate bbox that + // contains nothing, so the region simply never matches (failing to + // `.other` beats crashing on a missing-data condition). assertionFailure( "Cannot construct RegionPolygons with no polygons for \(region.rawValue)", ) diff --git a/Where/RegionKit/Sources/RegionCatalog.swift b/Where/RegionKit/Sources/RegionCatalog.swift new file mode 100644 index 00000000..8584f9c0 --- /dev/null +++ b/Where/RegionKit/Sources/RegionCatalog.swift @@ -0,0 +1,134 @@ +import Foundation +import LogKit + +/// The catalog of **available** regions, loaded once from the bundled +/// `regions.json` manifest. It is RegionKit's single source of the region +/// *list* and each region's metadata — the display name, an optional +/// localization key, and the per-region GeoJSON file — replacing what used to +/// be a hardcoded `Region` enum plus a separate name table. +/// +/// Because the list is data, adding a region is a manifest + geometry-file +/// change (see the RegionKit `README.md`), not a code change. `RegionAttributor` +/// loads geometry per region from the files this catalog names, so it only ever +/// parses the regions it's asked to attribute. +/// +/// The manifest's array order is the catalog's **canonical order**: it fixes +/// attribution first-match priority (regions are mutually exclusive at our +/// resolution) and the day-count ranking tiebreak. +public struct RegionCatalog: Sendable { + /// One available region plus the metadata the app needs to name and draw it. + public struct Entry: Sendable, Hashable { + public let region: Region + /// English display name (the `localizedName` fallback). + public let name: String + /// Bundled string-catalog key, when the region has a translated name. + public let localizationKey: String? + /// The region's GeoJSON file under `Resources/regions/`. + public let geometryFile: String + } + + /// Every available region's entry, in canonical (manifest) order. + public let entries: [Entry] + private let byID: [String: Entry] + + /// The process-wide catalog, decoded from the bundle on first use. + public static let shared: RegionCatalog = .loadFromBundle() + + init(entries: [Entry]) { + self.entries = entries + byID = Dictionary(entries.map { ($0.region.rawValue, $0) }) { first, _ in first } + } + + /// Every available region in canonical order. Does **not** include the + /// `.other` sentinel (which has no geometry and is not a catalog entry). + public var all: [Region] { + entries.map(\.region) + } + + /// Whether `id` names a region in the catalog. Backs the failable + /// `Region(rawValue:)`. + public func contains(id: String) -> Bool { + byID[id] != nil + } + + /// The catalog entry for `region`, or `nil` for `.other` / an unknown id. + public func entry(for region: Region) -> Entry? { + byID[region.rawValue] + } + + /// User-facing name for `region`: the `.other` catch-all string, a + /// translated `localizationKey`, or the manifest `name`. Falls back to the + /// raw id for a region the catalog doesn't know (a stored id from a + /// different catalog version) rather than crashing. + public func localizedName(for region: Region) -> String { + if region == .other { + return String(localized: "region.other", bundle: .module) + } + guard let entry = byID[region.rawValue] else { + return region.rawValue + } + if let key = entry.localizationKey { + return String(localized: String.LocalizationValue(key), bundle: .module) + } + return entry.name + } + + /// The bundled GeoJSON URL for `region`, or `nil` when the region isn't in + /// the catalog. A missing file (present in the manifest, absent from the + /// bundle) is surfaced by the caller as a programmer error. + func geometryURL(for region: Region) -> URL? { + guard let entry = byID[region.rawValue] else { return nil } + let stem = (entry.geometryFile as NSString).deletingPathExtension + // `.process("Resources")` preserves the `regions/` subdirectory, but be + // resilient to a bundler that flattens it by falling back to a top-level + // lookup. + return Bundle.module.url( + forResource: stem, + withExtension: "geojson", + subdirectory: "regions", + ) + ?? Bundle.module.url(forResource: stem, withExtension: "geojson") + } +} + +extension RegionCatalog { + private static let logger = RegionLog.channel(.catalog) + + private static func loadFromBundle() -> RegionCatalog { + guard let url = Bundle.module.url(forResource: "regions", withExtension: "json") else { + logger.fault("Missing required bundled regions.json manifest") + assertionFailure("Missing bundled regions.json") + return RegionCatalog(entries: []) + } + do { + let data = try Data(contentsOf: url) + let items = try JSONDecoder().decode([ManifestItem].self, from: data) + let entries = items.map { item in + Entry( + region: Region(unchecked: item.id), + name: item.name, + localizationKey: item.localizationKey, + geometryFile: item.geometry.file, + ) + } + logger.info("Loaded region catalog with \(entries.count) region(s)") + return RegionCatalog(entries: entries) + } catch { + logger.fault("Failed to decode bundled regions.json: \(error.localizedDescription)") + assertionFailure("Failed to decode bundled regions.json: \(error)") + return RegionCatalog(entries: []) + } + } + + /// One manifest entry as decoded from `regions.json`. + private struct ManifestItem: Decodable { + let id: String + let name: String + let localizationKey: String? + let geometry: Geometry + + struct Geometry: Decodable { + let file: String + } + } +} diff --git a/Where/RegionKit/Sources/RegionGeometryCatalog.swift b/Where/RegionKit/Sources/RegionGeometryCatalog.swift index 8d30b40a..eb526da5 100644 --- a/Where/RegionKit/Sources/RegionGeometryCatalog.swift +++ b/Where/RegionKit/Sources/RegionGeometryCatalog.swift @@ -3,14 +3,12 @@ import Foundation /// Which set of region polygons to vend, for the developer region-map /// viewer's source toggle. public enum RegionGeometryKind: String, CaseIterable, Sendable, Hashable { - /// What `RegionAttributor` actually loads and uses to attribute - /// coordinates today: California, New York, and the simplified - /// Canada / EU polygons, exterior rings only. + /// What a `RegionAttributor` actually loaded and uses to attribute + /// coordinates — the app's tracked subset, exterior rings only. case attribution - /// Every feature decoded straight from the bundled GeoJSON files - /// (all US-state features in `us-states.geojson`, plus Canada and - /// the EU) at full authored fidelity — what attribution is built - /// *from*, before the simplifications. + /// Every available region in the catalog, decoded straight from its bundled + /// per-region GeoJSON at full authored fidelity — what attribution is built + /// *from*, before the bounding-box pre-pass simplifications. case source } @@ -30,12 +28,10 @@ public struct RegionOutline: Identifiable, Sendable, Hashable { } public let id: ID - /// Human-readable label: a US Census feature `NAME` (e.g. "Texas") - /// or a `Region.localizedName` (e.g. "Canada"). + /// Human-readable label: a `Region.localizedName` (e.g. "California"). public let title: String /// The tracked region this outline belongs to, or `nil` for a source - /// feature that isn't currently modeled as a `Region` (e.g. a US - /// state with no `Region` case yet). + /// feature not modeled as a `Region`. public let region: Region? /// The exterior ring, in order. public let coordinates: [Coordinate] @@ -76,6 +72,12 @@ extension RegionGeometryError: LocalizedError { public enum RegionGeometryCatalog { /// Drawable outlines for `kind`. /// + /// - `.attribution` reflects exactly what `attributor` loaded (the tracked + /// subset) — the caller passes the attributor rather than the catalog + /// reaching for a global, so the viewer shows the regions it cares about. + /// - `.source` decodes every available region from the catalog and ignores + /// `attributor`. + /// /// The file read + JSON decode runs **off the main thread**: /// `RegionGeometryCatalog` is a plain (non-`@MainActor`) type and /// this method is `nonisolated`, so `await`-ing it from a @@ -84,10 +86,13 @@ public enum RegionGeometryCatalog { /// `Sendable` result back to the main actor. Throws /// `RegionGeometryError` / a `DecodingError` rather than absorbing a /// missing or malformed bundle into an empty list. - public static func outlines(for kind: RegionGeometryKind) async throws -> [RegionOutline] { + public static func outlines( + for kind: RegionGeometryKind, + attributor: RegionAttributor, + ) async throws -> [RegionOutline] { switch kind { case .attribution: - attributionOutlines() + attributionOutlines(for: attributor) case .source: try await SourceCache.shared.outlines() } @@ -95,11 +100,11 @@ public enum RegionGeometryCatalog { // MARK: - Attribution - /// Outlines for exactly what `RegionAttributor` loaded — cheap, since - /// it reads the already-resolved `RegionAttributor.shared`. - private static func attributionOutlines() -> [RegionOutline] { + /// Outlines for exactly what `attributor` loaded — cheap, since it reads the + /// already-resolved polygons. + private static func attributionOutlines(for attributor: RegionAttributor) -> [RegionOutline] { var builder = OutlineBuilder() - for entry in RegionAttributor.shared.loadedRegionPolygons { + for entry in attributor.loadedRegionPolygons { for polygon in entry.polygons { builder.add( title: entry.region.localizedName, @@ -113,58 +118,35 @@ public enum RegionGeometryCatalog { // MARK: - Source - /// Decode every bundled feature: all features in `us-states.geojson` - /// (titled by Census `NAME`, mapped to a `Region` when one claims - /// that name), plus each `.bundledFile` region's own file (titled and - /// tagged by that `Region`, since those files carry no `NAME`). + /// Decode every available region's bundled per-region GeoJSON at full + /// fidelity, each outline tagged with the `Region` it belongs to and titled + /// by its `localizedName`. static func buildSourceOutlines() throws -> [RegionOutline] { var builder = OutlineBuilder() - - let regionByStateName = usStateRegionsByName() - for feature in try namedPolygons(resource: "us-states") { - let title = feature.name ?? "Unnamed feature" - let region = feature.name.flatMap { regionByStateName[$0] } - for polygon in feature.polygons { - builder.add(title: title, region: region, coordinates: polygon.vertices) - } - } - - for region in Region.allCases where region.geometrySource == .bundledFile { - for feature in try namedPolygons(resource: region.rawValue) { + for entry in RegionCatalog.shared.entries { + for feature in try namedPolygons(for: entry.region) { for polygon in feature.polygons { builder.add( - title: region.localizedName, - region: region, + title: entry.region.localizedName, + region: entry.region, coordinates: polygon.vertices, ) } } } - return builder.outlines } - /// `[Census NAME: Region]` for every `.usStateFeature` region. - private static func usStateRegionsByName() -> [String: Region] { - var map: [String: Region] = [:] - for region in Region.allCases { - guard case let .usStateFeature(name) = region.geometrySource else { continue } - map[name] = region - } - return map - } - - private static func namedPolygons(resource: String) throws -> [GeoJSON.NamedPolygons] { - guard let url = Bundle.module.url(forResource: resource, withExtension: "geojson") else { - throw RegionGeometryError.missingResource(resource) + private static func namedPolygons(for region: Region) throws -> [GeoJSON.NamedPolygons] { + guard let url = RegionCatalog.shared.geometryURL(for: region) else { + throw RegionGeometryError.missingResource(region.rawValue) } return try GeoJSON.namedPolygons(at: url) } - /// Caches the heavy `.source` decode (the ~2.5 MB `us-states.geojson` - /// parse) so toggling back to source after the first load is instant. - /// An `actor` both serializes the one-time build and runs it off the - /// main thread. + /// Caches the heavy `.source` decode (parsing every per-region file) so + /// toggling back to source after the first load is instant. An `actor` both + /// serializes the one-time build and runs it off the main thread. private actor SourceCache { static let shared = SourceCache() private var cached: [RegionOutline]? diff --git a/Where/RegionKit/Sources/RegionLog.swift b/Where/RegionKit/Sources/RegionLog.swift index 41f2e480..2955cb91 100644 --- a/Where/RegionKit/Sources/RegionLog.swift +++ b/Where/RegionKit/Sources/RegionLog.swift @@ -20,6 +20,7 @@ public enum RegionLog { public enum Category: String, CaseIterable, Sendable { case attributor = "RegionAttributor" case geometryCatalog = "RegionGeometryCatalog" + case catalog = "RegionCatalog" } /// A logging channel for `category`, wired to the shared buffer. diff --git a/Where/RegionKit/Sources/Resources/README.md b/Where/RegionKit/Sources/Resources/README.md deleted file mode 100644 index d7997f3e..00000000 --- a/Where/RegionKit/Sources/Resources/README.md +++ /dev/null @@ -1,30 +0,0 @@ -# Bundled region polygons - -These GeoJSON files back `RegionAttributor.shared`. They are loaded once at -process start, indexed, and consulted for every coordinate-to-`Region` -attribution. - -## `us-states.geojson` - -US state boundaries (50 states + DC + PR), `MultiPolygon` per feature with a -`properties.NAME` matching the state's English name (`"California"`, -`"New York"`, ...). `RegionAttributor` only pulls the names mapped from -`Region` cases; the rest of the features are ignored at load time. - -- Originally `gz_2010_us_040_00_5m.json` (5m resolution, derived from the - 2010 census). 5m sits between the 500k "detailed" and 20m "very - simplified" tiers — accurate enough that we don't misclassify points - along the actual state boundary at typical GPS precision, small enough - to ship in-bundle. -- Source: [eric.clst.org/tech/usgeojson](https://eric.clst.org/tech/usgeojson/), - converted from the US Census Bureau's Cartographic Boundary Files. -- License: US Government works are not eligible for copyright protection - (17 U.S.C. § 105). The Census Bureau requests attribution; see the - Acknowledgements section of the repo `README.md`. - -## `canada.geojson`, `europeanUnion.geojson` - -Hand-simplified outlines for the non-US regions we currently model. These -are deliberately coarse — they're accurate enough for the spot-check tests -in `RegionAttributorTests` but should be replaced with higher-fidelity -public-domain sources before any production residency-audit use. diff --git a/Where/RegionKit/Sources/Resources/regions.json b/Where/RegionKit/Sources/Resources/regions.json new file mode 100644 index 00000000..7784bc09 --- /dev/null +++ b/Where/RegionKit/Sources/Resources/regions.json @@ -0,0 +1,384 @@ +[ + { + "id": "us-AL", + "name": "Alabama", + "geometry": { + "file": "us-AL.geojson" + } + }, + { + "id": "us-AK", + "name": "Alaska", + "geometry": { + "file": "us-AK.geojson" + } + }, + { + "id": "us-AZ", + "name": "Arizona", + "geometry": { + "file": "us-AZ.geojson" + } + }, + { + "id": "us-AR", + "name": "Arkansas", + "geometry": { + "file": "us-AR.geojson" + } + }, + { + "id": "us-CA", + "name": "California", + "localizationKey": "region.california", + "geometry": { + "file": "us-CA.geojson" + } + }, + { + "id": "us-CO", + "name": "Colorado", + "geometry": { + "file": "us-CO.geojson" + } + }, + { + "id": "us-CT", + "name": "Connecticut", + "geometry": { + "file": "us-CT.geojson" + } + }, + { + "id": "us-DE", + "name": "Delaware", + "geometry": { + "file": "us-DE.geojson" + } + }, + { + "id": "us-DC", + "name": "District of Columbia", + "geometry": { + "file": "us-DC.geojson" + } + }, + { + "id": "us-FL", + "name": "Florida", + "geometry": { + "file": "us-FL.geojson" + } + }, + { + "id": "us-GA", + "name": "Georgia", + "geometry": { + "file": "us-GA.geojson" + } + }, + { + "id": "us-HI", + "name": "Hawaii", + "geometry": { + "file": "us-HI.geojson" + } + }, + { + "id": "us-ID", + "name": "Idaho", + "geometry": { + "file": "us-ID.geojson" + } + }, + { + "id": "us-IL", + "name": "Illinois", + "geometry": { + "file": "us-IL.geojson" + } + }, + { + "id": "us-IN", + "name": "Indiana", + "geometry": { + "file": "us-IN.geojson" + } + }, + { + "id": "us-IA", + "name": "Iowa", + "geometry": { + "file": "us-IA.geojson" + } + }, + { + "id": "us-KS", + "name": "Kansas", + "geometry": { + "file": "us-KS.geojson" + } + }, + { + "id": "us-KY", + "name": "Kentucky", + "geometry": { + "file": "us-KY.geojson" + } + }, + { + "id": "us-LA", + "name": "Louisiana", + "geometry": { + "file": "us-LA.geojson" + } + }, + { + "id": "us-ME", + "name": "Maine", + "geometry": { + "file": "us-ME.geojson" + } + }, + { + "id": "us-MD", + "name": "Maryland", + "geometry": { + "file": "us-MD.geojson" + } + }, + { + "id": "us-MA", + "name": "Massachusetts", + "geometry": { + "file": "us-MA.geojson" + } + }, + { + "id": "us-MI", + "name": "Michigan", + "geometry": { + "file": "us-MI.geojson" + } + }, + { + "id": "us-MN", + "name": "Minnesota", + "geometry": { + "file": "us-MN.geojson" + } + }, + { + "id": "us-MS", + "name": "Mississippi", + "geometry": { + "file": "us-MS.geojson" + } + }, + { + "id": "us-MO", + "name": "Missouri", + "geometry": { + "file": "us-MO.geojson" + } + }, + { + "id": "us-MT", + "name": "Montana", + "geometry": { + "file": "us-MT.geojson" + } + }, + { + "id": "us-NE", + "name": "Nebraska", + "geometry": { + "file": "us-NE.geojson" + } + }, + { + "id": "us-NV", + "name": "Nevada", + "geometry": { + "file": "us-NV.geojson" + } + }, + { + "id": "us-NH", + "name": "New Hampshire", + "geometry": { + "file": "us-NH.geojson" + } + }, + { + "id": "us-NJ", + "name": "New Jersey", + "geometry": { + "file": "us-NJ.geojson" + } + }, + { + "id": "us-NM", + "name": "New Mexico", + "geometry": { + "file": "us-NM.geojson" + } + }, + { + "id": "us-NY", + "name": "New York", + "localizationKey": "region.newYork", + "geometry": { + "file": "us-NY.geojson" + } + }, + { + "id": "us-NC", + "name": "North Carolina", + "geometry": { + "file": "us-NC.geojson" + } + }, + { + "id": "us-ND", + "name": "North Dakota", + "geometry": { + "file": "us-ND.geojson" + } + }, + { + "id": "us-OH", + "name": "Ohio", + "geometry": { + "file": "us-OH.geojson" + } + }, + { + "id": "us-OK", + "name": "Oklahoma", + "geometry": { + "file": "us-OK.geojson" + } + }, + { + "id": "us-OR", + "name": "Oregon", + "geometry": { + "file": "us-OR.geojson" + } + }, + { + "id": "us-PA", + "name": "Pennsylvania", + "geometry": { + "file": "us-PA.geojson" + } + }, + { + "id": "us-PR", + "name": "Puerto Rico", + "geometry": { + "file": "us-PR.geojson" + } + }, + { + "id": "us-RI", + "name": "Rhode Island", + "geometry": { + "file": "us-RI.geojson" + } + }, + { + "id": "us-SC", + "name": "South Carolina", + "geometry": { + "file": "us-SC.geojson" + } + }, + { + "id": "us-SD", + "name": "South Dakota", + "geometry": { + "file": "us-SD.geojson" + } + }, + { + "id": "us-TN", + "name": "Tennessee", + "geometry": { + "file": "us-TN.geojson" + } + }, + { + "id": "us-TX", + "name": "Texas", + "geometry": { + "file": "us-TX.geojson" + } + }, + { + "id": "us-UT", + "name": "Utah", + "geometry": { + "file": "us-UT.geojson" + } + }, + { + "id": "us-VT", + "name": "Vermont", + "geometry": { + "file": "us-VT.geojson" + } + }, + { + "id": "us-VA", + "name": "Virginia", + "geometry": { + "file": "us-VA.geojson" + } + }, + { + "id": "us-WA", + "name": "Washington", + "geometry": { + "file": "us-WA.geojson" + } + }, + { + "id": "us-WV", + "name": "West Virginia", + "geometry": { + "file": "us-WV.geojson" + } + }, + { + "id": "us-WI", + "name": "Wisconsin", + "geometry": { + "file": "us-WI.geojson" + } + }, + { + "id": "us-WY", + "name": "Wyoming", + "geometry": { + "file": "us-WY.geojson" + } + }, + { + "id": "canada", + "name": "Canada", + "localizationKey": "region.canada", + "geometry": { + "file": "canada.geojson" + } + }, + { + "id": "european-union", + "name": "European Union", + "localizationKey": "region.europeanUnion", + "geometry": { + "file": "european-union.geojson" + } + } +] diff --git a/Where/RegionKit/Sources/Resources/regions/canada.geojson b/Where/RegionKit/Sources/Resources/regions/canada.geojson new file mode 100644 index 00000000..9d925797 --- /dev/null +++ b/Where/RegionKit/Sources/Resources/regions/canada.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"region":"canada","name":"Canada"},"geometry":{"type":"Polygon","coordinates":[[[-141.0,60.0],[-141.0,69.6],[-105.0,73.0],[-70.0,60.0],[-57.0,53.0],[-53.0,47.0],[-60.0,45.0],[-67.0,45.0],[-67.8,45.3],[-69.0,47.5],[-71.5,45.0],[-74.5,45.0],[-76.5,44.2],[-77.0,43.5],[-78.0,43.4],[-79.0,43.3],[-79.05,43.0],[-79.1,42.5],[-82.5,42.0],[-83.0,42.3],[-82.5,42.7],[-82.5,45.5],[-84.4,46.5],[-88.0,48.0],[-95.2,49.0],[-123.0,49.0],[-123.5,50.0],[-130.3,54.6],[-141.0,60.0]]]}}]} diff --git a/Where/RegionKit/Sources/Resources/regions/european-union.geojson b/Where/RegionKit/Sources/Resources/regions/european-union.geojson new file mode 100644 index 00000000..66bad0ed --- /dev/null +++ b/Where/RegionKit/Sources/Resources/regions/european-union.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"region":"european-union","name":"European Union"},"geometry":{"type":"Polygon","coordinates":[[[-5.0,48.5],[1.0,50.5],[3.5,51.3],[6.0,53.5],[8.5,54.5],[9.5,57.5],[16.5,58.5],[20.0,63.5],[23.0,66.0],[28.0,70.0],[30.5,67.5],[30.5,60.5],[28.0,57.0],[24.0,54.0],[24.0,50.5],[23.0,47.0],[28.5,45.0],[28.0,42.0],[26.5,40.5],[23.5,35.5],[21.0,36.5],[18.5,40.5],[15.0,36.7],[8.5,38.0],[7.0,43.5],[2.5,41.5],[-0.5,38.5],[-5.5,36.0],[-9.0,37.0],[-9.5,42.5],[-1.5,43.8],[-1.5,46.0],[-5.0,48.5]]]}}]} diff --git a/Where/RegionKit/Sources/Resources/regions/us-AK.geojson b/Where/RegionKit/Sources/Resources/regions/us-AK.geojson new file mode 100644 index 00000000..c3735bfa --- /dev/null +++ b/Where/RegionKit/Sources/Resources/regions/us-AK.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"region":"us-AK","name":"Alaska"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-166.10574,53.988606],[-166.075283,53.969571],[-166.116209,53.957197],[-166.152377,53.955294],[-166.190449,53.960053],[-166.196159,53.968619],[-166.197111,53.984799],[-166.172365,53.998124],[-166.10574,53.988606]]],[[[-159.694709,54.834966],[-159.703275,54.816882],[-159.74325,54.813075],[-159.774659,54.794039],[-159.802261,54.800701],[-159.820345,54.814978],[-159.818441,54.820689],[-159.768948,54.8264],[-159.742299,54.84258],[-159.694709,54.834966]]],[[[-161.329875,55.219418],[-161.325116,55.184202],[-161.329875,55.163263],[-161.344152,55.158504],[-161.409825,55.180395],[-161.43933,55.198479],[-161.426005,55.216563],[-161.399355,55.224177],[-161.329875,55.219418]]],[[[-161.656337,55.244165],[-161.617314,55.241309],[-161.540219,55.258442],[-161.527846,55.250827],[-161.560207,55.207045],[-161.629687,55.196576],[-161.691553,55.198479],[-161.693457,55.217515],[-161.68489,55.232743],[-161.656337,55.244165]]],[[[-159.510063,54.78928],[-159.51387,54.759775],[-159.543376,54.754064],[-159.597627,54.755968],[-159.587158,54.775955],[-159.602386,54.814026],[-159.587158,54.827351],[-159.568122,54.825448],[-159.510063,54.78928]]],[[[-162.255031,54.978353],[-162.249682,54.9759],[-162.235675,54.962601],[-162.232962,54.890984],[-162.236806,54.88163],[-162.275316,54.845565],[-162.282944,54.841216],[-162.30058,54.832594],[-162.321094,54.827928],[-162.349315,54.836049],[-162.41737,54.877491],[-162.425244,54.885021],[-162.437501,54.927627],[-162.435473,54.929249],[-162.337431,54.981636],[-162.326811,54.98533],[-162.266743,54.982133],[-162.255031,54.978353]]],[[[-159.324364,54.928329],[-159.317681,54.933707],[-159.278696,54.948514],[-159.20567,54.927438],[-159.202857,54.9255],[-159.203228,54.914842],[-159.212627,54.896066],[-159.236066,54.87648],[-159.272354,54.864204],[-159.305864,54.863698],[-159.309681,54.865813],[-159.327873,54.884749],[-159.320732,54.897269],[-159.313528,54.903388],[-159.31206,54.909601],[-159.312733,54.918686],[-159.324364,54.928329]]],[[[-160.0179,55.15613],[-160.047358,55.180879],[-160.061469,55.200378],[-160.052941,55.203035],[-160.025257,55.203914],[-160.002155,55.19448],[-159.994027,55.185247],[-159.983499,55.180379],[-159.95435,55.189291],[-159.93124,55.22006],[-159.889174,55.287138],[-159.87969,55.290183],[-159.870591,55.284889],[-159.848619,55.267548],[-159.843859,55.249367],[-159.844622,55.243828],[-159.855302,55.230378],[-159.860991,55.227884],[-159.866624,55.231202],[-159.886523,55.229149],[-159.895326,55.217872],[-159.905365,55.164689],[-159.901569,55.156858],[-159.884997,55.145598],[-159.860891,55.149337],[-159.859568,55.164912],[-159.861308,55.171748],[-159.860786,55.177086],[-159.846264,55.180834],[-159.816419,55.178051],[-159.82371,55.14413],[-159.83089,55.126467],[-159.855444,55.100758],[-159.86858,55.094888],[-159.886109,55.102558],[-159.886476,55.107087],[-159.906609,55.112544],[-159.947575,55.105215],[-159.951281,55.100644],[-159.94541,55.087939],[-159.951127,55.066642],[-160.052093,55.005777],[-160.080659,54.994425],[-160.115775,54.985078],[-160.183466,54.91568],[-160.181636,54.902992],[-160.200831,54.875282],[-160.226967,54.864075],[-160.254765,54.895974],[-160.250814,54.929816],[-160.244253,54.933532],[-160.223411,54.939124],[-160.177607,54.981446],[-160.132168,55.013743],[-160.106837,55.027002],[-160.082168,55.033578],[-160.077872,55.0376],[-160.087574,55.049967],[-160.094288,55.052996],[-160.133416,55.043947],[-160.174366,55.052577],[-160.191392,55.108574],[-160.187261,55.118376],[-160.109864,55.160777],[-160.077308,55.146495],[-160.059599,55.133663],[-160.052545,55.121716],[-160.05282,55.119373],[-160.057033,55.118488],[-160.057797,55.115353],[-160.055642,55.11158],[-160.03033,55.116109],[-160.01222,55.122946],[-160.00517,55.129378],[-160.004129,55.134482],[-160.0179,55.15613]]],[[[-159.455311,55.061452],[-159.448473,55.064343],[-159.381841,55.064032],[-159.345276,55.059397],[-159.33847,55.046683],[-159.328791,54.980598],[-159.330164,54.976378],[-159.33177,54.974598],[-159.426615,54.942266],[-159.447982,54.941374],[-159.457995,54.94573],[-159.459551,54.948652],[-159.451251,54.975285],[-159.440057,54.988502],[-159.416786,55.000296],[-159.417987,55.022013],[-159.455434,55.035809],[-159.455311,55.061452]]],[[[-159.533457,55.184761],[-159.504325,55.176822],[-159.499502,55.173991],[-159.493398,55.155055],[-159.494772,55.13605],[-159.503592,55.131373],[-159.509361,55.130206],[-159.530302,55.106194],[-159.53363,55.083987],[-159.524444,55.077358],[-159.4842,55.057695],[-159.48498,55.05405],[-159.489589,55.049229],[-159.509674,55.041408],[-159.517824,55.044735],[-159.535465,55.058735],[-159.572365,55.060122],[-159.597824,55.047],[-159.635226,55.037294],[-159.638905,55.038745],[-159.644029,55.042597],[-159.649062,55.049532],[-159.650859,55.06579],[-159.63541,55.116654],[-159.616961,55.127666],[-159.586075,55.157652],[-159.573144,55.187562],[-159.521096,55.253393],[-159.519196,55.253693],[-159.503196,55.234993],[-159.50527,55.222269],[-159.51235,55.208353],[-159.533457,55.184761]]],[[[-161.718614,55.154166],[-161.697097,55.137133],[-161.678389,55.131747],[-161.663618,55.13026],[-161.651563,55.130916],[-161.608634,55.116906],[-161.576643,55.103831],[-161.570523,55.100493],[-161.549901,55.082564],[-161.548924,55.080115],[-161.550357,55.065734],[-161.557315,55.061193],[-161.565036,55.058874],[-161.582584,55.058224],[-161.591069,55.060818],[-161.606359,55.070264],[-161.606482,55.074208],[-161.598303,55.081341],[-161.596951,55.086584],[-161.602514,55.098267],[-161.615867,55.104388],[-161.632391,55.104896],[-161.654918,55.103244],[-161.674539,55.095912],[-161.678537,55.092829],[-161.678171,55.087741],[-161.690346,55.0785],[-161.737922,55.054054],[-161.764169,55.059509],[-161.791606,55.077307],[-161.814984,55.098639],[-161.816482,55.111319],[-161.819869,55.113965],[-161.851152,55.126378],[-161.862504,55.127598],[-161.886278,55.126933],[-161.897846,55.135768],[-161.900685,55.142139],[-161.888936,55.160724],[-161.850057,55.17526],[-161.82784,55.178473],[-161.73781,55.161935],[-161.718614,55.154166]]],[[[-160.506927,55.32773],[-160.528864,55.343501],[-160.534943,55.343537],[-160.564427,55.332504],[-160.57969,55.314292],[-160.580668,55.307196],[-160.580088,55.302503],[-160.565929,55.273137],[-160.550759,55.264302],[-160.527617,55.256374],[-160.486174,55.193617],[-160.486511,55.181951],[-160.496306,55.166399],[-160.525226,55.129871],[-160.655577,55.160261],[-160.675871,55.173622],[-160.688372,55.195588],[-160.690293,55.210474],[-160.756587,55.195143],[-160.767393,55.185399],[-160.765229,55.176716],[-160.794198,55.134399],[-160.806009,55.12567],[-160.821381,55.117851],[-160.824468,55.120153],[-160.815862,55.141556],[-160.807468,55.155579],[-160.807558,55.168161],[-160.819487,55.187457],[-160.841917,55.20444],[-160.841221,55.293957],[-160.856621,55.318488],[-160.840251,55.339777],[-160.797147,55.381521],[-160.7778,55.388639],[-160.710298,55.403075],[-160.687442,55.402198],[-160.665927,55.399025],[-160.649234,55.38878],[-160.646214,55.383142],[-160.646156,55.357689],[-160.651011,55.34365],[-160.614256,55.348019],[-160.572716,55.388978],[-160.567384,55.390078],[-160.545227,55.387911],[-160.517513,55.379378],[-160.522063,55.374369],[-160.522399,55.370371],[-160.522307,55.364367],[-160.518955,55.361552],[-160.425658,55.338883],[-160.408614,55.341677],[-160.40335,55.346299],[-160.361758,55.36323],[-160.344369,55.362962],[-160.333692,55.360139],[-160.326463,55.353189],[-160.317665,55.338533],[-160.30655,55.303275],[-160.330722,55.261045],[-160.341217,55.251799],[-160.372603,55.25991],[-160.378887,55.266692],[-160.380472,55.272803],[-160.390421,55.286576],[-160.441896,55.298264],[-160.449799,55.297081],[-160.457765,55.291893],[-160.468262,55.288925],[-160.475493,55.28923],[-160.481536,55.291779],[-160.518148,55.309102],[-160.526945,55.319044],[-160.506927,55.32773]]],[[[-160.21178,55.455862],[-160.137032,55.450709],[-160.141834,55.387154],[-160.142505,55.383491],[-160.147993,55.377576],[-160.154038,55.377518],[-160.20361,55.391739],[-160.27997,55.395905],[-160.308921,55.393174],[-160.321132,55.393677],[-160.339858,55.409692],[-160.349526,55.420477],[-160.347609,55.426187],[-160.323237,55.444633],[-160.266834,55.462789],[-160.260565,55.463674],[-160.227504,55.46034],[-160.21178,55.455862]]],[[[-165.790523,54.171758],[-165.747893,54.161297],[-165.742613,54.158352],[-165.732602,54.148121],[-165.714198,54.120815],[-165.667323,54.132123],[-165.661379,54.130935],[-165.655573,54.1191],[-165.671477,54.096235],[-165.767173,54.065935],[-165.810747,54.074764],[-165.875129,54.03642],[-165.896308,54.055714],[-165.897261,54.060634],[-165.901649,54.06287],[-165.916235,54.065708],[-165.930242,54.066554],[-165.984415,54.061722],[-166.019861,54.051441],[-166.027733,54.045917],[-166.046438,54.044186],[-166.098255,54.103538],[-166.112242,54.122528],[-166.101402,54.144148],[-166.082028,54.175184],[-166.002465,54.213629],[-165.9832,54.221175],[-165.94463,54.220855],[-165.873076,54.216455],[-165.868192,54.214884],[-165.86514,54.21216],[-165.865872,54.200014],[-165.871973,54.189783],[-165.880456,54.183648],[-165.868076,54.168731],[-165.863518,54.166162],[-165.837274,54.161028],[-165.832421,54.161333],[-165.825159,54.164499],[-165.797147,54.183246],[-165.793781,54.183433],[-165.792569,54.181605],[-165.790523,54.171758]]],[[[-165.271048,54.095665],[-165.267012,54.095467],[-165.234364,54.065423],[-165.235149,54.062767],[-165.24583,54.05611],[-165.324415,54.063907],[-165.336836,54.070126],[-165.365768,54.073317],[-165.458179,54.066313],[-165.482747,54.072218],[-165.483373,54.075036],[-165.468221,54.079641],[-165.438972,54.084136],[-165.322268,54.094634],[-165.271048,54.095665]]],[[[-164.976199,54.134595],[-164.937766,54.136682],[-164.921307,54.128569],[-164.919689,54.11608],[-164.921464,54.111083],[-164.953165,54.078056],[-164.960581,54.076026],[-165.044322,54.066629],[-165.203413,54.087752],[-165.212264,54.090158],[-165.220871,54.101574],[-165.198746,54.116474],[-165.140978,54.131079],[-165.088486,54.128005],[-165.067428,54.123174],[-165.050155,54.121708],[-165.023065,54.121919],[-165.00791,54.134934],[-164.976199,54.134595]]],[[[-165.523466,54.299895],[-165.502775,54.299469],[-165.478452,54.295333],[-165.47775,54.283707],[-165.479981,54.281838],[-165.5137,54.274086],[-165.557581,54.254138],[-165.558835,54.250763],[-165.55795,54.246826],[-165.553251,54.239601],[-165.512782,54.212929],[-165.496279,54.210938],[-165.478816,54.21331],[-165.405377,54.212837],[-165.391441,54.204253],[-165.383719,54.196731],[-165.399985,54.177741],[-165.412925,54.179221],[-165.422356,54.182799],[-165.47619,54.182701],[-165.481317,54.179962],[-165.536004,54.129606],[-165.549217,54.112196],[-165.565422,54.108122],[-165.575645,54.108618],[-165.613214,54.120908],[-165.629725,54.132558],[-165.637081,54.199436],[-165.621854,54.208105],[-165.593656,54.218375],[-165.585782,54.223067],[-165.579801,54.229575],[-165.587157,54.238166],[-165.595732,54.242713],[-165.612082,54.246537],[-165.615629,54.244834],[-165.625609,54.233756],[-165.640013,54.229673],[-165.669383,54.229036],[-165.681458,54.236914],[-165.685823,54.243406],[-165.684114,54.249907],[-165.675447,54.264639],[-165.636383,54.297567],[-165.62555,54.298964],[-165.61557,54.297445],[-165.605225,54.294219],[-165.586509,54.284361],[-165.523466,54.299895]]],[[[-162.801865,54.48944],[-162.79629,54.492254],[-162.728415,54.475354],[-162.588883,54.450064],[-162.556667,54.424621],[-162.552718,54.416113],[-162.551618,54.392217],[-162.562726,54.38284],[-162.611891,54.368077],[-162.722797,54.40034],[-162.760396,54.373254],[-162.759472,54.371116],[-162.781239,54.375085],[-162.86005,54.425452],[-162.827621,54.490859],[-162.801865,54.48944]]],[[[-175.760259,51.924943],[-175.760259,51.917329],[-175.815462,51.921136],[-175.864003,51.943979],[-175.87828,51.963967],[-175.948712,51.975388],[-175.954423,51.983002],[-175.912544,51.995376],[-175.81451,51.994424],[-175.807848,51.989665],[-175.794523,51.958256],[-175.785005,51.93922],[-175.760259,51.924943]]],[[[-178.681285,51.608951],[-178.638455,51.611806],[-178.618467,51.609903],[-178.597528,51.60324],[-178.576589,51.606096],[-178.567071,51.598481],[-178.576589,51.583253],[-178.591817,51.583253],[-178.621322,51.588964],[-178.642262,51.586108],[-178.673671,51.588964],[-178.68414,51.602289],[-178.681285,51.608951]]],[[[-178.857365,51.57659],[-178.828811,51.575639],[-178.761235,51.562314],[-178.735537,51.550892],[-178.734585,51.542326],[-178.796451,51.541374],[-178.825956,51.547085],[-178.857365,51.572783],[-178.857365,51.57659]]],[[[-170.286318,57.128169],[-170.290793,57.145052],[-170.303963,57.15491],[-170.32484,57.156769],[-170.359817,57.156118],[-170.421867,57.161202],[-170.423548,57.169327],[-170.42041,57.19176],[-170.418919,57.192844],[-170.402772,57.201933],[-170.390121,57.206248],[-170.33188,57.217488],[-170.311707,57.219122],[-170.291916,57.212056],[-170.267664,57.210649],[-170.239557,57.214658],[-170.161647,57.229656],[-170.150813,57.223168],[-170.170848,57.1811],[-170.286318,57.128169]]],[[[-179.069176,51.262874],[-179.07232,51.250963],[-179.097619,51.226135],[-179.126856,51.219862],[-179.136196,51.229216],[-179.14734,51.276781],[-179.137239,51.286006],[-179.113495,51.300801],[-179.094665,51.301229],[-179.075466,51.284619],[-179.069176,51.262874]]],[[[-178.954338,51.339247],[-178.95446,51.332731],[-178.965171,51.322682],[-178.979179,51.31438],[-178.987236,51.311038],[-178.990684,51.311648],[-178.992094,51.381311],[-178.977782,51.398929],[-178.964323,51.402492],[-178.926874,51.38364],[-178.914207,51.363992],[-178.908883,51.340582],[-178.954338,51.339247]]],[[[178.785825,51.633434],[178.804128,51.635034],[178.864937,51.623133],[178.90391,51.614914],[178.919136,51.605546],[178.917608,51.594949],[178.918827,51.588337],[178.920826,51.586137],[179.002896,51.552486],[179.076803,51.498518],[179.101442,51.485497],[179.143656,51.469442],[179.164531,51.464635],[179.178081,51.464812],[179.191082,51.462935],[179.218031,51.43894],[179.226883,51.423941],[179.23027,51.413419],[179.236253,51.409606],[179.263934,51.405838],[179.33498,51.404933],[179.386221,51.404401],[179.400809,51.400557],[179.462765,51.376176],[179.467581,51.371629],[179.450191,51.365142],[179.399469,51.359433],[179.389855,51.361004],[179.384679,51.36421],[179.366788,51.371837],[179.261618,51.357688],[179.220471,51.376667],[179.218185,51.387377],[179.2065,51.393284],[179.097477,51.44058],[179.060354,51.454875],[179.034532,51.47853],[179.013516,51.49728],[178.969019,51.531237],[178.951626,51.541963],[178.843631,51.578642],[178.831825,51.580534],[178.795194,51.575429],[178.785061,51.571866],[178.767787,51.576123],[178.706047,51.593182],[178.634021,51.623981],[178.631609,51.625782],[178.625536,51.637303],[178.645511,51.657634],[178.664013,51.661935],[178.675528,51.659064],[178.681998,51.649946],[178.689903,51.644422],[178.738019,51.632734],[178.785825,51.633434]]],[[[-176.762478,51.867878],[-176.797799,51.908512],[-176.810433,51.927089],[-176.789558,51.957211],[-176.774023,51.965895],[-176.736549,51.969808],[-176.72078,51.969518],[-176.698771,51.964454],[-176.63051,51.970352],[-176.627155,51.978294],[-176.603598,51.997056],[-176.589955,52.002741],[-176.579975,52.003238],[-176.560565,51.996732],[-176.554398,51.99066],[-176.544867,51.927245],[-176.554661,51.909834],[-176.558376,51.908725],[-176.566275,51.914702],[-176.568916,51.9213],[-176.565559,51.925862],[-176.569683,51.951324],[-176.575635,51.952641],[-176.578931,51.951328],[-176.582927,51.947964],[-176.616095,51.903013],[-176.620015,51.89563],[-176.623452,51.883205],[-176.625463,51.859824],[-176.576381,51.842275],[-176.543309,51.838624],[-176.517599,51.839557],[-176.507989,51.84597],[-176.398062,51.867842],[-176.311573,51.872463],[-176.290728,51.872136],[-176.287188,51.870313],[-176.281694,51.863919],[-176.26649,51.817716],[-176.268243,51.785498],[-176.273792,51.772019],[-176.289921,51.741678],[-176.343756,51.73152],[-176.474132,51.747208],[-176.497054,51.761426],[-176.509655,51.763326],[-176.51933,51.758482],[-176.582933,51.691822],[-176.608482,51.693349],[-176.70266,51.685404],[-176.713062,51.68333],[-176.735912,51.662154],[-176.751817,51.635017],[-176.801675,51.613488],[-176.809,51.616235],[-176.823682,51.634011],[-176.826252,51.640932],[-176.814437,51.66025],[-176.837514,51.682745],[-176.863062,51.684921],[-176.903184,51.635648],[-176.930952,51.59247],[-176.938917,51.590982],[-176.954147,51.592568],[-176.984331,51.602135],[-176.987383,51.606872],[-176.991322,51.629052],[-176.984489,51.657411],[-176.976249,51.6664],[-176.950128,51.686719],[-176.930872,51.697195],[-176.906884,51.696639],[-176.896966,51.700424],[-176.873924,51.724071],[-176.870997,51.72941],[-176.8707,51.731969],[-176.882018,51.766628],[-176.90503,51.771532],[-176.918065,51.788003],[-176.917088,51.797016],[-176.911016,51.807597],[-176.904302,51.811772],[-176.856205,51.818366],[-176.790163,51.817217],[-176.762478,51.867878]]],[[[-177.800647,51.778294],[-177.796308,51.770831],[-177.813886,51.75428],[-177.842267,51.73248],[-177.842419,51.722645],[-177.838054,51.717198],[-177.827524,51.712086],[-177.826997,51.705972],[-177.841411,51.68956],[-177.856332,51.681015],[-177.86796,51.679374],[-177.876811,51.681411],[-177.887768,51.689483],[-177.899416,51.692557],[-177.902693,51.691581],[-177.918806,51.67439],[-177.928907,51.655368],[-177.929023,51.65052],[-177.92564,51.642481],[-177.915445,51.630684],[-177.903083,51.606497],[-177.906072,51.59767],[-177.909185,51.596671],[-177.930123,51.601499],[-177.944957,51.611539],[-177.950665,51.620001],[-177.953024,51.638175],[-177.957443,51.647149],[-177.963852,51.650231],[-178.069823,51.670676],[-178.086304,51.663618],[-178.109378,51.670461],[-178.117864,51.677831],[-178.104285,51.701539],[-178.021818,51.706906],[-177.962426,51.719772],[-177.956443,51.722862],[-177.947777,51.740381],[-177.946649,51.752681],[-177.950283,51.765682],[-177.956998,51.772541],[-177.965031,51.778162],[-177.995272,51.781535],[-178.039344,51.778925],[-178.059335,51.786829],[-178.08064,51.798739],[-178.086074,51.808047],[-178.172666,51.839985],[-178.215124,51.857801],[-178.224129,51.864881],[-178.227822,51.873526],[-178.224618,51.880675],[-178.220742,51.884841],[-178.19709,51.905464],[-178.175023,51.911584],[-178.145326,51.917216],[-178.124786,51.920093],[-178.090632,51.919399],[-178.070548,51.917408],[-178.061147,51.912539],[-178.002345,51.909968],[-177.963723,51.917919],[-177.952094,51.915348],[-177.913269,51.879748],[-177.924315,51.857522],[-177.921569,51.853883],[-177.859763,51.826944],[-177.852285,51.826045],[-177.759641,51.831195],[-177.691714,51.843975],[-177.615311,51.85508],[-177.614511,51.853033],[-177.625008,51.837529],[-177.649208,51.820727],[-177.685555,51.812745],[-177.692118,51.813897],[-177.735909,51.807991],[-177.797719,51.793297],[-177.800647,51.778294]]],[[[-177.360408,51.727533],[-177.39076,51.733525],[-177.417678,51.730875],[-177.444717,51.725419],[-177.463577,51.713943],[-177.490005,51.705106],[-177.540393,51.698755],[-177.570973,51.69822],[-177.608055,51.705184],[-177.616753,51.703978],[-177.631523,51.696844],[-177.640524,51.672084],[-177.635883,51.659541],[-177.651386,51.653604],[-177.670951,51.66398],[-177.707802,51.703268],[-177.705261,51.70724],[-177.697662,51.713123],[-177.639983,51.736061],[-177.597498,51.726464],[-177.555197,51.721125],[-177.536977,51.72147],[-177.515591,51.724978],[-177.497974,51.738624],[-177.4612,51.750718],[-177.281479,51.784075],[-177.238175,51.79852],[-177.21193,51.812331],[-177.205675,51.820639],[-177.200825,51.844605],[-177.19912,51.883142],[-177.199764,51.924816],[-177.197506,51.931339],[-177.191399,51.938001],[-177.181271,51.943167],[-177.154842,51.944381],[-177.099266,51.936119],[-177.054768,51.908944],[-177.04509,51.898605],[-177.08101,51.855497],[-177.120377,51.839687],[-177.128617,51.833835],[-177.136977,51.814493],[-177.13096,51.762772],[-177.120581,51.739815],[-177.122808,51.729355],[-177.145675,51.707294],[-177.261631,51.680846],[-177.275121,51.68051],[-177.296369,51.684245],[-177.316501,51.690353],[-177.317888,51.693447],[-177.317939,51.696866],[-177.316353,51.700811],[-177.322977,51.711416],[-177.342784,51.721395],[-177.360408,51.727533]]],[[[-178.792409,51.746071],[-178.808157,51.747078],[-178.815757,51.749176],[-178.873024,51.782623],[-178.870118,51.795261],[-178.858248,51.820966],[-178.828645,51.83615],[-178.819459,51.839575],[-178.811249,51.839018],[-178.788541,51.832602],[-178.767695,51.823179],[-178.748283,51.809942],[-178.733355,51.783947],[-178.750414,51.757752],[-178.776661,51.748612],[-178.792409,51.746071]]],[[[178.380741,51.763907],[178.367465,51.772758],[178.36368,51.773948],[178.339082,51.771529],[178.335664,51.769926],[178.318757,51.772322],[178.308563,51.775701],[178.304892,51.777434],[178.246209,51.817078],[178.236931,51.828209],[178.305568,51.821748],[178.310298,51.819993],[178.319389,51.815737],[178.33219,51.809037],[178.335631,51.807031],[178.372348,51.774146],[178.380741,51.763907]]],[[[-175.971562,51.888631],[-175.957546,51.893455],[-175.953251,51.881376],[-175.954287,51.868381],[-175.963041,51.846253],[-175.983742,51.852352],[-176.047892,51.846309],[-176.10107,51.810609],[-176.123965,51.802745],[-176.139622,51.802386],[-176.183142,51.807099],[-176.216957,51.812714],[-176.235544,51.823157],[-176.236246,51.825965],[-176.217544,51.874627],[-176.206069,51.883089],[-176.173871,51.882449],[-176.169751,51.880138],[-176.168775,51.87733],[-176.161052,51.869685],[-176.140908,51.859562],[-176.099137,51.855533],[-176.080442,51.858567],[-176.072225,51.867938],[-176.073431,51.870312],[-176.078865,51.874778],[-176.115489,51.887015],[-176.111452,51.889748],[-176.065288,51.902986],[-176.020182,51.911373],[-175.99265,51.912655],[-175.984993,51.908445],[-175.971562,51.888631]]],[[[177.601645,52.016377],[177.577226,52.00497],[177.572068,52.001812],[177.538223,51.978897],[177.532729,51.97007],[177.539627,51.959418],[177.543534,51.956175],[177.571796,51.95159],[177.579823,51.950836],[177.607535,51.95472],[177.611553,51.950829],[177.610618,51.936713],[177.606529,51.925069],[177.601005,51.922254],[177.560513,51.916364],[177.484313,51.923413],[177.409536,51.930821],[177.373934,51.91976],[177.348816,51.904469],[177.326781,51.873636],[177.327179,51.871049],[177.334229,51.866769],[177.334017,51.844444],[177.321687,51.828543],[177.311768,51.825971],[177.303314,51.829458],[177.294035,51.837301],[177.296018,51.839866],[177.293424,51.84561],[177.27337,51.857123],[177.235523,51.87326],[177.212422,51.876431],[177.203996,51.880531],[177.200423,51.894746],[177.203323,51.896562],[177.233904,51.909624],[177.272695,51.920054],[177.291312,51.91943],[177.341518,51.955016],[177.345577,51.963005],[177.413484,51.979724],[177.483712,51.984877],[177.497441,51.993328],[177.503441,52.008829],[177.505747,52.016374],[177.505319,52.038768],[177.545604,52.101091],[177.563396,52.121959],[177.602673,52.13732],[177.661607,52.112746],[177.675952,52.092167],[177.667256,52.076274],[177.659451,52.069439],[177.653614,52.070323],[177.641864,52.068316],[177.632555,52.064844],[177.609087,52.028518],[177.601645,52.016377]]],[[[179.758993,51.946595],[179.751525,51.923933],[179.743012,51.911749],[179.734772,51.907606],[179.649484,51.87367],[179.639077,51.871931],[179.614364,51.871772],[179.521868,51.896765],[179.484634,51.921268],[179.475569,51.937456],[179.482464,51.982834],[179.486565,51.983959],[179.515025,51.983751],[179.526743,51.981164],[179.539223,51.985178],[179.571049,52.011111],[179.582857,52.016841],[179.622283,52.024975],[179.647641,52.026259],[179.663327,52.022941],[179.704433,52.004877],[179.773922,51.970693],[179.77847,51.962217],[179.777158,51.9587],[179.767251,51.947572],[179.758993,51.946595]]],[[[178.446964,51.978222],[178.463385,51.987849],[178.478586,51.987549],[178.552612,51.973968],[178.570619,51.968064],[178.591597,51.952652],[178.590245,51.945457],[178.567447,51.925939],[178.539395,51.903246],[178.518861,51.899759],[178.502493,51.899644],[178.484831,51.909898],[178.468045,51.931635],[178.454664,51.960501],[178.446964,51.978222]]],[[[-175.680144,51.96897],[-175.67264,51.972471],[-175.669707,51.972166],[-175.655056,51.966651],[-175.652493,51.964813],[-175.653194,51.961669],[-175.717436,51.933695],[-175.730011,51.933817],[-175.747438,51.9462],[-175.747836,51.950655],[-175.742618,51.966632],[-175.735477,51.973331],[-175.726245,51.975969],[-175.680144,51.96897]]],[[[-176.018089,52.020099],[-176.044001,52.009331],[-176.032156,51.993667],[-176.027546,51.99163],[-176.021839,51.984848],[-176.022663,51.980621],[-176.027667,51.975112],[-176.057085,51.967825],[-176.079181,51.968884],[-176.180356,52.000426],[-176.185086,52.005705],[-176.201935,52.040212],[-176.211855,52.065533],[-176.205324,52.076246],[-176.173155,52.102314],[-176.143914,52.116097],[-176.058103,52.106467],[-175.988653,52.035509],[-175.999044,52.025385],[-176.018089,52.020099]]],[[[178.1176,52.048612],[178.119144,52.051659],[178.141695,52.051034],[178.175781,52.036777],[178.179962,52.033247],[178.190963,52.003546],[178.174473,51.991684],[178.132547,51.986982],[178.105874,51.998357],[178.10273,52.003927],[178.09461,52.033294],[178.107266,52.045744],[178.1176,52.048612]]],[[[-174.301818,52.278949],[-174.323471,52.28399],[-174.346089,52.285036],[-174.349404,52.281336],[-174.368754,52.280405],[-174.408277,52.289872],[-174.451554,52.305557],[-174.455979,52.31369],[-174.45366,52.319367],[-174.443132,52.325654],[-174.432846,52.328004],[-174.384199,52.321139],[-174.367047,52.314105],[-174.358624,52.31419],[-174.340679,52.322284],[-174.331065,52.328465],[-174.3177,52.344869],[-174.320813,52.355726],[-174.330494,52.366439],[-174.329818,52.373548],[-174.324935,52.378095],[-174.185347,52.417788],[-174.155774,52.416041],[-174.068248,52.390331],[-174.016822,52.348537],[-173.989415,52.325275],[-173.985203,52.3176],[-173.986421,52.298565],[-173.987917,52.295345],[-174.036222,52.245011],[-174.060451,52.225326],[-174.084042,52.223677],[-174.106533,52.228392],[-174.177679,52.233638],[-174.182857,52.232762],[-174.198624,52.219244],[-174.200389,52.211861],[-174.196836,52.195856],[-174.1901,52.19032],[-174.175044,52.181835],[-174.135217,52.168514],[-174.090169,52.139119],[-174.082814,52.132069],[-174.080677,52.128026],[-174.0891,52.107251],[-174.09447,52.104274],[-174.102161,52.104534],[-174.109089,52.113117],[-174.11437,52.117107],[-174.142262,52.125452],[-174.206353,52.116554],[-174.218469,52.10488],[-174.302947,52.111325],[-174.334424,52.115198],[-174.348463,52.109245],[-174.365667,52.097238],[-174.382661,52.081658],[-174.411255,52.048757],[-174.45276,52.061047],[-174.507816,52.054955],[-174.508822,52.048623],[-174.556278,52.036733],[-174.580676,52.040453],[-174.593635,52.045247],[-174.615943,52.032665],[-174.71461,52.009863],[-174.736592,52.007308],[-174.783189,52.032293],[-174.885554,52.043001],[-174.967907,52.037203],[-175.000792,52.028354],[-175.014748,52.020584],[-175.014807,52.007],[-175.09551,52.000797],[-175.104889,52.003548],[-175.155673,52.011512],[-175.27485,52.018619],[-175.292821,52.01879],[-175.300639,52.01497],[-175.302683,52.011499],[-175.323322,52.007488],[-175.341624,52.021588],[-175.32707,52.027032],[-175.1959,52.051407],[-175.156744,52.057642],[-175.132635,52.059223],[-175.117115,52.054499],[-175.11768,52.053234],[-175.113721,52.046308],[-175.092867,52.034794],[-175.044344,52.057519],[-174.995237,52.061417],[-174.992309,52.058603],[-174.980497,52.061471],[-174.937497,52.078334],[-174.922299,52.09158],[-174.927549,52.101415],[-174.920042,52.109274],[-174.905409,52.116509],[-174.866725,52.103172],[-174.839715,52.091338],[-174.786809,52.091324],[-174.656294,52.107962],[-174.604871,52.122124],[-174.568402,52.138426],[-174.55708,52.153637],[-174.55467,52.160405],[-174.527081,52.17472],[-174.49688,52.179151],[-174.465189,52.180711],[-174.455707,52.176802],[-174.424054,52.169053],[-174.41529,52.169376],[-174.404588,52.18133],[-174.405464,52.18356],[-174.457804,52.202831],[-174.462962,52.213031],[-174.453746,52.218823],[-174.400139,52.219053],[-174.360631,52.212994],[-174.328599,52.211647],[-174.299044,52.21467],[-174.249848,52.243694],[-174.255832,52.274152],[-174.301818,52.278949]]],[[[-173.602446,52.153773],[-173.59056,52.145393],[-173.514171,52.108348],[-173.49702,52.103641],[-173.467877,52.116423],[-173.375229,52.108228],[-173.375595,52.106343],[-173.372574,52.10275],[-173.357498,52.096129],[-173.238295,52.100443],[-173.173206,52.109136],[-173.124504,52.10942],[-173.119255,52.107628],[-173.107373,52.09928],[-173.06643,52.09633],[-173.019588,52.097881],[-172.958523,52.093648],[-172.960751,52.087018],[-173.033166,52.074611],[-173.04754,52.073329],[-173.107933,52.078828],[-173.206837,52.063532],[-173.313705,52.058701],[-173.424178,52.046298],[-173.511915,52.031278],[-173.548385,52.029308],[-173.612014,52.051148],[-173.718,52.063069],[-173.799574,52.05365],[-173.816999,52.048538],[-173.820692,52.043312],[-173.831555,52.040763],[-173.901075,52.049435],[-173.937239,52.057513],[-173.935561,52.064731],[-173.97133,52.099428],[-173.992274,52.10059],[-174.001866,52.097641],[-174.011338,52.098862],[-174.035082,52.112952],[-174.04675,52.122403],[-174.052296,52.1304],[-174.048451,52.132911],[-174.036854,52.135878],[-173.984245,52.127855],[-173.890733,52.12547],[-173.830906,52.11045],[-173.824087,52.105892],[-173.818277,52.105363],[-173.802339,52.10639],[-173.721266,52.130207],[-173.654404,52.146192],[-173.624771,52.152213],[-173.602446,52.153773]]],[[[-172.633153,52.266215],[-172.620261,52.298751],[-172.574154,52.345323],[-172.568051,52.34942],[-172.47461,52.383763],[-172.448182,52.391439],[-172.405243,52.389442],[-172.326444,52.366472],[-172.311427,52.356456],[-172.302393,52.342357],[-172.301445,52.329951],[-172.313133,52.320697],[-172.414419,52.27674],[-172.528095,52.254336],[-172.608935,52.253014],[-172.616839,52.255317],[-172.633153,52.266215]]],[[[175.911286,52.334831],[175.90277,52.336823],[175.890684,52.344514],[175.873317,52.361138],[175.874353,52.371004],[175.906734,52.375651],[175.95056,52.368357],[175.966521,52.359728],[175.94418,52.336437],[175.911286,52.334831]]],[[[173.587554,52.476785],[173.623883,52.506948],[173.680586,52.512878],[173.73627,52.512422],[173.769503,52.512072],[173.772799,52.509905],[173.772402,52.506877],[173.754979,52.496127],[173.739385,52.493257],[173.707741,52.477377],[173.695719,52.458935],[173.691601,52.445935],[173.69386,52.438694],[173.702252,52.434804],[173.704299,52.432192],[173.712323,52.421033],[173.719161,52.397703],[173.725696,52.356579],[173.651293,52.35637],[173.644793,52.357598],[173.640825,52.359428],[173.606767,52.378249],[173.595397,52.391893],[173.588794,52.400973],[173.559891,52.401165],[173.543778,52.392666],[173.512162,52.385035],[173.483843,52.383485],[173.465442,52.384621],[173.455586,52.389656],[173.3955,52.402647],[173.385704,52.404072],[173.356927,52.403873],[173.356103,52.405563],[173.380058,52.431843],[173.440111,52.453664],[173.445696,52.455031],[173.467698,52.444473],[173.476243,52.441909],[173.501022,52.440926],[173.525161,52.448137],[173.530105,52.449968],[173.550002,52.467067],[173.549605,52.469989],[173.545302,52.476],[173.555739,52.479472],[173.587554,52.476785]]],[[[-171.294554,52.451105],[-171.299348,52.448716],[-171.30417,52.449952],[-171.313083,52.472932],[-171.312658,52.493502],[-171.3075,52.501514],[-171.291387,52.514813],[-171.277165,52.522634],[-171.252053,52.529954],[-171.196013,52.500106],[-171.194639,52.498039],[-171.208919,52.469023],[-171.214565,52.4633],[-171.236843,52.450527],[-171.252316,52.449466],[-171.294554,52.451105]]],[[[-170.841936,52.558171],[-170.833364,52.599985],[-170.820641,52.633091],[-170.817943,52.636275],[-170.727717,52.679978],[-170.671545,52.698082],[-170.633753,52.697469],[-170.579913,52.682029],[-170.562734,52.674785],[-170.559523,52.667907],[-170.557324,52.652105],[-170.56361,52.640706],[-170.603862,52.601732],[-170.635419,52.595711],[-170.659041,52.593811],[-170.665266,52.59526],[-170.668075,52.600677],[-170.674453,52.603385],[-170.683854,52.602485],[-170.696488,52.598364],[-170.735824,52.580823],[-170.767378,52.558254],[-170.777143,52.546664],[-170.788495,52.54024],[-170.841936,52.558171]]],[[[174.069186,52.734888],[174.092073,52.74206],[174.09665,52.743485],[174.13315,52.733786],[174.145326,52.72855],[174.155764,52.715375],[174.159252,52.707387],[174.158146,52.706059],[174.109409,52.70856],[174.071842,52.718295],[174.066195,52.731042],[174.069186,52.734888]]],[[[-170.170683,52.784918],[-170.128714,52.787425],[-170.061868,52.773525],[-170.053443,52.769076],[-170.052922,52.758745],[-170.055363,52.745887],[-170.070287,52.724301],[-170.077734,52.720416],[-170.114087,52.716172],[-170.170646,52.717359],[-170.184564,52.721937],[-170.185684,52.723007],[-170.170683,52.784918]]],[[[174.004827,52.719857],[173.9726,52.729423],[173.96088,52.738136],[173.952793,52.747885],[173.954075,52.75141],[173.983432,52.749053],[174.003651,52.744283],[174.021702,52.730286],[174.004827,52.719857]]],[[[173.932926,52.746649],[173.930912,52.750227],[173.925271,52.752433],[173.894753,52.75078],[173.875585,52.761898],[173.861653,52.773579],[173.867436,52.775128],[173.881412,52.775028],[173.897452,52.77178],[173.931553,52.758574],[173.940037,52.75186],[173.932926,52.746649]]],[[[172.763366,52.823656],[172.76739,52.848372],[172.766693,52.862669],[172.754236,52.87749],[172.640372,52.925441],[172.585075,52.921327],[172.5487,52.914322],[172.512996,52.905181],[172.469022,52.911337],[172.461667,52.92716],[172.629077,53.001324],[172.643266,53.004979],[172.746566,53.01075],[173.107249,52.993228],[173.121988,52.990352],[173.13151,52.987521],[173.159648,52.974163],[173.172406,52.960545],[173.211752,52.939489],[173.235265,52.943628],[173.251326,52.944362],[173.295399,52.926987],[173.421682,52.845477],[173.42767,52.830763],[173.423819,52.828799],[173.413016,52.827891],[173.302331,52.823286],[173.284417,52.827933],[173.22907,52.856156],[173.224051,52.856403],[173.204948,52.848911],[173.187952,52.8315],[173.173543,52.804378],[173.166899,52.795229],[173.142678,52.786254],[173.134521,52.784357],[173.11856,52.78444],[172.998472,52.796979],[172.903628,52.761667],[172.809387,52.78929],[172.763366,52.823656]]],[[[-169.943521,52.861099],[-169.905631,52.85324],[-169.860214,52.858377],[-169.818139,52.878446],[-169.773504,52.89445],[-169.749177,52.893269],[-169.704736,52.886272],[-169.666512,52.864349],[-169.683482,52.826618],[-169.704105,52.793938],[-169.750136,52.790576],[-169.838232,52.81728],[-169.879866,52.816088],[-169.886671,52.808563],[-169.897078,52.802131],[-169.927446,52.792675],[-169.951498,52.788615],[-169.962883,52.789882],[-169.995422,52.804676],[-170.012487,52.831161],[-170.004218,52.846743],[-169.990149,52.856266],[-169.975345,52.858884],[-169.943521,52.861099]]],[[[-168.211705,53.256184],[-168.226915,53.254822],[-168.270744,53.242811],[-168.296229,53.227235],[-168.312376,53.215231],[-168.341678,53.185911],[-168.344468,53.155215],[-168.37315,53.128891],[-168.392379,53.123609],[-168.412522,53.110683],[-168.433734,53.093934],[-168.442859,53.085562],[-168.451161,53.075131],[-168.457103,53.055839],[-168.49749,53.035403],[-168.527404,53.028588],[-168.546059,53.02958],[-168.553195,53.033296],[-168.578895,53.029915],[-168.587808,53.027175],[-168.613964,53.008776],[-168.625257,52.998214],[-168.688468,52.9664],[-168.741851,52.951442],[-168.808854,52.926102],[-168.907003,52.884006],[-169.041338,52.839348],[-169.102465,52.824349],[-169.054243,52.863266],[-169.038767,52.869662],[-168.992403,52.87344],[-168.97171,52.878028],[-168.958983,52.886048],[-168.861078,52.968046],[-168.785236,53.045038],[-168.763689,53.070961],[-168.759691,53.081461],[-168.768544,53.093684],[-168.776176,53.097766],[-168.789424,53.10097],[-168.80203,53.108226],[-168.804901,53.120015],[-168.799469,53.143794],[-168.792327,53.15572],[-168.788756,53.160749],[-168.763331,53.182812],[-168.617143,53.260985],[-168.539398,53.25167],[-168.524991,53.252311],[-168.501365,53.25734],[-168.490957,53.264009],[-168.445083,53.26533],[-168.412851,53.257859],[-168.366519,53.252024],[-168.361758,53.252253],[-168.343994,53.26215],[-168.365388,53.309105],[-168.371218,53.316575],[-168.375674,53.318291],[-168.406531,53.346393],[-168.386886,53.431496],[-168.342127,53.475992],[-168.315847,53.481729],[-168.295793,53.489062],[-168.239572,53.518491],[-168.238321,53.521902],[-168.200443,53.534079],[-168.14462,53.545342],[-168.004624,53.566053],[-167.981038,53.561714],[-167.962723,53.554069],[-167.960861,53.55255],[-167.965714,53.54344],[-167.965038,53.538913],[-167.938981,53.526907],[-167.901871,53.520508],[-167.888901,53.519691],[-167.816998,53.517947],[-167.796866,53.521113],[-167.791026,53.521076],[-167.789164,53.519329],[-167.786387,53.513896],[-167.784099,53.501048],[-167.788066,53.492411],[-167.808117,53.473861],[-167.843611,53.453893],[-167.853225,53.445469],[-167.858337,53.43791],[-167.856837,53.428609],[-167.851698,53.421236],[-167.8448,53.417497],[-167.83952,53.410325],[-167.839887,53.394432],[-167.842328,53.386489],[-167.852217,53.378294],[-167.872879,53.36736],[-167.878128,53.366902],[-167.959096,53.341788],[-167.988487,53.329578],[-168.009301,53.317263],[-168.03976,53.304276],[-168.158943,53.26771],[-168.211705,53.256184]]],[[[-169.996712,52.891475],[-169.999094,52.884034],[-170.002368,52.880239],[-170.015514,52.87026],[-170.050274,52.857433],[-170.095331,52.870851],[-170.113189,52.891078],[-170.112853,52.902043],[-170.092221,52.919387],[-170.083985,52.92364],[-170.04656,52.923853],[-170.020493,52.917171],[-170.002071,52.910043],[-169.995982,52.902378],[-169.996712,52.891475]]],[[[-169.721744,52.947117],[-169.741096,52.951512],[-169.758008,52.967246],[-169.760725,52.971556],[-169.76274,52.97805],[-169.745743,53.02147],[-169.742538,53.024072],[-169.698128,53.033779],[-169.680033,53.035075],[-169.66493,53.023973],[-169.663576,53.021258],[-169.666078,52.997068],[-169.698274,52.958267],[-169.721744,52.947117]]],[[[-166.728918,54.003111],[-166.67664,54.017419],[-166.644627,54.014495],[-166.636936,54.012],[-166.619754,54.001264],[-166.599947,53.983695],[-166.587393,53.959831],[-166.605438,53.955354],[-166.621979,53.953744],[-166.646786,53.923785],[-166.640466,53.912519],[-166.619003,53.893514],[-166.597182,53.88399],[-166.57509,53.879236],[-166.560546,53.878775],[-166.487847,53.895448],[-166.443699,53.909727],[-166.436526,53.916151],[-166.435153,53.920415],[-166.437083,53.955644],[-166.373689,54.01003],[-166.36746,54.008903],[-166.357117,54.002343],[-166.354614,53.999039],[-166.354341,53.995515],[-166.359925,53.977136],[-166.319895,53.960126],[-166.279407,53.982532],[-166.264519,53.97755],[-166.210964,53.933557],[-166.208767,53.92911],[-166.211207,53.912334],[-166.236513,53.881343],[-166.250935,53.876851],[-166.320004,53.869527],[-166.351999,53.858532],[-166.389196,53.832343],[-166.404896,53.809345],[-166.434846,53.798012],[-166.547438,53.749404],[-166.552078,53.728498],[-166.540531,53.715926],[-166.469112,53.735935],[-166.460324,53.745838],[-166.420471,53.762088],[-166.336768,53.78709],[-166.303201,53.791538],[-166.212603,53.817127],[-166.214312,53.82043],[-166.21233,53.827769],[-166.198751,53.8361],[-166.119922,53.855048],[-166.113037,53.853716],[-166.097565,53.84399],[-166.094147,53.8392],[-166.111317,53.776856],[-166.166703,53.733402],[-166.19906,53.727328],[-166.262974,53.70371],[-166.265182,53.698248],[-166.274896,53.687253],[-166.283267,53.684219],[-166.444909,53.640646],[-166.467583,53.646574],[-166.532639,53.630533],[-166.553983,53.623448],[-166.581011,53.530449],[-166.656234,53.487119],[-166.662276,53.485349],[-166.667921,53.486027],[-166.712475,53.498445],[-166.735039,53.50664],[-166.743054,53.51482],[-166.772655,53.496371],[-166.789062,53.4531],[-166.863119,53.443878],[-166.878087,53.429884],[-166.922674,53.441136],[-166.959082,53.455753],[-166.994329,53.429201],[-167.036104,53.449289],[-167.04821,53.448844],[-167.050025,53.433067],[-167.075386,53.424979],[-167.112008,53.416775],[-167.124277,53.425534],[-167.134134,53.426448],[-167.201432,53.3979],[-167.291831,53.364102],[-167.302982,53.336911],[-167.308126,53.33433],[-167.348653,53.333262],[-167.386984,53.340671],[-167.442804,53.321015],[-167.466304,53.295888],[-167.488215,53.269121],[-167.51547,53.267876],[-167.530884,53.275659],[-167.539247,53.277864],[-167.58918,53.288698],[-167.598428,53.288048],[-167.609903,53.2853],[-167.622173,53.250362],[-167.644179,53.250842],[-167.798984,53.284757],[-167.83509,53.29962],[-167.851511,53.308668],[-167.852333,53.315599],[-167.790928,53.33552],[-167.710446,53.381326],[-167.694484,53.388034],[-167.653113,53.392276],[-167.622089,53.385329],[-167.488252,53.420001],[-167.474457,53.431782],[-167.473328,53.438001],[-167.457366,53.442793],[-167.393985,53.439752],[-167.373527,53.432776],[-167.355624,53.424498],[-167.332792,53.433107],[-167.319143,53.451317],[-167.30129,53.466006],[-167.278827,53.478565],[-167.267902,53.478115],[-167.226182,53.468692],[-167.217606,53.465389],[-167.199966,53.463039],[-167.193801,53.467007],[-167.15852,53.503747],[-167.102305,53.515077],[-167.105816,53.540507],[-167.131239,53.547267],[-167.135695,53.551227],[-167.16164,53.605909],[-167.163196,53.613813],[-167.159808,53.617308],[-167.14043,53.626968],[-167.107836,53.633056],[-167.091377,53.633438],[-167.084579,53.626502],[-167.070082,53.619857],[-167.062187,53.620058],[-167.009635,53.635344],[-167.008671,53.64204],[-167.017863,53.648607],[-167.030011,53.653559],[-167.071823,53.66556],[-167.067674,53.687267],[-167.057695,53.698864],[-167.041245,53.707929],[-167.022385,53.715467],[-166.999282,53.71852],[-166.923324,53.719719],[-166.894976,53.717746],[-166.859022,53.674439],[-166.861769,53.659234],[-166.832725,53.657376],[-166.805874,53.665733],[-166.779991,53.719126],[-166.787318,53.734577],[-166.856491,53.747301],[-166.942766,53.769562],[-166.960681,53.776841],[-166.975635,53.775254],[-166.983294,53.771348],[-166.992846,53.762604],[-167.005778,53.755446],[-167.016863,53.754936],[-167.024981,53.757241],[-167.075859,53.786272],[-167.141966,53.826932],[-167.140992,53.866774],[-167.058168,53.929778],[-167.031252,53.945204],[-166.930452,53.976091],[-166.879488,53.988716],[-166.818635,53.993198],[-166.751681,54.01605],[-166.746095,54.016936],[-166.742587,54.015501],[-166.728918,54.003111]]],[[[-169.553937,56.608682],[-169.528659,56.612181],[-169.507415,56.610702],[-169.473138,56.601741],[-169.47155,56.598864],[-169.490133,56.583482],[-169.568984,56.540935],[-169.582624,56.536939],[-169.640735,56.542162],[-169.650135,56.54423],[-169.657736,56.547319],[-169.667749,56.554535],[-169.672818,56.560866],[-169.671324,56.567328],[-169.675327,56.578414],[-169.683639,56.58334],[-169.75575,56.591922],[-169.785692,56.613245],[-169.789659,56.618217],[-169.763506,56.620739],[-169.679305,56.611593],[-169.611548,56.606924],[-169.553937,56.608682]]],[[[-150.220208,61.170195],[-150.164053,61.174003],[-150.158342,61.16734],[-150.158342,61.160678],[-150.190703,61.139738],[-150.228774,61.123558],[-150.265894,61.127365],[-150.242099,61.137835],[-150.228774,61.162581],[-150.220208,61.170195]]],[[[-173.045137,60.622804],[-173.115569,60.658971],[-173.090823,60.698946],[-173.074642,60.704657],[-173.063221,60.695139],[-173.059414,60.655164],[-173.04133,60.630418],[-173.045137,60.622804]]],[[[-165.721389,60.16962],[-165.723168,60.156603],[-165.71912,60.153521],[-165.702411,60.151285],[-165.697273,60.153592],[-165.683507,60.154221],[-165.675374,60.14936],[-165.667863,60.114676],[-165.671567,60.096877],[-165.680612,60.089962],[-165.684585,60.055237],[-165.649318,59.991837],[-165.588873,59.966005],[-165.539367,59.965175],[-165.534482,59.951276],[-165.543456,59.930376],[-165.550405,59.920007],[-165.575815,59.904672],[-165.695981,59.893513],[-165.712875,59.895364],[-165.717549,59.899137],[-165.722458,59.899813],[-165.751851,59.899947],[-165.905471,59.871937],[-166.010201,59.847061],[-166.060952,59.820508],[-166.072465,59.805462],[-166.058096,59.78711],[-166.042089,59.776212],[-166.032277,59.773729],[-166.030813,59.7706],[-166.036947,59.757859],[-166.062854,59.748586],[-166.157071,59.748886],[-166.18092,59.763728],[-166.176669,59.766495],[-166.17482,59.770681],[-166.184234,59.779432],[-166.203293,59.791676],[-166.251528,59.809807],[-166.381986,59.849087],[-166.40729,59.854604],[-166.439746,59.857816],[-166.512223,59.849939],[-166.583297,59.848705],[-166.616849,59.850711],[-166.621473,59.856438],[-166.648076,59.8711],[-166.6782,59.881248],[-166.716563,59.889011],[-166.764183,59.892061],[-166.801634,59.916321],[-166.86653,59.949544],[-166.89233,59.960507],[-166.995748,59.993495],[-167.067602,59.992295],[-167.111785,59.989349],[-167.124867,59.9917],[-167.133258,59.994695],[-167.22021,60.040133],[-167.247627,60.058862],[-167.281357,60.063892],[-167.310664,60.064874],[-167.339109,60.070159],[-167.342702,60.072395],[-167.342885,60.074979],[-167.33405,60.088609],[-167.33386,60.094065],[-167.343303,60.123181],[-167.347866,60.13114],[-167.362783,60.147556],[-167.423053,60.195072],[-167.421489,60.205431],[-167.369927,60.225496],[-167.312616,60.238454],[-167.20194,60.237822],[-167.105975,60.232895],[-167.081935,60.225765],[-167.04582,60.219088],[-166.93797,60.20587],[-166.909802,60.206513],[-166.847438,60.213592],[-166.812484,60.22778],[-166.803469,60.242802],[-166.809546,60.259658],[-166.826169,60.268644],[-166.834966,60.271406],[-166.832877,60.275449],[-166.814979,60.286283],[-166.762522,60.309837],[-166.738323,60.314301],[-166.662112,60.322993],[-166.608896,60.32125],[-166.578305,60.32185],[-166.569828,60.325955],[-166.562081,60.359022],[-166.493543,60.392389],[-166.41457,60.37187],[-166.408546,60.365899],[-166.387184,60.359671],[-166.366596,60.358227],[-166.310655,60.377611],[-166.200019,60.393404],[-166.174906,60.401003],[-166.171187,60.428854],[-166.163203,60.432641],[-166.135704,60.42451],[-166.124379,60.414253],[-166.124231,60.409953],[-166.134927,60.400129],[-166.123805,60.378116],[-166.084791,60.325288],[-166.012169,60.317691],[-165.987336,60.317833],[-165.927956,60.321592],[-165.92464,60.325249],[-165.923572,60.330503],[-165.920794,60.335398],[-165.916828,60.338002],[-165.883458,60.343902],[-165.786573,60.326821],[-165.71451,60.310496],[-165.697326,60.297238],[-165.685751,60.277564],[-165.686143,60.267811],[-165.698339,60.210676],[-165.708863,60.189125],[-165.721389,60.16962]]],[[[-173.052751,60.515252],[-173.044185,60.547613],[-172.951862,60.605671],[-172.919501,60.600913],[-172.903321,60.534288],[-172.784348,60.458145],[-172.551161,60.387713],[-172.380791,60.384857],[-172.333051,60.364359],[-172.269754,60.333887],[-172.231361,60.320136],[-172.240879,60.302052],[-172.28942,60.297293],[-172.310359,60.322992],[-172.366515,60.334413],[-172.486439,60.335365],[-172.595895,60.318233],[-172.724386,60.358208],[-172.757794,60.374881],[-172.811529,60.406621],[-172.948055,60.481939],[-173.044185,60.493361],[-173.052751,60.515252]]],[[[-160.918586,58.746935],[-160.843395,58.751694],[-160.700627,58.817368],[-160.684447,58.815464],[-160.880515,58.581325],[-160.961416,58.553723],[-161.07563,58.549916],[-161.081341,58.555627],[-161.084196,58.589891],[-161.078486,58.635577],[-161.056595,58.702202],[-160.918586,58.746935]]],[[[-135.349335,59.020034],[-135.3303,59.012419],[-135.296035,58.95912],[-135.298626,58.919262],[-135.316023,58.924855],[-135.334107,58.943891],[-135.353142,59.010516],[-135.349335,59.020034]]],[[[-152.567309,60.158449],[-152.550177,60.113715],[-152.553032,60.098486],[-152.560646,60.094679],[-152.632982,60.148931],[-152.639644,60.165111],[-152.619657,60.183195],[-152.57873,60.16987],[-152.567309,60.158449]]],[[[-150.772243,59.333014],[-150.742738,59.350146],[-150.701811,59.389169],[-150.671354,59.410108],[-150.617102,59.39488],[-150.609488,59.386314],[-150.618054,59.355856],[-150.650415,59.343483],[-150.680872,59.305412],[-150.721799,59.292087],[-150.762725,59.30446],[-150.773195,59.308267],[-150.772243,59.333014]]],[[[-151.930565,60.51632],[-151.839194,60.485862],[-151.841097,60.481104],[-151.895349,60.460164],[-151.891542,60.440177],[-151.940083,60.430659],[-151.974347,60.38878],[-151.956263,60.367841],[-152.079995,60.341191],[-152.08285,60.34595],[-152.072381,60.361179],[-152.012418,60.404009],[-151.980058,60.414479],[-151.965781,60.474441],[-151.952456,60.510609],[-151.930565,60.51632]]],[[[-153.56002,59.39131],[-153.510527,59.39131],[-153.412493,59.415105],[-153.390602,59.41225],[-153.347772,59.377985],[-153.343013,59.356094],[-153.365856,59.337059],[-153.413445,59.322782],[-153.515286,59.320878],[-153.546695,59.331348],[-153.573345,59.371323],[-153.56002,59.39131]]],[[[-131.207284,55.112178],[-131.190628,55.108013],[-131.174566,55.087788],[-131.175756,55.081839],[-131.190033,55.066968],[-131.187653,55.047337],[-131.190033,55.043173],[-131.213232,55.044958],[-131.240001,55.061614],[-131.246545,55.072916],[-131.241191,55.092547],[-131.207284,55.112178]]],[[[-131.246018,54.989555],[-131.257421,54.97901],[-131.242771,54.929639],[-131.233001,54.926814],[-131.217805,54.927423],[-131.197924,54.921489],[-131.195197,54.919767],[-131.195411,54.918249],[-131.200161,54.910169],[-131.253671,54.866779],[-131.266049,54.859369],[-131.353233,54.859009],[-131.469097,54.913153],[-131.491504,54.930392],[-131.486616,54.950394],[-131.482676,54.952659],[-131.409738,54.971152],[-131.266084,54.998806],[-131.248909,54.99719],[-131.246018,54.989555]]],[[[-131.759896,55.381845],[-131.71614,55.34957],[-131.685192,55.333501],[-131.666738,55.327492],[-131.647236,55.30614],[-131.65813,55.292512],[-131.688644,55.282113],[-131.694487,55.223739],[-131.718468,55.200099],[-131.748334,55.128588],[-131.798943,55.162351],[-131.829585,55.191916],[-131.830718,55.194991],[-131.828395,55.198482],[-131.850839,55.274364],[-131.862162,55.289284],[-131.870568,55.364553],[-131.854297,55.421074],[-131.85233,55.423782],[-131.833218,55.422014],[-131.811697,55.414048],[-131.809721,55.412555],[-131.80679,55.405175],[-131.798555,55.399386],[-131.759896,55.381845]]],[[[-158.800682,55.891025],[-158.750237,55.875796],[-158.7036,55.841532],[-158.701696,55.832014],[-158.711214,55.8244],[-158.731202,55.826303],[-158.758803,55.836773],[-158.805441,55.857712],[-158.845416,55.853905],[-158.865403,55.827255],[-158.83685,55.814882],[-158.840657,55.808219],[-158.889198,55.810123],[-158.897764,55.826303],[-158.881584,55.866278],[-158.86921,55.880555],[-158.800682,55.891025]]],[[[-159.145228,55.876748],[-159.116674,55.868182],[-159.096687,55.854857],[-159.086217,55.834869],[-159.134758,55.828207],[-159.183299,55.844387],[-159.145228,55.876748]]],[[[-159.355572,55.807268],[-159.321308,55.815834],[-159.290851,55.793943],[-159.275622,55.773955],[-159.279429,55.762534],[-159.308935,55.75016],[-159.352826,55.746422],[-159.394595,55.714944],[-159.384126,55.749209],[-159.355572,55.807268]]],[[[-157.832479,56.37001],[-157.807733,56.357637],[-157.796311,56.320517],[-157.826768,56.310999],[-157.901959,56.342408],[-157.901008,56.348119],[-157.832479,56.37001]]],[[[-157.02607,56.559757],[-156.990969,56.547939],[-156.975549,56.540446],[-156.972896,56.536505],[-156.98609,56.532749],[-157.003409,56.535639],[-157.006523,56.53891],[-157.017711,56.543081],[-157.053384,56.550425],[-157.113193,56.552658],[-157.121393,56.551963],[-157.142219,56.54239],[-157.150309,56.5336],[-157.168777,56.53021],[-157.326059,56.525169],[-157.328898,56.528155],[-157.32611,56.540375],[-157.298635,56.560051],[-157.288702,56.566039],[-157.250098,56.582142],[-157.146636,56.583651],[-157.091146,56.581134],[-157.077383,56.579035],[-157.02607,56.559757]]],[[[-133.547717,54.783457],[-133.547717,54.818673],[-133.539151,54.835805],[-133.527729,54.833902],[-133.514404,54.818673],[-133.511549,54.792975],[-133.520115,54.767277],[-133.527729,54.76347],[-133.547717,54.783457]]],[[[-133.250839,55.4098],[-133.286531,55.402067],[-133.306756,55.400877],[-133.325197,55.413964],[-133.318654,55.426457],[-133.293074,55.444897],[-133.243106,55.449656],[-133.231803,55.438949],[-133.232993,55.430026],[-133.250839,55.4098]]],[[[-131.56956,55.284114],[-131.56265,55.284012],[-131.550916,55.280915],[-131.516651,55.261645],[-131.49264,55.257749],[-131.482252,55.25411],[-131.481522,55.244448],[-131.462701,55.223438],[-131.445293,55.216977],[-131.430501,55.218175],[-131.416951,55.217298],[-131.39769,55.210916],[-131.355642,55.182945],[-131.341407,55.165659],[-131.352654,55.164822],[-131.362319,55.155896],[-131.350575,55.067042],[-131.356314,55.041211],[-131.378572,55.017308],[-131.388569,55.012222],[-131.484995,55.010454],[-131.498863,55.016138],[-131.50759,55.025427],[-131.508449,55.029166],[-131.53214,55.037945],[-131.579882,55.017576],[-131.590063,55.007745],[-131.605661,55.004403],[-131.615632,55.006999],[-131.641035,55.026585],[-131.646276,55.035579],[-131.620745,55.049259],[-131.589387,55.08894],[-131.605302,55.107436],[-131.594978,55.125502],[-131.577773,55.131094],[-131.558603,55.125508],[-131.548093,55.143138],[-131.565677,55.155354],[-131.588368,55.169961],[-131.598454,55.179566],[-131.607383,55.240437],[-131.58907,55.273951],[-131.56956,55.284114]]],[[[-133.344847,55.569327],[-133.307406,55.542249],[-133.292346,55.539736],[-133.285317,55.535315],[-133.281917,55.524486],[-133.289854,55.50187],[-133.305747,55.484115],[-133.358993,55.453832],[-133.373595,55.460656],[-133.391243,55.471979],[-133.396511,55.473169],[-133.426516,55.466702],[-133.474054,55.437155],[-133.4653,55.42337],[-133.425823,55.425511],[-133.416649,55.422146],[-133.412524,55.41756],[-133.411582,55.406683],[-133.419384,55.386105],[-133.427366,55.381832],[-133.446281,55.382175],[-133.497028,55.368159],[-133.576808,55.324795],[-133.595805,55.293766],[-133.603491,55.271739],[-133.609073,55.241486],[-133.61278,55.239737],[-133.623457,55.242571],[-133.634509,55.250043],[-133.690174,55.304409],[-133.690944,55.308703],[-133.689159,55.320285],[-133.672243,55.326765],[-133.647725,55.34548],[-133.633006,55.361299],[-133.622422,55.396474],[-133.636291,55.428423],[-133.739077,55.472323],[-133.749371,55.471818],[-133.764347,55.468593],[-133.789055,55.457892],[-133.75913,55.537371],[-133.75287,55.544282],[-133.733029,55.558757],[-133.615623,55.550776],[-133.584326,55.539707],[-133.582005,55.537363],[-133.590163,55.507236],[-133.595632,55.501483],[-133.611671,55.495585],[-133.624912,55.494674],[-133.632978,55.491664],[-133.644202,55.470815],[-133.644565,55.46468],[-133.638673,55.458902],[-133.618367,55.457045],[-133.573698,55.472083],[-133.544088,55.491784],[-133.542322,55.507084],[-133.52912,55.5277],[-133.525646,55.529097],[-133.480965,55.512738],[-133.44367,55.518639],[-133.454576,55.532423],[-133.44266,55.553012],[-133.436102,55.560872],[-133.413499,55.570384],[-133.344847,55.569327]]],[[[-133.846128,55.904622],[-133.840833,55.892726],[-133.840298,55.88677],[-133.847565,55.869599],[-133.861039,55.848844],[-133.866988,55.845886],[-133.894706,55.845641],[-133.903184,55.848101],[-133.92025,55.860295],[-133.929325,55.869538],[-133.945619,55.896216],[-133.943499,55.912446],[-133.940298,55.917506],[-133.935016,55.920689],[-133.891851,55.93668],[-133.876494,55.937683],[-133.864099,55.936286],[-133.854291,55.931581],[-133.846763,55.91167],[-133.846128,55.904622]]],[[[-133.104304,55.426907],[-133.138129,55.458373],[-133.157704,55.497782],[-133.133293,55.502508],[-133.132409,55.513579],[-133.156566,55.563589],[-133.17676,55.586722],[-133.263042,55.568793],[-133.275972,55.580188],[-133.294158,55.58868],[-133.3869,55.619346],[-133.43818,55.643862],[-133.438933,55.645167],[-133.408432,55.667925],[-133.399885,55.665133],[-133.394486,55.666881],[-133.386432,55.693365],[-133.416549,55.739647],[-133.438619,55.748366],[-133.49143,55.764082],[-133.512632,55.755898],[-133.509704,55.744183],[-133.496509,55.733258],[-133.494087,55.733158],[-133.490882,55.726576],[-133.489253,55.713081],[-133.492438,55.706525],[-133.527387,55.695108],[-133.554504,55.698354],[-133.583297,55.705338],[-133.62512,55.719927],[-133.643324,55.729037],[-133.700557,55.778617],[-133.701152,55.78516],[-133.655942,55.823232],[-133.62263,55.830965],[-133.556005,55.835129],[-133.46618,55.805981],[-133.422064,55.788821],[-133.347915,55.803943],[-133.342058,55.805764],[-133.323664,55.818632],[-133.352963,55.837318],[-133.384089,55.87677],[-133.453093,55.905918],[-133.501872,55.949343],[-133.476888,56.004071],[-133.495052,56.017089],[-133.541041,55.977322],[-133.638122,55.920982],[-133.718805,55.893236],[-133.799931,55.925349],[-133.816958,55.952127],[-133.816363,55.964025],[-133.798092,55.975096],[-133.777846,55.982876],[-133.748803,56.009536],[-133.693765,56.070562],[-133.684209,56.075507],[-133.659241,56.083818],[-133.548802,56.14284],[-133.54283,56.160794],[-133.553454,56.169015],[-133.6015,56.191925],[-133.639282,56.198813],[-133.664218,56.310504],[-133.656415,56.326909],[-133.649916,56.326792],[-133.643182,56.324459],[-133.624658,56.33707],[-133.625121,56.339847],[-133.624918,56.343906],[-133.593728,56.352192],[-133.582116,56.352506],[-133.41837,56.332132],[-133.328577,56.332797],[-133.284826,56.327118],[-133.235354,56.324275],[-133.197009,56.333016],[-133.163212,56.317445],[-133.094977,56.250583],[-133.07823,56.246802],[-133.071435,56.238484],[-133.040979,56.184536],[-133.052004,56.155585],[-133.059994,56.150761],[-133.062175,56.141163],[-133.061465,56.135305],[-133.05552,56.125258],[-132.927305,56.034459],[-132.897675,56.020166],[-132.837592,56.024327],[-132.635291,55.921766],[-132.618464,55.911476],[-132.615103,55.908082],[-132.614757,55.899635],[-132.592085,55.877152],[-132.543398,55.845927],[-132.5048,55.815166],[-132.470697,55.782162],[-132.461281,55.6834],[-132.462531,55.673854],[-132.448855,55.667337],[-132.415237,55.667263],[-132.394266,55.669114],[-132.382505,55.665336],[-132.358558,55.648759],[-132.332401,55.595071],[-132.32928,55.578936],[-132.301119,55.55096],[-132.240921,55.526533],[-132.198289,55.513045],[-132.188771,55.508443],[-132.146062,55.470346],[-132.142649,55.460967],[-132.142945,55.457941],[-132.164757,55.451213],[-132.17861,55.452829],[-132.219413,55.472211],[-132.230752,55.479944],[-132.231936,55.48396],[-132.247327,55.492951],[-132.315773,55.514547],[-132.325728,55.515395],[-132.514798,55.576767],[-132.544541,55.566655],[-132.525505,55.549998],[-132.608786,55.486348],[-132.604027,55.47683],[-132.568335,55.479804],[-132.519556,55.520255],[-132.491598,55.503599],[-132.408317,55.512522],[-132.388686,55.480994],[-132.364297,55.483373],[-132.31857,55.469208],[-132.288585,55.451365],[-132.281269,55.444189],[-132.284442,55.442173],[-132.303329,55.438268],[-132.41934,55.432054],[-132.470036,55.427028],[-132.479688,55.420918],[-132.475532,55.418062],[-132.454974,55.4136],[-132.390782,55.401739],[-132.273503,55.419189],[-132.258056,55.416142],[-132.22596,55.374919],[-132.166857,55.363039],[-132.149864,55.328637],[-132.126398,55.288418],[-132.115561,55.281237],[-132.098531,55.28056],[-132.102716,55.268175],[-132.109531,55.26024],[-132.142742,55.238212],[-132.164031,55.237617],[-132.214912,55.2457],[-132.229963,55.23808],[-132.214353,55.222562],[-132.207431,55.218273],[-132.12737,55.19957],[-132.104376,55.200899],[-132.088127,55.206516],[-132.075095,55.22239],[-132.072751,55.233718],[-132.078869,55.240335],[-132.075924,55.246276],[-132.061625,55.260052],[-132.037122,55.275144],[-132.028163,55.27695],[-132.0035,55.265254],[-131.995908,55.259054],[-131.979818,55.211787],[-131.977397,55.180949],[-131.988815,55.165464],[-132.031417,55.151671],[-132.039009,55.14407],[-132.040874,55.127326],[-132.038978,55.125011],[-132.016932,55.120971],[-132.039002,55.086962],[-132.094024,55.039452],[-132.154061,55.018197],[-132.168076,55.015574],[-132.180334,55.015557],[-132.196215,55.008047],[-132.197614,55.005158],[-132.192581,54.989655],[-132.143263,54.984633],[-132.135544,54.985976],[-132.072544,55.016956],[-132.039217,55.036765],[-132.028288,55.038672],[-132.000449,55.035712],[-131.984592,55.027978],[-131.98289,54.853068],[-131.976847,54.848894],[-131.965904,54.835539],[-131.957382,54.804279],[-131.957914,54.791239],[-131.999591,54.731975],[-132.018657,54.710109],[-132.029747,54.701189],[-132.142277,54.691674],[-132.165182,54.69405],[-132.179635,54.705898],[-132.199566,54.715444],[-132.256092,54.734617],[-132.2631,54.734312],[-132.279597,54.72823],[-132.280701,54.726184],[-132.280103,54.715988],[-132.281803,54.71529],[-132.307943,54.718714],[-132.351004,54.818182],[-132.350629,54.821314],[-132.341009,54.826718],[-132.332661,54.826322],[-132.314146,54.83512],[-132.309213,54.847534],[-132.387494,54.913664],[-132.484579,54.899301],[-132.55839,54.932612],[-132.581367,54.946005],[-132.609786,54.965728],[-132.612531,54.969924],[-132.614836,54.980095],[-132.6099,54.991517],[-132.598557,54.990301],[-132.57783,54.994234],[-132.575001,54.998317],[-132.541802,55.097764],[-132.548994,55.113556],[-132.550502,55.114247],[-132.561819,55.114897],[-132.594568,55.105378],[-132.619912,55.069094],[-132.624575,55.061352],[-132.624296,55.056163],[-132.626687,55.053314],[-132.630865,55.052946],[-132.633305,55.054954],[-132.637866,55.073602],[-132.624518,55.114419],[-132.606895,55.141722],[-132.598675,55.150482],[-132.591084,55.155695],[-132.587868,55.155971],[-132.581133,55.166076],[-132.605219,55.194064],[-132.620123,55.199617],[-132.637926,55.186077],[-132.630049,55.177618],[-132.629643,55.174232],[-132.635758,55.152514],[-132.663719,55.143932],[-132.695227,55.137711],[-132.735645,55.134218],[-132.712195,55.098736],[-132.684005,55.045604],[-132.689667,55.027901],[-132.692917,55.02506],[-132.748854,54.996007],[-132.813743,55.010987],[-132.864117,55.024833],[-132.916414,55.044465],[-132.926772,55.055023],[-132.932293,55.070199],[-132.931172,55.074154],[-132.909355,55.081277],[-132.881083,55.110375],[-132.869827,55.124104],[-132.873408,55.134241],[-132.894283,55.169373],[-132.935449,55.209898],[-132.939845,55.211481],[-132.982166,55.215882],[-133.008156,55.2057],[-133.040748,55.232969],[-133.043938,55.248569],[-133.104708,55.2638],[-133.119294,55.251405],[-133.073381,55.184492],[-133.012275,55.128056],[-132.99086,55.079112],[-132.990395,55.06673],[-133.011351,55.056849],[-133.01974,55.048366],[-133.014178,55.035502],[-132.959508,55.021045],[-132.909706,54.923594],[-132.91465,54.914009],[-132.889474,54.896619],[-132.82834,54.868747],[-132.804525,54.870938],[-132.803014,54.873725],[-132.803742,54.897206],[-132.807952,54.904378],[-132.814282,54.909356],[-132.817385,54.92364],[-132.800784,54.933783],[-132.730931,54.939483],[-132.650001,54.904387],[-132.628612,54.883316],[-132.625563,54.807503],[-132.614851,54.77717],[-132.619024,54.766565],[-132.639032,54.753251],[-132.66725,54.763369],[-132.681165,54.773697],[-132.701203,54.798446],[-132.701153,54.811012],[-132.709267,54.817521],[-132.723538,54.825128],[-132.729369,54.826981],[-132.754875,54.821236],[-132.759779,54.816998],[-132.759364,54.808277],[-132.747451,54.800743],[-132.722011,54.763259],[-132.676226,54.680865],[-132.674324,54.674652],[-132.675868,54.672812],[-132.69397,54.669064],[-132.775733,54.674844],[-132.866355,54.700386],[-132.869604,54.702416],[-132.864084,54.716917],[-132.865598,54.728908],[-132.87721,54.753772],[-132.891553,54.768191],[-132.909517,54.780516],[-132.918751,54.783253],[-132.940485,54.783831],[-132.95025,54.788333],[-133.032752,54.855055],[-133.099047,54.919007],[-133.123941,54.940065],[-133.159756,54.95876],[-133.164788,54.976909],[-133.157326,55.000365],[-133.168931,55.030889],[-133.17236,55.032745],[-133.197719,55.033404],[-133.21042,55.040269],[-133.239695,55.092415],[-133.223923,55.099986],[-133.218101,55.101042],[-133.144954,55.099155],[-133.134987,55.099473],[-133.128705,55.101429],[-133.15478,55.12811],[-133.186809,55.136372],[-133.193242,55.134108],[-133.201053,55.134099],[-133.207702,55.13422],[-133.215086,55.136876],[-133.236908,55.183326],[-133.187745,55.193639],[-133.18252,55.201964],[-133.223791,55.229317],[-133.254478,55.231149],[-133.281979,55.217117],[-133.323021,55.20703],[-133.341259,55.205701],[-133.353719,55.221215],[-133.361562,55.22556],[-133.376615,55.228288],[-133.404497,55.214992],[-133.415257,55.212159],[-133.422869,55.210659],[-133.441074,55.211654],[-133.453777,55.218497],[-133.471938,55.247527],[-133.473593,55.255547],[-133.472866,55.267873],[-133.459753,55.30678],[-133.452818,55.31998],[-133.43635,55.330158],[-133.395371,55.341753],[-133.352083,55.347381],[-133.33236,55.345357],[-133.313491,55.331557],[-133.310529,55.320257],[-133.311114,55.317301],[-133.292402,55.291377],[-133.268999,55.286971],[-133.244343,55.291865],[-133.235129,55.304162],[-133.233572,55.308822],[-133.254639,55.318806],[-133.279271,55.333264],[-133.280701,55.341536],[-133.278443,55.349184],[-133.269068,55.359341],[-133.257734,55.367026],[-133.226844,55.38185],[-133.208794,55.384237],[-133.18328,55.379392],[-133.116203,55.377211],[-133.041187,55.357413],[-133.021557,55.366336],[-133.054274,55.403812],[-133.104304,55.426907]]],[[[-147.483828,60.618636],[-147.500009,60.653852],[-147.483828,60.683358],[-147.487635,60.728092],[-147.395312,60.74332],[-147.383891,60.741417],[-147.362,60.714767],[-147.3087,60.665274],[-147.348675,60.627202],[-147.454323,60.619588],[-147.483828,60.618636]]],[[[-147.341061,60.305499],[-147.340109,60.275042],[-147.483828,60.224598],[-147.499057,60.235067],[-147.505719,60.253151],[-147.496201,60.265524],[-147.421962,60.279801],[-147.341061,60.305499]]],[[[-147.217704,60.293504],[-147.19494,60.304563],[-147.183277,60.32068],[-147.185243,60.323083],[-147.195608,60.326224],[-147.211625,60.324936],[-147.215312,60.327109],[-147.218799,60.334726],[-147.214679,60.343793],[-147.211582,60.34626],[-147.147514,60.37247],[-147.112667,60.380982],[-147.098703,60.378697],[-147.091897,60.374969],[-147.089363,60.369126],[-147.092717,60.363396],[-147.10401,60.356727],[-147.095483,60.341964],[-147.073932,60.338982],[-147.013164,60.343863],[-147.006138,60.343119],[-147.003839,60.34031],[-147.004091,60.334348],[-147.015307,60.322548],[-147.089866,60.292106],[-147.103118,60.28019],[-147.104107,60.277155],[-147.080463,60.265355],[-147.064768,60.270188],[-146.962633,60.311911],[-146.944024,60.31602],[-146.916164,60.314898],[-146.911772,60.309807],[-146.911377,60.297593],[-146.948089,60.269974],[-147.002067,60.232453],[-147.139641,60.179058],[-147.202416,60.151128],[-147.253868,60.113852],[-147.365424,60.042867],[-147.388508,60.011116],[-147.388686,60.004301],[-147.438369,59.97468],[-147.493235,59.955388],[-147.499783,59.951069],[-147.505311,59.937494],[-147.499625,59.926296],[-147.494317,59.922756],[-147.483056,59.920873],[-147.476312,59.921563],[-147.448681,59.915892],[-147.443678,59.913543],[-147.45236,59.880518],[-147.46692,59.8701],[-147.533041,59.852401],[-147.541643,59.853282],[-147.540437,59.857264],[-147.542664,59.861336],[-147.571278,59.868709],[-147.596339,59.868872],[-147.62198,59.866484],[-147.651738,59.851223],[-147.657015,59.844035],[-147.657048,59.839497],[-147.660388,59.832248],[-147.677139,59.821368],[-147.693869,59.81907],[-147.727499,59.81978],[-147.738538,59.822949],[-147.745417,59.821844],[-147.810788,59.802233],[-147.831008,59.790043],[-147.874097,59.78326],[-147.912883,59.79224],[-147.924906,59.799712],[-147.928064,59.803496],[-147.908247,59.852832],[-147.895411,59.869145],[-147.877936,59.879678],[-147.856693,59.886661],[-147.808272,59.888148],[-147.797213,59.909477],[-147.809035,59.92348],[-147.804252,59.936497],[-147.739635,59.968008],[-147.728869,59.969509],[-147.707445,59.964151],[-147.690642,59.963236],[-147.68628,59.964476],[-147.659569,59.980064],[-147.662645,59.986676],[-147.647042,60.005649],[-147.555529,60.051131],[-147.479543,60.076653],[-147.45149,60.08792],[-147.433254,60.096159],[-147.406,60.112631],[-147.388701,60.126473],[-147.319715,60.190581],[-147.315691,60.202891],[-147.322841,60.214784],[-147.312081,60.222871],[-147.281373,60.226812],[-147.249786,60.228589],[-147.24431,60.231298],[-147.219108,60.253513],[-147.20615,60.269508],[-147.217704,60.293504]]],[[[-147.562801,60.579821],[-147.555392,60.574059],[-147.551709,60.559612],[-147.565775,60.534713],[-147.607756,60.50692],[-147.623835,60.465878],[-147.619972,60.436821],[-147.674351,60.41443],[-147.690773,60.405054],[-147.681888,60.388167],[-147.630081,60.38955],[-147.62202,60.383794],[-147.618906,60.368848],[-147.639474,60.340579],[-147.671135,60.308929],[-147.703599,60.285589],[-147.698608,60.245552],[-147.704731,60.227874],[-147.720124,60.202002],[-147.760681,60.156396],[-147.766484,60.15418],[-147.783583,60.161073],[-147.820159,60.179555],[-147.845681,60.195434],[-147.832285,60.197855],[-147.827991,60.20063],[-147.828962,60.207442],[-147.855453,60.216419],[-147.908985,60.224359],[-147.945158,60.222324],[-147.956228,60.228667],[-147.950532,60.243791],[-147.933269,60.273632],[-147.837456,60.414452],[-147.792822,60.476193],[-147.782548,60.4833],[-147.778269,60.484007],[-147.765825,60.476505],[-147.779329,60.457078],[-147.750864,60.440981],[-147.738151,60.441277],[-147.715312,60.447915],[-147.70916,60.451883],[-147.717097,60.467282],[-147.726642,60.472216],[-147.72646,60.502533],[-147.721824,60.508635],[-147.613843,60.565906],[-147.566372,60.580849],[-147.562801,60.579821]]],[[[-147.952039,60.741879],[-147.906021,60.735515],[-147.848176,60.698116],[-147.846103,60.694509],[-147.860057,60.677233],[-147.868067,60.670825],[-147.932931,60.655714],[-147.970684,60.673799],[-148.020259,60.72495],[-147.965419,60.751996],[-147.957239,60.747706],[-147.952039,60.741879]]],[[[-147.131319,60.912932],[-147.115336,60.911938],[-147.077772,60.899503],[-147.071788,60.893833],[-147.089645,60.874693],[-147.126799,60.858011],[-147.141802,60.853991],[-147.192354,60.861635],[-147.217749,60.869741],[-147.253128,60.872969],[-147.309086,60.873924],[-147.32564,60.877153],[-147.321084,60.880198],[-147.226303,60.910421],[-147.210324,60.908776],[-147.193399,60.902949],[-147.178969,60.903704],[-147.131319,60.912932]]],[[[-132.569885,56.633502],[-132.570351,56.633696],[-132.570123,56.633934],[-132.541203,56.664034],[-132.518265,56.670282],[-132.444501,56.653626],[-132.349323,56.651246],[-132.335975,56.642619],[-132.40022,56.604548],[-132.417287,56.582323],[-132.450784,56.564097],[-132.461491,56.586107],[-132.486475,56.603358],[-132.500157,56.604548],[-132.569885,56.633502]]],[[[-132.898486,56.100249],[-132.940126,56.124638],[-132.997828,56.153787],[-133.009131,56.178176],[-133.006156,56.222791],[-133.000802,56.241232],[-132.950834,56.237663],[-132.934772,56.230524],[-132.918711,56.213273],[-132.893132,56.159735],[-132.872906,56.129397],[-132.877665,56.11512],[-132.898486,56.100249]]],[[[-132.530793,56.56261],[-132.52068,56.562015],[-132.518301,56.556066],[-132.521275,56.541194],[-132.538526,56.513236],[-132.562321,56.491821],[-132.573028,56.488251],[-132.576598,56.456129],[-132.586115,56.44899],[-132.599797,56.44899],[-132.650956,56.474569],[-132.65274,56.482898],[-132.649171,56.486467],[-132.615264,56.509072],[-132.606936,56.512046],[-132.581357,56.511451],[-132.562916,56.534651],[-132.546854,56.551902],[-132.530793,56.56261]]],[[[-132.555182,56.403781],[-132.502239,56.436498],[-132.478445,56.438283],[-132.418363,56.415083],[-132.404682,56.405565],[-132.407061,56.386529],[-132.494506,56.355002],[-132.520085,56.353812],[-132.559346,56.365114],[-132.562321,56.379391],[-132.555182,56.403781]]],[[[-132.977163,56.439673],[-132.957364,56.448963],[-132.927663,56.456859],[-132.896342,56.457978],[-132.871919,56.457038],[-132.843184,56.444827],[-132.819256,56.439511],[-132.808145,56.440801],[-132.791872,56.449169],[-132.782864,56.45153],[-132.734466,56.458515],[-132.716056,56.454861],[-132.668127,56.440279],[-132.634335,56.422174],[-132.628592,56.416284],[-132.620608,56.3912],[-132.65238,56.375879],[-132.662178,56.369134],[-132.679401,56.354299],[-132.684112,56.345671],[-132.676553,56.333105],[-132.662478,56.320451],[-132.655467,56.303756],[-132.655513,56.295575],[-132.662081,56.274795],[-132.721254,56.258464],[-132.776045,56.254585],[-132.843716,56.238933],[-132.877582,56.240322],[-133.010587,56.309492],[-133.045383,56.320783],[-133.067556,56.333573],[-133.070863,56.354194],[-133.069441,56.356426],[-133.060361,56.358378],[-133.045714,56.371451],[-133.006575,56.415881],[-133.006314,56.417778],[-133.010871,56.421404],[-133.010817,56.424264],[-133.002357,56.430655],[-132.977163,56.439673]]],[[[-136.149786,58.591255],[-136.153593,58.596966],[-136.145979,58.607435],[-136.123136,58.609339],[-136.100293,58.596014],[-136.089824,58.575075],[-136.088872,58.565557],[-136.096486,58.558894],[-136.149786,58.591255]]],[[[-136.047886,58.318985],[-136.038368,58.318985],[-136.033014,58.311252],[-136.035393,58.27318],[-136.094285,58.257119],[-136.125218,58.261878],[-136.157341,58.279129],[-136.156151,58.283888],[-136.118674,58.303519],[-136.047886,58.318985]]],[[[-135.631777,58.380673],[-135.602272,58.374962],[-135.538502,58.337842],[-135.544213,58.330228],[-135.649861,58.324517],[-135.696499,58.335939],[-135.727908,58.365444],[-135.669849,58.380673],[-135.631777,58.380673]]],[[[-134.713987,58.220748],[-134.712801,58.215369],[-134.710513,58.192557],[-134.703727,58.166794],[-134.699956,58.161494],[-134.689515,58.158825],[-134.682812,58.158843],[-134.631434,58.162198],[-134.608911,58.171637],[-134.608358,58.173472],[-134.594804,58.183511],[-134.559241,58.195121],[-134.541609,58.184327],[-134.519644,58.175771],[-134.50074,58.172546],[-134.47981,58.171199],[-134.462633,58.173851],[-134.446657,58.173583],[-134.413953,58.167546],[-134.401512,58.163427],[-134.371445,58.148966],[-134.32736,58.14388],[-134.317037,58.14544],[-134.306483,58.15249],[-134.259705,58.157712],[-134.215981,58.162128],[-134.177467,58.15964],[-134.166332,58.132558],[-134.167257,58.128577],[-134.174352,58.125284],[-134.192724,58.107685],[-134.18937,58.083444],[-134.183983,58.077295],[-134.169743,58.066845],[-134.138231,58.047103],[-134.098652,58.018748],[-134.091885,58.010777],[-134.087461,58.001685],[-134.087572,57.996475],[-134.101549,57.988716],[-134.101125,57.98407],[-134.089575,57.974357],[-134.068949,57.961083],[-134.016873,57.930006],[-133.999948,57.91481],[-133.99634,57.904167],[-133.995977,57.895632],[-133.963791,57.854628],[-133.934735,57.837626],[-133.904874,57.807406],[-133.902695,57.797797],[-133.903854,57.794818],[-133.908085,57.79167],[-133.90989,57.780628],[-133.896846,57.685524],[-133.868134,57.660137],[-133.837424,57.638486],[-133.832895,57.635733],[-133.821673,57.633887],[-133.817662,57.629764],[-133.808285,57.609604],[-133.806003,57.583457],[-133.807133,57.57877],[-133.81164,57.572365],[-133.8176,57.568353],[-133.840838,57.576865],[-133.859635,57.605325],[-133.85801,57.61694],[-133.863112,57.623701],[-133.911329,57.663562],[-133.962582,57.689887],[-133.970087,57.695342],[-133.994964,57.719821],[-134.010728,57.759392],[-134.013144,57.789393],[-134.03082,57.818646],[-134.061833,57.829808],[-134.098628,57.85055],[-134.121337,57.871236],[-134.11921,57.872917],[-134.121904,57.88252],[-134.126105,57.89026],[-134.132146,57.896189],[-134.151127,57.903209],[-134.176606,57.909725],[-134.202353,57.90633],[-134.206874,57.895901],[-134.16312,57.848669],[-134.112948,57.809263],[-134.105408,57.795974],[-134.099782,57.780261],[-134.100899,57.776779],[-134.146342,57.760258],[-134.1277,57.739216],[-134.116097,57.727582],[-134.020169,57.656734],[-134.013367,57.655898],[-133.993974,57.649095],[-133.958454,57.629537],[-133.935976,57.614414],[-133.934361,57.601765],[-133.945156,57.569841],[-133.943417,57.561555],[-133.933216,57.54445],[-133.920557,57.530088],[-133.901074,57.517219],[-133.886269,57.504999],[-133.857368,57.463964],[-133.927539,57.46957],[-133.925527,57.45665],[-133.870327,57.381298],[-133.866931,57.367869],[-133.867279,57.36206],[-133.870657,57.358287],[-133.962897,57.305425],[-133.968495,57.303937],[-133.983501,57.302838],[-134.008394,57.317522],[-134.034563,57.327638],[-134.055618,57.330194],[-134.094891,57.326401],[-134.100587,57.321738],[-134.084374,57.303963],[-134.080495,57.297678],[-134.110315,57.249948],[-134.15539,57.208003],[-134.193629,57.184879],[-134.29276,57.137049],[-134.302721,57.136562],[-134.349602,57.124638],[-134.378359,57.115016],[-134.370797,57.099924],[-134.386052,57.087392],[-134.481167,57.046006],[-134.484288,57.036481],[-134.497718,57.031194],[-134.565687,57.023737],[-134.601407,57.033812],[-134.634565,57.109863],[-134.646773,57.226327],[-134.640169,57.239852],[-134.605032,57.273],[-134.570954,57.294624],[-134.517279,57.314567],[-134.543385,57.337414],[-134.559794,57.336138],[-134.574114,57.341172],[-134.575492,57.343694],[-134.578511,57.400291],[-134.55554,57.407428],[-134.527594,57.405331],[-134.525997,57.397845],[-134.527759,57.39394],[-134.527873,57.389874],[-134.486023,57.372492],[-134.47724,57.374401],[-134.464032,57.392184],[-134.544853,57.457872],[-134.607557,57.513042],[-134.598452,57.522395],[-134.595981,57.534107],[-134.611177,57.563137],[-134.665337,57.605701],[-134.674438,57.614409],[-134.695428,57.685335],[-134.700518,57.695966],[-134.704859,57.701457],[-134.720351,57.707052],[-134.731798,57.721921],[-134.728792,57.75664],[-134.709024,57.780498],[-134.705869,57.828929],[-134.727077,57.877098],[-134.737475,57.89079],[-134.746108,57.898529],[-134.758833,57.980212],[-134.76529,57.993762],[-134.777022,58.004679],[-134.796804,58.058855],[-134.783772,58.082292],[-134.784927,58.096793],[-134.820663,58.141465],[-134.857221,58.176288],[-134.864299,58.180489],[-134.877918,58.181535],[-134.885857,58.184031],[-134.899665,58.19432],[-134.914857,58.214932],[-134.948327,58.281316],[-134.969189,58.367542],[-134.960502,58.403758],[-134.955902,58.410297],[-134.897292,58.37689],[-134.806116,58.321284],[-134.803831,58.316567],[-134.802388,58.30107],[-134.779354,58.281279],[-134.760052,58.275251],[-134.729861,58.273512],[-134.724463,58.268277],[-134.713987,58.220748]]],[[[-134.810257,58.370583],[-134.840595,58.369989],[-134.918733,58.468005],[-134.955999,58.469926],[-135.004183,58.484798],[-135.032142,58.513946],[-135.028573,58.519895],[-135.021434,58.5193],[-134.990501,58.504428],[-134.970276,58.502644],[-134.903651,58.481228],[-134.851303,58.43126],[-134.806093,58.374153],[-134.810257,58.370583]]],[[[-156.771816,56.150009],[-156.796224,56.155856],[-156.804177,56.176659],[-156.804177,56.196646],[-156.795611,56.215682],[-156.771816,56.227103],[-156.766676,56.213251],[-156.76325,56.181418],[-156.759443,56.156671],[-156.771816,56.150009]]],[[[-154.09604,56.705492],[-154.046547,56.730238],[-154.021801,56.715009],[-154.017042,56.689311],[-154.021801,56.684552],[-154.047499,56.683601],[-154.121738,56.695022],[-154.153147,56.681697],[-154.159354,56.692156],[-154.120787,56.708347],[-154.09604,56.705492]]],[[[-156.69377,56.068155],[-156.671879,56.029132],[-156.67759,56.012952],[-156.687107,56.006289],[-156.749925,56.034843],[-156.742311,56.042457],[-156.715661,56.048168],[-156.707095,56.064348],[-156.69377,56.068155]]],[[[-151.862321,58.257495],[-151.817111,58.263444],[-151.790937,58.246788],[-151.795696,58.211096],[-151.817111,58.183732],[-151.862321,58.168265],[-151.871839,58.169455],[-151.890875,58.19325],[-151.888495,58.219424],[-151.862321,58.257495]]],[[[-152.307709,58.962056],[-152.242036,58.938261],[-152.178267,58.946827],[-152.154472,58.94302],[-152.159231,58.934454],[-152.276301,58.906852],[-152.342926,58.9059],[-152.35625,58.915418],[-152.312468,58.931599],[-152.307709,58.962056]]],[[[-151.955549,58.914466],[-152.016463,58.908756],[-152.074522,58.912563],[-152.074522,58.924936],[-152.063101,58.946827],[-152.031692,58.948731],[-152.00409,58.941116],[-151.955549,58.914466]]],[[[-155.656727,55.860872],[-155.637691,55.894185],[-155.591054,55.912268],[-155.568211,55.90751],[-155.563452,55.885618],[-155.584391,55.848499],[-155.564404,55.809476],[-155.566307,55.789488],[-155.591002,55.761725],[-155.718593,55.772356],[-155.728111,55.779019],[-155.750002,55.821849],[-155.74905,55.825656],[-155.690047,55.843335],[-155.656727,55.860872]]],[[[-152.24289,58.241192],[-152.280629,58.242344],[-152.311415,58.221115],[-152.265111,58.135732],[-152.273605,58.12563],[-152.343522,58.119174],[-152.401892,58.120755],[-152.425391,58.127614],[-152.482674,58.129813],[-152.514794,58.114321],[-152.529036,58.093779],[-152.530388,58.087766],[-152.541533,58.083666],[-152.554461,58.08462],[-152.557237,58.086462],[-152.569595,58.1148],[-152.557497,58.160683],[-152.559884,58.170941],[-152.562829,58.177979],[-152.584222,58.187477],[-152.597506,58.179686],[-152.615103,58.116224],[-152.631214,58.081924],[-152.656801,58.061049],[-152.706831,58.050577],[-152.771303,58.046883],[-152.777906,58.050364],[-152.779473,58.065269],[-152.792041,58.072665],[-152.809062,58.078917],[-152.882423,58.096074],[-152.95868,58.116441],[-152.973149,58.125427],[-152.983857,58.134358],[-152.99734,58.134341],[-153.075746,58.099571],[-153.076485,58.096077],[-153.057201,58.073576],[-153.036131,58.055619],[-153.020589,58.045202],[-152.9647,58.03465],[-152.876788,58.002307],[-152.871836,57.999275],[-152.871416,57.997157],[-152.947547,57.983519],[-152.982406,57.984697],[-153.097462,58.004516],[-153.202525,58.030122],[-153.209885,58.034925],[-153.214568,58.042418],[-153.218115,58.043909],[-153.289701,58.05033],[-153.344807,58.040619],[-153.365574,58.039052],[-153.419783,58.059638],[-153.418343,58.064053],[-153.412933,58.069811],[-153.316127,58.14039],[-153.281874,58.147555],[-153.274215,58.148102],[-153.262643,58.145099],[-153.227567,58.123364],[-153.199117,58.102005],[-153.168617,58.088385],[-153.156402,58.090087],[-153.14874,58.106121],[-153.167605,58.127818],[-153.209672,58.15035],[-153.223709,58.16212],[-153.202801,58.20808],[-153.170101,58.216704],[-153.073927,58.195107],[-153.060846,58.194502],[-153.036662,58.199235],[-153.000579,58.211768],[-152.998094,58.214122],[-153.006979,58.221847],[-153.061678,58.235649],[-153.082507,58.244495],[-153.101841,58.257938],[-153.10241,58.260344],[-153.099284,58.264065],[-153.044316,58.306336],[-153.00439,58.300135],[-152.993217,58.296254],[-152.982356,58.287495],[-152.94127,58.279614],[-152.888204,58.2831],[-152.878858,58.288533],[-152.869811,58.304906],[-152.884023,58.307087],[-152.91245,58.307191],[-152.921122,58.313268],[-152.936757,58.330513],[-152.93644,58.334923],[-152.925586,58.339686],[-152.895407,58.345305],[-152.870555,58.335743],[-152.821964,58.328501],[-152.804789,58.33951],[-152.774048,58.366826],[-152.78742,58.369015],[-152.839234,58.372477],[-152.883107,58.400443],[-152.88886,58.409384],[-152.886358,58.410585],[-152.864939,58.40434],[-152.844173,58.402842],[-152.812207,58.403464],[-152.787776,58.411313],[-152.774509,58.419721],[-152.771106,58.429515],[-152.733845,58.460662],[-152.723169,58.46208],[-152.68994,58.459861],[-152.610955,58.475775],[-152.601666,58.490423],[-152.600534,58.494946],[-152.60903,58.496167],[-152.619197,58.493674],[-152.622794,58.494189],[-152.653673,58.506572],[-152.66622,58.544087],[-152.665999,58.564493],[-152.638569,58.587448],[-152.61613,58.601852],[-152.56771,58.621304],[-152.560171,58.61968],[-152.550418,58.610996],[-152.549635,58.601024],[-152.545009,58.594253],[-152.50282,58.593451],[-152.453817,58.618515],[-152.354709,58.63828],[-152.337964,58.637404],[-152.329835,58.632102],[-152.337212,58.589095],[-152.372317,58.531175],[-152.38761,58.52287],[-152.418267,58.515244],[-152.467197,58.476609],[-152.498571,58.449538],[-152.505516,58.441876],[-152.512483,58.427349],[-152.493991,58.354684],[-152.476814,58.350955],[-152.387343,58.359499],[-152.364682,58.364613],[-152.34486,58.39163],[-152.348389,58.401502],[-152.355073,58.413052],[-152.358724,58.415585],[-152.35609,58.42347],[-152.328063,58.434372],[-152.320554,58.433829],[-152.301713,58.428697],[-152.279508,58.415872],[-152.227835,58.376424],[-152.234718,58.362024],[-152.224965,58.357372],[-152.200953,58.355332],[-152.129257,58.396414],[-152.125339,58.396396],[-152.090437,58.372628],[-152.08925,58.367644],[-152.11953,58.32977],[-152.138294,58.295712],[-152.147142,58.266992],[-152.146519,58.24912],[-152.116569,58.248537],[-152.107962,58.260525],[-152.107635,58.28024],[-152.082342,58.309945],[-151.986171,58.350413],[-151.981781,58.347971],[-151.966218,58.332737],[-151.963817,58.328999],[-151.964103,58.269049],[-151.972053,58.230702],[-151.986127,58.213774],[-152.081083,58.154275],[-152.112205,58.148559],[-152.194827,58.174128],[-152.223175,58.194794],[-152.224439,58.202365],[-152.219826,58.206289],[-152.207488,58.206284],[-152.203699,58.212055],[-152.23383,58.243329],[-152.24289,58.241192]]],[[[-154.404015,56.572287],[-154.393868,56.562388],[-154.391294,56.557931],[-154.39248,56.554053],[-154.436794,56.534556],[-154.529507,56.502655],[-154.571701,56.494165],[-154.633586,56.471817],[-154.668517,56.452544],[-154.691485,56.436711],[-154.704129,56.42423],[-154.73655,56.403848],[-154.742887,56.401678],[-154.765021,56.401361],[-154.775766,56.404075],[-154.789003,56.411015],[-154.799907,56.419387],[-154.805481,56.427488],[-154.806114,56.434182],[-154.777505,56.462199],[-154.739644,56.496332],[-154.70614,56.521273],[-154.534726,56.60054],[-154.524629,56.603925],[-154.514078,56.604059],[-154.449965,56.600361],[-154.413435,56.586768],[-154.402289,56.580543],[-154.399389,56.576411],[-154.404015,56.572287]]],[[[-153.940505,56.558317],[-153.915288,56.564921],[-153.878764,56.565925],[-153.870804,56.558015],[-153.868461,56.551493],[-153.887678,56.533637],[-153.952958,56.507174],[-153.993909,56.501796],[-154.120244,56.501838],[-154.143711,56.506172],[-154.163987,56.507844],[-154.19728,56.502002],[-154.232464,56.491052],[-154.304371,56.502322],[-154.343096,56.510171],[-154.3474,56.512046],[-154.361378,56.52564],[-154.362361,56.542512],[-154.341401,56.563705],[-154.310913,56.585447],[-154.29002,56.595376],[-154.244234,56.609194],[-154.223759,56.612955],[-154.210336,56.609684],[-154.206001,56.606908],[-154.184819,56.603773],[-154.136739,56.60935],[-154.113397,56.616745],[-154.103243,56.617695],[-154.095833,56.617786],[-154.090014,56.614798],[-154.081829,56.603716],[-154.079016,56.589977],[-154.075187,56.583745],[-154.041572,56.556209],[-154.025334,56.551763],[-154.009274,56.551445],[-153.940505,56.558317]]],[[[-152.417424,57.815464],[-152.364079,57.829372],[-152.351152,57.834768],[-152.324284,57.824444],[-152.310927,57.783452],[-152.317267,57.771987],[-152.322172,57.768315],[-152.342674,57.762306],[-152.348644,57.764393],[-152.349169,57.76848],[-152.357233,57.773918],[-152.381076,57.776744],[-152.443786,57.776142],[-152.46555,57.767169],[-152.471,57.763466],[-152.497314,57.738596],[-152.497056,57.734387],[-152.467679,57.68139],[-152.44303,57.668049],[-152.401492,57.686513],[-152.398569,57.68721],[-152.394474,57.684665],[-152.428946,57.642162],[-152.461018,57.606311],[-152.468172,57.600996],[-152.467756,57.598221],[-152.459929,57.594373],[-152.439667,57.590399],[-152.426062,57.593357],[-152.40247,57.607981],[-152.38714,57.612428],[-152.361903,57.6188],[-152.322733,57.623402],[-152.265346,57.62643],[-152.179531,57.624809],[-152.161617,57.623287],[-152.152393,57.619485],[-152.159677,57.593614],[-152.163996,57.584607],[-152.259641,57.527156],[-152.29147,57.517103],[-152.314889,57.486065],[-152.323683,57.467861],[-152.326134,57.441514],[-152.361592,57.427761],[-152.416473,57.435293],[-152.495215,57.452379],[-152.517004,57.432184],[-152.570527,57.448909],[-152.600375,57.468833],[-152.646017,57.466134],[-152.662831,57.463679],[-152.684413,57.466597],[-152.716765,57.478467],[-152.720471,57.481572],[-152.719447,57.488028],[-152.722846,57.494087],[-152.743084,57.50571],[-152.770196,57.50429],[-152.798914,57.494255],[-152.809036,57.494505],[-152.825515,57.497048],[-152.838905,57.50227],[-152.886205,57.510697],[-152.939629,57.520088],[-152.954939,57.520449],[-152.9663,57.51217],[-152.967222,57.509993],[-152.94901,57.498212],[-152.939573,57.497763],[-152.921748,57.501397],[-152.890173,57.486705],[-152.762676,57.45756],[-152.742678,57.447852],[-152.722651,57.433352],[-152.67325,57.413246],[-152.630018,57.405573],[-152.620377,57.401601],[-152.601148,57.382165],[-152.606522,57.36366],[-152.630441,57.322668],[-152.657569,57.303551],[-152.695698,57.281318],[-152.707768,57.276046],[-152.712008,57.27812],[-152.774155,57.290432],[-152.787994,57.279905],[-152.818187,57.265368],[-152.886384,57.291337],[-152.900688,57.302976],[-152.909051,57.324222],[-152.984715,57.339918],[-153.008525,57.339733],[-153.056007,57.329229],[-153.079288,57.32196],[-153.09904,57.310513],[-153.11628,57.297312],[-153.101322,57.286901],[-153.096133,57.286866],[-153.039134,57.293314],[-153.017643,57.297715],[-153.015994,57.300231],[-153.012992,57.299453],[-152.97091,57.282624],[-152.944201,57.259083],[-152.943463,57.256956],[-152.950982,57.248991],[-152.997739,57.231176],[-153.056971,57.214756],[-153.077916,57.211444],[-153.125477,57.211841],[-153.163333,57.216713],[-153.169724,57.220236],[-153.201722,57.221679],[-153.209732,57.218773],[-153.215107,57.213356],[-153.215967,57.209297],[-153.213802,57.205059],[-153.166002,57.180643],[-153.123865,57.175445],[-153.097019,57.183289],[-153.073982,57.187091],[-152.949333,57.187346],[-152.880321,57.164798],[-152.874839,57.16095],[-152.869797,57.150849],[-152.90054,57.132076],[-152.911371,57.126813],[-152.950736,57.119788],[-152.997246,57.119491],[-153.118673,57.091033],[-153.128881,57.092571],[-153.132708,57.094936],[-153.133988,57.099351],[-153.146361,57.100883],[-153.18001,57.094523],[-153.21544,57.075943],[-153.220953,57.068239],[-153.22224,57.061798],[-153.221204,57.060367],[-153.213318,57.055891],[-153.205384,57.056148],[-153.200217,57.042039],[-153.204319,57.03364],[-153.235282,57.007398],[-153.301142,56.991192],[-153.312583,56.991486],[-153.348707,57.008373],[-153.349037,57.011196],[-153.320929,57.036838],[-153.324265,57.043308],[-153.365239,57.07208],[-153.396921,57.060399],[-153.402608,57.070092],[-153.404263,57.080511],[-153.384699,57.115354],[-153.380389,57.120468],[-153.345533,57.139565],[-153.328206,57.141993],[-153.284012,57.173867],[-153.282735,57.175815],[-153.286351,57.184288],[-153.310143,57.194426],[-153.350266,57.192339],[-153.36818,57.185337],[-153.368921,57.180832],[-153.366525,57.176708],[-153.48652,57.085915],[-153.4896,57.074702],[-153.49885,57.065363],[-153.535942,57.077988],[-153.563562,57.089769],[-153.577006,57.093177],[-153.654497,57.084602],[-153.675981,57.06983],[-153.675736,57.054778],[-153.66381,57.053694],[-153.601294,57.056656],[-153.595819,57.056309],[-153.580831,57.049048],[-153.543429,56.995245],[-153.556762,56.968862],[-153.600664,56.942629],[-153.627483,56.937127],[-153.671317,56.932926],[-153.701197,56.926394],[-153.730713,56.893996],[-153.715263,56.878442],[-153.704603,56.878046],[-153.695896,56.881009],[-153.688713,56.871975],[-153.696693,56.861519],[-153.714644,56.852925],[-153.778199,56.834386],[-153.796111,56.842655],[-153.800935,56.846894],[-153.807353,56.848584],[-153.817978,56.848651],[-153.849289,56.838915],[-153.854196,56.836412],[-153.90358,56.793418],[-153.924041,56.767216],[-153.963274,56.7476],[-153.97178,56.744861],[-153.990158,56.743263],[-154.016213,56.743466],[-154.02261,56.755946],[-154.037153,56.763414],[-154.050518,56.763523],[-154.064292,56.760091],[-154.085088,56.751193],[-154.106565,56.745572],[-154.129017,56.742168],[-154.136965,56.742359],[-154.148745,56.745677],[-154.125431,56.783298],[-154.072878,56.841099],[-154.067425,56.845303],[-154.055228,56.850465],[-154.040948,56.854135],[-154.030502,56.855052],[-153.984547,56.889626],[-153.935992,56.915772],[-153.894564,56.926986],[-153.862954,56.944374],[-153.850464,56.957278],[-153.873411,56.963403],[-153.902802,56.968445],[-153.913627,56.965391],[-153.917703,56.962169],[-153.934781,56.958928],[-153.976871,56.955144],[-153.979743,56.962189],[-153.976869,56.996831],[-153.932221,57.06297],[-153.887461,57.086958],[-153.875356,57.089802],[-153.858891,57.088844],[-153.804787,57.113158],[-153.783465,57.131822],[-153.776707,57.142858],[-153.779087,57.158821],[-153.788521,57.161381],[-153.80629,57.157424],[-153.822875,57.142372],[-153.823978,57.13979],[-153.861711,57.119224],[-153.982792,57.066277],[-153.993807,57.050502],[-154.024288,57.016608],[-154.055554,56.987209],[-154.076623,56.970589],[-154.123489,56.95617],[-154.145167,56.945034],[-154.159014,56.945323],[-154.165409,56.943244],[-154.21211,56.909749],[-154.22356,56.896064],[-154.227193,56.883026],[-154.226494,56.876257],[-154.231771,56.872294],[-154.276739,56.853648],[-154.298965,56.846479],[-154.305713,56.846871],[-154.300193,56.852023],[-154.298422,56.863176],[-154.300002,56.892252],[-154.306936,56.911783],[-154.312888,56.918673],[-154.385285,56.959767],[-154.40749,56.968334],[-154.476315,56.984204],[-154.511672,56.988548],[-154.524695,56.991623],[-154.528538,57.001892],[-154.516842,57.030312],[-154.515213,57.077985],[-154.529844,57.168882],[-154.533699,57.183513],[-154.539552,57.196351],[-154.574343,57.239919],[-154.594977,57.257161],[-154.613723,57.2678],[-154.691855,57.28411],[-154.698264,57.284294],[-154.740161,57.276517],[-154.777368,57.280008],[-154.792054,57.286696],[-154.79384,57.288862],[-154.751537,57.307781],[-154.74309,57.31477],[-154.700598,57.401162],[-154.699629,57.412873],[-154.702588,57.420528],[-154.69331,57.446085],[-154.629678,57.510197],[-154.618704,57.514972],[-154.602546,57.518751],[-154.591678,57.518597],[-154.540923,57.539621],[-154.52206,57.577786],[-154.511233,57.578646],[-154.500282,57.574423],[-154.468328,57.570339],[-154.431841,57.584783],[-154.411385,57.598452],[-154.344244,57.630901],[-154.22566,57.661366],[-154.196959,57.664639],[-154.186597,57.658578],[-154.08613,57.649054],[-154.056226,57.65243],[-154.031592,57.660854],[-153.994572,57.656905],[-153.983015,57.649835],[-153.982581,57.648251],[-153.984847,57.604595],[-153.982199,57.553156],[-153.971114,57.539436],[-153.94755,57.540244],[-153.939099,57.538271],[-153.929265,57.533253],[-153.925905,57.529051],[-153.922982,57.520153],[-153.922183,57.499036],[-153.919897,57.485202],[-153.909415,57.442413],[-153.8958,57.422108],[-153.802932,57.350896],[-153.795299,57.349047],[-153.774275,57.360243],[-153.773191,57.372442],[-153.811506,57.412375],[-153.872922,57.445743],[-153.874177,57.447817],[-153.888891,57.504682],[-153.87595,57.542769],[-153.869096,57.551844],[-153.848082,57.560589],[-153.824823,57.577617],[-153.813136,57.588581],[-153.823753,57.597651],[-153.846828,57.612648],[-153.852502,57.613517],[-153.877756,57.629529],[-153.879943,57.634072],[-153.874286,57.64611],[-153.868275,57.649688],[-153.858545,57.651138],[-153.749178,57.646224],[-153.705322,57.640923],[-153.667261,57.639008],[-153.663007,57.639858],[-153.648693,57.654125],[-153.658008,57.66148],[-153.676721,57.669663],[-153.797971,57.696508],[-153.862886,57.706943],[-153.888099,57.705447],[-153.918344,57.695663],[-153.930279,57.696791],[-153.932964,57.703778],[-153.93522,57.813047],[-153.823385,57.865013],[-153.755054,57.883565],[-153.721176,57.890615],[-153.648798,57.880103],[-153.571362,57.832101],[-153.550823,57.78689],[-153.551088,57.76311],[-153.553251,57.759512],[-153.557647,57.734741],[-153.554226,57.72245],[-153.549605,57.717967],[-153.515205,57.716505],[-153.493401,57.728316],[-153.469892,57.766536],[-153.462463,57.795292],[-153.480377,57.814665],[-153.48735,57.834274],[-153.479457,57.84202],[-153.45156,57.839284],[-153.406716,57.828663],[-153.35358,57.809731],[-153.343408,57.810866],[-153.324872,57.831048],[-153.322687,57.83619],[-153.324881,57.848421],[-153.328137,57.849851],[-153.395813,57.858772],[-153.446406,57.875035],[-153.462011,57.880588],[-153.512024,57.909156],[-153.528697,57.921717],[-153.536524,57.93077],[-153.533204,57.941117],[-153.520392,57.963387],[-153.513347,57.968751],[-153.484603,57.9765],[-153.469421,57.977282],[-153.461113,57.972769],[-153.452645,57.963509],[-153.273676,57.890408],[-153.268149,57.888741],[-153.236952,57.891818],[-153.127278,57.856748],[-153.122513,57.856639],[-153.09342,57.861569],[-153.089419,57.865233],[-153.198618,57.929923],[-153.233229,57.940993],[-153.270325,57.958566],[-153.299009,57.985626],[-153.302198,57.991706],[-153.297756,57.996425],[-153.276536,57.998447],[-153.23473,57.996972],[-153.221576,57.989319],[-153.217306,57.983659],[-153.129494,57.946551],[-153.069857,57.934428],[-153.052671,57.936711],[-153.050941,57.939998],[-153.024425,57.956954],[-152.876197,57.932446],[-152.871663,57.933279],[-152.856284,57.947385],[-152.852785,57.974583],[-152.855096,57.994501],[-152.840896,57.996759],[-152.723425,57.99172],[-152.722524,57.987364],[-152.739766,57.944798],[-152.751978,57.933466],[-152.804807,57.899175],[-152.823299,57.890928],[-152.892517,57.842525],[-152.902633,57.830146],[-152.909791,57.810405],[-152.916334,57.771216],[-152.904312,57.750825],[-152.892875,57.742012],[-152.881998,57.73832],[-152.874498,57.737961],[-152.850336,57.740041],[-152.847811,57.746625],[-152.852269,57.752318],[-152.854718,57.770271],[-152.849997,57.821462],[-152.841361,57.830221],[-152.822543,57.843203],[-152.790211,57.858058],[-152.758168,57.840272],[-152.753437,57.834452],[-152.725302,57.8354],[-152.650456,57.863721],[-152.625607,57.881232],[-152.626441,57.89045],[-152.639887,57.899688],[-152.641805,57.902499],[-152.639375,57.91422],[-152.635378,57.91861],[-152.587705,57.926961],[-152.585985,57.908101],[-152.567395,57.900358],[-152.549661,57.900137],[-152.526283,57.913266],[-152.487666,57.941968],[-152.470336,57.962099],[-152.432608,57.976029],[-152.421408,57.975683],[-152.415177,57.973081],[-152.411618,57.969282],[-152.422573,57.948662],[-152.437604,57.939834],[-152.437416,57.936978],[-152.426458,57.930851],[-152.388626,57.924486],[-152.362161,57.9262],[-152.324103,57.916604],[-152.333209,57.90255],[-152.364777,57.883921],[-152.377063,57.886728],[-152.38613,57.890706],[-152.39475,57.894602],[-152.4037,57.901146],[-152.414977,57.902231],[-152.44824,57.902605],[-152.468511,57.888621],[-152.433653,57.824314],[-152.429326,57.820114],[-152.417424,57.815464]]],[[[-134.283312,55.925175],[-134.265872,55.917371],[-134.230613,55.905629],[-134.173104,55.918519],[-134.152216,55.920916],[-134.122839,55.918654],[-134.118062,55.914642],[-134.125521,55.902095],[-134.130544,55.897512],[-134.136647,55.895393],[-134.145803,55.896713],[-134.168363,55.892319],[-134.208251,55.876709],[-134.231157,55.864747],[-134.240537,55.853922],[-134.273156,55.833058],[-134.282453,55.828667],[-134.327238,55.83644],[-134.344418,55.843198],[-134.348153,55.892817],[-134.336063,55.926614],[-134.315782,55.923003],[-134.283312,55.925175]]],[[[-134.121514,56.069847],[-134.107218,56.048156],[-134.118132,56.016922],[-134.126903,56.003592],[-134.130907,56.000104],[-134.134181,56.000971],[-134.156721,56.02108],[-134.171731,56.040227],[-134.190863,56.05654],[-134.224073,56.065223],[-134.230449,56.068341],[-134.259913,56.121275],[-134.262217,56.133222],[-134.238264,56.140863],[-134.227942,56.162835],[-134.257478,56.221411],[-134.246307,56.267768],[-134.281387,56.286218],[-134.295634,56.289228],[-134.298292,56.291993],[-134.292353,56.352644],[-134.238139,56.382806],[-134.193922,56.409906],[-134.190494,56.429749],[-134.196394,56.4398],[-134.210968,56.450498],[-134.236978,56.452363],[-134.246627,56.457135],[-134.246179,56.463511],[-134.244667,56.4651],[-134.222814,56.475402],[-134.200909,56.463297],[-134.186476,56.450571],[-134.179214,56.440305],[-134.146136,56.411069],[-134.067466,56.390987],[-134.046227,56.402275],[-134.042704,56.407697],[-134.040938,56.42153],[-134.089604,56.472582],[-134.133892,56.487825],[-134.252386,56.560861],[-134.281093,56.585555],[-134.276735,56.62029],[-134.309869,56.650509],[-134.369035,56.678022],[-134.401407,56.725419],[-134.419791,56.838385],[-134.41894,56.846524],[-134.411471,56.855837],[-134.376975,56.880055],[-134.339168,56.90183],[-134.316868,56.909091],[-134.294362,56.908714],[-134.286818,56.906534],[-134.19095,56.861675],[-134.187063,56.856714],[-134.171675,56.851218],[-134.14716,56.859357],[-134.141933,56.874188],[-134.150935,56.884958],[-134.181383,56.892572],[-134.220002,56.905084],[-134.273113,56.933823],[-134.271664,56.935928],[-134.249327,56.937374],[-134.223939,56.932553],[-134.178507,56.914018],[-134.158108,56.915029],[-134.13624,56.928842],[-134.141236,56.942081],[-134.141385,56.950887],[-134.126562,56.947381],[-134.083291,56.931579],[-134.03514,56.89451],[-133.972257,56.826934],[-133.946767,56.798924],[-133.925648,56.758912],[-133.944663,56.736433],[-133.941801,56.733493],[-133.907795,56.72184],[-133.880781,56.721396],[-133.869334,56.734081],[-133.862981,56.75565],[-133.865056,56.77324],[-133.867616,56.782025],[-133.87225,56.786186],[-133.877395,56.789192],[-133.884755,56.788656],[-133.890005,56.792468],[-133.893861,56.802526],[-133.890805,56.80798],[-133.861472,56.808837],[-133.837925,56.801788],[-133.818194,56.791453],[-133.76778,56.780469],[-133.748129,56.773919],[-133.743376,56.762291],[-133.744002,56.749772],[-133.766143,56.728886],[-133.766143,56.718242],[-133.762049,56.696135],[-133.76278,56.68718],[-133.75965,56.675913],[-133.745673,56.674028],[-133.728479,56.642915],[-133.727728,56.630846],[-133.713331,56.598298],[-133.713331,56.592664],[-133.723142,56.583962],[-133.731617,56.572304],[-133.848207,56.573057],[-133.895746,56.511217],[-133.898589,56.489877],[-133.88108,56.480803],[-133.868625,56.470919],[-133.839117,56.434885],[-133.839238,56.432018],[-133.859104,56.430348],[-133.869729,56.431796],[-133.89304,56.427364],[-133.933512,56.375428],[-133.894358,56.360989],[-133.850314,56.347417],[-133.839099,56.335467],[-133.834671,56.322382],[-133.89094,56.234467],[-133.912992,56.208351],[-133.92342,56.211725],[-133.942205,56.20946],[-133.953825,56.206661],[-133.957471,56.202584],[-133.957575,56.199887],[-133.937349,56.166129],[-133.956411,56.095484],[-133.971228,56.083293],[-133.989359,56.081347],[-134.01392,56.085374],[-134.021028,56.088745],[-134.038695,56.105807],[-134.041765,56.116337],[-134.029643,56.134864],[-134.024495,56.148164],[-134.024356,56.160382],[-134.030964,56.193214],[-134.054411,56.224854],[-134.058499,56.227214],[-134.087317,56.225424],[-134.095013,56.214751],[-134.105098,56.180941],[-134.153663,56.1697],[-134.161971,56.170153],[-134.180057,56.161635],[-134.190371,56.152571],[-134.166141,56.144564],[-134.125902,56.139804],[-134.110755,56.141053],[-134.109236,56.078732],[-134.121514,56.069847]]],[[[-132.546463,56.606563],[-132.539698,56.593199],[-132.541282,56.584573],[-132.61083,56.556252],[-132.627435,56.552428],[-132.628511,56.553553],[-132.65091,56.552127],[-132.701275,56.52958],[-132.724189,56.515371],[-132.796627,56.496471],[-132.818043,56.494934],[-132.874282,56.509108],[-132.984751,56.51264],[-132.986907,56.510784],[-133.041726,56.518356],[-133.071828,56.553483],[-133.075496,56.578684],[-133.025091,56.605048],[-133.110329,56.669727],[-133.143198,56.682979],[-133.184363,56.706526],[-133.212185,56.736822],[-133.225298,56.755591],[-133.233331,56.771095],[-133.235251,56.775639],[-133.233646,56.779447],[-133.244689,56.792649],[-133.264047,56.814544],[-133.277352,56.816432],[-133.325392,56.791864],[-133.334308,56.773402],[-133.332845,56.761663],[-133.31986,56.737693],[-133.303752,56.729879],[-133.272958,56.733653],[-133.266844,56.734882],[-133.265608,56.738237],[-133.266768,56.741943],[-133.261381,56.747459],[-133.250686,56.751431],[-133.219681,56.706887],[-133.221517,56.697886],[-133.232516,56.681336],[-133.233684,56.649286],[-133.214228,56.649592],[-133.151444,56.637672],[-133.106316,56.618393],[-133.103363,56.614645],[-133.089388,56.535474],[-133.089215,56.523916],[-133.112907,56.529295],[-133.138307,56.532923],[-133.142099,56.528591],[-133.142482,56.519697],[-133.139228,56.515994],[-133.124726,56.511439],[-133.122245,56.49202],[-133.14873,56.467357],[-133.160996,56.460257],[-133.203584,56.447657],[-133.348504,56.469568],[-133.3563,56.471794],[-133.361615,56.486073],[-133.371889,56.493689],[-133.376245,56.495592],[-133.401797,56.496355],[-133.417795,56.494147],[-133.428585,56.479247],[-133.460634,56.45412],[-133.512684,56.437015],[-133.532969,56.434751],[-133.603669,56.435413],[-133.638349,56.438881],[-133.655468,56.442279],[-133.663094,56.448073],[-133.671653,56.487656],[-133.675836,56.522714],[-133.675696,56.538672],[-133.672262,56.544152],[-133.664509,56.550727],[-133.662631,56.555735],[-133.663064,56.56207],[-133.667639,56.57639],[-133.662631,56.598924],[-133.667639,56.607687],[-133.673621,56.611801],[-133.679352,56.633089],[-133.689178,56.643734],[-133.698309,56.649624],[-133.70582,56.658387],[-133.709576,56.683424],[-133.706372,56.696954],[-133.699822,56.710054],[-133.696547,56.744443],[-133.689996,56.761637],[-133.686416,56.779817],[-133.68099,56.795207],[-133.679352,56.810764],[-133.689996,56.839421],[-133.699822,56.839421],[-133.712922,56.827958],[-133.741579,56.81322],[-133.765324,56.807489],[-133.772302,56.809495],[-133.787484,56.821366],[-133.795364,56.824586],[-133.86904,56.845938],[-133.887426,56.868391],[-133.916358,56.914447],[-133.903634,56.927269],[-133.921451,56.961511],[-133.96706,56.988044],[-134.049218,57.029203],[-134.033979,57.063281],[-134.008856,57.074578],[-133.887957,57.097744],[-133.773464,57.078676],[-133.702925,57.065206],[-133.613908,57.057978],[-133.536258,57.0387],[-133.446204,57.020124],[-133.362502,57.007424],[-133.346321,57.004118],[-133.344217,57.001834],[-133.334272,57.002442],[-133.325058,57.011711],[-133.308317,57.014762],[-133.104611,57.005701],[-132.99743,56.942201],[-132.98137,56.92738],[-132.947081,56.870963],[-132.935933,56.839963],[-132.935258,56.822941],[-132.903211,56.80361],[-132.872512,56.798144],[-132.85315,56.79781],[-132.820556,56.793787],[-132.762964,56.753227],[-132.741709,56.724278],[-132.743207,56.71372],[-132.665874,56.680241],[-132.628129,56.66883],[-132.622788,56.66871],[-132.619258,56.660778],[-132.62545,56.65321],[-132.628201,56.645642],[-132.62545,56.642202],[-132.616506,56.63945],[-132.605498,56.623627],[-132.595179,56.613308],[-132.57454,56.61262],[-132.56078,56.607804],[-132.553213,56.608492],[-132.546463,56.606563]]],[[[-134.666587,56.169947],[-134.668151,56.167026],[-134.674028,56.166925],[-134.705007,56.175722],[-134.806163,56.235533],[-134.824902,56.279692],[-134.839411,56.309403],[-134.915911,56.360555],[-134.945704,56.38971],[-134.990763,56.457998],[-135.02378,56.499977],[-135.054049,56.527658],[-135.058238,56.529453],[-135.060878,56.541965],[-135.056756,56.570611],[-135.045054,56.583392],[-135.02674,56.594625],[-135.005249,56.602252],[-134.997669,56.597272],[-134.985881,56.595844],[-134.967164,56.603026],[-134.969842,56.615392],[-134.979386,56.627676],[-134.998369,56.630017],[-135.029747,56.628918],[-135.036432,56.619628],[-135.065693,56.607852],[-135.091611,56.600068],[-135.103271,56.597927],[-135.118709,56.597728],[-135.123389,56.602823],[-135.148836,56.648915],[-135.147761,56.651932],[-135.175826,56.677876],[-135.224142,56.687858],[-135.27491,56.701633],[-135.305077,56.726382],[-135.317429,56.743311],[-135.318082,56.748688],[-135.29643,56.756294],[-135.281608,56.758528],[-135.280875,56.768357],[-135.310159,56.778093],[-135.352176,56.771196],[-135.398678,56.779201],[-135.412989,56.810079],[-135.408542,56.826014],[-135.368899,56.892589],[-135.347244,56.89998],[-135.332356,56.913951],[-135.35409,56.9365],[-135.379725,56.953039],[-135.383376,56.981544],[-135.360232,57.002231],[-135.342801,57.001874],[-135.329492,57.004507],[-135.325216,57.010866],[-135.31278,57.044984],[-135.333998,57.050403],[-135.349229,57.041535],[-135.3741,57.045391],[-135.377763,57.05291],[-135.369858,57.057923],[-135.36571,57.066062],[-135.378337,57.081622],[-135.384617,57.087725],[-135.388859,57.089026],[-135.401721,57.098654],[-135.40414,57.109318],[-135.405293,57.114508],[-135.406158,57.119697],[-135.405293,57.138149],[-135.409703,57.148861],[-135.422746,57.167724],[-135.399312,57.185003],[-135.372441,57.198063],[-135.37758,57.206302],[-135.372021,57.228003],[-135.361771,57.233591],[-135.358715,57.243776],[-135.366177,57.248852],[-135.406086,57.251678],[-135.414799,57.251324],[-135.429229,57.247213],[-135.449073,57.248104],[-135.470189,57.255752],[-135.477683,57.256824],[-135.503121,57.253809],[-135.511241,57.247077],[-135.552574,57.233194],[-135.561883,57.241868],[-135.561853,57.244067],[-135.568954,57.255186],[-135.602297,57.285707],[-135.604161,57.290437],[-135.600688,57.294074],[-135.601782,57.300772],[-135.631415,57.311568],[-135.637423,57.315276],[-135.638209,57.320278],[-135.674687,57.336747],[-135.684597,57.350328],[-135.695563,57.35746],[-135.69512,57.363077],[-135.687696,57.367477],[-135.659614,57.373907],[-135.639556,57.371883],[-135.630627,57.379595],[-135.628016,57.383393],[-135.627022,57.388207],[-135.633573,57.394211],[-135.633654,57.399102],[-135.626007,57.399578],[-135.604184,57.409932],[-135.585395,57.416811],[-135.570872,57.417459],[-135.554548,57.426636],[-135.555321,57.436738],[-135.557806,57.438236],[-135.56099,57.437455],[-135.561916,57.438505],[-135.562234,57.440413],[-135.562234,57.44272],[-135.558496,57.444788],[-135.556109,57.446458],[-135.540158,57.446241],[-135.534221,57.450252],[-135.532069,57.481117],[-135.548794,57.508977],[-135.526036,57.509697],[-135.491537,57.531687],[-135.443404,57.556876],[-135.419205,57.564159],[-135.355749,57.553568],[-135.347597,57.550232],[-135.322925,57.533476],[-135.294491,57.510836],[-135.294837,57.50872],[-135.308458,57.495201],[-135.297784,57.483721],[-135.265557,57.48086],[-135.246114,57.483598],[-135.227293,57.489838],[-135.209123,57.488753],[-135.161017,57.460713],[-135.168056,57.454212],[-135.159206,57.445568],[-135.145949,57.439049],[-135.06505,57.418972],[-135.039634,57.418131],[-135.026566,57.420497],[-134.926516,57.422267],[-134.89344,57.420044],[-134.849477,57.40967],[-134.806352,57.341888],[-134.812769,57.299765],[-134.829365,57.294098],[-134.835211,57.300315],[-134.88478,57.330003],[-134.921651,57.330713],[-134.951267,57.32866],[-134.953951,57.323723],[-134.955014,57.309433],[-134.953011,57.306131],[-134.946626,57.303164],[-134.922329,57.303708],[-134.879535,57.288177],[-134.854948,57.264766],[-134.841774,57.248588],[-134.755886,57.058035],[-134.73788,57.009935],[-134.7383,56.968059],[-134.740135,56.948481],[-134.719275,56.929031],[-134.695735,56.900791],[-134.699099,56.850864],[-134.674238,56.825177],[-134.663434,56.804687],[-134.633997,56.728722],[-134.619799,56.665888],[-134.615955,56.637289],[-134.626943,56.553868],[-134.634207,56.540968],[-134.639732,56.538835],[-134.671047,56.5412],[-134.669778,56.524129],[-134.663839,56.503183],[-134.658622,56.494676],[-134.655174,56.492033],[-134.645308,56.472215],[-134.636506,56.405625],[-134.63401,56.31584],[-134.634411,56.285341],[-134.634668,56.265832],[-134.653827,56.198385],[-134.65987,56.182494],[-134.666587,56.169947]]],[[[-135.587961,57.89732],[-135.596769,57.889705],[-135.58917,57.886409],[-135.575718,57.883548],[-135.518882,57.857383],[-135.503498,57.84086],[-135.469477,57.834466],[-135.377758,57.802212],[-135.376444,57.792039],[-135.364221,57.775347],[-135.328887,57.74842],[-135.29156,57.737468],[-135.201461,57.728171],[-135.151475,57.738296],[-135.098422,57.754898],[-135.063972,57.750847],[-135.024837,57.74299],[-135.012577,57.746105],[-134.97812,57.763125],[-134.939924,57.763612],[-134.929726,57.759203],[-134.921604,57.742376],[-134.91479,57.705821],[-134.918167,57.682272],[-134.867433,57.623439],[-134.856386,57.598967],[-134.824891,57.500067],[-134.83712,57.482761],[-134.874346,57.464406],[-134.90268,57.459349],[-135.025148,57.454315],[-135.084338,57.464671],[-135.091216,57.466352],[-135.096818,57.469916],[-135.134063,57.497681],[-135.242855,57.546302],[-135.325849,57.577178],[-135.392499,57.599909],[-135.474703,57.631381],[-135.514801,57.650349],[-135.571606,57.674397],[-135.593447,57.663795],[-135.650701,57.65252],[-135.684951,57.677508],[-135.712317,57.672648],[-135.704444,57.658361],[-135.697422,57.649711],[-135.660902,57.629196],[-135.592778,57.602474],[-135.571186,57.605367],[-135.546143,57.613826],[-135.526303,57.606388],[-135.511012,57.595906],[-135.519471,57.588615],[-135.52761,57.589003],[-135.557812,57.583449],[-135.570574,57.579613],[-135.587475,57.568829],[-135.588477,57.552081],[-135.575724,57.522874],[-135.577831,57.52053],[-135.578215,57.516445],[-135.565271,57.510209],[-135.549627,57.482016],[-135.55031,57.470141],[-135.553903,57.45487],[-135.557765,57.451966],[-135.610454,57.442232],[-135.613576,57.438173],[-135.611786,57.431154],[-135.612882,57.424907],[-135.621725,57.419245],[-135.626558,57.409961],[-135.647179,57.406132],[-135.664449,57.407229],[-135.667985,57.405124],[-135.669837,57.400578],[-135.670267,57.396215],[-135.668153,57.392832],[-135.669416,57.389296],[-135.691043,57.383518],[-135.6924,57.375267],[-135.711401,57.36776],[-135.720478,57.373663],[-135.768018,57.383435],[-135.84381,57.390896],[-135.892131,57.408048],[-135.900816,57.418181],[-135.896979,57.440719],[-135.943766,57.45878],[-135.966986,57.472759],[-136.014529,57.506227],[-136.030458,57.52154],[-136.021283,57.531551],[-136.001717,57.544499],[-136.061747,57.592068],[-136.106796,57.616567],[-136.130611,57.624607],[-136.187897,57.62573],[-136.207876,57.638107],[-136.280809,57.717379],[-136.314631,57.758703],[-136.304684,57.771051],[-136.309429,57.779465],[-136.365052,57.828561],[-136.370705,57.831668],[-136.372377,57.832587],[-136.391157,57.832653],[-136.458829,57.853901],[-136.474424,57.871648],[-136.484259,57.89646],[-136.534201,57.913938],[-136.557651,57.912135],[-136.572045,57.918469],[-136.573288,57.926844],[-136.563223,58.035052],[-136.559999,58.063358],[-136.556247,58.077019],[-136.538708,58.093482],[-136.500119,58.104787],[-136.475811,58.101294],[-136.469272,58.096868],[-136.446286,58.11334],[-136.420449,58.131857],[-136.365544,58.148854],[-136.354836,58.192279],[-136.36138,58.214289],[-136.373277,58.232135],[-136.387113,58.252414],[-136.404805,58.267232],[-136.400046,58.271991],[-136.317954,58.273775],[-136.284047,58.269611],[-136.287021,58.245817],[-136.283886,58.223685],[-136.239246,58.171913],[-136.199854,58.180871],[-136.162108,58.218724],[-136.139007,58.224393],[-136.03616,58.21921],[-136.03303,58.205462],[-135.976386,58.202029],[-135.966119,58.211386],[-135.914178,58.244073],[-135.823562,58.282975],[-135.801133,58.287716],[-135.78338,58.286709],[-135.764372,58.266276],[-135.7351,58.240213],[-135.712398,58.231892],[-135.630521,58.222933],[-135.589198,58.213677],[-135.522646,58.185909],[-135.504671,58.174914],[-135.497911,58.168882],[-135.524668,58.12075],[-135.540712,58.10175],[-135.58682,58.08167],[-135.651368,58.036484],[-135.63849,57.994508],[-135.621582,57.984623],[-135.593287,57.989636],[-135.581753,57.997568],[-135.564307,58.015007],[-135.567817,58.02342],[-135.565443,58.04112],[-135.563434,58.043491],[-135.544529,58.06088],[-135.496739,58.086212],[-135.451444,58.134348],[-135.420107,58.144202],[-135.411777,58.145473],[-135.397518,58.144155],[-135.275797,58.097024],[-135.260951,58.097323],[-135.108896,58.08827],[-135.084832,58.080869],[-135.082981,58.074737],[-135.0707,58.061242],[-134.977183,58.049943],[-134.967723,58.047625],[-134.950844,58.036993],[-134.935005,58.021639],[-134.912854,57.979287],[-134.921104,57.935298],[-134.926395,57.921919],[-135.004952,57.884338],[-135.140674,57.926114],[-135.173712,57.919399],[-135.16522,57.901524],[-135.146717,57.891656],[-135.131957,57.885241],[-135.06572,57.869451],[-134.991819,57.835436],[-134.954547,57.815785],[-134.949436,57.805027],[-135.02337,57.780537],[-135.19896,57.775092],[-135.225158,57.777783],[-135.313776,57.805739],[-135.343991,57.821444],[-135.389894,57.850991],[-135.418517,57.860506],[-135.514151,57.885371],[-135.552802,57.902711],[-135.581326,57.903056],[-135.587961,57.89732]]],[[[-135.514886,57.139367],[-135.540465,57.1471],[-135.549983,57.156618],[-135.549388,57.175654],[-135.547009,57.208966],[-135.535707,57.226812],[-135.50066,57.236785],[-135.453207,57.235253],[-135.406163,57.234273],[-135.397103,57.223838],[-135.404836,57.207182],[-135.455995,57.17268],[-135.492876,57.158998],[-135.507748,57.141152],[-135.514886,57.139367]]],[[[-135.703464,57.32204],[-135.702919,57.315582],[-135.705483,57.308557],[-135.688233,57.276143],[-135.657272,57.262027],[-135.690372,57.308904],[-135.688587,57.319017],[-135.683828,57.320206],[-135.642782,57.301765],[-135.570804,57.239899],[-135.571398,57.229787],[-135.577347,57.228597],[-135.601142,57.230976],[-135.654898,57.254742],[-135.658859,57.247964],[-135.6586,57.245541],[-135.656363,57.243036],[-135.637289,57.236124],[-135.621346,57.223693],[-135.620735,57.217885],[-135.604953,57.184204],[-135.596921,57.161196],[-135.602057,57.149161],[-135.5986,57.14536],[-135.592379,57.142683],[-135.581473,57.150599],[-135.575674,57.15053],[-135.565707,57.147312],[-135.565756,57.137344],[-135.575722,57.104231],[-135.574693,57.094339],[-135.635347,57.022411],[-135.65054,57.015139],[-135.68052,57.017342],[-135.753682,57.008258],[-135.764949,57.006094],[-135.767654,57.000428],[-135.772432,56.997301],[-135.821915,56.988215],[-135.854131,56.995043],[-135.857028,56.997287],[-135.852146,57.029699],[-135.841819,57.070899],[-135.83489,57.091387],[-135.805945,57.106778],[-135.776975,57.112555],[-135.755997,57.121225],[-135.735559,57.151755],[-135.735405,57.155403],[-135.752591,57.168834],[-135.762241,57.173341],[-135.785583,57.177929],[-135.800824,57.173655],[-135.83189,57.170717],[-135.871865,57.221161],[-135.849974,57.265895],[-135.840359,57.314342],[-135.855849,57.31996],[-135.859572,57.323108],[-135.860558,57.330854],[-135.851162,57.336916],[-135.838568,57.338756],[-135.761471,57.342631],[-135.730323,57.337286],[-135.715233,57.330722],[-135.703464,57.32204]]],[[[-162.587754,63.275727],[-162.571695,63.285556],[-162.437059,63.377836],[-162.432169,63.382606],[-162.426095,63.393651],[-162.428744,63.401055],[-162.42153,63.409014],[-162.384625,63.435797],[-162.352274,63.454069],[-162.301869,63.473422],[-162.271089,63.487711],[-162.268242,63.490799],[-162.267833,63.495084],[-162.288532,63.526412],[-162.301471,63.53735],[-162.296731,63.540108],[-162.252411,63.541753],[-162.190145,63.529886],[-162.151574,63.517952],[-162.123249,63.512807],[-162.108597,63.511927],[-162.073156,63.513768],[-162.041687,63.48965],[-162.045709,63.475434],[-162.050132,63.47285],[-162.050543,63.470589],[-162.039444,63.45893],[-162.025552,63.447539],[-161.930714,63.444843],[-161.839897,63.447313],[-161.765832,63.453803],[-161.70563,63.464061],[-161.676526,63.465003],[-161.591632,63.454244],[-161.583772,63.447857],[-161.553077,63.449217],[-161.450463,63.457178],[-161.310181,63.471312],[-161.191163,63.490072],[-161.136758,63.504525],[-161.13423,63.506735],[-161.119964,63.532544],[-161.102721,63.5478],[-161.036049,63.579566],[-160.924877,63.644814],[-160.904353,63.658024],[-160.809089,63.731332],[-160.783304,63.752893],[-160.76556,63.773552],[-160.761974,63.793453],[-160.766291,63.835189],[-160.787624,63.869196],[-160.810798,63.904646],[-160.851979,63.954409],[-160.877686,63.977265],[-160.892455,63.985943],[-160.93374,64.049729],[-160.951641,64.090067],[-160.955132,64.13803],[-160.956425,64.191732],[-160.953596,64.197775],[-160.946857,64.204158],[-160.976038,64.235761],[-161.228941,64.370747],[-161.263519,64.398166],[-161.313668,64.400874],[-161.410382,64.422107],[-161.463026,64.420074],[-161.470182,64.418814],[-161.492926,64.407851],[-161.504903,64.423074],[-161.479093,64.486401],[-161.469046,64.506575],[-161.388621,64.532783],[-161.373572,64.535028],[-161.362901,64.526913],[-161.351145,64.521382],[-161.321343,64.513865],[-161.234092,64.500365],[-161.198029,64.496626],[-161.155518,64.494687],[-161.078031,64.494094],[-161.024185,64.499719],[-161.015095,64.502124],[-161.013228,64.507521],[-161.01714,64.517124],[-161.037534,64.522246],[-161.045947,64.524948],[-161.05306,64.528504],[-161.055549,64.532416],[-161.052348,64.537395],[-161.049148,64.540952],[-160.992894,64.541295],[-160.970555,64.543884],[-160.940493,64.55],[-160.802048,64.610352],[-160.793356,64.619317],[-160.791614,64.623055],[-160.78357,64.680581],[-160.783398,64.71716],[-160.869571,64.783797],[-160.935974,64.82237],[-160.986417,64.833984],[-161.079718,64.869549],[-161.102755,64.880661],[-161.133062,64.898219],[-161.149655,64.911985],[-161.149366,64.916558],[-161.145725,64.920534],[-161.176009,64.927161],[-161.19212,64.921366],[-161.195202,64.918178],[-161.200893,64.905796],[-161.200964,64.898659],[-161.198586,64.894403],[-161.213756,64.883324],[-161.264283,64.86197],[-161.293049,64.853243],[-161.327848,64.829836],[-161.357867,64.805922],[-161.366808,64.793777],[-161.364438,64.782099],[-161.367483,64.778907],[-161.376985,64.773036],[-161.413493,64.762723],[-161.42986,64.759027],[-161.518211,64.75325],[-161.595506,64.764478],[-161.630287,64.77129],[-161.64552,64.776452],[-161.667261,64.788981],[-161.878363,64.709476],[-161.902429,64.703851],[-161.939279,64.699119],[-162.096528,64.690983],[-162.138832,64.685934],[-162.168516,64.68029],[-162.188146,64.672395],[-162.21662,64.656213],[-162.219718,64.644176],[-162.234477,64.619336],[-162.270025,64.60871],[-162.290571,64.605496],[-162.342308,64.59224],[-162.539996,64.530931],[-162.554875,64.520341],[-162.61422,64.470702],[-162.615452,64.467077],[-162.602178,64.456869],[-162.60302,64.448666],[-162.632242,64.385734],[-162.645156,64.379783],[-162.66768,64.375356],[-162.719218,64.359971],[-162.768424,64.333516],[-162.790167,64.325182],[-162.795636,64.327716],[-162.805385,64.336023],[-162.810004,64.352647],[-162.807205,64.364643],[-162.80035,64.374695],[-162.802266,64.395327],[-162.806612,64.405608],[-162.83654,64.436702],[-162.858556,64.474864],[-162.857562,64.49978],[-162.940776,64.542417],[-162.96925,64.54687],[-163.030657,64.542353],[-163.042618,64.540046],[-163.049291,64.549257],[-163.0274,64.559726],[-163.028352,64.569244],[-163.060712,64.58828],[-163.142566,64.609219],[-163.173975,64.639676],[-163.217757,64.632062],[-163.311983,64.58828],[-163.309128,64.571148],[-163.254876,64.549257],[-163.178734,64.543546],[-163.119723,64.510233],[-163.033231,64.519314],[-163.027158,64.477945],[-163.091486,64.437736],[-163.107459,64.409192],[-163.11945,64.403808],[-163.150789,64.397249],[-163.175336,64.399334],[-163.229206,64.430019],[-163.249092,64.456223],[-163.253027,64.469501],[-163.350926,64.505859],[-163.4129,64.524986],[-163.451482,64.53482],[-163.597834,64.563356],[-163.651943,64.567299],[-163.829739,64.574965],[-163.875774,64.572935],[-163.89618,64.564483],[-163.974352,64.55137],[-163.994532,64.551742],[-164.044839,64.559167],[-164.071997,64.56128],[-164.147059,64.564552],[-164.260064,64.56422],[-164.307273,64.561488],[-164.421871,64.545256],[-164.491327,64.529824],[-164.548298,64.516738],[-164.807747,64.449432],[-164.835679,64.444917],[-164.874421,64.441195],[-165.001961,64.433917],[-165.016519,64.434392],[-165.214182,64.469726],[-165.413443,64.497939],[-165.550573,64.512235],[-165.751093,64.536437],[-165.819595,64.540171],[-165.919704,64.54866],[-166.189546,64.575798],[-166.236939,64.583558],[-166.392403,64.638161],[-166.413926,64.651229],[-166.451788,64.691761],[-166.474714,64.719267],[-166.483801,64.733419],[-166.481076,64.786156],[-166.478978,64.797036],[-166.430516,64.807715],[-166.417028,64.81874],[-166.410198,64.827968],[-166.407303,64.834278],[-166.407315,64.852281],[-166.409331,64.859755],[-166.415624,64.871928],[-166.432246,64.88316],[-166.530518,64.937114],[-166.586066,64.955712],[-166.61511,64.96433],[-166.636843,64.968113],[-166.690814,64.985372],[-166.70483,64.997051],[-166.705283,64.999846],[-166.695206,65.005184],[-166.688762,65.018029],[-166.692426,65.029629],[-166.696453,65.035857],[-166.732794,65.053498],[-166.82091,65.077053],[-166.860402,65.090866],[-166.885451,65.105856],[-166.911922,65.125965],[-166.910131,65.134024],[-166.906687,65.13632],[-166.89772,65.139028],[-166.886677,65.138763],[-166.872666,65.136928],[-166.837496,65.128146],[-166.826753,65.119778],[-166.81679,65.117089],[-166.755554,65.110585],[-166.67032,65.10972],[-166.638411,65.113586],[-166.634449,65.125873],[-166.60607,65.135992],[-166.521506,65.149242],[-166.509566,65.152719],[-166.479913,65.167249],[-166.464192,65.177086],[-166.459984,65.183284],[-166.46005,65.189897],[-166.465342,65.194818],[-166.474839,65.217663],[-166.475297,65.224335],[-166.451711,65.236178],[-166.386271,65.254143],[-166.347189,65.276341],[-166.360618,65.288631],[-166.377721,65.297983],[-166.439404,65.319058],[-166.485968,65.3309],[-166.51864,65.335824],[-166.551097,65.338406],[-166.572735,65.338155],[-166.596964,65.336246],[-166.625987,65.325121],[-166.655179,65.324938],[-166.679717,65.326856],[-166.796001,65.337184],[-166.851646,65.348485],[-166.899681,65.360642],[-167.026782,65.381967],[-167.10186,65.387737],[-167.170465,65.389269],[-167.398458,65.400259],[-167.474024,65.412744],[-167.574639,65.444979],[-167.620388,65.463463],[-167.621371,65.466589],[-167.710888,65.498524],[-167.841836,65.530249],[-167.851234,65.538181],[-167.909599,65.550876],[-167.967065,65.558599],[-167.997178,65.559346],[-168.04762,65.569149],[-168.0752,65.576355],[-168.099046,65.592239],[-168.099356,65.599045],[-168.09614,65.600882],[-168.100003,65.610972],[-168.127044,65.626584],[-168.134663,65.64084],[-168.12893,65.655744],[-168.103708,65.685552],[-167.979889,65.727972],[-167.857216,65.754341],[-167.73569,65.776124],[-167.539643,65.820836],[-167.314935,65.885039],[-167.246146,65.911408],[-167.139524,65.948095],[-166.977872,65.996247],[-166.956089,66.007711],[-166.827684,66.051277],[-166.597243,66.118919],[-166.526162,66.141849],[-166.330971,66.189514],[-165.882496,66.311603],[-165.869233,66.316112],[-165.80503,66.33331],[-165.6686,66.361971],[-165.407204,66.420441],[-165.187082,66.465154],[-165.124026,66.473179],[-164.711009,66.542541],[-164.400727,66.58111],[-164.400724,66.58111],[-164.345015,66.580834],[-164.094554,66.592281],[-163.979581,66.593953],[-163.978095,66.592616],[-163.978492,66.591012],[-163.985713,66.576085],[-163.908341,66.55597],[-163.875235,66.558248],[-163.850476,66.563102],[-163.754171,66.551284],[-163.727179,66.516388],[-163.728308,66.498552],[-163.730247,66.491372],[-163.761967,66.454874],[-163.798687,66.436875],[-163.844221,66.418978],[-163.856359,66.409296],[-163.873106,66.389015],[-163.873096,66.32855],[-163.849163,66.307639],[-163.839825,66.304079],[-163.829977,66.280398],[-163.830077,66.272],[-163.843108,66.259869],[-163.904813,66.230303],[-163.955901,66.21717],[-164.046937,66.209404],[-164.078765,66.201764],[-164.092715,66.184537],[-164.089237,66.182338],[-164.078677,66.181019],[-164.007503,66.179386],[-163.916551,66.190494],[-163.878306,66.160279],[-163.861406,66.136665],[-163.847401,66.122106],[-163.80358,66.100059],[-163.772467,66.081922],[-163.768357,66.073662],[-163.76751,66.060803],[-163.623921,66.058281],[-163.540115,66.069921],[-163.502704,66.081165],[-163.495845,66.085388],[-163.344759,66.084937],[-163.313843,66.075287],[-163.287768,66.069229],[-163.168568,66.05929],[-163.146726,66.059487],[-163.093003,66.06296],[-163.04714,66.068327],[-162.997473,66.076845],[-162.876016,66.082833],[-162.791232,66.089138],[-162.750705,66.09016],[-162.681304,66.061574],[-162.680204,66.058129],[-162.673584,66.053685],[-162.635985,66.040366],[-162.622284,66.039526],[-162.530755,66.045062],[-162.45767,66.058579],[-162.423726,66.048984],[-162.413452,66.035085],[-162.391892,66.028724],[-162.372147,66.027985],[-162.331284,66.031403],[-162.26967,66.042104],[-162.205889,66.056753],[-162.139516,66.078819],[-162.137424,66.078547],[-162.129709,66.069487],[-162.121788,66.067391],[-162.025701,66.062829],[-161.950043,66.040302],[-161.838018,66.022582],[-161.817091,66.033089],[-161.812306,66.041688],[-161.798585,66.055317],[-161.775537,66.073732],[-161.680577,66.111588],[-161.6653,66.122177],[-161.627008,66.153194],[-161.623983,66.162082],[-161.613943,66.176693],[-161.548429,66.239912],[-161.484539,66.262426],[-161.367875,66.258653],[-161.341189,66.2551],[-161.337269,66.243163],[-161.33212,66.236431],[-161.320778,66.223591],[-161.313025,66.221051],[-161.263655,66.214154],[-161.198971,66.210949],[-161.145397,66.220179],[-161.087342,66.234208],[-161.067871,66.235164],[-161.052732,66.231018],[-161.035866,66.229437],[-161.000026,66.233126],[-160.993965,66.234444],[-160.991066,66.236816],[-160.990275,66.239715],[-160.995905,66.251962],[-160.99854,66.254935],[-161.061034,66.283804],[-161.079328,66.307126],[-161.089161,66.31514],[-161.107995,66.328367],[-161.129512,66.336248],[-161.1631,66.342291],[-161.219834,66.348918],[-161.360743,66.375943],[-161.525554,66.397046],[-161.694404,66.396174],[-161.817538,66.360815],[-161.912946,66.344436],[-161.916309,66.349481],[-161.8809,66.398763],[-161.872447,66.414132],[-161.863387,66.440783],[-161.864156,66.488195],[-161.87488,66.511446],[-162.029043,66.586504],[-162.091453,66.605963],[-162.09791,66.609863],[-162.105641,66.622584],[-162.113311,66.639596],[-162.124348,66.651291],[-162.140377,66.664737],[-162.175398,66.687789],[-162.228635,66.70977],[-162.268767,66.717905],[-162.349774,66.726713],[-162.422414,66.731581],[-162.501415,66.742503],[-162.50052,66.749751],[-162.502502,66.758875],[-162.512617,66.777733],[-162.544381,66.804872],[-162.572224,66.825364],[-162.594237,66.837647],[-162.614738,66.846476],[-162.621564,66.85086],[-162.624945,66.855031],[-162.626696,66.859572],[-162.623054,66.874325],[-162.61459,66.885941],[-162.601052,66.898455],[-162.582856,66.904292],[-162.497438,66.91986],[-162.346352,66.934792],[-162.281116,66.915679],[-162.271769,66.904144],[-162.228675,66.866623],[-162.117304,66.798482],[-162.096878,66.7885],[-162.073714,66.783324],[-162.049123,66.780639],[-162.013623,66.779406],[-162.011455,66.759063],[-162.029615,66.73458],[-162.041314,66.723764],[-162.058825,66.716253],[-162.068253,66.709857],[-162.074634,66.703681],[-162.081515,66.693052],[-162.07801,66.664048],[-162.07362,66.651217],[-162.069068,66.6457],[-162.033156,66.631585],[-161.968863,66.602611],[-161.953413,66.592365],[-161.932642,66.572547],[-161.92544,66.561215],[-161.915856,66.551339],[-161.877098,66.536877],[-161.765368,66.496934],[-161.624334,66.450143],[-161.574129,66.438566],[-161.516449,66.441839],[-161.435312,66.454162],[-161.326349,66.478371],[-161.279803,66.505179],[-161.29321,66.520591],[-161.399006,66.523529],[-161.454092,66.522205],[-161.469227,66.522843],[-161.483604,66.525626],[-161.493509,66.530977],[-161.494988,66.534443],[-161.486308,66.538037],[-161.482869,66.543724],[-161.4904,66.560844],[-161.541756,66.581379],[-161.598953,66.593181],[-161.665368,66.610433],[-161.693125,66.620562],[-161.86618,66.704978],[-161.881671,66.716796],[-161.86154,66.797076],[-161.846258,66.813647],[-161.82417,66.817889],[-161.796307,66.833126],[-161.785495,66.846547],[-161.782218,66.859956],[-161.719587,66.916898],[-161.692146,66.945033],[-161.685775,66.955794],[-161.688506,66.959799],[-161.68628,66.961367],[-161.674359,66.961965],[-161.566678,66.934775],[-161.489169,66.93695],[-161.485121,66.945647],[-161.485383,66.960818],[-161.505747,66.974314],[-161.530525,66.984951],[-161.62216,67.008146],[-161.697392,67.010849],[-161.711715,67.001044],[-161.759641,67.030572],[-161.799175,67.047502],[-161.810256,67.050281],[-161.836325,67.051777],[-161.850188,67.052186],[-161.893702,67.049075],[-162.123181,67.02579],[-162.211633,67.00671],[-162.233964,66.999568],[-162.234302,66.994581],[-162.23923,66.993814],[-162.353954,66.995128],[-162.385074,66.991235],[-162.415866,66.98471],[-162.432615,66.985089],[-162.449219,66.988391],[-162.462616,66.994323],[-162.466855,66.999339],[-162.461822,67.004426],[-162.465522,67.026629],[-162.472765,67.038368],[-162.481257,67.043113],[-162.490552,67.043331],[-162.504523,67.039629],[-162.514878,67.031069],[-162.519046,67.016552],[-162.603562,67.01049],[-162.64026,67.010869],[-162.654094,67.013099],[-162.661661,67.01889],[-162.660733,67.026771],[-162.658706,67.030335],[-162.66074,67.033884],[-162.676656,67.046789],[-162.699069,67.055476],[-162.782401,67.044467],[-162.83042,67.036173],[-162.839402,67.032956],[-162.850964,67.017922],[-162.865944,67.012543],[-162.901348,67.006833],[-163.097854,67.041191],[-163.299266,67.060748],[-163.399048,67.074167],[-163.441198,67.081459],[-163.495201,67.087503],[-163.57701,67.092491],[-163.624959,67.099391],[-163.69887,67.114443],[-163.730671,67.123774],[-163.741345,67.129123],[-163.737724,67.136802],[-163.736901,67.16323],[-163.737464,67.184754],[-163.74082,67.20996],[-163.758588,67.256439],[-163.822185,67.349812],[-163.853584,67.388101],[-163.878781,67.416125],[-164.007032,67.535699],[-164.079514,67.585856],[-164.108716,67.601993],[-164.14438,67.617228],[-164.209816,67.639079],[-164.533937,67.725606],[-164.778331,67.820866],[-164.907297,67.867844],[-165.057516,67.921694],[-165.129567,67.941833],[-165.190915,67.966071],[-165.227228,67.985322],[-165.23162,67.994512],[-165.240848,67.998714],[-165.35998,68.028054],[-165.430442,68.045408],[-165.49355,68.059283],[-165.66169,68.075999],[-165.749518,68.077694],[-165.792146,68.080867],[-165.863428,68.093367],[-165.965534,68.12192],[-165.973621,68.125986],[-165.987929,68.142738],[-165.994377,68.147305],[-166.245281,68.245275],[-166.307977,68.264948],[-166.368546,68.28177],[-166.474608,68.305273],[-166.56722,68.323288],[-166.680842,68.340911],[-166.784578,68.340431],[-166.829715,68.336324],[-166.846456,68.332508],[-166.85064,68.333089],[-166.838178,68.339714],[-166.811836,68.348136],[-166.706139,68.371783],[-166.377564,68.422406],[-166.362135,68.42624],[-166.342381,68.433966],[-166.328459,68.442261],[-166.305962,68.46154],[-166.303464,68.464683],[-166.30203,68.470413],[-166.295343,68.5109],[-166.24449,68.553888],[-166.23378,68.564263],[-166.226111,68.576186],[-166.225567,68.579015],[-166.231432,68.587338],[-166.229761,68.613771],[-166.213635,68.664324],[-166.199826,68.678556],[-166.197365,68.690019],[-166.187795,68.778706],[-166.190209,68.790437],[-166.195374,68.80399],[-166.20375,68.818221],[-166.222496,68.860441],[-166.224187,68.873175],[-166.214433,68.879524],[-165.814938,68.864158],[-165.666566,68.855387],[-165.572483,68.852946],[-165.522358,68.855839],[-165.327043,68.858111],[-164.967542,68.88303],[-164.883745,68.891649],[-164.812671,68.893542],[-164.655317,68.90936],[-164.526887,68.917909],[-164.299092,68.927569],[-164.253157,68.930938],[-164.161249,68.944773],[-164.130742,68.951001],[-164.069362,68.969651],[-163.973678,68.985044],[-163.893881,69.011962],[-163.858069,69.02886],[-163.827447,69.040632],[-163.724184,69.066713],[-163.655864,69.090567],[-163.574034,69.124077],[-163.535314,69.141656],[-163.452685,69.19463],[-163.297956,69.274725],[-163.236121,69.282661],[-163.230902,69.284464],[-163.137614,69.352178],[-163.110318,69.375343],[-163.103166,69.392261],[-163.104387,69.40135],[-163.100569,69.414222],[-163.070341,69.459872],[-163.052068,69.481971],[-163.046961,69.482892],[-163.036311,69.489028],[-163.02617,69.50689],[-163.016456,69.538142],[-163.020001,69.545145],[-163.03029,69.556591],[-163.074128,69.570272],[-163.118176,69.589156],[-163.116622,69.593416],[-163.111605,69.596605],[-163.02459,69.608609],[-162.916958,69.692512],[-162.922009,69.700372],[-162.961086,69.717165],[-163.010545,69.728109],[-163.018175,69.729074],[-163.03539,69.727406],[-163.012595,69.757462],[-162.960245,69.783328],[-162.911869,69.799471],[-162.877165,69.804411],[-162.840602,69.811763],[-162.76721,69.852179],[-162.70955,69.879126],[-162.616345,69.916997],[-162.606297,69.918988],[-162.601284,69.914568],[-162.593773,69.914096],[-162.587906,69.915637],[-162.481016,69.975242],[-162.471549,69.983132],[-162.462304,70.002438],[-162.468339,70.015784],[-162.462778,70.042217],[-162.454541,70.043958],[-162.394531,70.044574],[-162.350558,70.0588],[-162.35474,70.065479],[-162.356469,70.076391],[-162.312491,70.109281],[-162.158156,70.16153],[-162.098377,70.187045],[-162.019265,70.224044],[-161.984888,70.247681],[-161.959603,70.268873],[-161.922949,70.291599],[-161.859745,70.308048],[-161.849998,70.30943],[-161.844213,70.30853],[-161.842162,70.304429],[-161.844688,70.300054],[-161.847403,70.295877],[-161.848909,70.282183],[-161.834651,70.272504],[-161.801603,70.260634],[-161.779794,70.255411],[-161.769496,70.262498],[-161.767838,70.268337],[-161.759176,70.272443],[-161.692195,70.267092],[-161.67622,70.258021],[-161.663593,70.246187],[-161.633888,70.240693],[-161.522941,70.236888],[-161.396757,70.240606],[-161.309118,70.248091],[-161.254723,70.256612],[-161.080282,70.306679],[-161.016416,70.327744],[-160.992764,70.316226],[-160.979126,70.317661],[-160.839536,70.344534],[-160.732703,70.374382],[-160.530362,70.440751],[-160.489778,70.454463],[-160.48553,70.457121],[-160.480062,70.465971],[-160.214828,70.559087],[-160.056727,70.632834],[-159.913805,70.690673],[-159.798514,70.731226],[-159.648383,70.794368],[-159.585714,70.809475],[-159.528682,70.820849],[-159.209082,70.870067],[-159.17181,70.875103],[-159.147634,70.876653],[-159.156511,70.859221],[-159.152026,70.849543],[-159.132483,70.828359],[-159.160836,70.81796],[-159.290577,70.811262],[-159.331021,70.807394],[-159.335837,70.800079],[-159.343075,70.783115],[-159.299304,70.760012],[-159.275634,70.759531],[-159.13779,70.758609],[-159.000676,70.764336],[-158.976647,70.766973],[-158.954571,70.772712],[-158.9656,70.786852],[-158.976456,70.789864],[-158.976615,70.796377],[-158.656101,70.787955],[-158.60732,70.789099],[-158.3895,70.799729],[-158.385792,70.811468],[-158.389269,70.822048],[-158.385816,70.825704],[-158.25032,70.817734],[-158.157725,70.820806],[-158.032397,70.832263],[-157.884086,70.853468],[-157.840997,70.861025],[-157.768452,70.875842],[-157.708782,70.89139],[-157.502459,70.948659],[-157.421001,70.976805],[-157.392802,70.987908],[-157.249083,71.052537],[-157.119621,71.128682],[-157.072487,71.154521],[-156.962555,71.211885],[-156.809653,71.286886],[-156.773937,71.299506],[-156.645615,71.338012],[-156.62014,71.344209],[-156.56865,71.352561],[-156.566383,71.334016],[-156.561512,71.316809],[-156.556496,71.311795],[-156.531124,71.296338],[-156.524499,71.294469],[-156.402659,71.267945],[-156.356736,71.261273],[-156.320702,71.258952],[-156.301938,71.260566],[-156.2142,71.259392],[-156.074411,71.242489],[-156.029205,71.203209],[-156.038116,71.196506],[-156.044754,71.18677],[-156.044615,71.184701],[-156.018574,71.172041],[-155.957961,71.186211],[-155.920202,71.207157],[-155.895105,71.193899],[-155.88418,71.190057],[-155.829034,71.192088],[-155.803853,71.19642],[-155.760802,71.194662],[-155.657178,71.182471],[-155.587702,71.17256],[-155.566925,71.165139],[-155.567765,71.14113],[-155.561772,71.128458],[-155.520737,71.102476],[-155.513987,71.096794],[-155.511125,71.090348],[-155.510637,71.081152],[-155.533347,71.067683],[-155.548283,71.060685],[-155.638994,71.04236],[-155.705487,71.020153],[-155.711852,71.012473],[-155.762068,70.985644],[-155.830881,70.965584],[-155.878946,70.967684],[-155.95205,70.964831],[-155.978405,70.962197],[-155.995681,70.947796],[-156.014769,70.903133],[-156.014425,70.898644],[-156.013512,70.895983],[-155.968559,70.862931],[-155.969194,70.827982],[-155.978421,70.825558],[-155.980975,70.817355],[-155.978978,70.80875],[-155.971935,70.806828],[-155.927958,70.80601],[-155.906615,70.809988],[-155.882145,70.822056],[-155.875096,70.828895],[-155.731842,70.83116],[-155.643516,70.824209],[-155.543031,70.847175],[-155.504202,70.860303],[-155.489811,70.87174],[-155.48798,70.875299],[-155.485915,70.885905],[-155.487574,70.902679],[-155.493044,70.917371],[-155.47594,70.943547],[-155.454991,70.94749],[-155.404225,70.967477],[-155.382646,70.978973],[-155.36416,70.994195],[-155.343871,71.004449],[-155.260042,71.015227],[-155.260084,71.011281],[-155.256177,71.004762],[-155.211434,70.978023],[-155.201466,70.974306],[-155.192246,70.974056],[-155.182779,70.978218],[-155.168934,70.987947],[-155.161735,70.995715],[-155.159922,71.002775],[-155.163938,71.013801],[-155.177,71.02745],[-155.273764,71.064728],[-155.275814,71.067042],[-155.275989,71.070464],[-155.262602,71.079149],[-155.25686,71.081119],[-155.150524,71.11205],[-155.146948,71.110959],[-155.146931,71.103459],[-155.142858,71.097254],[-155.125994,71.077495],[-155.120317,71.073416],[-155.108509,71.070475],[-155.075362,71.072042],[-155.064004,71.083912],[-155.061428,71.091999],[-155.064558,71.108006],[-155.085782,71.127572],[-155.060764,71.145422],[-155.03174,71.146473],[-154.942864,71.126264],[-154.777335,71.083231],[-154.61605,71.026182],[-154.604413,71.021502],[-154.581129,71.007321],[-154.567593,70.989929],[-154.594048,70.976993],[-154.608294,70.961716],[-154.654375,70.903318],[-154.645793,70.869167],[-154.577386,70.835335],[-154.51904,70.822799],[-154.501866,70.821765],[-154.4857,70.825304],[-154.430229,70.831258],[-154.352604,70.834828],[-154.260799,70.815164],[-154.228627,70.802417],[-154.223307,70.79523],[-154.239166,70.776866],[-154.181863,70.768325],[-154.169631,70.768604],[-154.127487,70.778133],[-154.069982,70.793703],[-153.995579,70.821876],[-153.976014,70.833925],[-153.95137,70.854028],[-153.93545,70.869728],[-153.932949,70.874201],[-153.934351,70.876609],[-153.932921,70.878677],[-153.89048,70.885719],[-153.774169,70.894584],[-153.747253,70.895017],[-153.525976,70.8855],[-153.485989,70.885873],[-153.426265,70.890131],[-153.359112,70.898292],[-153.326202,70.904111],[-153.253386,70.920775],[-153.23848,70.922467],[-153.137311,70.925438],[-153.049207,70.913102],[-153.017038,70.904004],[-152.774415,70.885279],[-152.735892,70.884545],[-152.590148,70.886933],[-152.45695,70.871788],[-152.259966,70.84282],[-152.226464,70.831043],[-152.187197,70.801546],[-152.188649,70.79814],[-152.19246,70.795294],[-152.239344,70.793416],[-152.263346,70.790777],[-152.283763,70.7856],[-152.370808,70.730068],[-152.377274,70.714682],[-152.471531,70.68884],[-152.473348,70.683669],[-152.460505,70.646107],[-152.433781,70.616926],[-152.420775,70.608983],[-152.365736,70.601242],[-152.355679,70.603794],[-152.341592,70.612193],[-152.332608,70.612871],[-152.264049,70.592655],[-152.200644,70.58607],[-152.169944,70.585219],[-152.146165,70.586754],[-152.060684,70.574935],[-152.064546,70.568542],[-152.065748,70.563074],[-152.02607,70.559345],[-151.975785,70.563215],[-151.880141,70.554869],[-151.816701,70.545698],[-151.774703,70.547925],[-151.745047,70.554041],[-151.718215,70.555286],[-151.701467,70.55322],[-151.695162,70.549675],[-151.697258,70.547741],[-151.709462,70.54649],[-151.722711,70.541608],[-151.751558,70.524105],[-151.760248,70.516711],[-151.734287,70.503492],[-151.728579,70.495375],[-151.775537,70.485353],[-151.824111,70.484011],[-151.91921,70.472686],[-151.936783,70.463564],[-151.946384,70.452523],[-151.900033,70.434135],[-151.876122,70.430761],[-151.844375,70.434959],[-151.785657,70.436935],[-151.653184,70.4348],[-151.605581,70.437332],[-151.554647,70.435895],[-151.444897,70.425405],[-151.343202,70.408877],[-151.297598,70.400748],[-151.229919,70.37984],[-151.187394,70.384775],[-151.188592,70.401755],[-151.186516,70.418208],[-151.180436,70.430401],[-151.123105,70.439374],[-151.118601,70.438088],[-151.114352,70.432886],[-151.116099,70.422403],[-151.06043,70.418734],[-151.026337,70.441455],[-150.957813,70.45261],[-150.895452,70.458158],[-150.877322,70.455182],[-150.834973,70.460171],[-150.787069,70.477117],[-150.780029,70.485986],[-150.762035,70.497219],[-150.719845,70.494998],[-150.651175,70.494928],[-150.614734,70.498292],[-150.429915,70.498172],[-150.357384,70.493738],[-150.354056,70.492724],[-150.338851,70.471075],[-150.370283,70.447858],[-150.350541,70.435998],[-150.296287,70.441136],[-150.245325,70.441658],[-150.185078,70.43537],[-150.112899,70.431372],[-150.104388,70.432091],[-150.074461,70.439333],[-149.866698,70.510769],[-149.81974,70.491428],[-149.810924,70.490477],[-149.790427,70.49119],[-149.740188,70.498151],[-149.728247,70.502793],[-149.716075,70.504968],[-149.661165,70.509203],[-149.656806,70.508713],[-149.649556,70.504757],[-149.581348,70.495891],[-149.565278,70.49645],[-149.536891,70.499397],[-149.524235,70.502128],[-149.509854,70.508746],[-149.461755,70.518271],[-149.432083,70.50375],[-149.418727,70.492257],[-149.400623,70.489931],[-149.314473,70.495325],[-149.179148,70.4857],[-149.082079,70.464894],[-148.959443,70.423944],[-148.928979,70.426835],[-148.858069,70.422917],[-148.789577,70.402746],[-148.728082,70.413035],[-148.69877,70.425878],[-148.696768,70.42916],[-148.667017,70.430084],[-148.610566,70.422588],[-148.590007,70.416956],[-148.580356,70.412546],[-148.477044,70.359068],[-148.464543,70.340159],[-148.477028,70.320872],[-148.46615,70.313609],[-148.450639,70.308437],[-148.411253,70.302627],[-148.363196,70.302627],[-148.351437,70.304453],[-148.2698,70.329617],[-148.2582,70.336996],[-148.203477,70.348188],[-148.152676,70.347148],[-148.107231,70.342801],[-148.09058,70.337432],[-148.089576,70.335423],[-148.089676,70.332812],[-148.089174,70.331005],[-148.076865,70.32751],[-147.9615,70.314201],[-147.863719,70.293317],[-147.817637,70.276938],[-147.789357,70.247972],[-147.765104,70.219806],[-147.681722,70.199954],[-147.648,70.203299],[-147.585678,70.203398],[-147.50527,70.200384],[-147.431532,70.188826],[-147.402283,70.185273],[-147.385271,70.185256],[-147.350145,70.187683],[-147.244119,70.218963],[-147.233327,70.207553],[-147.231008,70.195398],[-147.21921,70.178826],[-147.182123,70.16035],[-147.161601,70.155612],[-146.991109,70.14761],[-146.973212,70.151857],[-146.909516,70.173259],[-146.885771,70.185917],[-146.734021,70.175475],[-146.713053,70.175398],[-146.624761,70.182398],[-146.508133,70.186044],[-146.44886,70.183398],[-146.413197,70.17825],[-146.335147,70.176235],[-146.309558,70.178907],[-146.272965,70.176944],[-146.172672,70.165894],[-146.129579,70.158948],[-146.114124,70.154956],[-146.096827,70.145151],[-146.006411,70.140402],[-145.955164,70.140199],[-145.917674,70.142525],[-145.872923,70.148829],[-145.858297,70.165996],[-145.842689,70.164102],[-145.790386,70.148569],[-145.783327,70.139454],[-145.767092,70.128717],[-145.760443,70.126113],[-145.623306,70.084375],[-145.579972,70.076804],[-145.522384,70.077465],[-145.505682,70.074528],[-145.469508,70.059136],[-145.468856,70.048336],[-145.43483,70.036994],[-145.408182,70.031572],[-145.331553,70.022596],[-145.247167,70.017891],[-145.218593,70.00728],[-145.197331,69.994954],[-145.175073,69.991707],[-145.011711,69.981144],[-144.990131,69.97768],[-144.966761,69.964362],[-144.953637,69.959262],[-144.902304,69.96451],[-144.867623,69.972266],[-144.863111,69.973524],[-144.856954,69.985987],[-144.854539,69.986364],[-144.792614,69.979796],[-144.738976,69.970112],[-144.672305,69.966876],[-144.618671,69.969315],[-144.589172,69.977611],[-144.512258,70.004478],[-144.463286,70.025735],[-144.344073,70.034374],[-144.328391,70.032555],[-144.231051,70.035912],[-144.178194,70.041742],[-144.130283,70.057951],[-144.122641,70.059138],[-144.079634,70.058961],[-144.053709,70.073182],[-143.911494,70.129837],[-143.887688,70.130736],[-143.839879,70.125827],[-143.782213,70.124668],[-143.769015,70.135066],[-143.753065,70.137242],[-143.66225,70.142517],[-143.617407,70.139915],[-143.595181,70.142521],[-143.597879,70.147204],[-143.593813,70.152604],[-143.574986,70.154598],[-143.54323,70.149742],[-143.498058,70.1401],[-143.497982,70.136875],[-143.511617,70.125191],[-143.516098,70.116362],[-143.517248,70.104293],[-143.510081,70.096436],[-143.503487,70.093458],[-143.455354,70.092934],[-143.357961,70.09497],[-143.327114,70.103127],[-143.3179,70.111145],[-143.265892,70.119286],[-143.255576,70.11933],[-143.200147,70.110323],[-143.159929,70.099203],[-143.140019,70.092997],[-143.112951,70.078271],[-143.051291,70.078188],[-143.0381,70.093888],[-142.939555,70.07438],[-142.746807,70.042531],[-142.498036,69.973611],[-142.452927,69.958125],[-142.409962,69.933646],[-142.404366,69.916511],[-142.272156,69.907044],[-142.239873,69.896598],[-142.112714,69.862162],[-142.081696,69.855498],[-142.075612,69.853319],[-142.073063,69.846625],[-142.058734,69.83533],[-142.009321,69.800726],[-141.960753,69.799876],[-141.937176,69.804805],[-141.919828,69.811308],[-141.866738,69.813005],[-141.842843,69.811927],[-141.713369,69.789497],[-141.606229,69.761695],[-141.528197,69.736025],[-141.43084,69.695144],[-141.434872,69.675245],[-141.428856,69.662658],[-141.394082,69.640846],[-141.377718,69.634631],[-141.280849,69.631025],[-141.258558,69.632247],[-141.254547,69.637053],[-141.243946,69.652482],[-141.210456,69.68419],[-141.119233,69.673527],[-141.002672,69.645609],[-141.002694,68.498391],[-141.002465,65.840075],[-141.002465,65.839421],[-141.002133,62.124686],[-141.002492,62.110026],[-141.002249,61.901922],[-141.002072,61.749667],[-141.002595,61.745391],[-141.002052,61.678696],[-141.001853,60.391688],[-141.00184,60.306105],[-140.53509,60.224224],[-140.472292,60.31059],[-139.989142,60.18524],[-139.738924,60.31842],[-139.698361,60.340421],[-139.086669,60.357654],[-139.082246,60.323825],[-139.200346,60.090701],[-139.060938,60.010967],[-139.057043,60.006825],[-139.053597,60.001864],[-139.046426,59.998235],[-139.031643,59.9937],[-138.796083,59.928701],[-138.702053,59.910245],[-138.662769,59.813719],[-138.662972,59.810225],[-138.643422,59.792502],[-138.630953,59.782209],[-138.620931,59.770559],[-138.584819,59.752453],[-138.560226,59.741201],[-138.001128,59.452164],[-137.604277,59.243057],[-137.504049,59.002092],[-137.498558,58.986694],[-137.526424,58.906834],[-137.525295,58.906872],[-137.447383,58.909513],[-137.264752,59.002352],[-136.863896,59.138472],[-136.826633,59.158389],[-136.581521,59.164909],[-136.486609,59.261108],[-136.494084,59.27299],[-136.466815,59.284252],[-136.474326,59.464194],[-136.365825,59.448008],[-136.358141,59.449799],[-136.301846,59.464128],[-136.234229,59.524731],[-136.236527,59.538272],[-136.23734,59.558734],[-136.26123,59.59475],[-136.256889,59.623646],[-136.190352,59.639854],[-135.945905,59.663802],[-135.858947,59.690049],[-135.854166,59.691846],[-135.72246,59.729526],[-135.477436,59.799626],[-135.254125,59.701339],[-135.243777,59.69795],[-135.234447,59.697931],[-135.231148,59.697176],[-135.214344,59.664343],[-135.166736,59.63224],[-135.162745,59.630635],[-135.153113,59.625159],[-135.114588,59.623415],[-135.027456,59.563692],[-135.026373,59.535741],[-135.026328,59.474658],[-135.071239,59.453309],[-135.067356,59.421855],[-135.016206,59.395398],[-135.010033,59.381288],[-135.016206,59.361005],[-135.029245,59.345364],[-135.00325,59.319473],[-134.961972,59.280376],[-134.702383,59.247836],[-134.681924,59.190843],[-134.566689,59.128278],[-134.481241,59.128071],[-134.442196,59.08301],[-134.379771,59.034961],[-134.400293,58.996484],[-134.401042,58.976221],[-134.327982,58.963431],[-134.30639,58.959238],[-134.328964,58.919593],[-134.250526,58.858046],[-133.992081,58.774581],[-133.840392,58.727991],[-133.723635,58.626004],[-133.714186,58.618137],[-133.699835,58.60729],[-133.615751,58.555784],[-133.559942,58.522318],[-133.499893,58.490276],[-133.379908,58.427909],[-133.461475,58.385526],[-133.460377,58.38361],[-133.385718,58.311023],[-133.359691,58.284789],[-133.343725,58.270915],[-133.222898,58.186368],[-133.213311,58.178605],[-133.191526,58.162296],[-133.176444,58.150151],[-133.14876,58.109536],[-133.076421,57.999762],[-132.869318,57.842941],[-132.756813,57.705093],[-132.658124,57.619486],[-132.559178,57.503927],[-132.367984,57.348685],[-132.29792,57.269469],[-132.252187,57.215655],[-132.315982,57.163473],[-132.371312,57.095229],[-132.225186,57.060455],[-132.051044,57.051155],[-132.071126,57.00629],[-132.090738,56.936483],[-132.117119,56.890173],[-132.125934,56.874698],[-132.080262,56.850926],[-132.005107,56.84292],[-131.9301,56.835211],[-131.871725,56.804965],[-131.8865,56.776083],[-131.896722,56.759737],[-131.90176,56.753158],[-131.862035,56.704136],[-131.849898,56.661227],[-131.844866,56.638977],[-131.835133,56.601849],[-131.761209,56.60396],[-131.581221,56.613275],[-131.495949,56.565543],[-131.461806,56.547904],[-131.363465,56.51569],[-131.227928,56.469099],[-131.191822,56.455776],[-131.167925,56.448361],[-131.130165,56.428534],[-131.087443,56.4074],[-131.085704,56.40654],[-131.067428,56.403797],[-131.016127,56.39795],[-130.881454,56.380295],[-130.831462,56.374356],[-130.810707,56.371063],[-130.782231,56.367511],[-130.740619,56.342953],[-130.644312,56.281075],[-130.622482,56.267939],[-130.589182,56.260394],[-130.541173,56.248017],[-130.466874,56.239789],[-130.425575,56.140676],[-130.343716,56.127162],[-130.24554,56.096876],[-130.102761,56.116696],[-130.061273,56.068508],[-130.035943,56.040141],[-130.031573,56.036791],[-130.016874,56.017323],[-130.00426,55.993379],[-130.015364,55.984656],[-130.02025,55.964362],[-130.023189,55.930665],[-130.025929,55.915995],[-130.021425,55.915641],[-130.013198,55.916382],[-130.08451,55.823997],[-130.12372,55.80704],[-130.128538,55.802148],[-130.133595,55.79063],[-130.142537,55.779024],[-130.150595,55.767031],[-130.151509,55.746029],[-130.150061,55.727099],[-130.14804,55.715041],[-130.129518,55.699806],[-130.111677,55.682051],[-130.117456,55.640543],[-130.124084,55.60276],[-130.126743,55.581282],[-130.120132,55.563919],[-130.110311,55.545067],[-130.095588,55.511205],[-130.085413,55.491517],[-130.044303,55.45197],[-130.039928,55.429422],[-130.030182,55.367696],[-130.023558,55.338259],[-129.9919,55.311663],[-129.982348,55.302079],[-129.980487,55.296334],[-129.979511,55.286723],[-129.980058,55.28423],[-129.983796,55.280795],[-129.985379,55.27776],[-129.996092,55.269559],[-130.001735,55.264557],[-130.030162,55.246592],[-130.043659,55.235541],[-130.065963,55.220163],[-130.079854,55.208527],[-130.096546,55.197953],[-130.104749,55.188975],[-130.118919,55.176074],[-130.134811,55.158273],[-130.144723,55.146038],[-130.152912,55.124537],[-130.158117,55.117104],[-130.169294,55.105424],[-130.182707,55.093212],[-130.182375,55.079388],[-130.187541,55.064665],[-130.209512,55.040822],[-130.221512,55.02599],[-130.232294,55.015597],[-130.242959,55.007316],[-130.247951,55.002341],[-130.259079,54.987642],[-130.27556,54.97293],[-130.308016,54.947585],[-130.339504,54.921376],[-130.409764,54.881192],[-130.474605,54.838102],[-130.569366,54.790869],[-130.617106,54.781554],[-130.636745,54.778456],[-130.657754,54.761828],[-130.62807,54.739341],[-130.644479,54.736897],[-130.685213,54.720091],[-130.686192,54.71691],[-130.695817,54.719346],[-130.737423,54.753545],[-130.747227,54.7726],[-130.733209,54.77961],[-130.732201,54.78262],[-130.736295,54.794798],[-130.742316,54.801914],[-130.773606,54.820845],[-130.787444,54.822905],[-130.78857,54.794643],[-130.792122,54.784784],[-130.806815,54.776862],[-130.836853,54.765437],[-130.854966,54.766341],[-130.866866,54.769068],[-130.901801,54.780876],[-130.915936,54.789617],[-130.932454,54.806938],[-130.947098,54.826047],[-130.941029,54.841587],[-130.947338,54.886733],[-130.959732,54.918678],[-130.9604,54.933685],[-130.949104,54.967846],[-130.953507,54.972102],[-130.97503,54.974853],[-131.007787,54.9913],[-131.012061,54.996238],[-131.004216,55.029605],[-130.986802,55.065222],[-130.98373,55.068946],[-130.984157,55.08441],[-131.013215,55.090069],[-131.029676,55.099478],[-131.052298,55.11816],[-131.070692,55.138143],[-131.076646,55.146178],[-131.085579,55.158233],[-131.087497,55.163036],[-131.093806,55.191335],[-131.092605,55.192711],[-130.985304,55.247286],[-130.952956,55.273092],[-130.951572,55.291648],[-130.925069,55.300713],[-130.909948,55.299878],[-130.871329,55.29378],[-130.864918,55.298367],[-130.864918,55.309469],[-130.871857,55.313991],[-130.882146,55.358831],[-130.9208,55.428721],[-130.922985,55.435113],[-130.920295,55.446085],[-130.910744,55.459982],[-130.898129,55.470177],[-130.881297,55.495582],[-130.870524,55.533768],[-130.880013,55.598954],[-130.901872,55.69738],[-130.939017,55.754831],[-130.984774,55.799349],[-131.093956,55.895675],[-131.171406,55.942952],[-131.187429,55.95601],[-131.216475,55.984342],[-131.229971,55.984342],[-131.236936,55.982293],[-131.243491,55.973689],[-131.245949,55.965905],[-131.241704,55.955069],[-131.156834,55.901147],[-131.070138,55.828551],[-131.053217,55.799843],[-131.043527,55.766997],[-131.040966,55.762837],[-130.998638,55.723538],[-130.965994,55.688974],[-130.94683,55.650716],[-130.927651,55.576585],[-130.945177,55.557731],[-130.978917,55.550835],[-130.987103,55.539872],[-130.994376,55.472396],[-130.969588,55.393281],[-130.947498,55.380823],[-130.928172,55.339426],[-130.933399,55.331906],[-130.946597,55.322396],[-130.959772,55.315892],[-130.968326,55.316626],[-130.964088,55.332664],[-131.000594,55.398012],[-131.008726,55.404818],[-131.029045,55.408395],[-131.033054,55.393118],[-131.034191,55.379358],[-131.030521,55.376917],[-131.027301,55.371392],[-131.019881,55.347905],[-131.031357,55.284785],[-131.072348,55.253822],[-131.160492,55.197481],[-131.188747,55.192745],[-131.21123,55.192379],[-131.235516,55.197574],[-131.263089,55.208318],[-131.297162,55.235046],[-131.302697,55.250217],[-131.278302,55.260319],[-131.24019,55.287156],[-131.230432,55.297802],[-131.191595,55.360527],[-131.191933,55.368334],[-131.197489,55.391051],[-131.202477,55.392834],[-131.272447,55.387774],[-131.292102,55.383946],[-131.293043,55.378684],[-131.287016,55.35826],[-131.264608,55.345639],[-131.254461,55.329698],[-131.255107,55.322104],[-131.284986,55.286437],[-131.291203,55.281751],[-131.326989,55.265911],[-131.402931,55.238065],[-131.424502,55.238764],[-131.428234,55.239416],[-131.437857,55.248407],[-131.444799,55.264491],[-131.463532,55.283389],[-131.475602,55.303263],[-131.462968,55.312648],[-131.471976,55.323386],[-131.494146,55.33231],[-131.509811,55.33231],[-131.515257,55.327938],[-131.528201,55.295349],[-131.53651,55.292352],[-131.550044,55.293389],[-131.566677,55.306068],[-131.584842,55.309588],[-131.639031,55.339481],[-131.698743,55.354873],[-131.732441,55.377553],[-131.735939,55.381905],[-131.736654,55.392206],[-131.741834,55.398074],[-131.828446,55.445214],[-131.844157,55.456742],[-131.845542,55.522119],[-131.841683,55.526748],[-131.793717,55.541682],[-131.766373,55.54005],[-131.733052,55.548559],[-131.664629,55.581525],[-131.654172,55.592431],[-131.671471,55.606573],[-131.682849,55.610488],[-131.701091,55.613684],[-131.724359,55.632559],[-131.726322,55.63593],[-131.726615,55.641],[-131.719546,55.650282],[-131.712102,55.665797],[-131.701147,55.69696],[-131.706744,55.706435],[-131.726467,55.720826],[-131.733408,55.730832],[-131.719308,55.749099],[-131.704907,55.755541],[-131.649626,55.768728],[-131.640294,55.785274],[-131.640141,55.789355],[-131.653124,55.795735],[-131.678213,55.799837],[-131.691058,55.797561],[-131.697211,55.793768],[-131.700951,55.788977],[-131.705259,55.789939],[-131.710448,55.80662],[-131.713742,55.853263],[-131.701487,55.860943],[-131.689044,55.875488],[-131.687317,55.886772],[-131.689509,55.890232],[-131.720384,55.894659],[-131.776737,55.878784],[-131.828176,55.877284],[-131.836962,55.875472],[-131.830547,55.856616],[-131.81631,55.837449],[-131.777033,55.823261],[-131.771248,55.810028],[-131.779908,55.791904],[-131.814759,55.73135],[-131.82616,55.71858],[-131.831407,55.681342],[-131.828887,55.667148],[-131.865395,55.63068],[-131.897413,55.603914],[-131.939318,55.623844],[-131.963121,55.615263],[-131.962642,55.608708],[-131.945303,55.572441],[-131.936689,55.535151],[-131.971792,55.498279],[-131.986493,55.500619],[-132.014613,55.515238],[-132.043772,55.535742],[-132.060504,55.54303],[-132.098521,55.550015],[-132.114654,55.550623],[-132.141118,55.55901],[-132.148383,55.562481],[-132.183207,55.588128],[-132.198652,55.615721],[-132.2015,55.626376],[-132.197869,55.633967],[-132.199549,55.638593],[-132.215409,55.68227],[-132.224167,55.701766],[-132.237532,55.711347],[-132.260119,55.732293],[-132.283594,55.761774],[-132.280431,55.765599],[-132.265071,55.762174],[-132.251732,55.756247],[-132.229647,55.740488],[-132.206951,55.736987],[-132.190479,55.742501],[-132.185478,55.753161],[-132.184982,55.778776],[-132.187494,55.785595],[-132.183163,55.80083],[-132.130413,55.811419],[-132.113361,55.812718],[-132.08605,55.832436],[-132.067412,55.875078],[-132.041795,55.958795],[-132.07034,56.046733],[-132.038364,56.091297],[-132.033368,56.095572],[-132.011297,56.077359],[-131.970294,56.114042],[-131.935728,56.177207],[-131.943402,56.192557],[-131.958838,56.194762],[-131.993894,56.193351],[-132.01813,56.183155],[-132.034849,56.133432],[-132.060993,56.129355],[-132.10402,56.108109],[-132.176955,56.055706],[-132.129697,55.957855],[-132.135474,55.941626],[-132.159064,55.92256],[-132.170198,55.919231],[-132.191893,55.921717],[-132.224241,55.930421],[-132.279962,55.924839],[-132.320487,55.887648],[-132.319799,55.874347],[-132.309306,55.865059],[-132.309949,55.862301],[-132.323242,55.851878],[-132.372298,55.850359],[-132.376518,55.853377],[-132.397304,55.878867],[-132.398349,55.884052],[-132.39708,55.905546],[-132.401192,55.950467],[-132.446166,56.018666],[-132.492795,56.066436],[-132.522076,56.077035],[-132.573677,56.0707],[-132.621793,56.05614],[-132.621492,56.049174],[-132.629155,56.037425],[-132.640079,56.033194],[-132.68462,56.082323],[-132.708697,56.112124],[-132.723396,56.145814],[-132.718342,56.217704],[-132.689888,56.238744],[-132.672471,56.239439],[-132.664212,56.236332],[-132.64425,56.232807],[-132.615797,56.234172],[-132.601495,56.240065],[-132.58207,56.278816],[-132.582033,56.285456],[-132.575023,56.296468],[-132.543076,56.332276],[-132.52936,56.338555],[-132.441839,56.353983],[-132.431631,56.352163],[-132.422041,56.349341],[-132.403678,56.334811],[-132.381766,56.310756],[-132.380574,56.307785],[-132.382793,56.299203],[-132.363966,56.287126],[-132.35871,56.2908],[-132.349149,56.304456],[-132.340678,56.341754],[-132.361132,56.380627],[-132.394268,56.485579],[-132.38938,56.491367],[-132.382379,56.491972],[-132.362556,56.487904],[-132.253393,56.449539],[-132.245479,56.441215],[-132.233927,56.416736],[-132.242,56.41366],[-132.238473,56.398706],[-132.223136,56.384017],[-132.204367,56.372086],[-132.199269,56.371054],[-132.181158,56.387128],[-132.17935,56.390823],[-132.181647,56.399336],[-132.208568,56.457125],[-132.239043,56.476671],[-132.259611,56.48763],[-132.279753,56.485881],[-132.290475,56.487017],[-132.357564,56.529008],[-132.361293,56.534232],[-132.367088,56.574578],[-132.363836,56.588613],[-132.35841,56.595266],[-132.319303,56.607116],[-132.297288,56.629819],[-132.284216,56.636699],[-132.280089,56.651834],[-132.281464,56.665593],[-132.298664,56.677977],[-132.313799,56.676601],[-132.324807,56.673849],[-132.348886,56.664217],[-132.371589,56.672473],[-132.389476,56.672473],[-132.403923,56.669721],[-132.452081,56.672473],[-132.467904,56.680729],[-132.528446,56.702056],[-132.522398,56.716256],[-132.517127,56.728632],[-132.432385,56.782385],[-132.371032,56.816413],[-132.373615,56.820353],[-132.390129,56.825837],[-132.404564,56.825506],[-132.43833,56.821117],[-132.505513,56.785485],[-132.519457,56.775455],[-132.520712,56.760116],[-132.532002,56.757141],[-132.556758,56.757242],[-132.637458,56.78091],[-132.770404,56.837486],[-132.792089,56.856152],[-132.797107,56.864922],[-132.793601,56.866364],[-132.792727,56.871673],[-132.796999,56.87779],[-132.81789,56.896901],[-132.829346,56.903573],[-132.846744,56.910635],[-132.87034,56.925682],[-132.91197,56.966651],[-132.918967,56.993673],[-132.892388,56.993016],[-132.853636,57.005343],[-132.813684,57.030218],[-132.83222,57.070408],[-132.853284,57.080077],[-132.870116,57.078424],[-132.875197,57.069577],[-132.916487,57.040086],[-132.93752,57.048321],[-132.984307,57.054845],[-132.993944,57.032353],[-133.02505,57.057322],[-133.076481,57.081733],[-133.125306,57.088891],[-133.161448,57.086264],[-133.188074,57.088973],[-133.208726,57.109699],[-133.210261,57.118453],[-133.206655,57.123834],[-133.224656,57.136522],[-133.23488,57.137937],[-133.247414,57.136802],[-133.322359,57.112727],[-133.466932,57.159356],[-133.517194,57.177775],[-133.517197,57.177776],[-133.544817,57.24257],[-133.542565,57.250682],[-133.522837,57.27858],[-133.489738,57.305192],[-133.47589,57.307982],[-133.455936,57.30397],[-133.444958,57.297729],[-133.442436,57.289978],[-133.425948,57.285995],[-133.371591,57.286713],[-133.307565,57.290052],[-133.287052,57.30292],[-133.274829,57.330625],[-133.28351,57.333119],[-133.34207,57.336798],[-133.35472,57.333253],[-133.403868,57.342685],[-133.442682,57.352845],[-133.453783,57.35624],[-133.468267,57.364217],[-133.472039,57.368651],[-133.475998,57.380394],[-133.472454,57.388446],[-133.461179,57.394577],[-133.503115,57.453528],[-133.52514,57.490344],[-133.52583,57.501777],[-133.516749,57.543911],[-133.510806,57.548139],[-133.496365,57.548772],[-133.488197,57.551387],[-133.478086,57.56173],[-133.481221,57.57147],[-133.505982,57.578459],[-133.528313,57.573944],[-133.531905,57.569466],[-133.53786,57.567292],[-133.565478,57.563095],[-133.578948,57.565094],[-133.62076,57.578919],[-133.66439,57.611707],[-133.676449,57.625192],[-133.680963,57.648265],[-133.65855,57.707924],[-133.65453,57.713689],[-133.582212,57.715095],[-133.543928,57.696454],[-133.530957,57.686914],[-133.522243,57.683663],[-133.489677,57.677141],[-133.441215,57.672013],[-133.40498,57.663783],[-133.234598,57.608749],[-133.188864,57.589071],[-133.179062,57.587147],[-133.162464,57.599796],[-133.174032,57.610062],[-133.251126,57.649966],[-133.278209,57.661859],[-133.291062,57.665358],[-133.322532,57.66583],[-133.485403,57.738677],[-133.545031,57.76797],[-133.559889,57.777457],[-133.556097,57.78883],[-133.569787,57.859365],[-133.602032,57.860394],[-133.610178,57.860654],[-133.631303,57.846766],[-133.633931,57.838029],[-133.641996,57.811215],[-133.638899,57.803323],[-133.635578,57.7999],[-133.637054,57.792203],[-133.639675,57.790361],[-133.658113,57.786368],[-133.677433,57.786593],[-133.696784,57.795075],[-133.703097,57.792152],[-133.709141,57.792739],[-133.715482,57.799219],[-133.848776,57.93544],[-134.049603,58.062027],[-134.087674,58.181952],[-134.146685,58.199084],[-134.262386,58.190934],[-134.506876,58.216513],[-134.631203,58.247446],[-134.77635,58.397352],[-134.792411,58.491936],[-134.941722,58.612099],[-134.988717,58.679319],[-135.022624,58.732262],[-135.151115,58.845881],[-135.175756,58.973867],[-135.175756,58.973868],[-135.180116,58.997871],[-135.208585,59.076824],[-135.238267,59.130134],[-135.283964,59.192532],[-135.368331,59.263275],[-135.396611,59.292434],[-135.42756,59.296349],[-135.444526,59.277689],[-135.429601,59.242722],[-135.403687,59.222767],[-135.36406,59.211403],[-135.342254,59.177825],[-135.295084,59.08761],[-135.304601,59.0819],[-135.37641,59.089],[-135.395021,59.042877],[-135.382641,59.033366],[-135.378841,59.020034],[-135.38931,58.990528],[-135.393117,58.971493],[-135.367419,58.929614],[-135.323637,58.909627],[-135.322622,58.900661],[-135.339948,58.888955],[-135.284657,58.818114],[-135.274203,58.813122],[-135.248985,58.790878],[-135.2432,58.783112],[-135.233878,58.735487],[-135.142322,58.61637],[-135.135843,58.588225],[-135.137516,58.577835],[-135.142161,58.577107],[-135.145521,58.578332],[-135.153827,58.586626],[-135.159062,58.595525],[-135.186357,58.59777],[-135.190544,58.592417],[-135.189368,58.576244],[-135.165861,58.546605],[-135.132273,58.496536],[-135.088983,58.423022],[-135.058071,58.349447],[-135.049062,58.309295],[-135.053488,58.290498],[-135.056552,58.288699],[-135.060452,58.290338],[-135.069775,58.302694],[-135.095814,58.297233],[-135.10121,58.292607],[-135.1077,58.265034],[-135.099106,58.245096],[-135.056227,58.189884],[-135.073269,58.190575],[-135.087872,58.200073],[-135.112868,58.201553],[-135.159055,58.210178],[-135.220281,58.235584],[-135.227736,58.2369],[-135.246709,58.236368],[-135.277198,58.233634],[-135.2877,58.234933],[-135.306507,58.242916],[-135.344868,58.270795],[-135.39826,58.327689],[-135.408059,58.342999],[-135.433061,58.399899],[-135.447381,58.399891],[-135.461296,58.399884],[-135.466083,58.394328],[-135.512402,58.385759],[-135.521358,58.391449],[-135.556066,58.40774],[-135.622105,58.428186],[-135.630425,58.42858],[-135.728054,58.397067],[-135.826079,58.390246],[-135.90731,58.380839],[-135.917917,58.381237],[-135.921134,58.385772],[-135.920299,58.389084],[-135.897255,58.416132],[-135.897169,58.450001],[-135.916112,58.463858],[-135.923268,58.462919],[-135.934547,58.451953],[-135.939926,58.4516],[-135.987564,58.46442],[-135.997418,58.470375],[-135.99953,58.480281],[-135.990948,58.487315],[-135.968087,58.494669],[-135.955625,58.492765],[-135.945121,58.494836],[-135.906941,58.50581],[-135.893152,58.513929],[-135.895088,58.534077],[-135.914003,58.540583],[-135.928572,58.572925],[-135.912187,58.6188],[-136.012226,58.712247],[-136.015761,58.7226],[-136.008929,58.73191],[-136.011669,58.743276],[-136.046172,58.781796],[-136.082937,58.808383],[-136.089603,58.815729],[-136.077276,58.824983],[-136.045279,58.836074],[-136.050351,58.913433],[-136.060728,58.92758],[-136.120307,58.968418],[-136.145306,58.976705],[-136.162725,58.977261],[-136.163648,58.973204],[-136.160293,58.961999],[-136.1503,58.947111],[-136.124491,58.924542],[-136.106997,58.864441],[-136.150772,58.757266],[-136.161943,58.752171],[-136.21366,58.751153],[-136.247343,58.752935],[-136.397322,58.813019],[-136.431055,58.818416],[-136.474735,58.830788],[-136.493716,58.838963],[-136.528161,58.928484],[-136.52652,58.954523],[-136.544899,58.967314],[-136.559836,58.963414],[-136.572163,58.957292],[-136.575516,58.9466],[-136.575541,58.928941],[-136.586289,58.909364],[-136.630497,58.890256],[-136.670412,58.893224],[-136.676898,58.894973],[-136.6946,58.904081],[-136.704848,58.914395],[-136.724994,58.923514],[-136.750422,58.930439],[-136.782908,58.936659],[-136.78871,58.936318],[-136.802832,58.923118],[-136.840986,58.919742],[-136.860014,58.931997],[-136.857823,58.942868],[-136.877826,58.962392],[-136.91853,58.947217],[-136.915995,58.938384],[-136.932352,58.916252],[-136.934841,58.916345],[-136.933458,58.908558],[-136.928643,58.900131],[-136.868184,58.885243],[-136.76793,58.870608],[-136.744507,58.876626],[-136.676388,58.856348],[-136.612807,58.846227],[-136.58343,58.838826],[-136.538029,58.819777],[-136.463258,58.781607],[-136.356786,58.692581],[-136.354222,58.684304],[-136.372775,58.66741],[-136.396076,58.654421],[-136.409876,58.64925],[-136.422309,58.647412],[-136.449827,58.637816],[-136.482395,58.616739],[-136.459436,58.60788],[-136.383327,58.629987],[-136.342827,58.64503],[-136.331366,58.663545],[-136.317193,58.671231],[-136.246368,58.663185],[-136.229974,58.67525],[-136.217601,58.672394],[-136.194207,58.581731],[-136.145027,58.554611],[-136.132654,58.531768],[-136.100293,58.514636],[-136.100303,58.500673],[-136.074595,58.469902],[-136.072691,58.456577],[-136.062165,58.435795],[-136.053028,58.417375],[-136.041818,58.380161],[-136.092646,58.34899],[-136.11193,58.34253],[-136.265906,58.314499],[-136.276769,58.313894],[-136.288255,58.316144],[-136.296281,58.318447],[-136.304158,58.32345],[-136.305121,58.328691],[-136.303092,58.336277],[-136.298718,58.342941],[-136.290055,58.351447],[-136.281631,58.35309],[-136.273929,58.363409],[-136.282604,58.367261],[-136.288867,58.369649],[-136.336728,58.37757],[-136.382035,58.362694],[-136.365148,58.346663],[-136.360416,58.344077],[-136.357115,58.328838],[-136.370979,58.301643],[-136.376464,58.298625],[-136.389964,58.29707],[-136.47202,58.306356],[-136.514319,58.310003],[-136.544776,58.316665],[-136.570475,58.310954],[-136.585703,58.296678],[-136.576799,58.277951],[-136.569831,58.2687],[-136.567956,58.245153],[-136.591924,58.217886],[-136.597198,58.215006],[-136.619824,58.209899],[-136.658638,58.207323],[-136.70125,58.219416],[-136.723391,58.244926],[-136.730885,58.256496],[-136.717093,58.273508],[-136.730218,58.286153],[-136.762198,58.286765],[-136.784326,58.290497],[-136.857605,58.31636],[-136.848992,58.328994],[-136.946663,58.393185],[-136.986384,58.404043],[-137.009415,58.408877],[-137.018409,58.409141],[-137.078109,58.397474],[-137.111802,58.392594],[-137.134453,58.406596],[-137.180029,58.429939],[-137.239366,58.453159],[-137.25271,58.456338],[-137.278612,58.459484],[-137.295788,58.466179],[-137.408758,58.515822],[-137.497002,58.557721],[-137.568216,58.587989],[-137.608804,58.601234],[-137.632889,58.599982],[-137.67169,58.615523],[-137.680811,58.621835],[-137.676857,58.64677],[-137.683516,58.660267],[-137.687627,58.664989],[-137.795037,58.724855],[-137.87535,58.757232],[-137.901675,58.765316],[-137.928156,58.780533],[-137.941828,58.794322],[-137.944259,58.802349],[-137.944957,58.804652],[-137.939353,58.813721],[-137.931565,58.819787],[-137.927624,58.827187],[-137.924608,58.843928],[-137.932593,58.868494],[-137.951995,58.886029],[-137.985198,58.909525],[-138.066332,58.957126],[-138.136246,58.989026],[-138.131,59.002613],[-138.117551,59.012494],[-138.118853,59.021307],[-138.144594,59.028072],[-138.250531,59.047031],[-138.636702,59.130585],[-138.7059,59.162549],[-138.763467,59.19132],[-138.847498,59.224835],[-138.919749,59.248531],[-139.044593,59.280341],[-139.271031,59.337421],[-139.343049,59.356608],[-139.420168,59.37976],[-139.541156,59.423071],[-139.595186,59.445413],[-139.746478,59.503415],[-139.855565,59.53666],[-139.862547,59.544258],[-139.861306,59.546678],[-139.847236,59.557304],[-139.837817,59.561984],[-139.807161,59.554333],[-139.785068,59.564043],[-139.795314,59.574767],[-139.798169,59.585236],[-139.770567,59.599513],[-139.725834,59.638536],[-139.65445,59.630922],[-139.640173,59.626163],[-139.649691,59.618549],[-139.671436,59.615682],[-139.67631,59.611249],[-139.672408,59.602894],[-139.654579,59.598015],[-139.623125,59.595909],[-139.614513,59.597135],[-139.587135,59.605959],[-139.581447,59.609171],[-139.582528,59.613542],[-139.589369,59.618674],[-139.593488,59.624317],[-139.585789,59.642765],[-139.51818,59.687814],[-139.510518,59.702632],[-139.532297,59.705985],[-139.549753,59.703258],[-139.588777,59.708968],[-139.595439,59.718486],[-139.587651,59.725841],[-139.578307,59.734667],[-139.582114,59.774642],[-139.598294,59.807002],[-139.621137,59.840315],[-139.634462,59.874579],[-139.625896,59.904084],[-139.605909,59.905036],[-139.577232,59.918265],[-139.535902,59.935248],[-139.527455,59.940047],[-139.488702,59.995034],[-139.486032,60.012407],[-139.505389,60.039428],[-139.555157,60.039243],[-139.576819,60.015425],[-139.601852,59.959866],[-139.60579,59.9556],[-139.657451,59.944727],[-139.682456,59.943984],[-139.693423,59.94073],[-139.705328,59.934826],[-139.769537,59.878108],[-139.768612,59.85116],[-139.775517,59.84521],[-139.801197,59.832586],[-139.811185,59.829332],[-139.909851,59.80607],[-140.102591,59.75491],[-140.14109,59.747979],[-140.164657,59.741878],[-140.178132,59.735628],[-140.18861,59.725248],[-140.210907,59.715535],[-140.256351,59.703052],[-140.272266,59.700609],[-140.285557,59.698717],[-140.3144,59.698302],[-140.385022,59.69948],[-140.601672,59.712953],[-140.636639,59.711409],[-140.72198,59.718563],[-140.883583,59.737613],[-140.92722,59.745709],[-141.013338,59.773338],[-141.156497,59.813582],[-141.216148,59.827285],[-141.423134,59.877329],[-141.468075,59.898374],[-141.485207,59.925024],[-141.47093,59.926927],[-141.418582,59.916457],[-141.299609,59.937397],[-141.291043,59.967854],[-141.285332,60.015443],[-141.325307,60.054466],[-141.384318,60.071598],[-141.368138,60.024009],[-141.40145,60.005925],[-141.530295,59.977655],[-141.595376,59.961905],[-141.73624,59.961905],[-141.869766,59.998834],[-141.912218,60.009779],[-141.966178,60.019129],[-141.998818,60.022606],[-142.062454,60.023781],[-142.100059,60.026772],[-142.13004,60.030327],[-142.24518,60.049778],[-142.537534,60.083953],[-142.589676,60.088182],[-142.698419,60.093333],[-142.809852,60.095217],[-142.875248,60.092428],[-142.908859,60.090328],[-143.0687,60.068603],[-143.135616,60.062082],[-143.194276,60.061995],[-143.413377,60.051924],[-143.624152,60.037257],[-143.69899,60.027761],[-143.885432,59.988387],[-143.897029,59.985938],[-144.035037,60.020202],[-144.195889,59.997359],[-144.424317,59.894566],[-144.450967,59.871724],[-144.59088,59.795581],[-144.601349,59.797484],[-144.567085,59.851736],[-144.439546,59.940252],[-144.323428,59.9926],[-144.216828,60.040189],[-144.052539,60.041759],[-144.048732,60.059271],[-144.1103,60.098939],[-144.285357,60.140127],[-144.312007,60.162018],[-144.379225,60.16909],[-144.441936,60.163069],[-144.453957,60.166004],[-144.484756,60.169632],[-144.534892,60.18942],[-144.545101,60.186999],[-144.553786,60.181914],[-144.555093,60.178485],[-144.558163,60.177797],[-144.596256,60.181666],[-144.654899,60.204882],[-144.666556,60.222572],[-144.662685,60.229296],[-144.662364,60.23948],[-144.666134,60.243885],[-144.715474,60.271215],[-144.75345,60.283515],[-144.782521,60.291972],[-144.892815,60.292821],[-144.914016,60.280934],[-144.942134,60.289728],[-144.912707,60.363178],[-144.871428,60.407269],[-144.855457,60.416886],[-144.834059,60.443751],[-144.848662,60.455192],[-144.874451,60.457304],[-144.887342,60.456048],[-144.903296,60.442581],[-144.964135,60.444466],[-144.983585,60.446902],[-145.012409,60.44792],[-145.085842,60.435893],[-145.086283,60.399012],[-145.039646,60.366651],[-145.041549,60.357134],[-145.089139,60.320014],[-145.113885,60.300978],[-145.136728,60.296219],[-145.219533,60.303834],[-145.254749,60.311448],[-145.335651,60.338098],[-145.505458,60.394268],[-145.510457,60.408988],[-145.50393,60.410607],[-145.501549,60.416799],[-145.502351,60.420811],[-145.536942,60.430533],[-145.561523,60.443124],[-145.594158,60.45183],[-145.668841,60.465431],[-145.735938,60.47466],[-145.799318,60.462031],[-145.853469,60.44563],[-145.882293,60.444633],[-145.9469,60.455395],[-145.957404,60.461101],[-145.96106,60.465017],[-145.960508,60.46751],[-145.914403,60.49235],[-145.863092,60.501821],[-145.802387,60.520173],[-145.712891,60.583249],[-145.736494,60.59521],[-145.764045,60.591588],[-145.780628,60.579182],[-145.798819,60.561918],[-145.820659,60.550051],[-145.828622,60.549746],[-145.964543,60.513557],[-146.039209,60.492968],[-146.074409,60.480085],[-146.109713,60.470345],[-146.216786,60.450228],[-146.247144,60.451188],[-146.312552,60.457438],[-146.317354,60.460608],[-146.351292,60.454293],[-146.355334,60.449349],[-146.356252,60.425527],[-146.350104,60.40778],[-146.330118,60.407098],[-146.308784,60.414246],[-146.284201,60.417656],[-146.133957,60.431523],[-146.127029,60.430815],[-146.123595,60.428031],[-146.126199,60.42429],[-146.094646,60.410296],[-146.133455,60.383774],[-146.199077,60.359928],[-146.268449,60.347958],[-146.302564,60.349234],[-146.393256,60.327476],[-146.458719,60.30725],[-146.490804,60.294939],[-146.540294,60.270968],[-146.607692,60.241182],[-146.628377,60.239633],[-146.641427,60.240897],[-146.650852,60.242982],[-146.689523,60.271279],[-146.694034,60.279608],[-146.693546,60.284593],[-146.681867,60.292247],[-146.650252,60.305063],[-146.595376,60.321203],[-146.572014,60.321755],[-146.540703,60.338811],[-146.524591,60.350667],[-146.543101,60.357974],[-146.575835,60.357272],[-146.607435,60.351673],[-146.624614,60.341407],[-146.656291,60.340462],[-146.717548,60.349598],[-146.725511,60.359939],[-146.724068,60.387606],[-146.721479,60.396416],[-146.637783,60.467178],[-146.61084,60.485613],[-146.59103,60.491039],[-146.52925,60.492135],[-146.524263,60.487332],[-146.505842,60.476961],[-146.455444,60.465318],[-146.3684,60.480671],[-146.316761,60.497499],[-146.290083,60.515692],[-146.15629,60.526296],[-146.08036,60.543056],[-145.951737,60.576779],[-145.88692,60.585713],[-145.872969,60.584836],[-145.844626,60.586509],[-145.800808,60.593996],[-145.795141,60.601121],[-145.795684,60.603151],[-145.816105,60.612217],[-145.832717,60.614851],[-145.856443,60.610936],[-145.888747,60.610304],[-145.896663,60.611789],[-145.898182,60.613653],[-145.896557,60.628684],[-145.89564,60.629213],[-145.897542,60.651214],[-145.884301,60.658185],[-145.868167,60.666784],[-145.841742,60.685893],[-145.841815,60.689787],[-145.844937,60.690169],[-145.85218,60.689858],[-145.858557,60.688484],[-145.876217,60.683453],[-145.894654,60.674164],[-145.899605,60.671118],[-145.922403,60.651954],[-145.92532,60.648898],[-145.937318,60.632053],[-145.937464,60.63049],[-145.965956,60.622748],[-146.00293,60.615082],[-146.005018,60.616231],[-146.006152,60.616854],[-146.008072,60.619742],[-146.008144,60.625326],[-145.999595,60.640832],[-145.969131,60.668235],[-145.937428,60.682822],[-145.931833,60.685478],[-145.911935,60.696647],[-145.899559,60.705642],[-145.901676,60.715373],[-145.905874,60.715045],[-145.978502,60.684712],[-146.016799,60.667222],[-146.025417,60.665311],[-146.056067,60.658685],[-146.08669,60.65203],[-146.117309,60.643327],[-146.131338,60.639181],[-146.143646,60.633869],[-146.147633,60.631407],[-146.188073,60.624521],[-146.253471,60.622315],[-146.258777,60.626288],[-146.263539,60.631932],[-146.269081,60.64124],[-146.270654,60.644928],[-146.270647,60.648035],[-146.263379,60.651569],[-146.188556,60.687333],[-146.179073,60.691483],[-146.141037,60.707652],[-146.12447,60.712417],[-146.101458,60.719277],[-146.044133,60.743636],[-146.045723,60.75404],[-146.049101,60.76377],[-146.064954,60.776944],[-146.067618,60.773918],[-146.071364,60.770956],[-146.085504,60.761063],[-146.090177,60.758156],[-146.120787,60.741981],[-146.160617,60.726383],[-146.168456,60.72535],[-146.191553,60.73199],[-146.199423,60.734359],[-146.202309,60.735912],[-146.200497,60.743081],[-146.209136,60.74439],[-146.217208,60.7417],[-146.228647,60.735643],[-146.231103,60.722008],[-146.239909,60.716889],[-146.25806,60.713068],[-146.303795,60.713214],[-146.314255,60.717926],[-146.317697,60.721124],[-146.318346,60.723817],[-146.31268,60.734401],[-146.34697,60.735747],[-146.387289,60.714598],[-146.40327,60.693084],[-146.412917,60.69045],[-146.474539,60.681539],[-146.500246,60.680134],[-146.518245,60.688102],[-146.532793,60.689748],[-146.57921,60.690212],[-146.60755,60.686377],[-146.623663,60.68042],[-146.649456,60.683438],[-146.668151,60.692761],[-146.699616,60.732176],[-146.703994,60.741903],[-146.605405,60.758608],[-146.567128,60.751198],[-146.501075,60.772113],[-146.465221,60.770722],[-146.359015,60.786193],[-146.304842,60.798038],[-146.255812,60.809962],[-146.183555,60.846969],[-146.172294,60.862823],[-146.173528,60.866071],[-146.188582,60.869374],[-146.262969,60.867787],[-146.269056,60.863842],[-146.290599,60.842694],[-146.314154,60.827833],[-146.333821,60.821921],[-146.394766,60.812271],[-146.550974,60.809402],[-146.556361,60.810066],[-146.620816,60.869019],[-146.664765,60.870854],[-146.701138,60.848345],[-146.718529,60.835667],[-146.719929,60.830166],[-146.715145,60.820385],[-146.720187,60.814475],[-146.725241,60.81212],[-146.755244,60.807882],[-146.801009,60.80516],[-146.819415,60.816346],[-146.819405,60.841568],[-146.816702,60.855628],[-146.787828,60.865597],[-146.774552,60.876225],[-146.757401,60.878454],[-146.727623,60.86627],[-146.698087,60.872534],[-146.711684,60.896465],[-146.736422,60.910301],[-146.747155,60.935454],[-146.74594,60.957582],[-146.701753,60.987009],[-146.653827,61.047752],[-146.661915,61.060776],[-146.642213,61.075017],[-146.607949,61.085487],[-146.435676,61.085487],[-146.262451,61.090246],[-146.25674,61.098812],[-146.269113,61.113088],[-146.288149,61.122606],[-146.401411,61.125462],[-146.424254,61.133076],[-146.493734,61.122606],[-146.613659,61.118799],[-146.64602,61.103571],[-146.690949,61.064076],[-146.784127,61.042936],[-146.848509,61.000587],[-146.863106,60.982523],[-146.862358,60.976177],[-146.869223,60.971448],[-146.88025,60.965161],[-146.930186,60.944263],[-146.973469,60.934835],[-147.039349,60.942079],[-147.056151,60.945468],[-147.070949,60.963312],[-147.063627,60.974057],[-147.047485,60.991209],[-147.063068,61.004336],[-147.09526,61.010189],[-147.113004,61.002974],[-147.137281,60.980968],[-147.145036,60.963492],[-147.135968,60.946248],[-147.143711,60.939831],[-147.172021,60.932877],[-147.181654,60.933099],[-147.205327,60.94266],[-147.21567,60.948077],[-147.221206,60.953121],[-147.226884,60.96216],[-147.219972,60.969505],[-147.220722,60.981702],[-147.222013,60.983541],[-147.253381,60.979621],[-147.274043,60.974595],[-147.278401,60.961063],[-147.280834,60.916963],[-147.378483,60.877845],[-147.451966,60.894219],[-147.453301,60.897366],[-147.452096,60.92588],[-147.453803,60.941468],[-147.473487,60.957552],[-147.491943,60.957998],[-147.507665,60.927235],[-147.506407,60.92117],[-147.502762,60.920429],[-147.494209,60.912379],[-147.517821,60.894819],[-147.525453,60.896057],[-147.543399,60.903331],[-147.550153,60.908009],[-147.537195,61.019346],[-147.534431,61.03109],[-147.516179,61.061408],[-147.50272,61.072056],[-147.514173,61.096127],[-147.525494,61.101176],[-147.558598,61.099797],[-147.554836,61.091719],[-147.557623,61.081402],[-147.591657,61.016591],[-147.619197,60.97004],[-147.614243,60.951496],[-147.598146,60.913905],[-147.587706,60.874463],[-147.602802,60.849978],[-147.626982,60.845065],[-147.66899,60.841563],[-147.672325,60.845283],[-147.677689,60.86996],[-147.663357,60.874951],[-147.666252,60.883774],[-147.730788,60.911256],[-147.76124,60.913227],[-147.787512,60.873511],[-147.780114,60.863435],[-147.767358,60.853544],[-147.750609,60.852141],[-147.732521,60.824711],[-147.729818,60.818252],[-147.733649,60.816975],[-147.743653,60.813887],[-147.777554,60.811018],[-147.829162,60.815947],[-147.856317,60.820882],[-147.913796,60.825152],[-147.915513,60.818955],[-147.920842,60.812442],[-148.03435,60.783198],[-148.098545,60.786556],[-148.134384,60.791268],[-148.144752,60.797089],[-148.151994,60.818122],[-148.148695,60.828701],[-148.102238,60.899347],[-148.085617,60.918613],[-148.065529,60.937963],[-148.017673,60.971807],[-147.951016,61.029211],[-147.948182,61.040625],[-147.95282,61.06883],[-147.949965,61.074541],[-147.888099,61.107854],[-147.772413,61.18032],[-147.761511,61.214453],[-147.715826,61.249669],[-147.726295,61.266802],[-147.738668,61.26585],[-147.793872,61.231586],[-147.817667,61.206839],[-147.913797,61.140214],[-147.977566,61.102143],[-147.999457,61.084059],[-148.002034,61.060103],[-148.003613,61.053797],[-148.065902,61.003979],[-148.090487,61.00511],[-148.095401,61.011384],[-148.105785,61.035123],[-148.125524,61.070698],[-148.14942,61.076672],[-148.166366,61.069277],[-148.164849,61.042665],[-148.178046,60.999608],[-148.199367,60.971584],[-148.219351,60.953573],[-148.242061,60.937738],[-148.265981,60.936331],[-148.281645,60.917792],[-148.294872,60.862751],[-148.310107,60.837737],[-148.341108,60.809072],[-148.350857,60.803991],[-148.375813,60.80347],[-148.389914,60.805622],[-148.397011,60.813694],[-148.426951,60.827113],[-148.446675,60.808705],[-148.450518,60.796405],[-148.451287,60.789487],[-148.442062,60.777956],[-148.431475,60.771842],[-148.405973,60.780301],[-148.396359,60.779701],[-148.382396,60.775768],[-148.366804,60.765833],[-148.365711,60.740969],[-148.384491,60.687754],[-148.374415,60.67264],[-148.348278,60.680327],[-148.326753,60.709539],[-148.280533,60.753337],[-148.26992,60.757389],[-148.230153,60.76414],[-148.148059,60.758536],[-148.120763,60.748952],[-148.107384,60.73977],[-148.091712,60.676249],[-148.094129,60.661533],[-148.142993,60.622632],[-148.230358,60.595062],[-148.238225,60.600206],[-148.255249,60.595124],[-148.293234,60.565496],[-148.30652,60.550702],[-148.328564,60.531913],[-148.333642,60.530464],[-148.346024,60.502973],[-148.346775,60.48873],[-148.329384,60.476182],[-148.293931,60.483001],[-148.255822,60.49341],[-148.248264,60.500504],[-148.250529,60.507573],[-148.238951,60.521443],[-148.19243,60.557371],[-148.115163,60.596029],[-148.103144,60.598026],[-148.086775,60.595518],[-147.979416,60.519146],[-147.964014,60.50275],[-147.971595,60.486479],[-147.977647,60.480937],[-147.942106,60.444029],[-147.993336,60.352596],[-148.025994,60.279029],[-148.064891,60.276233],[-148.116261,60.279522],[-148.150529,60.29621],[-148.153519,60.303062],[-148.154021,60.3116],[-148.150506,60.320739],[-148.150628,60.324182],[-148.171278,60.335266],[-148.193066,60.339103],[-148.217318,60.331594],[-148.216245,60.318269],[-148.211591,60.306961],[-148.215549,60.301014],[-148.285204,60.270971],[-148.313022,60.263084],[-148.325969,60.261824],[-148.362497,60.221849],[-148.339552,60.21335],[-148.333049,60.214],[-148.321605,60.218469],[-148.276149,60.24927],[-148.21726,60.260006],[-148.208725,60.259342],[-148.192397,60.2525],[-148.188695,60.248574],[-148.192966,60.241826],[-148.201176,60.236711],[-148.229328,60.235911],[-148.234624,60.223689],[-148.190927,60.206957],[-148.165496,60.206173],[-148.159344,60.211675],[-148.154172,60.226236],[-148.153434,60.235528],[-148.140266,60.241081],[-148.090635,60.215863],[-148.117697,60.191335],[-148.134021,60.18839],[-148.135387,60.184596],[-148.131038,60.169789],[-148.126688,60.167063],[-148.091273,60.168649],[-148.080585,60.171568],[-148.080281,60.184234],[-148.086188,60.190041],[-148.083271,60.192357],[-148.062262,60.200094],[-148.052315,60.202062],[-148.00383,60.176167],[-148.007053,60.168461],[-148.018801,60.157419],[-148.029267,60.150518],[-148.032892,60.148423],[-148.064798,60.148508],[-148.097627,60.12012],[-148.122194,60.073548],[-148.096116,60.065935],[-148.079863,60.073251],[-148.053828,60.090762],[-148.040575,60.112361],[-148.012667,60.124734],[-147.962098,60.1409],[-147.913221,60.132576],[-147.892717,60.119515],[-147.888131,60.109683],[-147.892973,60.101161],[-147.973509,60.064636],[-147.999056,60.062305],[-148.013948,60.038159],[-148.024213,60.007108],[-148.016432,59.999344],[-147.986561,59.999344],[-147.924798,60.03623],[-147.892626,60.063265],[-147.880076,60.069593],[-147.861004,60.076356],[-147.848469,60.078962],[-147.82244,60.066955],[-147.816848,60.061824],[-147.815635,60.058562],[-147.824135,60.045035],[-147.864326,60.006619],[-147.917935,59.985997],[-148.006224,59.961542],[-148.032167,59.955862],[-148.037173,59.956664],[-148.051103,59.968908],[-148.05054,59.976767],[-148.05677,59.990423],[-148.070316,59.989098],[-148.086217,59.977512],[-148.105215,59.969237],[-148.135492,59.959055],[-148.154139,59.954643],[-148.225235,59.950195],[-148.251496,59.952416],[-148.253266,59.955614],[-148.213894,59.994643],[-148.194239,59.998979],[-148.179942,59.996653],[-148.148011,59.994952],[-148.132697,59.997697],[-148.12909,60.003442],[-148.139315,60.012416],[-148.176205,60.026337],[-148.213065,60.018101],[-148.274241,60.013318],[-148.318338,60.028731],[-148.306122,60.054468],[-148.290764,60.059995],[-148.293213,60.151289],[-148.306265,60.161607],[-148.317246,60.165437],[-148.346932,60.162108],[-148.358585,60.15651],[-148.369506,60.120922],[-148.382722,60.063299],[-148.401601,59.9976],[-148.429503,59.969158],[-148.445985,59.963755],[-148.470602,59.973708],[-148.480568,59.979653],[-148.482902,59.983308],[-148.477371,59.989515],[-148.480833,59.999394],[-148.509222,60.002875],[-148.544531,60.002809],[-148.556691,59.984931],[-148.555253,59.980657],[-148.599121,59.950889],[-148.635842,59.939661],[-148.673822,59.944828],[-148.676172,59.947216],[-148.675485,59.95207],[-148.664283,59.965128],[-148.661876,59.967436],[-148.66083,59.969735],[-148.662712,59.971825],[-148.668146,59.973497],[-148.674841,59.972699],[-148.688758,59.968006],[-148.715511,59.96212],[-148.725872,59.963727],[-148.727688,59.96505],[-148.729731,59.972376],[-148.737453,59.980879],[-148.743229,59.985389],[-148.749742,59.988497],[-148.755366,59.989237],[-148.759807,59.988941],[-148.763803,59.987905],[-148.766911,59.986869],[-148.769871,59.983464],[-148.797927,59.9774],[-148.801223,59.975844],[-148.810654,59.963105],[-148.838304,59.9499],[-148.872181,59.950321],[-148.884265,59.955388],[-148.888537,59.966362],[-148.901981,59.973319],[-148.913089,59.983207],[-148.914569,59.986891],[-148.912676,59.992894],[-148.917819,59.995595],[-148.938327,59.999074],[-148.957554,59.998371],[-148.977589,59.989881],[-148.990301,59.981013],[-149.01679,59.976134],[-149.028418,59.978821],[-149.029394,59.984098],[-149.027274,59.991698],[-149.031273,59.998492],[-149.043265,59.999115],[-149.067833,59.982177],[-149.09507,59.983019],[-149.100687,59.985727],[-149.101785,59.990943],[-149.102321,59.993149],[-149.101717,59.994155],[-149.098699,59.996167],[-149.095278,59.997374],[-149.090072,59.999445],[-149.089077,60.004504],[-149.072716,60.019653],[-149.041599,60.030726],[-149.037439,60.04053],[-149.040358,60.048744],[-149.04929,60.0587],[-149.0587,60.061419],[-149.096621,60.044631],[-149.133115,60.044918],[-149.204853,60.009212],[-149.223781,59.982763],[-149.23539,59.938792],[-149.287588,59.906506],[-149.327029,59.987029],[-149.325822,60.001033],[-149.341584,60.076762],[-149.360414,60.101665],[-149.393171,60.099845],[-149.416829,60.088926],[-149.416829,59.997934],[-149.427748,59.996114],[-149.435027,59.990655],[-149.462855,59.950151],[-149.475659,59.952698],[-149.507429,59.964519],[-149.549677,59.919681],[-149.584254,59.866905],[-149.59679,59.809858],[-149.538731,59.782256],[-149.526358,59.703258],[-149.612162,59.723824],[-149.638668,59.742281],[-149.666147,59.850527],[-149.706184,59.910582],[-149.746364,59.860881],[-149.738941,59.732237],[-149.728136,59.692788],[-149.74622,59.637585],[-149.791905,59.661379],[-149.842672,59.7013],[-149.849315,59.738066],[-149.904216,59.762268],[-150.028296,59.788652],[-150.042854,59.772274],[-150.015557,59.754075],[-149.97916,59.744976],[-149.928962,59.723245],[-149.919444,59.691836],[-149.933721,59.668994],[-150.031935,59.613947],[-150.10885,59.569056],[-150.180233,59.53384],[-150.253521,59.486251],[-150.296351,59.455794],[-150.297108,59.424747],[-150.392481,59.387265],[-150.440221,59.404016],[-150.368687,59.51766],[-150.316945,59.585285],[-150.318668,59.610427],[-150.355493,59.598412],[-150.412448,59.554628],[-150.431518,59.514287],[-150.478742,59.458498],[-150.4989,59.456298],[-150.516317,59.462326],[-150.521537,59.467924],[-150.521626,59.474672],[-150.518382,59.477136],[-150.515867,59.482167],[-150.516286,59.486778],[-150.522994,59.494744],[-150.536119,59.498457],[-150.543537,59.510256],[-150.550245,59.527026],[-150.549825,59.538764],[-150.533056,59.56308],[-150.537248,59.581108],[-150.54186,59.586977],[-150.547729,59.590331],[-150.556114,59.590331],[-150.575818,59.579431],[-150.589315,59.565154],[-150.594543,59.553167],[-150.60223,59.545891],[-150.614808,59.545472],[-150.631158,59.549245],[-150.639543,59.547149],[-150.638704,59.532056],[-150.631577,59.521575],[-150.615152,59.510199],[-150.595056,59.499777],[-150.589645,59.500083],[-150.584636,59.49451],[-150.579595,59.47954],[-150.579869,59.475709],[-150.584342,59.467715],[-150.585567,59.450057],[-150.581182,59.445233],[-150.601162,59.425657],[-150.650046,59.420885],[-150.651586,59.421751],[-150.700859,59.432951],[-150.739958,59.425211],[-150.745004,59.400729],[-150.769853,59.372966],[-150.79547,59.362845],[-150.819565,59.357276],[-150.834627,59.35198],[-150.877447,59.31812],[-150.911598,59.311614],[-150.912817,59.305214],[-150.895552,59.286227],[-150.887825,59.273526],[-150.887821,59.26792],[-150.897808,59.255648],[-150.942212,59.233136],[-150.959531,59.232537],[-150.975164,59.236141],[-150.988397,59.230549],[-150.995406,59.224149],[-151.001196,59.224149],[-151.006682,59.233292],[-151.008815,59.245787],[-151.007292,59.251577],[-150.996808,59.257739],[-150.999063,59.271082],[-151.023097,59.269045],[-151.03243,59.275762],[-151.044411,59.293611],[-151.0461,59.299359],[-151.057756,59.301721],[-151.070305,59.287852],[-151.068166,59.284102],[-151.071902,59.281058],[-151.087319,59.26879],[-151.091532,59.269187],[-151.105635,59.263143],[-151.101102,59.240605],[-151.102395,59.228713],[-151.107558,59.217792],[-151.126247,59.209923],[-151.163408,59.202636],[-151.186254,59.202813],[-151.190948,59.206632],[-151.192634,59.211208],[-151.206053,59.219319],[-151.223629,59.224347],[-151.261636,59.220304],[-151.273779,59.229663],[-151.280544,59.230476],[-151.28488,59.227586],[-151.287063,59.224789],[-151.287771,59.219417],[-151.292812,59.214273],[-151.305724,59.209544],[-151.341601,59.222231],[-151.379612,59.242024],[-151.387261,59.25045],[-151.390544,59.264917],[-151.399549,59.276005],[-151.407203,59.279349],[-151.429415,59.268552],[-151.437695,59.253989],[-151.449207,59.248457],[-151.488612,59.237714],[-151.509551,59.234395],[-151.518488,59.230309],[-151.525127,59.224947],[-151.520245,59.21693],[-151.504699,59.21269],[-151.499592,59.207839],[-151.497805,59.204264],[-151.498826,59.200178],[-151.502657,59.195071],[-151.521455,59.195483],[-151.558151,59.200085],[-151.574664,59.195327],[-151.579261,59.187666],[-151.576452,59.172601],[-151.580351,59.165233],[-151.590729,59.161725],[-151.698875,59.163081],[-151.710625,59.158097],[-151.720931,59.156078],[-151.739068,59.156005],[-151.748451,59.158601],[-151.764908,59.17551],[-151.761451,59.205235],[-151.75853,59.215743],[-151.761301,59.221327],[-151.838335,59.209135],[-151.874356,59.211931],[-151.915684,59.227522],[-151.917248,59.231254],[-151.910958,59.236707],[-151.906191,59.237963],[-151.905106,59.247075],[-151.925051,59.254428],[-151.952723,59.250447],[-151.959279,59.247625],[-151.978748,59.253779],[-151.991618,59.313617],[-151.96313,59.344958],[-151.952705,59.349413],[-151.924018,59.354417],[-151.903021,59.360454],[-151.890738,59.373156],[-151.887102,59.382532],[-151.908015,59.395274],[-151.905153,59.401035],[-151.886513,59.421033],[-151.826047,59.439049],[-151.770875,59.447917],[-151.75142,59.446554],[-151.740538,59.438432],[-151.728486,59.439679],[-151.720421,59.443117],[-151.706462,59.462811],[-151.694726,59.46837],[-151.634472,59.482443],[-151.570032,59.468945],[-151.542349,59.467061],[-151.528493,59.472338],[-151.50589,59.477048],[-151.485624,59.475459],[-151.470992,59.47225],[-151.466272,59.48405],[-151.46963,59.502811],[-151.436359,59.530329],[-151.420966,59.537728],[-151.365776,59.541255],[-151.32367,59.550943],[-151.272459,59.555823],[-151.266733,59.562632],[-151.264811,59.568598],[-151.271737,59.576468],[-151.278905,59.589029],[-151.278827,59.59298],[-151.274795,59.596986],[-151.201678,59.591503],[-151.203835,59.577961],[-151.20913,59.573623],[-151.208364,59.562061],[-151.192803,59.562432],[-151.164259,59.587013],[-151.158254,59.594141],[-151.165427,59.601329],[-151.188032,59.608687],[-151.205459,59.630284],[-151.207639,59.64067],[-151.203186,59.645989],[-151.173984,59.651793],[-151.126122,59.668336],[-151.121362,59.674735],[-151.122791,59.677782],[-151.11649,59.696132],[-151.098253,59.709442],[-151.018888,59.756593],[-150.927312,59.793431],[-150.948132,59.792194],[-150.982996,59.783543],[-151.001663,59.788391],[-151.006717,59.792986],[-151.027756,59.796196],[-151.063758,59.793146],[-151.113845,59.777231],[-151.172439,59.751346],[-151.214539,59.729847],[-151.329812,59.683644],[-151.377054,59.681313],[-151.42484,59.670521],[-151.43661,59.66636],[-151.439187,59.663247],[-151.441127,59.653543],[-151.448669,59.648171],[-151.461253,59.643039],[-151.503822,59.633662],[-151.643061,59.646966],[-151.686486,59.660864],[-151.746815,59.686234],[-151.7963,59.704156],[-151.829137,59.720151],[-151.850272,59.739035],[-151.859327,59.749567],[-151.869468,59.769159],[-151.867713,59.778411],[-151.857339,59.791145],[-151.83334,59.814129],[-151.813619,59.844297],[-151.803059,59.878533],[-151.792594,59.88881],[-151.777855,59.897493],[-151.757693,59.917637],[-151.742742,59.944626],[-151.71801,60.009473],[-151.702898,60.032253],[-151.661437,60.057139],[-151.623799,60.088033],[-151.606881,60.099558],[-151.545579,60.128394],[-151.517887,60.145008],[-151.488721,60.167616],[-151.421702,60.212931],[-151.406607,60.228183],[-151.387919,60.267066],[-151.381959,60.296951],[-151.383231,60.326348],[-151.381604,60.358728],[-151.377281,60.365522],[-151.366874,60.372655],[-151.30609,60.387257],[-151.301868,60.384712],[-151.299782,60.385481],[-151.293074,60.416163],[-151.286819,60.434648],[-151.283967,60.452196],[-151.280992,60.512627],[-151.27881,60.520107],[-151.264461,60.543263],[-151.268373,60.548977],[-151.303125,60.561326],[-151.323951,60.574135],[-151.330409,60.580539],[-151.339069,60.594244],[-151.344477,60.613458],[-151.345508,60.622954],[-151.350154,60.63466],[-151.362397,60.653526],[-151.387839,60.674501],[-151.404451,60.695004],[-151.410273,60.711023],[-151.40927,60.720558],[-151.3848,60.729946],[-151.370515,60.733572],[-151.30923,60.740724],[-151.279635,60.747676],[-151.270505,60.751286],[-151.261383,60.757768],[-151.259343,60.762896],[-151.261319,60.769801],[-151.252902,60.773993],[-151.212186,60.780342],[-151.106079,60.783749],[-151.062558,60.787429],[-151.037007,60.793649],[-151.025634,60.797497],[-151.024799,60.801787],[-151.012016,60.80934],[-150.895508,60.853166],[-150.886964,60.858187],[-150.883774,60.861865],[-150.845731,60.877893],[-150.808418,60.891336],[-150.770594,60.911362],[-150.705812,60.937792],[-150.678438,60.958267],[-150.603069,60.974434],[-150.582471,60.982095],[-150.515058,60.999443],[-150.511099,61.005145],[-150.501923,61.007957],[-150.454661,61.016566],[-150.431873,61.023939],[-150.401859,61.036227],[-150.377171,61.039144],[-150.353702,61.031822],[-150.341709,61.024201],[-150.310334,60.989547],[-150.286369,60.966696],[-150.262096,60.947839],[-150.244072,60.938585],[-150.217179,60.930001],[-150.187657,60.924796],[-150.085166,60.91402],[-150.070289,60.913679],[-150.04557,60.910004],[-150.049148,60.915816],[-150.047088,60.918924],[-150.039866,60.920777],[-149.952655,60.930393],[-149.912166,60.937843],[-149.875188,60.960244],[-149.853693,60.967395],[-149.83558,60.968855],[-149.816817,60.966947],[-149.770264,60.967607],[-149.639423,60.928647],[-149.571329,60.937008],[-149.345756,60.896082],[-149.111617,60.878949],[-149.096478,60.883454],[-149.090412,60.885259],[-149.099102,60.904832],[-149.192519,60.939864],[-149.327217,60.927958],[-149.510415,60.981742],[-149.596076,60.98079],[-149.739692,61.016961],[-149.751943,61.024072],[-149.784393,61.038147],[-149.785126,61.040798],[-149.805816,61.058641],[-149.831922,61.076197],[-149.857168,61.07902],[-149.915666,61.101428],[-149.9601,61.115346],[-150.039304,61.144291],[-150.065646,61.151079],[-150.075451,61.156269],[-150.068004,61.166132],[-150.009941,61.203637],[-149.924441,61.211122],[-149.811179,61.317722],[-149.730277,61.332951],[-149.701724,61.385299],[-149.429513,61.447165],[-149.431409,61.468013],[-149.431417,61.468104],[-149.542776,61.489995],[-149.72647,61.453827],[-149.808324,61.395768],[-149.876852,61.384347],[-149.919682,61.26347],[-149.985874,61.237515],[-150.074793,61.2535],[-150.132634,61.257915],[-150.204894,61.259548],[-150.254296,61.254501],[-150.266124,61.251237],[-150.273575,61.251559],[-150.286978,61.257443],[-150.303688,61.257467],[-150.303639,61.255871],[-150.312226,61.254029],[-150.334576,61.251301],[-150.394411,61.249107],[-150.425,61.245552],[-150.468812,61.244627],[-150.484391,61.247262],[-150.495726,61.251245],[-150.56167,61.281487],[-150.590166,61.281487],[-150.591842,61.279485],[-150.606961,61.277732],[-150.628459,61.284407],[-150.646221,61.296689],[-150.655804,61.298173],[-150.66262,61.295356],[-150.67125,61.273652],[-150.679902,61.265888],[-150.690497,61.259297],[-150.711291,61.251089],[-150.827295,61.22839],[-150.84241,61.224213],[-150.848842,61.220588],[-150.895905,61.208915],[-150.926773,61.206351],[-150.939251,61.210299],[-150.941944,61.209947],[-150.946243,61.208644],[-150.947155,61.206299],[-150.947425,61.20314],[-150.951153,61.198778],[-150.960114,61.194037],[-150.971775,61.192041],[-150.990086,61.188907],[-151.01262,61.183258],[-151.024905,61.178391],[-151.072775,61.141669],[-151.0785,61.133381],[-151.119722,61.091117],[-151.121692,61.083574],[-151.127357,61.076896],[-151.142587,61.062778],[-151.166606,61.046404],[-151.190318,61.042737],[-151.252384,61.039968],[-151.293622,61.035715],[-151.307796,61.031008],[-151.312653,61.026364],[-151.33092,61.015124],[-151.349004,61.010004],[-151.362243,61.009412],[-151.42512,61.013107],[-151.467851,61.012423],[-151.4803,61.010902],[-151.538227,60.991835],[-151.573698,60.975876],[-151.621005,60.957453],[-151.637346,60.946727],[-151.641066,60.942177],[-151.679518,60.922491],[-151.692644,60.917743],[-151.713913,60.916546],[-151.720815,60.904257],[-151.736015,60.891507],[-151.783271,60.868713],[-151.791698,60.86306],[-151.800264,60.853672],[-151.796723,60.838734],[-151.787394,60.822307],[-151.77731,60.810461],[-151.751817,60.788729],[-151.703802,60.732376],[-151.702833,60.727778],[-151.705553,60.718052],[-151.710444,60.712657],[-151.716379,60.710415],[-151.744321,60.712403],[-151.749493,60.714175],[-151.760301,60.721441],[-151.784039,60.726814],[-151.803814,60.729004],[-151.811286,60.732222],[-151.822596,60.742352],[-151.831185,60.747303],[-151.851967,60.754074],[-151.860179,60.753282],[-151.864958,60.750458],[-151.849634,60.738286],[-151.847965,60.735694],[-151.848614,60.733976],[-151.870471,60.727284],[-151.916914,60.717916],[-152.021936,60.673364],[-152.058104,60.646714],[-152.099983,60.594366],[-152.13616,60.578475],[-152.148434,60.575977],[-152.163517,60.576934],[-152.195084,60.569675],[-152.261497,60.538237],[-152.309221,60.506384],[-152.315149,60.499824],[-152.331365,60.473525],[-152.333375,60.460641],[-152.330263,60.443134],[-152.325821,60.434806],[-152.312226,60.420397],[-152.30195,60.414328],[-152.234199,60.393888],[-152.300622,60.369604],[-152.307615,60.366489],[-152.315855,60.359071],[-152.352294,60.356101],[-152.366213,60.353304],[-152.371475,60.350176],[-152.376743,60.345613],[-152.386334,60.327889],[-152.385979,60.315845],[-152.392009,60.302108],[-152.411281,60.287864],[-152.42113,60.285331],[-152.444165,60.285717],[-152.456291,60.284042],[-152.481794,60.274681],[-152.528206,60.251346],[-152.539843,60.241644],[-152.549236,60.227631],[-152.556752,60.224217],[-152.624648,60.218687],[-152.626275,60.220852],[-152.626901,60.222728],[-152.627683,60.2257],[-152.642361,60.228766],[-152.660055,60.242004],[-152.670403,60.24432],[-152.698634,60.240661],[-152.715881,60.241274],[-152.747026,60.233311],[-152.743388,60.224323],[-152.754884,60.21091],[-152.754884,60.202901],[-152.749545,60.189552],[-152.734251,60.174801],[-152.699879,60.165272],[-152.688392,60.16582],[-152.678085,60.163504],[-152.674176,60.151731],[-152.687485,60.140305],[-152.686373,60.137717],[-152.658418,60.121591],[-152.634972,60.115799],[-152.596784,60.101071],[-152.575271,60.082363],[-152.569121,60.071748],[-152.575153,60.04826],[-152.590169,60.035978],[-152.608599,60.025429],[-152.612721,60.015115],[-152.611651,60.008521],[-152.649479,59.988253],[-152.679402,59.968054],[-152.693674,59.932773],[-152.700822,59.920309],[-152.706431,59.915284],[-152.745083,59.904232],[-152.793584,59.89672],[-152.806934,59.888029],[-152.810058,59.878322],[-152.860867,59.875033],[-152.875167,59.877471],[-152.882672,59.881986],[-152.900414,59.881812],[-152.920417,59.877741],[-152.950662,59.876759],[-152.967267,59.881494],[-153.002521,59.886726],[-153.019977,59.88623],[-153.046986,59.882425],[-153.079187,59.871103],[-153.144747,59.859829],[-153.212865,59.862784],[-153.225937,59.858343],[-153.228615,59.853355],[-153.256944,59.83649],[-153.278808,59.828066],[-153.285802,59.820535],[-153.285412,59.816755],[-153.278535,59.810924],[-153.257736,59.810807],[-153.236556,59.821867],[-153.217481,59.824721],[-153.197352,59.824827],[-153.182307,59.822389],[-153.144372,59.807616],[-153.113586,59.815631],[-153.088515,59.833376],[-153.021945,59.834133],[-153.009084,59.830643],[-153.003964,59.826747],[-152.992126,59.810027],[-152.994466,59.791261],[-153.031319,59.723625],[-153.051559,59.691562],[-153.10894,59.678316],[-153.12174,59.678009],[-153.155019,59.654344],[-153.214156,59.634271],[-153.240018,59.632426],[-153.253408,59.638415],[-153.26274,59.643426],[-153.275175,59.667303],[-153.286525,59.670251],[-153.301687,59.668717],[-153.314002,59.666336],[-153.315123,59.664896],[-153.315083,59.66249],[-153.307199,59.653954],[-153.298205,59.636345],[-153.298047,59.632502],[-153.302756,59.627679],[-153.308837,59.625706],[-153.342938,59.621312],[-153.366613,59.633729],[-153.381595,59.638032],[-153.392022,59.638856],[-153.409422,59.636328],[-153.414898,59.6386],[-153.418099,59.642147],[-153.415507,59.650918],[-153.393849,59.658847],[-153.384886,59.667188],[-153.378235,59.688936],[-153.374778,59.731587],[-153.439977,59.784652],[-153.454972,59.792099],[-153.458549,59.764467],[-153.44962,59.74381],[-153.445336,59.728865],[-153.442219,59.71742],[-153.441214,59.701316],[-153.444003,59.689957],[-153.464556,59.651712],[-153.476098,59.64273],[-153.542466,59.630236],[-153.563866,59.638903],[-153.586518,59.651541],[-153.604813,59.638734],[-153.610739,59.628341],[-153.609253,59.62164],[-153.592193,59.610842],[-153.558292,59.60579],[-153.553163,59.597046],[-153.555148,59.587858],[-153.577828,59.555991],[-153.585406,59.551475],[-153.618151,59.552571],[-153.635262,59.555694],[-153.650943,59.555427],[-153.719309,59.550264],[-153.76148,59.543411],[-153.766242,59.522342],[-153.733853,59.505754],[-153.706419,59.477994],[-153.699025,59.463603],[-153.727546,59.435346],[-153.747201,59.429657],[-153.807119,59.419466],[-153.823384,59.418035],[-153.862199,59.424124],[-153.896576,59.418486],[-153.911268,59.413732],[-153.925307,59.405254],[-153.945539,59.386061],[-153.951389,59.387017],[-153.954717,59.392532],[-153.959893,59.39685],[-153.990003,59.396777],[-153.993994,59.394049],[-153.996261,59.39082],[-153.998506,59.384723],[-154.007207,59.382528],[-154.025696,59.381521],[-154.035965,59.386362],[-154.044563,59.388295],[-154.05215,59.387138],[-154.062453,59.382753],[-154.087803,59.367967],[-154.100989,59.366016],[-154.117672,59.365508],[-154.121808,59.360544],[-154.121394,59.353099],[-154.103014,59.342719],[-154.033703,59.343999],[-154.028739,59.337381],[-154.030807,59.32704],[-154.077942,59.313364],[-154.113577,59.299627],[-154.122681,59.287622],[-154.13684,59.262666],[-154.141192,59.216598],[-154.130585,59.210503],[-154.172944,59.172496],[-154.214818,59.151562],[-154.24422,59.144161],[-154.260121,59.14302],[-154.263291,59.138462],[-154.256528,59.118462],[-154.251233,59.111239],[-154.243785,59.114868],[-154.239842,59.119324],[-154.227238,59.125407],[-154.180691,59.123235],[-154.173669,59.1202],[-154.166745,59.100548],[-154.166406,59.090582],[-154.171502,59.083423],[-154.195271,59.069491],[-154.197422,59.061155],[-154.18958,59.044207],[-154.171462,59.021963],[-154.159835,59.010595],[-154.158207,59.017853],[-154.132449,59.024745],[-154.108278,59.036827],[-154.063489,59.07214],[-154.031822,59.073681],[-154.008547,59.072904],[-153.949958,59.066782],[-153.932824,59.062677],[-153.850238,59.052917],[-153.83818,59.055296],[-153.815724,59.064851],[-153.809866,59.070797],[-153.802782,59.072224],[-153.793972,59.071416],[-153.750936,59.05284],[-153.74868,59.058729],[-153.746201,59.065199],[-153.704162,59.07578],[-153.695664,59.073994],[-153.648029,59.028924],[-153.616066,59.006737],[-153.547283,58.983716],[-153.523522,58.979221],[-153.505618,58.981734],[-153.479939,58.995286],[-153.463266,58.986903],[-153.450672,58.976119],[-153.438144,58.969911],[-153.422015,58.970648],[-153.398479,58.966056],[-153.393101,58.951097],[-153.388765,58.945337],[-153.365371,58.927753],[-153.352283,58.921705],[-153.33478,58.920521],[-153.322843,58.907849],[-153.304788,58.878919],[-153.305216,58.874637],[-153.302433,58.871212],[-153.294726,58.865432],[-153.286163,58.863077],[-153.267407,58.867218],[-153.254798,58.861756],[-153.25225,58.85585],[-153.252662,58.855797],[-153.317823,58.847441],[-153.326138,58.84932],[-153.336826,58.848878],[-153.34483,58.846953],[-153.350964,58.843551],[-153.358917,58.836767],[-153.369389,58.821255],[-153.37073,58.799301],[-153.385126,58.766173],[-153.402472,58.742607],[-153.426641,58.721127],[-153.445002,58.70931],[-153.458816,58.708561],[-153.468963,58.712234],[-153.477755,58.712767],[-153.55265,58.687176],[-153.577544,58.670532],[-153.587799,58.651742],[-153.591635,58.640084],[-153.601257,58.634633],[-153.677597,58.611603],[-153.771636,58.605639],[-153.806232,58.606595],[-153.832837,58.611671],[-153.851432,58.611872],[-153.897155,58.606237],[-153.902558,58.597377],[-153.919134,58.516659],[-153.909588,58.514562],[-153.930473,58.497482],[-153.934852,58.494414],[-153.96037,58.487831],[-153.97402,58.488348],[-153.977617,58.491931],[-154.001918,58.492346],[-154.056526,58.489222],[-154.065121,58.48643],[-154.073032,58.478259],[-154.075051,58.472188],[-154.075235,58.458106],[-154.073592,58.446866],[-154.07066,58.440018],[-154.055759,58.418782],[-154.040013,58.404297],[-154.034147,58.402638],[-154.023713,58.403952],[-154.007305,58.402187],[-153.985416,58.390877],[-153.999323,58.376372],[-154.097254,58.345322],[-154.133866,58.350632],[-154.139223,58.354108],[-154.150373,58.357581],[-154.167997,58.358378],[-154.175194,58.344527],[-154.177161,58.32147],[-154.174999,58.320107],[-154.166648,58.320569],[-154.149073,58.314539],[-154.103412,58.280161],[-154.145277,58.210931],[-154.177652,58.189832],[-154.219755,58.184631],[-154.241874,58.156328],[-154.21625,58.142849],[-154.210078,58.136062],[-154.222465,58.132566],[-154.269027,58.12877],[-154.291163,58.13568],[-154.340449,58.090921],[-154.384327,58.120823],[-154.42657,58.144901],[-154.436518,58.148294],[-154.460121,58.146067],[-154.466436,58.142328],[-154.459389,58.129089],[-154.452096,58.121582],[-154.449212,58.093218],[-154.462929,58.05835],[-154.477979,58.052379],[-154.501246,58.050112],[-154.539367,58.055887],[-154.568627,58.025787],[-154.581547,58.019285],[-154.643965,58.033147],[-154.650618,58.045387],[-154.644666,58.056433],[-154.646223,58.060141],[-154.653383,58.064037],[-154.668895,58.065272],[-154.676108,58.065114],[-154.716162,58.055256],[-154.721884,58.050544],[-154.72898,58.038455],[-154.731059,58.028454],[-154.730726,58.021837],[-154.745581,58.01222],[-154.765287,58.00371],[-154.774719,58.002168],[-154.807767,58.000939],[-154.819518,58.003494],[-154.823518,58.009348],[-154.825051,58.016586],[-154.82823,58.018849],[-154.876559,58.027722],[-154.891812,58.027676],[-154.990431,58.013424],[-155.026275,57.999302],[-155.118648,57.953925],[-155.094686,57.92928],[-155.072566,57.911968],[-155.064199,57.909294],[-155.061806,57.90433],[-155.068148,57.883773],[-155.082139,57.872248],[-155.097095,57.865356],[-155.15242,57.855375],[-155.237933,57.827131],[-155.272917,57.823981],[-155.298385,57.82602],[-155.303044,57.828454],[-155.326369,57.830545],[-155.338153,57.825384],[-155.341235,57.819644],[-155.334944,57.780692],[-155.310981,57.764811],[-155.302789,57.761658],[-155.285339,57.758726],[-155.284691,57.757388],[-155.291651,57.735809],[-155.305814,57.72405],[-155.37861,57.710766],[-155.468287,57.744637],[-155.506533,57.76097],[-155.533627,57.77688],[-155.539766,57.783942],[-155.545676,57.786769],[-155.568437,57.789511],[-155.585411,57.786981],[-155.596857,57.783539],[-155.609353,57.777699],[-155.617188,57.769715],[-155.635323,57.715441],[-155.634543,57.704764],[-155.626373,57.693623],[-155.615203,57.688074],[-155.629912,57.656376],[-155.699986,57.642085],[-155.724167,57.633445],[-155.735509,57.594149],[-155.730951,57.588562],[-155.731412,57.555546],[-155.732779,57.549732],[-155.786939,57.547007],[-155.877856,57.547173],[-155.915261,57.535331],[-155.945812,57.539249],[-155.96789,57.544429],[-155.985988,57.553721],[-155.988113,57.558328],[-156.010818,57.571379],[-156.033806,57.569883],[-156.044031,57.564455],[-156.048584,57.500808],[-156.045324,57.487037],[-156.036722,57.470941],[-156.014396,57.455285],[-156.012841,57.451394],[-156.021875,57.43966],[-156.091668,57.439829],[-156.099067,57.443691],[-156.13748,57.471734],[-156.183932,57.482112],[-156.19574,57.480059],[-156.210883,57.474409],[-156.211485,57.459475],[-156.220105,57.445295],[-156.226886,57.440667],[-156.254462,57.438961],[-156.339425,57.417641],[-156.362039,57.400474],[-156.377439,57.390865],[-156.481632,57.338705],[-156.511412,57.33502],[-156.533544,57.328527],[-156.539718,57.320059],[-156.551239,57.2908],[-156.538684,57.283041],[-156.507301,57.281164],[-156.420864,57.311142],[-156.336427,57.336081],[-156.32191,57.293369],[-156.332718,57.265192],[-156.342943,57.248056],[-156.358139,57.252188],[-156.376507,57.252284],[-156.399423,57.241627],[-156.401488,57.233169],[-156.398751,57.214756],[-156.388592,57.20662],[-156.355756,57.192844],[-156.3413,57.191857],[-156.33843,57.190325],[-156.334404,57.1823],[-156.355401,57.159679],[-156.357358,57.15757],[-156.368524,57.149986],[-156.43511,57.12743],[-156.456497,57.106041],[-156.44461,57.100087],[-156.441566,57.094698],[-156.441599,57.085158],[-156.509239,57.054911],[-156.535587,57.047905],[-156.562827,57.020314],[-156.547667,57.004629],[-156.5472,56.986488],[-156.55052,56.98461],[-156.555077,56.98355],[-156.63784,56.993905],[-156.753642,56.991225],[-156.762718,56.986342],[-156.781421,56.971879],[-156.7869,56.965035],[-156.788341,56.960693],[-156.786802,56.941443],[-156.79731,56.911717],[-156.804432,56.905881],[-156.825982,56.897667],[-156.839322,56.901854],[-156.876316,56.942828],[-156.885372,56.953284],[-156.885686,56.957965],[-156.882464,56.960072],[-156.882893,56.962582],[-156.886307,56.964869],[-156.893683,56.965965],[-156.909725,56.965581],[-156.918796,56.963583],[-156.935692,56.954873],[-156.935629,56.920087],[-156.986171,56.911131],[-157.00595,56.90422],[-157.015665,56.898486],[-157.034624,56.884487],[-157.073453,56.838345],[-157.159494,56.833477],[-157.163811,56.826066],[-157.163272,56.823542],[-157.14099,56.802275],[-157.140277,56.790874],[-157.161372,56.774134],[-157.183636,56.769079],[-157.201724,56.767511],[-157.283764,56.800766],[-157.290511,56.804713],[-157.291231,56.811077],[-157.298283,56.818567],[-157.332735,56.838398],[-157.378771,56.861696],[-157.394663,56.864426],[-157.405679,56.864216],[-157.436932,56.858522],[-157.45759,56.848204],[-157.472407,56.833356],[-157.469925,56.824889],[-157.462361,56.809603],[-157.457622,56.804291],[-157.447768,56.801246],[-157.436358,56.803781],[-157.42112,56.801691],[-157.41856,56.799821],[-157.411488,56.778351],[-157.41344,56.769185],[-157.517478,56.760839],[-157.530765,56.753775],[-157.544855,56.738945],[-157.551196,56.730314],[-157.563802,56.703426],[-157.550792,56.681029],[-157.542295,56.67532],[-157.507589,56.667169],[-157.498689,56.667285],[-157.48099,56.671419],[-157.479153,56.67008],[-157.45216,56.64322],[-157.452196,56.638863],[-157.45486,56.634748],[-157.462105,56.625685],[-157.466497,56.623266],[-157.496523,56.616897],[-157.536486,56.615317],[-157.546085,56.619025],[-157.589315,56.622262],[-157.605231,56.621315],[-157.615041,56.62002],[-157.636018,56.612838],[-157.674587,56.609507],[-157.705382,56.62878],[-157.71428,56.640575],[-157.715998,56.648492],[-157.719048,56.653084],[-157.736799,56.675616],[-157.754141,56.679468],[-157.763698,56.679247],[-157.920045,56.658636],[-157.933988,56.654571],[-158.042012,56.596744],[-158.042839,56.58185],[-158.039356,56.574884],[-158.001041,56.572097],[-157.975222,56.585722],[-157.958745,56.588304],[-157.906647,56.590925],[-157.83842,56.56076],[-157.828139,56.546332],[-157.817826,56.51421],[-157.823072,56.501982],[-157.859766,56.483668],[-157.865642,56.483285],[-157.886126,56.487805],[-157.954625,56.515845],[-158.027621,56.511779],[-158.112276,56.521322],[-158.11957,56.518346],[-158.131729,56.501944],[-158.123352,56.496457],[-158.113709,56.493001],[-158.111603,56.49011],[-158.118682,56.466558],[-158.12744,56.460805],[-158.246144,56.466124],[-158.284699,56.481089],[-158.328798,56.484208],[-158.402954,56.455193],[-158.498837,56.38011],[-158.501705,56.37586],[-158.50204,56.365178],[-158.489546,56.341865],[-158.432795,56.343505],[-158.397337,56.328921],[-158.338137,56.323923],[-158.329735,56.326028],[-158.322563,56.325242],[-158.207387,56.294354],[-158.203083,56.283833],[-158.21654,56.269451],[-158.253331,56.253125],[-158.276842,56.248698],[-158.334506,56.23294],[-158.339765,56.217807],[-158.331039,56.213609],[-158.264792,56.209597],[-158.19096,56.226407],[-158.17493,56.236227],[-158.119493,56.241995],[-158.115282,56.242102],[-158.112718,56.240286],[-158.117797,56.230742],[-158.237025,56.187387],[-158.314128,56.163697],[-158.374324,56.134522],[-158.395996,56.109834],[-158.394388,56.091949],[-158.394922,56.064721],[-158.398324,56.062957],[-158.424451,56.068899],[-158.438644,56.093672],[-158.438315,56.095702],[-158.431105,56.100264],[-158.432229,56.102881],[-158.439944,56.10778],[-158.455297,56.108742],[-158.46181,56.106644],[-158.475258,56.093405],[-158.472706,56.087583],[-158.448413,56.055278],[-158.417889,56.036796],[-158.407723,56.014521],[-158.413645,56.004951],[-158.431471,55.994452],[-158.43933,55.99362],[-158.445696,55.99758],[-158.467335,56.027219],[-158.475543,56.028366],[-158.501967,56.02517],[-158.50485,56.015544],[-158.496366,56.010601],[-158.494015,56.00732],[-158.495114,55.989207],[-158.49905,55.981685],[-158.50984,55.979617],[-158.59562,56.045252],[-158.598367,56.048822],[-158.594188,56.110445],[-158.584362,56.115657],[-158.574659,56.11864],[-158.575042,56.121129],[-158.600405,56.130444],[-158.628303,56.120943],[-158.640447,56.114079],[-158.659738,56.098553],[-158.666818,56.078415],[-158.660914,56.034928],[-158.651674,56.031358],[-158.643216,56.023415],[-158.638704,56.015932],[-158.636689,56.005007],[-158.639497,55.98607],[-158.653214,55.958615],[-158.673246,55.951485],[-158.737009,55.953313],[-158.74856,55.959365],[-158.751215,55.963759],[-158.735348,55.996208],[-158.729567,56.002854],[-158.747305,56.009908],[-158.854132,56.003343],[-158.898116,55.951041],[-158.909396,55.934887],[-158.999598,55.927011],[-159.138748,55.90932],[-159.271514,55.890704],[-159.347681,55.877802],[-159.374842,55.871522],[-159.3964,55.856767],[-159.400096,55.852357],[-159.406126,55.831956],[-159.40938,55.810434],[-159.404326,55.796992],[-159.411505,55.788911],[-159.423468,55.789025],[-159.434787,55.792909],[-159.470216,55.828911],[-159.472801,55.83905],[-159.471973,55.843506],[-159.465282,55.852845],[-159.453945,55.89682],[-159.482226,55.901826],[-159.493883,55.900109],[-159.528349,55.888458],[-159.534415,55.881299],[-159.498022,55.855299],[-159.494404,55.765798],[-159.503768,55.747878],[-159.521589,55.736021],[-159.537152,55.728459],[-159.551432,55.711543],[-159.552016,55.704794],[-159.535961,55.689831],[-159.530117,55.665394],[-159.545115,55.646517],[-159.564413,55.633045],[-159.61777,55.595798],[-159.696713,55.573306],[-159.729333,55.56965],[-159.733899,55.569985],[-159.744495,55.600018],[-159.743282,55.603624],[-159.735196,55.610933],[-159.72415,55.614549],[-159.673432,55.61735],[-159.667511,55.614825],[-159.639619,55.617915],[-159.626772,55.629412],[-159.635866,55.644398],[-159.644656,55.652469],[-159.679201,55.655895],[-159.680635,55.68134],[-159.676761,55.737357],[-159.673191,55.750961],[-159.627482,55.803248],[-159.624884,55.804694],[-159.602148,55.805004],[-159.607973,55.8129],[-159.643739,55.830424],[-159.712816,55.846392],[-159.81107,55.85657],[-159.838981,55.852412],[-159.853255,55.847162],[-159.858456,55.841793],[-159.85075,55.824076],[-159.847359,55.80253],[-159.862484,55.787629],[-159.875994,55.784608],[-159.892319,55.785096],[-159.937089,55.803306],[-160.010322,55.797087],[-160.026282,55.792295],[-160.048711,55.772061],[-160.052525,55.76643],[-160.051945,55.760594],[-160.049417,55.757588],[-160.058443,55.721734],[-160.130445,55.681419],[-160.185712,55.658644],[-160.279827,55.641384],[-160.325419,55.644207],[-160.353494,55.649731],[-160.410823,55.66538],[-160.416452,55.665302],[-160.421853,55.662701],[-160.429727,55.658046],[-160.433602,55.648975],[-160.433022,55.639979],[-160.392587,55.602771],[-160.435859,55.573692],[-160.448277,55.559049],[-160.464301,55.533243],[-160.465186,55.527361],[-160.459815,55.514986],[-160.462745,55.506654],[-160.481633,55.489068],[-160.501346,55.478518],[-160.521335,55.47442],[-160.536654,55.474938],[-160.544224,55.502351],[-160.554173,55.522965],[-160.580083,55.564385],[-160.595771,55.57554],[-160.615305,55.575516],[-160.638371,55.557426],[-160.652775,55.548668],[-160.666966,55.544417],[-160.706883,55.556066],[-160.737095,55.555448],[-160.75104,55.552907],[-160.766237,55.547559],[-160.77295,55.538998],[-160.771433,55.52943],[-160.73215,55.523596],[-160.660117,55.518475],[-160.654117,55.512596],[-160.647464,55.500862],[-160.646304,55.492851],[-160.651523,55.474174],[-160.666917,55.459776],[-160.781401,55.45178],[-160.795988,55.454946],[-160.836725,55.473135],[-160.843407,55.489782],[-160.836023,55.497259],[-160.821773,55.506216],[-160.82081,55.507974],[-160.828273,55.516111],[-160.849145,55.523916],[-160.86538,55.526968],[-160.909625,55.52414],[-160.922934,55.5193],[-160.944265,55.507825],[-160.976551,55.472736],[-160.979298,55.466274],[-160.977376,55.461185],[-160.982717,55.454326],[-160.997335,55.440265],[-161.013662,55.431002],[-161.231535,55.357452],[-161.280675,55.354038],[-161.325325,55.359855],[-161.317545,55.362758],[-161.311989,55.372836],[-161.314949,55.379231],[-161.34608,55.385782],[-161.364577,55.384194],[-161.445196,55.368103],[-161.460392,55.35907],[-161.486114,55.359322],[-161.507657,55.362786],[-161.514211,55.385254],[-161.509306,55.390626],[-161.496123,55.396967],[-161.484588,55.417994],[-161.478303,55.4406],[-161.471468,55.478588],[-161.477114,55.485195],[-161.469271,55.49683],[-161.376102,55.569794],[-161.367405,55.579484],[-161.355686,55.606378],[-161.35767,55.612603],[-161.363378,55.618478],[-161.392613,55.628221],[-161.416235,55.632324],[-161.482064,55.633979],[-161.526162,55.630498],[-161.587047,55.62006],[-161.602825,55.613811],[-161.612926,55.606158],[-161.69886,55.5194],[-161.700069,55.51439],[-161.696719,55.423307],[-161.688357,55.41638],[-161.686495,55.408041],[-161.720096,55.37669],[-161.827543,55.287872],[-161.833891,55.2844],[-161.845473,55.281249],[-161.853418,55.277634],[-161.863339,55.266989],[-161.875606,55.249921],[-161.879542,55.240804],[-161.875759,55.232592],[-161.875238,55.227224],[-161.878076,55.223599],[-161.903407,55.204941],[-161.919519,55.208209],[-161.957455,55.227999],[-161.978788,55.236131],[-162.029636,55.239492],[-162.041236,55.236806],[-162.045694,55.232775],[-162.046242,55.225605],[-162.001711,55.169236],[-161.966974,55.154831],[-161.949882,55.126686],[-161.956595,55.112174],[-161.960866,55.106734],[-162.053281,55.074212],[-162.11874,55.102911],[-162.131878,55.122776],[-162.119033,55.141116],[-162.126369,55.153408],[-162.141084,55.157339],[-162.177427,55.154403],[-162.218192,55.118903],[-162.224047,55.108658],[-162.223528,55.102211],[-162.2068,55.082391],[-162.190348,55.066981],[-162.189247,55.06026],[-162.219326,55.028975],[-162.247946,55.020439],[-162.2535,55.020454],[-162.267754,55.021553],[-162.280512,55.026207],[-162.292511,55.033429],[-162.299619,55.040152],[-162.300378,55.042927],[-162.361969,55.042679],[-162.41351,55.03656],[-162.471364,55.051932],[-162.489735,55.064849],[-162.512104,55.086227],[-162.521688,55.104011],[-162.520986,55.115417],[-162.506887,55.118927],[-162.460958,55.12584],[-162.453451,55.123948],[-162.442556,55.118226],[-162.437368,55.112122],[-162.424796,55.104813],[-162.4168,55.104096],[-162.410574,55.105614],[-162.406191,55.120498],[-162.445182,55.151521],[-162.48098,55.161271],[-162.49447,55.183915],[-162.49792,55.199052],[-162.499019,55.21377],[-162.510435,55.250177],[-162.513121,55.252374],[-162.584872,55.298386],[-162.626101,55.304085],[-162.649173,55.299118],[-162.66196,55.294295],[-162.682405,55.27645],[-162.702851,55.252775],[-162.714607,55.231611],[-162.718077,55.219911],[-162.711128,55.211267],[-162.692309,55.197313],[-162.668346,55.193445],[-162.644734,55.197115],[-162.638791,55.19477],[-162.614497,55.174735],[-162.579765,55.136939],[-162.582908,55.13024],[-162.585533,55.1286],[-162.595603,55.124846],[-162.604454,55.126028],[-162.618918,55.097096],[-162.599812,55.054806],[-162.569292,55.015874],[-162.569289,54.97124],[-162.587967,54.97201],[-162.615159,54.987841],[-162.646472,54.997163],[-162.688131,54.996126],[-162.707083,54.991159],[-162.716177,54.986679],[-162.720404,54.980223],[-162.707203,54.972023],[-162.705096,54.96601],[-162.708453,54.95848],[-162.770983,54.932736],[-162.834245,54.926851],[-162.845475,54.926989],[-162.881639,54.934785],[-162.913684,54.950273],[-162.970632,55.001039],[-162.965872,55.017374],[-162.958975,55.020151],[-162.957826,55.031826],[-162.964897,55.042201],[-163.00155,55.080043],[-163.051631,55.103267],[-163.071468,55.110477],[-163.079006,55.111652],[-163.111507,55.109705],[-163.165036,55.099214],[-163.188428,55.090903],[-163.213009,55.066742],[-163.225092,55.049683],[-163.226313,55.042694],[-163.219018,55.030281],[-163.213281,55.026138],[-163.189447,55.016678],[-163.17483,55.0131],[-163.148615,55.014023],[-163.067008,54.979302],[-163.050467,54.969071],[-163.036062,54.942544],[-163.065602,54.926172],[-163.14958,54.885906],[-163.214398,54.847487],[-163.299809,54.829232],[-163.352997,54.810174],[-163.373207,54.800841],[-163.372806,54.790936],[-163.342655,54.765104],[-163.322849,54.75028],[-163.228391,54.753513],[-163.219765,54.755072],[-163.188853,54.773717],[-163.184295,54.774912],[-163.144089,54.761499],[-163.107558,54.732752],[-163.057228,54.688101],[-163.05097,54.672263],[-163.059085,54.661072],[-163.096744,54.661597],[-163.125738,54.66818],[-163.140925,54.694829],[-163.185401,54.700398],[-163.194952,54.699025],[-163.208775,54.693136],[-163.280633,54.695367],[-163.317996,54.719938],[-163.327457,54.743414],[-163.331516,54.747518],[-163.344791,54.751211],[-163.364626,54.749464],[-163.380618,54.746176],[-163.39197,54.74198],[-163.423067,54.720426],[-163.428377,54.714819],[-163.425477,54.710081],[-163.439361,54.655928],[-163.472016,54.656468],[-163.488861,54.65511],[-163.572383,54.623211],[-163.581481,54.616863],[-163.585967,54.611644],[-163.670838,54.627825],[-163.747316,54.635011],[-163.80359,54.636498],[-163.861206,54.632911],[-163.952391,54.630461],[-163.966307,54.631681],[-164.084894,54.620131],[-164.179617,54.599188],[-164.23247,54.585494],[-164.257585,54.572722],[-164.331404,54.530431],[-164.337538,54.524259],[-164.341474,54.495266],[-164.336042,54.484509],[-164.33653,54.480977],[-164.352704,54.465023],[-164.41682,54.431713],[-164.456554,54.419856],[-164.499034,54.414225],[-164.51997,54.414652],[-164.582778,54.405702],[-164.601607,54.402451],[-164.640457,54.391166],[-164.743977,54.394216],[-164.789357,54.402012],[-164.844931,54.417583],[-164.876075,54.443495],[-164.877373,54.449908],[-164.904077,54.499195],[-164.910059,54.507542],[-164.936122,54.521253],[-164.944636,54.532903],[-164.949781,54.575697],[-164.948789,54.579877],[-164.932187,54.598745],[-164.91876,54.605306],[-164.831936,54.629028],[-164.761347,54.640634],[-164.741815,54.645441],[-164.727654,54.650957],[-164.709465,54.661518],[-164.629661,54.756031],[-164.576896,54.824564],[-164.561546,54.850835],[-164.56405,54.875539],[-164.550256,54.888785],[-164.48678,54.922441],[-164.43528,54.933126],[-164.427303,54.932849],[-164.373441,54.915349],[-164.361631,54.907391],[-164.35333,54.898327],[-164.343534,54.894139],[-164.295033,54.902122],[-164.20707,54.927578],[-164.204897,54.93124],[-164.164342,54.953532],[-164.119196,54.969416],[-164.109333,54.963999],[-164.086798,54.963396],[-164.061164,54.964708],[-164.030708,54.969818],[-163.994179,54.983315],[-163.96473,54.997337],[-163.930369,55.017646],[-163.909222,55.032089],[-163.894695,55.039115],[-163.884869,55.039909],[-163.872144,55.037399],[-163.85426,55.037796],[-163.815779,55.044625],[-163.790733,55.052583],[-163.774093,55.05578],[-163.740737,55.048266],[-163.646834,55.044467],[-163.568159,55.049145],[-163.532962,55.048881],[-163.527109,55.040871],[-163.534638,55.025305],[-163.530087,55.01666],[-163.4615,54.982511],[-163.442854,54.969875],[-163.429548,54.954759],[-163.418042,54.938499],[-163.398294,54.902371],[-163.399292,54.894012],[-163.408027,54.88458],[-163.415872,54.859652],[-163.414691,54.85609],[-163.410594,54.854576],[-163.391397,54.855331],[-163.334234,54.872948],[-163.318885,54.88012],[-163.319161,54.899026],[-163.319956,54.903085],[-163.336739,54.91749],[-163.344402,54.919333],[-163.34773,54.925093],[-163.343735,54.950416],[-163.338395,54.956191],[-163.323106,54.959929],[-163.314592,54.958862],[-163.290908,54.945977],[-163.279586,54.944849],[-163.2399,54.954617],[-163.237414,54.959292],[-163.240008,54.962885],[-163.293205,55.006865],[-163.297876,55.057619],[-163.310694,55.105612],[-163.314069,55.105146],[-163.318731,55.110811],[-163.319873,55.119622],[-163.314652,55.126312],[-163.268767,55.145465],[-163.200867,55.166057],[-163.157532,55.17551],[-163.105011,55.183979],[-163.081634,55.180409],[-163.080719,55.176861],[-163.070494,55.174114],[-163.032256,55.172147],[-162.957182,55.171271],[-162.882292,55.183251],[-162.86152,55.198339],[-162.84014,55.224043],[-162.843172,55.242564],[-162.851839,55.247317],[-162.8566,55.248721],[-162.869478,55.248086],[-162.880892,55.239564],[-162.89402,55.243046],[-162.900454,55.246416],[-162.901644,55.247652],[-162.900027,55.252466],[-162.888118,55.270424],[-162.881779,55.273776],[-162.750371,55.307623],[-162.731816,55.307829],[-162.704747,55.320296],[-162.680487,55.337004],[-162.64991,55.364151],[-162.619883,55.40867],[-162.580524,55.446514],[-162.575826,55.446833],[-162.533216,55.467625],[-162.504041,55.482556],[-162.483687,55.495237],[-162.403581,55.557465],[-162.326436,55.613918],[-162.286002,55.649288],[-162.246972,55.680013],[-162.193078,55.702178],[-162.147059,55.718415],[-162.090664,55.753427],[-162.079678,55.7634],[-161.972624,55.800526],[-161.898956,55.833464],[-161.85843,55.865402],[-161.816225,55.888993],[-161.807833,55.891954],[-161.773409,55.89731],[-161.712283,55.904232],[-161.640007,55.919503],[-161.585604,55.937324],[-161.450442,55.954485],[-161.380557,55.965618],[-161.290777,55.98313],[-161.280307,55.979323],[-161.27833,55.974912],[-161.262763,55.958734],[-161.230444,55.947467],[-161.211273,55.951712],[-161.096617,55.954752],[-161.076383,55.942079],[-161.049162,55.945407],[-161.027739,55.954554],[-161.023376,55.959468],[-160.898682,55.999014],[-160.873229,56.001448],[-160.86325,55.996237],[-160.814205,55.953834],[-160.812893,55.950858],[-160.814113,55.930633],[-160.818201,55.910749],[-160.835077,55.915747],[-160.849665,55.916227],[-160.923856,55.900574],[-160.95156,55.852772],[-160.9464,55.834881],[-160.940845,55.822529],[-160.930591,55.814358],[-160.806014,55.738241],[-160.765228,55.757174],[-160.730726,55.747664],[-160.668102,55.723556],[-160.661205,55.723427],[-160.65556,55.730041],[-160.655468,55.739868],[-160.663037,55.745491],[-160.675794,55.751411],[-160.695227,55.755075],[-160.751236,55.779364],[-160.757705,55.785841],[-160.769155,55.858268],[-160.734182,55.870995],[-160.697591,55.862396],[-160.639088,55.8583],[-160.564014,55.863719],[-160.550343,55.867549],[-160.532582,55.869891],[-160.508433,55.869379],[-160.494678,55.864193],[-160.477892,55.841099],[-160.479355,55.822361],[-160.438735,55.789608],[-160.385878,55.796445],[-160.342876,55.778166],[-160.293924,55.765556],[-160.277382,55.765861],[-160.264568,55.775723],[-160.26893,55.784278],[-160.293498,55.801788],[-160.315655,55.814544],[-160.317826,55.818983],[-160.272533,55.831673],[-160.273176,55.856881],[-160.325637,55.867858],[-160.380573,55.889456],[-160.420735,55.90862],[-160.486594,55.924168],[-160.535759,55.939617],[-160.533685,55.95995],[-160.527094,55.973011],[-160.526362,55.982433],[-160.529292,55.986103],[-160.534541,55.989498],[-160.559597,55.996838],[-160.567604,55.99167],[-160.570895,55.988929],[-160.574397,55.986552],[-160.576655,55.985416],[-160.58084,55.984079],[-160.583491,55.986468],[-160.568356,56.004062],[-160.488708,56.077214],[-160.482208,56.085234],[-160.451417,56.125564],[-160.411381,56.194138],[-160.396338,56.231775],[-160.383094,56.251352],[-160.357156,56.279582],[-160.340249,56.291271],[-160.315896,56.302227],[-160.274604,56.317151],[-160.222878,56.346868],[-160.208383,56.358022],[-160.196329,56.37255],[-160.146252,56.400176],[-160.082592,56.411094],[-160.001477,56.442201],[-159.976758,56.453951],[-159.938337,56.474192],[-159.828049,56.543935],[-159.815477,56.548941],[-159.636156,56.59739],[-159.534961,56.626529],[-159.43938,56.641332],[-159.369434,56.657073],[-159.324421,56.670356],[-159.264871,56.703136],[-159.279894,56.715667],[-159.263113,56.723321],[-159.156455,56.763324],[-159.106652,56.781126],[-159.093468,56.783704],[-159.038354,56.806006],[-159.018304,56.815094],[-158.957471,56.851184],[-158.955338,56.849762],[-158.953543,56.843418],[-158.933589,56.827905],[-158.91073,56.814797],[-158.893212,56.805788],[-158.893211,56.805788],[-158.868797,56.796648],[-158.853294,56.79262],[-158.78359,56.78075],[-158.660298,56.789015],[-158.642293,56.81285],[-158.642845,56.836608],[-158.646812,56.846992],[-158.663659,56.857055],[-158.699788,56.927362],[-158.679293,56.988625],[-158.659945,57.034585],[-158.637364,57.061364],[-158.518429,57.16055],[-158.453711,57.21179],[-158.376249,57.265542],[-158.355066,57.27485],[-158.229883,57.321534],[-158.14971,57.344916],[-158.06703,57.382915],[-158.060041,57.387456],[-158.049932,57.390141],[-158.034246,57.39023],[-158.010538,57.401456],[-157.99467,57.414234],[-157.956239,57.449383],[-157.937241,57.472048],[-157.931624,57.476208],[-157.786046,57.542189],[-157.772496,57.547055],[-157.703852,57.563455],[-157.678891,57.563888],[-157.684833,57.557746],[-157.680416,57.537727],[-157.649389,57.500331],[-157.615137,57.488691],[-157.58691,57.487156],[-157.573129,57.514525],[-157.573472,57.522732],[-157.588339,57.582152],[-157.599644,57.60795],[-157.607387,57.612537],[-157.652202,57.614794],[-157.684282,57.609974],[-157.691291,57.611131],[-157.710645,57.639946],[-157.703782,57.721768],[-157.671061,57.772866],[-157.642226,57.868777],[-157.623886,57.960502],[-157.611802,58.034263],[-157.596601,58.08867],[-157.583636,58.124307],[-157.580924,58.128096],[-157.556556,58.148445],[-157.533329,58.160335],[-157.514474,58.162978],[-157.493784,58.162148],[-157.39735,58.173383],[-157.383099,58.184607],[-157.352316,58.219097],[-157.366928,58.232669],[-157.374511,58.232117],[-157.389237,58.228091],[-157.407918,58.211871],[-157.423325,58.21136],[-157.442712,58.218875],[-157.515475,58.255638],[-157.541564,58.271883],[-157.547209,58.277535],[-157.556343,58.303749],[-157.556865,58.330715],[-157.536176,58.391597],[-157.524477,58.414506],[-157.488108,58.471705],[-157.481487,58.480771],[-157.46088,58.499693],[-157.451918,58.505618],[-157.397197,58.527333],[-157.380259,58.524398],[-157.358487,58.533876],[-157.330683,58.551516],[-157.313572,58.565043],[-157.281327,58.600236],[-157.267437,58.609794],[-157.251462,58.620786],[-157.178834,58.66044],[-157.077914,58.708103],[-157.061928,58.726102],[-157.008226,58.817139],[-157.003401,58.836822],[-157.003607,58.839306],[-157.010984,58.8484],[-157.016088,58.86349],[-157.012392,58.875889],[-156.985833,58.888654],[-156.980888,58.891031],[-156.966649,58.904074],[-156.975946,58.940896],[-157.029517,58.956203],[-157.039206,58.945921],[-157.040625,58.913391],[-157.070584,58.887816],[-157.070601,58.887808],[-157.116866,58.867533],[-157.189554,58.847724],[-157.200998,58.845012],[-157.21571,58.841526],[-157.241396,58.837558],[-157.259663,58.835665],[-157.275451,58.836136],[-157.353132,58.817729],[-157.429531,58.791071],[-157.484062,58.785962],[-157.532654,58.772638],[-157.537543,58.768542],[-157.542326,58.760962],[-157.550603,58.754514],[-157.696472,58.729975],[-157.721786,58.723212],[-157.753583,58.711924],[-157.799597,58.69559],[-157.855396,58.678277],[-158.001016,58.642893],[-158.036593,58.634248],[-158.101646,58.62109],[-158.140307,58.61502],[-158.190283,58.61371],[-158.213861,58.615828],[-158.232276,58.619902],[-158.273036,58.63347],[-158.297189,58.643147],[-158.327038,58.659835],[-158.332093,58.665313],[-158.33286,58.669274],[-158.330216,58.675043],[-158.332394,58.686814],[-158.343545,58.713634],[-158.351481,58.727693],[-158.376873,58.748043],[-158.400475,58.761182],[-158.423828,58.769847],[-158.45521,58.776972],[-158.512547,58.78311],[-158.538516,58.788394],[-158.550626,58.792915],[-158.564833,58.802715],[-158.566397,58.807137],[-158.56587,58.815429],[-158.559499,58.841819],[-158.520327,58.857105],[-158.487015,58.999872],[-158.372801,59.038895],[-158.294754,59.01986],[-158.179588,59.012245],[-158.17007,59.020811],[-158.212901,59.034136],[-158.275719,59.034136],[-158.368042,59.057931],[-158.417534,59.061738],[-158.522231,59.021763],[-158.619684,58.911048],[-158.717436,58.872462],[-158.729581,58.871218],[-158.745305,58.874098],[-158.767748,58.864264],[-158.789632,58.814257],[-158.790786,58.808424],[-158.790378,58.804712],[-158.782365,58.791157],[-158.774626,58.778593],[-158.7698,58.774141],[-158.771246,58.765109],[-158.784886,58.747739],[-158.800959,58.732842],[-158.812116,58.727845],[-158.827105,58.724495],[-158.848225,58.722736],[-158.861207,58.69558],[-158.827852,58.626432],[-158.769131,58.54865],[-158.721173,58.497971],[-158.704052,58.482759],[-158.795316,58.408032],[-158.830598,58.397095],[-158.880927,58.39067],[-158.896067,58.390065],[-158.944154,58.396885],[-159.046105,58.417466],[-159.063346,58.423139],[-159.080496,58.444256],[-159.187347,58.555609],[-159.24229,58.619067],[-159.357625,58.73452],[-159.390664,58.762362],[-159.450831,58.797736],[-159.501768,58.824304],[-159.532347,58.833609],[-159.556355,58.837414],[-159.580287,58.840691],[-159.643549,58.845063],[-159.601899,58.884671],[-159.589811,58.890359],[-159.586966,58.900314],[-159.594788,58.912402],[-159.60261,58.920935],[-159.61612,58.931601],[-159.64243,58.938712],[-159.657362,58.938712],[-159.691493,58.931601],[-159.712114,58.929468],[-159.723491,58.932312],[-159.732932,58.930739],[-159.753754,58.855724],[-159.808777,58.861542],[-159.792923,58.823971],[-159.806305,58.805595],[-159.908386,58.779903],[-159.995667,58.848301],[-159.985352,58.870464],[-160.054047,58.887001],[-160.093109,58.860798],[-160.150528,58.866062],[-160.15448,58.916874],[-160.232788,58.901127],[-160.286346,58.945007],[-160.322922,58.953953],[-160.256592,58.99448],[-160.31778,59.070477],[-160.476578,59.026047],[-160.641785,58.964489],[-160.753067,58.910431],[-160.823489,58.829136],[-160.872003,58.878472],[-161.001101,58.849693],[-161.034509,58.83862],[-161.084706,58.821982],[-161.18338,58.789276],[-161.337982,58.742912],[-161.345396,58.73545],[-161.372711,58.707958],[-161.372314,58.666172],[-161.521347,58.633141],[-161.550537,58.61116],[-161.62645,58.602581],[-161.682907,58.564671],[-161.751999,58.551842],[-161.766296,58.599224],[-161.871216,58.637478],[-162.066269,58.6208],[-162.171722,58.648441],[-161.994644,58.688828],[-161.939163,58.655613],[-161.877213,58.666138],[-161.859055,58.708637],[-161.769501,58.774937],[-161.756622,58.826477],[-161.783981,58.969421],[-161.828171,59.062702],[-161.981964,59.150997],[-162.048584,59.254177],[-162.018982,59.292278],[-161.942993,59.263828],[-161.956528,59.361771],[-161.904053,59.387341],[-161.837936,59.423836],[-161.828125,59.428188],[-161.790375,59.468197],[-161.738312,59.46701],[-161.70253,59.490906],[-161.75798,59.557152],[-161.854752,59.646214],[-161.911163,59.741741],[-162.017059,59.829426],[-162.092361,59.881104],[-162.100708,59.944675],[-162.10856,59.953861],[-162.121072,59.965241],[-162.143049,59.967506],[-162.171759,59.984163],[-162.190616,60.00203],[-162.207225,60.021834],[-162.228371,60.056313],[-162.316922,60.10759],[-162.360185,60.14736],[-162.371131,60.169019],[-162.371032,60.178616],[-162.347528,60.207157],[-162.361805,60.236662],[-162.453176,60.27854],[-162.462694,60.293769],[-162.443659,60.328985],[-162.409394,60.329937],[-162.329444,60.373719],[-162.300891,60.459379],[-162.2257,60.515535],[-162.224748,60.576449],[-162.1724,60.624038],[-162.178111,60.634508],[-162.235218,60.623086],[-162.270434,60.595485],[-162.407491,60.402272],[-162.414153,60.368008],[-162.504573,60.337551],[-162.534078,60.309949],[-162.540741,60.269023],[-162.571198,60.25189],[-162.568342,60.233807],[-162.55121,60.223337],[-162.453176,60.197639],[-162.445727,60.176448],[-162.447904,60.17048],[-162.463026,60.15302],[-162.476214,60.145536],[-162.484234,60.137964],[-162.492346,60.121804],[-162.494327,60.110675],[-162.481175,60.087544],[-162.476759,60.04769],[-162.503647,59.99923],[-162.530118,59.99011],[-162.585518,59.97723],[-162.622569,59.971809],[-162.644231,59.972954],[-162.682717,59.979432],[-162.738592,59.976321],[-162.740059,59.968797],[-162.748554,59.962664],[-162.760007,59.958013],[-162.828585,59.939142],[-162.90726,59.923682],[-162.974977,59.906443],[-163.033128,59.884135],[-163.109595,59.861633],[-163.172633,59.845058],[-163.349027,59.81989],[-163.38767,59.81588],[-163.559148,59.801391],[-163.662607,59.79571],[-163.704795,59.794805],[-163.772229,59.795624],[-163.930798,59.803853],[-164.079837,59.828034],[-164.115117,59.836688],[-164.133393,59.845612],[-164.160319,59.864679],[-164.201811,59.916119],[-164.208475,59.934461],[-164.209843,59.942874],[-164.208306,59.949046],[-164.198545,59.955109],[-164.178705,59.96181],[-164.161024,59.964076],[-164.12543,59.964626],[-164.11508,59.973166],[-164.13181,59.991177],[-164.1916,60.024496],[-164.302968,60.054233],[-164.336111,60.055527],[-164.385471,60.07719],[-164.461194,60.137824],[-164.498556,60.170546],[-164.493861,60.177397],[-164.494317,60.184833],[-164.505677,60.194304],[-164.517647,60.199493],[-164.541699,60.205279],[-164.558343,60.207042],[-164.59607,60.222874],[-164.619501,60.234938],[-164.634362,60.24298],[-164.646332,60.253303],[-164.651996,60.262745],[-164.653098,60.267902],[-164.698889,60.296298],[-164.72657,60.291475],[-164.777233,60.293833],[-164.850355,60.303615],[-164.899296,60.316787],[-164.962678,60.33966],[-165.005576,60.359812],[-165.057585,60.386287],[-165.129403,60.433707],[-165.132893,60.438867],[-165.124792,60.449191],[-165.120728,60.451196],[-165.069693,60.460893],[-165.04907,60.461516],[-165.015155,60.471414],[-164.99787,60.480459],[-164.961439,60.508391],[-164.956788,60.527837],[-164.960843,60.533845],[-164.965488,60.536701],[-164.97128,60.539558],[-164.986952,60.542406],[-165.05744,60.544631],[-165.190449,60.498001],[-165.244442,60.496298],[-165.362975,60.506866],[-165.377559,60.513164],[-165.405071,60.53465],[-165.420349,60.550692],[-165.419788,60.552418],[-165.415193,60.55816],[-165.381052,60.577987],[-165.367676,60.581158],[-165.346721,60.580603],[-165.312937,60.576313],[-165.289651,60.575755],[-165.268717,60.579488],[-165.178617,60.623927],[-165.170458,60.629091],[-165.147184,60.65116],[-165.063148,60.688645],[-165.052642,60.690068],[-165.0433,60.687468],[-165.027535,60.686008],[-164.991665,60.69884],[-164.97125,60.711434],[-164.966591,60.717438],[-164.96541,60.724306],[-164.971839,60.72973],[-165.010452,60.744789],[-165.023904,60.753128],[-165.032074,60.760022],[-165.040843,60.77266],[-165.042584,60.78443],[-165.037889,60.78901],[-165.032615,60.786704],[-165.020309,60.785539],[-164.977663,60.79036],[-164.944914,60.800379],[-164.92418,60.809331],[-164.939313,60.823463],[-165.009703,60.81506],[-165.02143,60.815086],[-165.02962,60.826001],[-165.030183,60.83805],[-165.003679,60.87558],[-164.945958,60.92106],[-164.939496,60.924774],[-164.925994,60.925063],[-164.917542,60.928144],[-164.903903,60.942213],[-164.921256,60.946509],[-164.940065,60.945369],[-165.007096,60.922058],[-165.03204,60.903986],[-165.016941,60.891071],[-165.080907,60.860224],[-165.132488,60.850145],[-165.176774,60.847149],[-165.177531,60.858865],[-165.22348,60.89645],[-165.216942,60.914322],[-165.157111,60.917363],[-165.155232,60.929186],[-165.172467,60.940328],[-165.194945,60.9739],[-165.194964,60.979915],[-165.190271,60.983073],[-165.133937,61.01125],[-165.115681,61.016097],[-165.097425,61.016658],[-165.096828,61.014944],[-165.083282,61.012933],[-165.020265,61.011153],[-164.998172,61.013826],[-164.961527,61.024166],[-164.951103,61.03102],[-164.950573,61.048079],[-164.927825,61.084392],[-164.902245,61.077902],[-164.87045,61.079564],[-164.868009,61.096394],[-164.883441,61.105924],[-164.891286,61.108246],[-164.941253,61.110863],[-164.981718,61.109691],[-164.991273,61.107232],[-164.997636,61.10443],[-164.998547,61.079492],[-164.993599,61.076241],[-164.991227,61.072192],[-164.995695,61.058035],[-165.011271,61.051984],[-165.029551,61.05401],[-165.057842,61.059746],[-165.119781,61.07864],[-165.167636,61.113502],[-165.175321,61.120926],[-165.17711,61.125494],[-165.167072,61.133487],[-165.165857,61.136567],[-165.16886,61.144913],[-165.172994,61.146919],[-165.203757,61.150341],[-165.2897,61.181714],[-165.307976,61.181823],[-165.325552,61.169306],[-165.344389,61.123691],[-165.350154,61.104545],[-165.350113,61.097407],[-165.347082,61.084847],[-165.342321,61.079994],[-165.336996,61.077709],[-165.338136,61.073432],[-165.343442,61.070564],[-165.370544,61.066821],[-165.403007,61.06706],[-165.498726,61.079149],[-165.549613,61.088162],[-165.578127,61.100361],[-165.590682,61.111169],[-165.631996,61.220708],[-165.634048,61.237557],[-165.627549,61.258125],[-165.620589,61.268586],[-165.623317,61.278431],[-165.635791,61.285456],[-165.662892,61.29457],[-165.787442,61.310063],[-165.809373,61.306827],[-165.816434,61.303363],[-165.831365,61.306719],[-165.858993,61.318865],[-165.879599,61.335044],[-165.915445,61.387686],[-165.921194,61.40308],[-165.92195,61.409638],[-165.918612,61.419087],[-165.844525,61.440601],[-165.800525,61.449657],[-165.791085,61.449852],[-165.767226,61.45695],[-165.748503,61.476446],[-165.746352,61.489304],[-165.754317,61.498704],[-165.807627,61.529171],[-165.912496,61.5562],[-165.964035,61.555919],[-165.981879,61.551249],[-165.985948,61.54665],[-165.999535,61.53972],[-166.034748,61.535221],[-166.075524,61.532672],[-166.08868,61.522885],[-166.079983,61.513464],[-166.058242,61.500419],[-166.075398,61.49298],[-166.108269,61.492475],[-166.124202,61.504645],[-166.158345,61.541537],[-166.165232,61.550618],[-166.178627,61.574807],[-166.18185,61.581342],[-166.182688,61.588481],[-166.158976,61.700437],[-166.153178,61.714931],[-166.143757,61.724352],[-166.134285,61.723919],[-166.13302,61.721918],[-166.134402,61.709068],[-166.138684,61.667101],[-166.140133,61.639562],[-166.139409,61.632315],[-166.132162,61.63159],[-166.053983,61.638201],[-166.031834,61.641199],[-166.015134,61.645866],[-165.967894,61.654432],[-165.903783,61.663632],[-165.82214,61.67061],[-165.809933,61.673029],[-165.81,61.68936],[-165.856791,61.690734],[-165.934968,61.706299],[-165.993851,61.723105],[-166.006693,61.729879],[-166.092081,61.800733],[-166.094045,61.805296],[-166.094312,61.813859],[-166.085334,61.816498],[-165.955265,61.832408],[-165.870982,61.826013],[-165.758413,61.825444],[-165.74709,61.82772],[-165.736904,61.832901],[-165.736429,61.839188],[-165.730439,61.842075],[-165.696038,61.847055],[-165.640216,61.848041],[-165.608427,61.855892],[-165.600043,61.859663],[-165.612337,61.871907],[-165.667939,61.900275],[-165.703482,61.921572],[-165.725818,61.947184],[-165.741481,61.971392],[-165.756806,62.006337],[-165.756386,62.014032],[-165.748641,62.047145],[-165.743522,62.06228],[-165.734117,62.076873],[-165.706155,62.108365],[-165.672037,62.13989],[-165.620746,62.172616],[-165.500322,62.255451],[-165.373713,62.338196],[-165.337722,62.359031],[-165.311967,62.378812],[-165.294962,62.403353],[-165.26927,62.427352],[-165.199804,62.469637],[-165.096155,62.522452],[-165.075997,62.582037],[-165.052202,62.598217],[-165.013179,62.640096],[-165.003661,62.641048],[-164.936739,62.668947],[-164.869519,62.665973],[-164.837703,62.685267],[-164.8773,62.78432],[-164.877773,62.797774],[-164.87564,62.806254],[-164.850838,62.83951],[-164.836318,62.852168],[-164.813007,62.903919],[-164.783858,62.946154],[-164.766117,62.958228],[-164.716841,63.006264],[-164.685213,63.022191],[-164.583735,63.058457],[-164.580201,63.070127],[-164.611616,63.077673],[-164.641186,63.07268],[-164.643672,63.074975],[-164.644886,63.079268],[-164.640324,63.091257],[-164.633943,63.09782],[-164.493118,63.17767],[-164.423449,63.211977],[-164.363592,63.22628],[-164.209475,63.251472],[-164.140096,63.259336],[-164.066991,63.262276],[-164.036565,63.261204],[-163.970266,63.248291],[-163.909405,63.232514],[-163.885059,63.222308],[-163.788882,63.217482],[-163.755283,63.217461],[-163.73265,63.213257],[-163.725805,63.21062],[-163.724072,63.206592],[-163.70398,63.188107],[-163.650294,63.157564],[-163.616272,63.141213],[-163.590122,63.146091],[-163.529938,63.1354],[-163.520806,63.12328],[-163.507217,63.113685],[-163.474794,63.099053],[-163.433968,63.089296],[-163.417683,63.083874],[-163.364979,63.055805],[-163.316203,63.037763],[-163.130853,63.049387],[-163.053996,63.058334],[-163.0405,63.062151],[-162.998302,63.089286],[-162.919727,63.120153],[-162.901643,63.125597],[-162.844559,63.154191],[-162.83785,63.159224],[-162.834926,63.164621],[-162.840187,63.187579],[-162.839167,63.193004],[-162.834354,63.198076],[-162.821122,63.205596],[-162.769536,63.217069],[-162.758741,63.217187],[-162.747621,63.213572],[-162.72408,63.214615],[-162.688083,63.220608],[-162.662614,63.229906],[-162.587754,63.275727]]],[[[-169.267598,63.343995],[-169.101961,63.338022],[-169.087914,63.340937],[-169.05195,63.343127],[-168.999241,63.341249],[-168.937385,63.333789],[-168.936333,63.330622],[-168.932623,63.32914],[-168.796086,63.308781],[-168.692939,63.302282],[-168.685145,63.296427],[-168.686675,63.293022],[-168.716872,63.256316],[-168.751537,63.217962],[-168.783239,63.184131],[-168.789266,63.179646],[-168.818344,63.163224],[-168.85875,63.146958],[-168.871465,63.146009],[-168.889683,63.147708],[-168.950091,63.160895],[-168.963577,63.167104],[-168.983024,63.169671],[-169.042674,63.176511],[-169.105808,63.178803],[-169.198398,63.176011],[-169.262039,63.169936],[-169.303477,63.164439],[-169.375667,63.151269],[-169.396308,63.136617],[-169.436748,63.113579],[-169.471949,63.098565],[-169.51365,63.084717],[-169.534984,63.074355],[-169.561131,63.055178],[-169.575873,63.03645],[-169.576965,63.027025],[-169.572777,63.022118],[-169.568016,62.976879],[-169.638309,62.937527],[-169.746736,62.955991],[-169.757249,62.960087],[-169.757514,62.963722],[-169.734938,62.974468],[-169.734938,62.976617],[-169.788466,63.043015],[-169.829912,63.07855],[-169.838511,63.084339],[-169.88123,63.105848],[-169.944056,63.13236],[-169.987936,63.142975],[-170.006196,63.14454],[-170.021208,63.1495],[-170.049622,63.163377],[-170.051062,63.167489],[-170.053402,63.168858],[-170.101301,63.1793],[-170.124354,63.183665],[-170.154072,63.186402],[-170.174421,63.185464],[-170.186485,63.181618],[-170.181985,63.178804],[-170.193695,63.177434],[-170.263032,63.179147],[-170.281388,63.186821],[-170.285648,63.19457],[-170.279881,63.197108],[-170.277915,63.200239],[-170.277721,63.208819],[-170.30363,63.238692],[-170.337275,63.266308],[-170.364806,63.285596],[-170.430656,63.314284],[-170.512102,63.341881],[-170.55895,63.354989],[-170.712572,63.385975],[-170.865412,63.414229],[-170.92345,63.420859],[-170.967475,63.42373],[-171.067663,63.424579],[-171.100855,63.42342],[-171.269249,63.385386],[-171.280185,63.381543],[-171.287157,63.376642],[-171.288265,63.374833],[-171.285411,63.366464],[-171.290324,63.355383],[-171.333089,63.335393],[-171.433319,63.307578],[-171.464455,63.306915],[-171.562263,63.334591],[-171.667115,63.356166],[-171.739321,63.366114],[-171.795297,63.407853],[-171.818259,63.429452],[-171.824872,63.437141],[-171.849984,63.485039],[-171.840382,63.547724],[-171.833681,63.580074],[-171.791881,63.620625],[-171.757081,63.640252],[-171.743979,63.654905],[-171.742338,63.665494],[-171.755552,63.701173],[-171.754336,63.71896],[-171.739918,63.717096],[-171.733206,63.720327],[-171.727986,63.726791],[-171.725748,63.734745],[-171.727986,63.744938],[-171.737432,63.76035],[-171.743398,63.782971],[-171.738178,63.784711],[-171.699647,63.781728],[-171.692686,63.782598],[-171.682494,63.78757],[-171.673296,63.788067],[-171.66733,63.785581],[-171.659873,63.775762],[-171.643963,63.770791],[-171.638991,63.759231],[-171.638246,63.749536],[-171.641477,63.745559],[-171.652912,63.73922],[-171.652664,63.73661],[-171.648935,63.73487],[-171.646692,63.729425],[-171.65263,63.708523],[-171.649923,63.70254],[-171.640027,63.69343],[-171.632194,63.688601],[-171.609439,63.679832],[-171.521859,63.658797],[-171.381677,63.630646],[-171.202557,63.606897],[-171.103558,63.589268],[-171.044486,63.580431],[-170.950817,63.570127],[-170.907197,63.572107],[-170.897581,63.574676],[-170.859032,63.587503],[-170.816581,63.606329],[-170.698156,63.646778],[-170.606282,63.672732],[-170.488192,63.696723],[-170.472181,63.698677],[-170.462947,63.698022],[-170.441066,63.691981],[-170.373871,63.687322],[-170.359363,63.687321],[-170.354527,63.691924],[-170.344855,63.694225],[-170.315839,63.691923],[-170.281988,63.68502],[-170.26748,63.675816],[-170.257808,63.666611],[-170.176413,63.625489],[-170.154754,63.619072],[-170.14004,63.616696],[-170.113066,63.616245],[-170.095833,63.612701],[-170.076689,63.587988],[-170.040919,63.523411],[-170.047114,63.490135],[-170.026953,63.480702],[-170.007943,63.475428],[-169.974858,63.470618],[-169.906304,63.457519],[-169.857078,63.441975],[-169.747634,63.432756],[-169.656474,63.429929],[-169.643167,63.427802],[-169.579892,63.40287],[-169.566562,63.388725],[-169.565439,63.385563],[-169.554375,63.377158],[-169.546934,63.372792],[-169.520524,63.365941],[-169.415329,63.355943],[-169.38408,63.356733],[-169.31297,63.353335],[-169.281422,63.348381],[-169.267598,63.343995]]],[[[-162.614621,63.621832],[-162.587527,63.625115],[-162.558234,63.634308],[-162.541389,63.635727],[-162.512298,63.629784],[-162.498175,63.622069],[-162.451929,63.62127],[-162.440229,63.622491],[-162.430304,63.625745],[-162.425419,63.62995],[-162.425265,63.631654],[-162.427696,63.633134],[-162.424205,63.636215],[-162.401203,63.634367],[-162.374243,63.626425],[-162.341892,63.594062],[-162.345179,63.551785],[-162.377988,63.543813],[-162.416802,63.547389],[-162.470029,63.5475],[-162.552701,63.540951],[-162.562007,63.537105],[-162.614949,63.540601],[-162.676581,63.555648],[-162.680973,63.556859],[-162.707559,63.577607],[-162.682629,63.584066],[-162.644513,63.602599],[-162.614621,63.621832]]],[[[-168.097709,64.969025],[-168.08248,64.974736],[-168.074866,64.980447],[-168.049168,64.98235],[-168.050227,64.961234],[-168.080577,64.958556],[-168.097709,64.964266],[-168.097709,64.969025]]],[[[-168.952766,65.758911],[-168.947278,65.763817],[-168.93724,65.767116],[-168.915518,65.770484],[-168.902235,65.769665],[-168.893219,65.744705],[-168.898754,65.739709],[-168.903439,65.738454],[-168.93122,65.73894],[-168.94076,65.742714],[-168.951388,65.749319],[-168.954515,65.757144],[-168.952766,65.758911]]]]}}]} diff --git a/Where/RegionKit/Sources/Resources/regions/us-AL.geojson b/Where/RegionKit/Sources/Resources/regions/us-AL.geojson new file mode 100644 index 00000000..15fb88b9 --- /dev/null +++ b/Where/RegionKit/Sources/Resources/regions/us-AL.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"region":"us-AL","name":"Alabama"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-88.124658,30.28364],[-88.086812,30.259864],[-88.074854,30.249119],[-88.075856,30.246139],[-88.078786,30.245039],[-88.109432,30.242097],[-88.120151,30.246149],[-88.137083,30.249179],[-88.166569,30.249255],[-88.20854,30.244807],[-88.280571,30.230274],[-88.304773,30.228031],[-88.313323,30.230024],[-88.310025,30.233233],[-88.299705,30.231812],[-88.280781,30.233781],[-88.25837,30.239595],[-88.224615,30.245559],[-88.17335,30.252418],[-88.158303,30.252393],[-88.141143,30.255024],[-88.130631,30.262125],[-88.124722,30.273541],[-88.124658,30.28364]]],[[[-87.984916,35.005881],[-87.877969,35.005468],[-87.877742,35.005512],[-87.872626,35.005571],[-87.853528,35.005541],[-87.853411,35.005576],[-87.851886,35.005656],[-87.773586,35.004946],[-87.767602,35.004783],[-87.75889,35.004711],[-87.709491,35.004089],[-87.702321,35.003945],[-87.700543,35.003988],[-87.696834,35.003852],[-87.671405,35.003537],[-87.664123,35.003523],[-87.625025,35.003732],[-87.606178,35.003642],[-87.428613,35.002795],[-87.421543,35.002679],[-87.4174,35.002669],[-87.391314,35.002374],[-87.381071,35.002118],[-87.359281,35.001823],[-87.349251,35.001662],[-87.299185,35.000915],[-87.270014,35.00039],[-87.230544,34.999484],[-87.224053,34.999327],[-87.216683,34.999148],[-87.210759,34.999024],[-87.011174,34.995162],[-87.000007,34.995121],[-86.974412,34.994513],[-86.972613,34.99461],[-86.970236,34.994546],[-86.96712,34.9944],[-86.862147,34.991956],[-86.849794,34.991924],[-86.846466,34.99186],[-86.83637,34.991764],[-86.836306,34.991764],[-86.820657,34.991764],[-86.783648,34.991925],[-86.783628,34.991925],[-86.677616,34.99207],[-86.676726,34.99207],[-86.67436,34.992001],[-86.670853,34.992],[-86.65961,34.991792],[-86.641212,34.99174],[-86.600039,34.99124],[-86.588962,34.991197],[-86.571217,34.991011],[-86.555864,34.990971],[-86.528485,34.990677],[-86.467798,34.990692],[-86.433927,34.991085],[-86.397203,34.99166],[-86.318761,34.991147],[-86.311274,34.991098],[-85.863935,34.988379],[-85.828724,34.988165],[-85.824411,34.988142],[-85.605165,34.984678],[-85.599385,34.951766],[-85.598781,34.944915],[-85.595191,34.924331],[-85.595163,34.924171],[-85.583145,34.860371],[-85.561416,34.750079],[-85.552482,34.708321],[-85.552454,34.708138],[-85.541267,34.656783],[-85.541264,34.656701],[-85.534327,34.625082],[-85.534089,34.623858],[-85.527261,34.588683],[-85.517074,34.542598],[-85.51393,34.525192],[-85.513709,34.52417],[-85.513699,34.524133],[-85.512108,34.518252],[-85.508384,34.501212],[-85.502454,34.474527],[-85.502316,34.473954],[-85.47045,34.328239],[-85.462082,34.286385],[-85.458693,34.269437],[-85.458071,34.265736],[-85.455371,34.252854],[-85.455057,34.250689],[-85.42947,34.125096],[-85.428222,34.114397],[-85.421853,34.080822],[-85.420232,34.072278],[-85.406748,34.002314],[-85.405918,34.0001],[-85.398837,33.964129],[-85.386473,33.901718],[-85.377426,33.856047],[-85.361844,33.773951],[-85.360491,33.767958],[-85.357402,33.750104],[-85.338201,33.653116],[-85.322569,33.574159],[-85.314994,33.535898],[-85.314091,33.530218],[-85.313999,33.529807],[-85.304439,33.482884],[-85.293902,33.428079],[-85.236509,33.129562],[-85.232378,33.108077],[-85.223261,33.06258],[-85.221868,33.055538],[-85.188741,32.889727],[-85.18474,32.870527],[-85.184131,32.870525],[-85.184914,32.868944],[-85.184888,32.863355],[-85.1844,32.861317],[-85.179353,32.855269],[-85.177127,32.853895],[-85.170099,32.852497],[-85.16771,32.852419],[-85.165569,32.85209],[-85.163427,32.851431],[-85.161615,32.849948],[-85.160792,32.848466],[-85.160462,32.847148],[-85.160133,32.8455],[-85.159638,32.844018],[-85.159474,32.842535],[-85.159309,32.841382],[-85.159474,32.839735],[-85.16058,32.838249],[-85.164651,32.834791],[-85.168342,32.828516],[-85.168644,32.814246],[-85.167939,32.811612],[-85.162137,32.804237],[-85.151913,32.794104],[-85.139285,32.784921],[-85.134676,32.782166],[-85.133275,32.780609],[-85.132186,32.778897],[-85.13203,32.776718],[-85.132653,32.774694],[-85.13312,32.773449],[-85.133898,32.772359],[-85.136544,32.769402],[-85.138412,32.764576],[-85.138879,32.760062],[-85.138101,32.753836],[-85.136077,32.749633],[-85.13393,32.747915],[-85.132186,32.74652],[-85.127205,32.743718],[-85.124092,32.741694],[-85.121601,32.73936],[-85.1202,32.737647],[-85.119733,32.736091],[-85.119577,32.734223],[-85.119577,32.731577],[-85.119422,32.729397],[-85.119733,32.72644],[-85.120838,32.722932],[-85.122738,32.715727],[-85.117037,32.692033],[-85.114737,32.685634],[-85.112637,32.683434],[-85.104037,32.679634],[-85.093536,32.669734],[-85.088483,32.657758],[-85.089736,32.655635],[-85.09457,32.652443],[-85.096005,32.649983],[-85.097952,32.645474],[-85.098259,32.642708],[-85.09662,32.638199],[-85.092008,32.636456],[-85.088934,32.635432],[-85.087294,32.634407],[-85.086167,32.633177],[-85.086065,32.631435],[-85.087192,32.628463],[-85.088627,32.626619],[-85.088729,32.624774],[-85.088319,32.623032],[-85.087294,32.62047],[-85.08536,32.618536],[-85.083616,32.6178],[-85.08224,32.616264],[-85.080768,32.610152],[-85.080618,32.608095],[-85.080288,32.603577],[-85.076399,32.594665],[-85.067535,32.579546],[-85.056926,32.571242],[-85.035726,32.553963],[-85.022509,32.542923],[-85.022045,32.540044],[-85.020237,32.534748],[-85.015805,32.528428],[-85.013788,32.526108],[-85.008396,32.524876],[-85.0071,32.523868],[-85.001532,32.514741],[-85.000789,32.510195],[-85.000182,32.506485],[-84.999832,32.504341],[-84.998832,32.497041],[-84.998332,32.494142],[-84.996732,32.492342],[-84.994831,32.486042],[-84.995231,32.475242],[-84.998231,32.469842],[-84.998031,32.461743],[-84.995331,32.453243],[-84.993531,32.450743],[-84.983831,32.445643],[-84.971831,32.442843],[-84.967031,32.435343],[-84.96303,32.424244],[-84.96343,32.422544],[-84.97183,32.416244],[-84.979431,32.412244],[-84.981098,32.402833],[-84.979898,32.400097],[-84.97752,32.39687],[-84.976767,32.392648],[-84.979028,32.38918],[-84.980385,32.385561],[-84.980084,32.382244],[-84.97933,32.379077],[-84.978739,32.376271],[-84.978727,32.376212],[-84.980084,32.373347],[-84.982949,32.371387],[-84.983552,32.368371],[-84.983242,32.365122],[-84.983466,32.363186],[-84.986778,32.359058],[-85.004582,32.345196],[-85.008096,32.336677],[-85.007103,32.328362],[-85.001874,32.322015],[-84.989514,32.319316],[-84.93868,32.300708],[-84.9338,32.29826],[-84.922872,32.285333],[-84.911127,32.276949],[-84.904023,32.273749],[-84.893959,32.265846],[-84.891841,32.263398],[-84.890894,32.261504],[-84.891131,32.25961],[-84.892315,32.258189],[-84.898234,32.256768],[-84.901549,32.255584],[-84.902496,32.253217],[-84.904087,32.250838],[-84.907227,32.24905],[-84.910098,32.248333],[-84.912488,32.247463],[-84.913249,32.24529],[-84.912727,32.24335],[-84.916327,32.236551],[-84.920627,32.233951],[-84.922627,32.231751],[-84.923031,32.230853],[-84.923527,32.229751],[-84.922927,32.224751],[-84.925427,32.221551],[-84.928227,32.219851],[-84.930127,32.219051],[-84.939328,32.217951],[-84.948995,32.217849],[-84.953727,32.217148],[-84.957057,32.21671],[-84.958985,32.215571],[-84.96065,32.214344],[-84.962227,32.212503],[-84.963367,32.211014],[-84.964594,32.209787],[-84.965733,32.208823],[-84.966346,32.208034],[-84.966784,32.206895],[-84.967047,32.205843],[-84.966928,32.204451],[-84.966346,32.202688],[-84.965032,32.200585],[-84.964944,32.19892],[-84.965032,32.196642],[-84.966828,32.193952],[-84.973728,32.191552],[-84.995929,32.184852],[-85.008531,32.181903],[-85.011267,32.180493],[-85.013065,32.179112],[-85.014648,32.176882],[-85.026583,32.166104],[-85.030336,32.161727],[-85.033989,32.156348],[-85.045593,32.143758],[-85.047865,32.142033],[-85.058749,32.136018],[-85.061144,32.134065],[-85.06206,32.132486],[-85.06154,32.129673],[-85.05918,32.125153],[-85.055045,32.113671],[-85.053777,32.107684],[-85.04955,32.095362],[-85.047063,32.090433],[-85.047063,32.087389],[-85.04774,32.084908],[-85.051161,32.082527],[-85.053232,32.080604],[-85.055813,32.074439],[-85.055491,32.072657],[-85.054084,32.07021],[-85.054179,32.067985],[-85.056029,32.063055],[-85.05683,32.059755],[-85.05643,32.058055],[-85.05663,32.054155],[-85.05883,32.046656],[-85.05803,32.043756],[-85.055333,32.04058],[-85.054839,32.038814],[-85.054627,32.036694],[-85.055474,32.034221],[-85.056464,32.031819],[-85.056253,32.028336],[-85.055217,32.027213],[-85.053779,32.025532],[-85.053214,32.024189],[-85.053072,32.02313],[-85.053214,32.021576],[-85.053669,32.020662],[-85.054768,32.017407],[-85.053815,32.013502],[-85.055075,32.010714],[-85.063441,32.00414],[-85.064544,32.002489],[-85.06803,31.993357],[-85.068098,31.991857],[-85.06833,31.986757],[-85.07093,31.981658],[-85.06993,31.978358],[-85.066829,31.974758],[-85.065929,31.972458],[-85.065929,31.971158],[-85.067829,31.967358],[-85.07023,31.965658],[-85.07393,31.964158],[-85.08323,31.962458],[-85.08573,31.960758],[-85.08673,31.959158],[-85.08683,31.957758],[-85.08243,31.945358],[-85.07893,31.941459],[-85.07893,31.940159],[-85.08473,31.937359],[-85.08643,31.935959],[-85.09183,31.928859],[-85.09823,31.926259],[-85.09953,31.925259],[-85.10023,31.924059],[-85.10133,31.918659],[-85.10243,31.917359],[-85.10913,31.914359],[-85.113131,31.911859],[-85.112731,31.909859],[-85.10983,31.90806],[-85.10803,31.90516],[-85.11133,31.89936],[-85.11063,31.89686],[-85.11203,31.89476],[-85.114031,31.89336],[-85.117031,31.89286],[-85.121131,31.89326],[-85.132931,31.89306],[-85.134131,31.89216],[-85.134331,31.89146],[-85.133731,31.88956],[-85.131631,31.88676],[-85.129331,31.88246],[-85.128431,31.87966],[-85.128431,31.87756],[-85.128831,31.87636],[-85.133731,31.870061],[-85.135831,31.862461],[-85.137431,31.860661],[-85.140131,31.858761],[-85.140731,31.857461],[-85.140231,31.855261],[-85.138031,31.851262],[-85.137731,31.845861],[-85.138331,31.844161],[-85.141331,31.841061],[-85.141831,31.839261],[-85.139231,31.834161],[-85.135931,31.830462],[-85.133631,31.826062],[-85.131331,31.817562],[-85.131531,31.813062],[-85.132931,31.808062],[-85.132831,31.798862],[-85.132231,31.795162],[-85.132931,31.792363],[-85.137131,31.788363],[-85.141931,31.781963],[-85.140951,31.78046],[-85.140431,31.779663],[-85.130731,31.772263],[-85.12633,31.768863],[-85.12523,31.767063],[-85.12563,31.764463],[-85.126954,31.76233],[-85.129231,31.758663],[-85.12663,31.752463],[-85.12393,31.747564],[-85.11893,31.732664],[-85.11913,31.730964],[-85.12223,31.722764],[-85.12573,31.718864],[-85.12653,31.716764],[-85.12683,31.708965],[-85.12553,31.694965],[-85.12233,31.691265],[-85.11393,31.686865],[-85.11263,31.685165],[-85.10943,31.677465],[-85.092429,31.659966],[-85.087829,31.657866],[-85.08546,31.657028],[-85.083545,31.656071],[-85.082013,31.65473],[-85.08096,31.653102],[-85.080864,31.652336],[-85.081429,31.650966],[-85.082588,31.649463],[-85.085173,31.644101],[-85.085365,31.642186],[-85.085173,31.640749],[-85.084503,31.639026],[-85.082829,31.637967],[-85.080029,31.636867],[-85.073829,31.629567],[-85.067628,31.625267],[-85.065236,31.624351],[-85.059534,31.621717],[-85.058169,31.620227],[-85.057473,31.618624],[-85.057527,31.616883],[-85.05833,31.614546],[-85.060418,31.611271],[-85.060552,31.608224],[-85.059696,31.607262],[-85.057314,31.606713],[-85.055976,31.605178],[-85.056405,31.600963],[-85.058109,31.593343],[-85.05844,31.58369],[-85.055417,31.578696],[-85.055284,31.577092],[-85.057719,31.573062],[-85.05796,31.57084],[-85.052931,31.56289],[-85.051873,31.557871],[-85.050838,31.555551],[-85.045698,31.548707],[-85.042547,31.545953],[-85.041881,31.544684],[-85.041305,31.540987],[-85.041813,31.537754],[-85.042983,31.5352],[-85.047196,31.528671],[-85.048263,31.526012],[-85.047649,31.523751],[-85.044556,31.520908],[-85.044986,31.51823],[-85.045496,31.517129],[-85.045642,31.516813],[-85.048445,31.513684],[-85.052951,31.506518],[-85.058923,31.495989],[-85.062105,31.488017],[-85.065687,31.484122],[-85.071621,31.468384],[-85.069268,31.453472],[-85.066703,31.447286],[-85.065955,31.442979],[-85.065554,31.439543],[-85.065875,31.430586],[-85.06697,31.428594],[-85.068546,31.427311],[-85.070413,31.426921],[-85.072898,31.426477],[-85.074762,31.424879],[-85.075827,31.421506],[-85.076746,31.415971],[-85.079818,31.411732],[-85.079978,31.410472],[-85.077387,31.402844],[-85.077626,31.39888],[-85.078641,31.39636],[-85.080403,31.393932],[-85.082431,31.38454],[-85.08691,31.374474],[-85.092167,31.364576],[-85.092487,31.362881],[-85.092619,31.357474],[-85.091791,31.355207],[-85.09099,31.354428],[-85.087413,31.354428],[-85.085918,31.353146],[-85.085864,31.35019],[-85.087063,31.340317],[-85.08781,31.337981],[-85.089411,31.336033],[-85.088983,31.334292],[-85.084152,31.328313],[-85.083776,31.31821],[-85.084469,31.316194],[-85.087404,31.311223],[-85.087651,31.308677],[-85.087695,31.304053],[-85.089774,31.295026],[-85.09316,31.289688],[-85.099107,31.284165],[-85.110309,31.281733],[-85.112762,31.280037],[-85.114601,31.277333],[-85.114548,31.276302],[-85.112546,31.274378],[-85.111905,31.272477],[-85.111983,31.267987],[-85.113261,31.264343],[-85.112352,31.25958],[-85.111711,31.258022],[-85.109149,31.254609],[-85.106182,31.248077],[-85.10426,31.241869],[-85.102472,31.23786],[-85.100765,31.234813],[-85.098844,31.232524],[-85.096763,31.225651],[-85.098707,31.219511],[-85.098704,31.211286],[-85.09977,31.209751],[-85.105631,31.204595],[-85.106963,31.202693],[-85.108133,31.195637],[-85.107516,31.186451],[-85.106503,31.185305],[-85.104424,31.18565],[-85.102052,31.184734],[-85.098507,31.180153],[-85.098426,31.17777],[-85.100447,31.166727],[-85.100207,31.16549],[-85.092106,31.160293],[-85.083582,31.15963],[-85.077801,31.157889],[-85.076628,31.156927],[-85.070181,31.14868],[-85.064028,31.142495],[-85.06243,31.139518],[-85.061072,31.134225],[-85.054677,31.120818],[-85.052867,31.119489],[-85.050178,31.118916],[-85.040513,31.111583],[-85.037079,31.109751],[-85.035615,31.108192],[-85.032832,31.10057],[-85.029736,31.096163],[-85.026068,31.08418],[-85.028333,31.076851],[-85.028473,31.075526],[-85.028573,31.074583],[-85.018148,31.059253],[-85.012642,31.055402],[-85.011392,31.053546],[-85.008816,31.045573],[-85.008552,31.042824],[-85.009409,31.032378],[-85.005051,31.024701],[-85.004549,31.01918],[-85.00006,31.014983],[-84.999428,31.013843],[-84.999626,31.009079],[-85.001366,31.005044],[-85.002368,31.000682],[-85.024108,31.000681],[-85.027512,31.00067],[-85.030107,31.000653],[-85.031155,31.000647],[-85.052088,31.000585],[-85.054802,31.000585],[-85.057534,31.000585],[-85.145835,31.000695],[-85.152085,31.000888],[-85.152218,31.000834],[-85.154452,31.000835],[-85.243632,31.000884],[-85.488298,30.997083],[-85.497992,30.996932],[-85.498272,30.996928],[-85.749619,30.995292],[-85.749932,30.994837],[-85.893543,30.993467],[-85.998643,30.99287],[-86.035039,30.99332],[-86.052462,30.993247],[-86.056213,30.993133],[-86.116918,30.992917],[-86.162886,30.993682],[-86.168979,30.993706],[-86.175204,30.993798],[-86.180232,30.994005],[-86.187247,30.994049],[-86.238335,30.99437],[-86.256448,30.993853],[-86.289247,30.993798],[-86.304596,30.994029],[-86.364907,30.994455],[-86.36927,30.994477],[-86.374545,30.994474],[-86.388646,30.994181],[-86.388647,30.994181],[-86.391937,30.994172],[-86.404912,30.994049],[-86.454704,30.993791],[-86.458319,30.993998],[-86.49995,30.99334],[-86.512834,30.9937],[-86.519938,30.993245],[-86.563436,30.995223],[-86.567586,30.995109],[-86.664681,30.994534],[-86.678383,30.994537],[-86.688313,30.994596],[-86.706261,30.994703],[-86.725379,30.996872],[-86.727293,30.996882],[-86.728392,30.996739],[-86.74524,30.99629],[-86.785692,30.996974],[-86.785918,30.996978],[-86.830497,30.997401],[-86.831934,30.997378],[-86.872989,30.997631],[-86.888135,30.997577],[-86.92781,30.997704],[-86.998477,30.998661],[-87.004359,30.999316],[-87.027107,30.999255],[-87.036366,30.999348],[-87.039989,30.999594],[-87.053737,30.999131],[-87.064063,30.999191],[-87.068633,30.999143],[-87.118873,30.999427],[-87.124969,30.998802],[-87.140755,30.999532],[-87.162614,30.999055],[-87.163083,30.999041],[-87.224746,30.997169],[-87.237685,30.996393],[-87.25498,30.998285],[-87.255592,30.998216],[-87.257002,30.998194],[-87.25796,30.998263],[-87.259689,30.998172],[-87.26054,30.998195],[-87.265564,30.998267],[-87.288905,30.998345],[-87.290995,30.998352],[-87.301567,30.998434],[-87.30403,30.998191],[-87.312183,30.998435],[-87.333973,30.998272],[-87.355656,30.998244],[-87.364011,30.998218],[-87.367842,30.998292],[-87.425774,30.99809],[-87.432292,30.998205],[-87.449811,30.998272],[-87.455705,30.998318],[-87.458658,30.998386],[-87.461638,30.998202],[-87.461783,30.998201],[-87.466827,30.998178],[-87.466879,30.998178],[-87.478706,30.998213],[-87.479703,30.998197],[-87.480243,30.998202],[-87.51952,30.997586],[-87.548543,30.997927],[-87.571281,30.99787],[-87.598928,30.997457],[-87.598928,30.997454],[-87.599172,30.995722],[-87.596722,30.98761],[-87.593395,30.982959],[-87.592676,30.98014],[-87.594164,30.977572],[-87.594111,30.976335],[-87.593046,30.972966],[-87.590917,30.969414],[-87.589187,30.964464],[-87.592055,30.951492],[-87.59689,30.941131],[-87.598299,30.938793],[-87.600691,30.937074],[-87.602684,30.934277],[-87.607811,30.92449],[-87.608262,30.9219],[-87.6102,30.916628],[-87.611847,30.914541],[-87.614209,30.908536],[-87.614951,30.904226],[-87.616013,30.901453],[-87.620715,30.89893],[-87.622203,30.897508],[-87.622519,30.89368],[-87.620922,30.889923],[-87.620788,30.887494],[-87.622062,30.885408],[-87.6244,30.884696],[-87.629454,30.880115],[-87.629987,30.877686],[-87.634938,30.865886],[-87.628245,30.860131],[-87.626228,30.857127],[-87.62538,30.854355],[-87.626497,30.85188],[-87.627323,30.847961],[-87.626075,30.846494],[-87.624137,30.845713],[-87.617281,30.840353],[-87.615367,30.837031],[-87.615923,30.834693],[-87.610982,30.832632],[-87.605776,30.831304],[-87.60357,30.828624],[-87.60163,30.82514],[-87.600486,30.820627],[-87.594297,30.816984],[-87.58787,30.815037],[-87.581869,30.812403],[-87.576849,30.808163],[-87.572043,30.800532],[-87.56814,30.799088],[-87.564209,30.796246],[-87.560068,30.792258],[-87.559484,30.790447],[-87.554838,30.787125],[-87.552954,30.786941],[-87.552051,30.786254],[-87.545044,30.778666],[-87.545364,30.774105],[-87.54616,30.77202],[-87.54226,30.767504],[-87.537085,30.76253],[-87.536528,30.761383],[-87.535416,30.75476],[-87.535365,30.749775],[-87.532607,30.743489],[-87.523613,30.738306],[-87.511729,30.733535],[-87.505153,30.726313],[-87.502317,30.72159],[-87.497515,30.720123],[-87.496772,30.720353],[-87.487036,30.7185],[-87.481225,30.716508],[-87.479819,30.71495],[-87.479579,30.712865],[-87.474429,30.706586],[-87.470397,30.705281],[-87.467717,30.701683],[-87.466338,30.700835],[-87.456948,30.69756],[-87.451404,30.699806],[-87.449362,30.698913],[-87.44358,30.694604],[-87.44228,30.692679],[-87.439814,30.690479],[-87.436021,30.688668],[-87.430372,30.688645],[-87.424883,30.683374],[-87.419527,30.679981],[-87.412739,30.678055],[-87.406958,30.675165],[-87.406561,30.674019],[-87.407118,30.671796],[-87.405874,30.666616],[-87.400707,30.657148],[-87.400177,30.657217],[-87.397262,30.654351],[-87.396177,30.650454],[-87.397185,30.648117],[-87.395941,30.643968],[-87.393588,30.63088],[-87.393775,30.627006],[-87.394479,30.625192],[-87.395659,30.623372],[-87.39643,30.617734],[-87.39643,30.616909],[-87.395053,30.6159],[-87.395026,30.615281],[-87.397308,30.608728],[-87.39927,30.605611],[-87.401178,30.604397],[-87.404597,30.603389],[-87.406558,30.599928],[-87.408736,30.583701],[-87.412712,30.573227],[-87.414513,30.573456],[-87.416261,30.572448],[-87.418354,30.570043],[-87.418513,30.569561],[-87.416951,30.568003],[-87.41666,30.566306],[-87.418647,30.561837],[-87.420925,30.560668],[-87.422408,30.560439],[-87.422805,30.561379],[-87.423362,30.561425],[-87.426037,30.560073],[-87.427891,30.554159],[-87.431441,30.550263],[-87.434963,30.549599],[-87.43544,30.54914],[-87.446586,30.527068],[-87.446427,30.520306],[-87.444944,30.514943],[-87.445182,30.51398],[-87.446499,30.513569],[-87.447305,30.512629],[-87.447782,30.511913],[-87.447702,30.510458],[-87.444714,30.507494],[-87.44322,30.506782],[-87.43969,30.506649],[-87.438269,30.505357],[-87.431178,30.495795],[-87.430578,30.491096],[-87.432978,30.484896],[-87.435578,30.480496],[-87.434678,30.479196],[-87.431578,30.477696],[-87.430578,30.476596],[-87.429578,30.470596],[-87.425078,30.465596],[-87.414677,30.457296],[-87.407877,30.456396],[-87.404677,30.452897],[-87.399877,30.450997],[-87.396877,30.450597],[-87.391976,30.451597],[-87.381176,30.450097],[-87.370768,30.446865],[-87.36868,30.444631],[-87.366939,30.44048],[-87.366591,30.436648],[-87.368191,30.433407],[-87.371169,30.43049],[-87.382076,30.422897],[-87.386376,30.420497],[-87.395676,30.417597],[-87.398776,30.415098],[-87.401777,30.411398],[-87.403477,30.410198],[-87.408877,30.408798],[-87.413177,30.408998],[-87.419177,30.410198],[-87.422677,30.410098],[-87.426177,30.409198],[-87.429578,30.406498],[-87.431778,30.403198],[-87.434278,30.397498],[-87.437278,30.395898],[-87.440678,30.391498],[-87.441178,30.388598],[-87.440878,30.386698],[-87.438678,30.382098],[-87.438678,30.380798],[-87.441823,30.376304],[-87.449078,30.370399],[-87.451378,30.367199],[-87.451878,30.364999],[-87.451978,30.360299],[-87.450962,30.346262],[-87.452278,30.344099],[-87.459978,30.3363],[-87.462978,30.334],[-87.464878,30.3333],[-87.475579,30.3314],[-87.491879,30.3309],[-87.49998,30.328957],[-87.502572,30.327405],[-87.504701,30.324039],[-87.505943,30.319396],[-87.50578,30.3125],[-87.50468,30.308901],[-87.50278,30.307301],[-87.494879,30.305001],[-87.483679,30.304801],[-87.481879,30.306001],[-87.475879,30.3079],[-87.468678,30.3082],[-87.465778,30.3076],[-87.462978,30.3078],[-87.459578,30.3083],[-87.455578,30.3102],[-87.450078,30.3111],[-87.452378,30.300201],[-87.49998,30.287901],[-87.50548,30.287101],[-87.51838,30.283901],[-87.518324,30.280435],[-87.544533,30.275659],[-87.558097,30.274437],[-87.581362,30.269257],[-87.656888,30.249709],[-87.73553,30.240679],[-87.80056,30.229365],[-87.838462,30.227185],[-87.926119,30.230373],[-87.962253,30.229522],[-87.999996,30.225753],[-88.014572,30.222366],[-88.028401,30.221132],[-88.029272,30.222714],[-88.023991,30.23039],[-87.966847,30.235618],[-87.948979,30.256564],[-87.936041,30.261469],[-87.918247,30.253308],[-87.913762,30.247837],[-87.90046,30.241531],[-87.893201,30.239237],[-87.879343,30.23859],[-87.860085,30.240289],[-87.817743,30.254292],[-87.802087,30.253054],[-87.78775,30.254244],[-87.766626,30.262353],[-87.755263,30.277292],[-87.755516,30.291217],[-87.772758,30.311701],[-87.796717,30.324198],[-87.809266,30.332702],[-87.82988,30.353809],[-87.837239,30.369324],[-87.845132,30.377446],[-87.853806,30.378481],[-87.865017,30.38345],[-87.906343,30.40938],[-87.908908,30.41424],[-87.914136,30.446144],[-87.920031,30.470645],[-87.924211,30.4761],[-87.931902,30.4811],[-87.933355,30.487357],[-87.911141,30.525848],[-87.905343,30.537566],[-87.901711,30.550879],[-87.904168,30.565985],[-87.907891,30.573114],[-87.911431,30.576261],[-87.914956,30.585893],[-87.91253,30.615795],[-87.919346,30.63606],[-87.93107,30.652694],[-87.936717,30.657432],[-87.955989,30.658862],[-87.981196,30.67509],[-88.008396,30.684956],[-88.012444,30.68319],[-88.022076,30.673873],[-88.026706,30.66149],[-88.034588,30.653715],[-88.044339,30.652568],[-88.061998,30.644891],[-88.059598,30.619091],[-88.053998,30.612491],[-88.064898,30.588292],[-88.074898,30.578892],[-88.085493,30.563258],[-88.081617,30.546317],[-88.082792,30.528713],[-88.090734,30.52357],[-88.100874,30.50975],[-88.103768,30.500903],[-88.102988,30.493029],[-88.096867,30.471053],[-88.100646,30.46122],[-88.106437,30.452738],[-88.10407,30.4273],[-88.107274,30.377246],[-88.115432,30.35657],[-88.124611,30.341623],[-88.128052,30.338509],[-88.136173,30.320729],[-88.155775,30.327184],[-88.171967,30.324679],[-88.191542,30.317002],[-88.195664,30.321242],[-88.198361,30.338819],[-88.196353,30.343586],[-88.188532,30.345053],[-88.188527,30.348124],[-88.200065,30.362378],[-88.204495,30.362102],[-88.260695,30.382381],[-88.282635,30.382876],[-88.290649,30.370741],[-88.311608,30.368908],[-88.316525,30.369985],[-88.319599,30.380334],[-88.332277,30.38844],[-88.341345,30.38947],[-88.364022,30.388006],[-88.374671,30.385608],[-88.395023,30.369425],[-88.402283,30.510852],[-88.403547,30.5331],[-88.403931,30.543359],[-88.404013,30.54506],[-88.407484,30.622736],[-88.407462,30.631653],[-88.40807,30.63697],[-88.409571,30.668731],[-88.411339,30.706334],[-88.41155,30.712956],[-88.412209,30.730395],[-88.41227,30.731771],[-88.412451,30.735598],[-88.41863,30.866528],[-88.419562,30.875186],[-88.425636,30.998301],[-88.425729,31.000183],[-88.425807,31.001123],[-88.432007,31.114298],[-88.438104,31.23006],[-88.438211,31.231252],[-88.43898,31.246896],[-88.43878,31.252654],[-88.445182,31.355855],[-88.445209,31.355969],[-88.448686,31.420888],[-88.44866,31.421277],[-88.44957,31.435835],[-88.451045,31.459448],[-88.451575,31.481533],[-88.453013,31.500164],[-88.459478,31.621652],[-88.459722,31.624002],[-88.464425,31.697881],[-88.464427,31.697952],[-88.465107,31.722312],[-88.468669,31.790722],[-88.471106,31.850949],[-88.471214,31.851385],[-88.472642,31.875153],[-88.473227,31.893856],[-88.468879,31.930262],[-88.46866,31.933173],[-88.455039,32.039719],[-88.454959,32.040576],[-88.43871,32.172078],[-88.43865,32.172806],[-88.431294,32.227655],[-88.428278,32.250143],[-88.421453,32.30868],[-88.413819,32.373922],[-88.4125,32.380025],[-88.403789,32.44977],[-88.403789,32.449885],[-88.399966,32.485415],[-88.388857,32.578123],[-88.383039,32.626679],[-88.382985,32.626954],[-88.373338,32.711825],[-88.368349,32.747656],[-88.354292,32.87513],[-88.34785,32.929078],[-88.340432,32.991199],[-88.330934,33.073125],[-88.317135,33.184123],[-88.315235,33.203323],[-88.312535,33.220923],[-88.304417,33.288318],[-88.291078,33.399055],[-88.277421,33.512436],[-88.276805,33.516463],[-88.274619,33.534008],[-88.27005,33.570819],[-88.269532,33.572894],[-88.269076,33.576929],[-88.26816,33.58504],[-88.267148,33.591989],[-88.267005,33.594229],[-88.256343,33.682053],[-88.256131,33.68286],[-88.254622,33.69578],[-88.254445,33.698779],[-88.252257,33.719568],[-88.248937,33.744974],[-88.244142,33.781673],[-88.243025,33.79568],[-88.240054,33.810879],[-88.235492,33.847203],[-88.226517,33.911551],[-88.226517,33.911665],[-88.226428,33.912875],[-88.210741,34.029199],[-88.207229,34.058333],[-88.203784,34.086554],[-88.200196,34.115948],[-88.192128,34.175351],[-88.190678,34.190123],[-88.18762,34.204778],[-88.186667,34.220952],[-88.176889,34.293858],[-88.175867,34.302171],[-88.173632,34.321054],[-88.16591,34.380926],[-88.165634,34.383102],[-88.156292,34.463214],[-88.139988,34.581703],[-88.139246,34.587795],[-88.138719,34.589215],[-88.134263,34.62266],[-88.118407,34.724292],[-88.116418,34.746303],[-88.10756,34.811628],[-88.097888,34.892202],[-88.099999,34.894095],[-88.125038,34.902227],[-88.136692,34.907592],[-88.139721,34.909631],[-88.146335,34.914374],[-88.154617,34.922392],[-88.161594,34.933456],[-88.172102,34.955213],[-88.176106,34.962519],[-88.179973,34.967466],[-88.187429,34.974909],[-88.198811,34.991192],[-88.200064,34.995634],[-88.20082,34.997774],[-88.201987,35.005421],[-88.202959,35.008028],[-88.000032,35.005939],[-87.984916,35.005881]]]]}}]} diff --git a/Where/RegionKit/Sources/Resources/regions/us-AR.geojson b/Where/RegionKit/Sources/Resources/regions/us-AR.geojson new file mode 100644 index 00000000..8e345c40 --- /dev/null +++ b/Where/RegionKit/Sources/Resources/regions/us-AR.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"region":"us-AR","name":"Arkansas"},"geometry":{"type":"Polygon","coordinates":[[[-94.042964,33.019219],[-94.043036,33.079485],[-94.04287,33.092727],[-94.043007,33.13389],[-94.043077,33.138162],[-94.043185,33.143476],[-94.042719,33.160291],[-94.042875,33.199785],[-94.042892,33.202666],[-94.042876,33.215219],[-94.04273,33.241823],[-94.043004,33.250128],[-94.04305,33.260904],[-94.04299,33.271227],[-94.04299,33.271243],[-94.043067,33.330498],[-94.043067,33.347351],[-94.043067,33.352097],[-94.043128,33.358757],[-94.042869,33.37117],[-94.043053,33.377716],[-94.042887,33.420225],[-94.042988,33.431024],[-94.042988,33.435824],[-94.043188,33.470324],[-94.043279,33.49103],[-94.043009,33.493039],[-94.043375,33.542315],[-94.043428,33.551425],[-94.04345,33.552253],[-94.04604,33.551321],[-94.050212,33.551083],[-94.051882,33.552585],[-94.056096,33.550726],[-94.061896,33.549764],[-94.06548,33.550909],[-94.069092,33.553406],[-94.072156,33.553864],[-94.073826,33.555834],[-94.073744,33.558285],[-94.07172,33.559682],[-94.067985,33.560961],[-94.066685,33.560954],[-94.06118,33.559159],[-94.05985,33.559249],[-94.056442,33.560998],[-94.055663,33.561887],[-94.056096,33.567252],[-94.056598,33.567825],[-94.061283,33.568805],[-94.066846,33.568909],[-94.067801,33.570131],[-94.06828,33.571967],[-94.068559,33.573563],[-94.069517,33.574162],[-94.070395,33.574561],[-94.071353,33.57484],[-94.071713,33.574601],[-94.072032,33.574162],[-94.072032,33.573523],[-94.072231,33.572605],[-94.07267,33.572234],[-94.082641,33.575492],[-94.088943,33.575322],[-94.09744,33.573719],[-94.100107,33.572568],[-94.103176,33.57035],[-94.112843,33.566991],[-94.119902,33.566999],[-94.120355,33.5655],[-94.120719,33.560555],[-94.122879,33.553112],[-94.123898,33.5521],[-94.126898,33.550647],[-94.128658,33.550952],[-94.131382,33.552934],[-94.133048,33.557953],[-94.134308,33.569209],[-94.135142,33.571033],[-94.136046,33.571388],[-94.136864,33.571],[-94.143402,33.565505],[-94.145239,33.564987],[-94.14852,33.565678],[-94.151456,33.568387],[-94.151755,33.569476],[-94.151257,33.571793],[-94.149506,33.573602],[-94.145669,33.5756],[-94.143024,33.577725],[-94.141852,33.57959],[-94.14216,33.58139],[-94.144383,33.582098],[-94.146048,33.581975],[-94.148732,33.580197],[-94.152626,33.575923],[-94.156782,33.575749],[-94.161277,33.579271],[-94.16201,33.580877],[-94.161082,33.587972],[-94.162266,33.588906],[-94.176327,33.591077],[-94.18088,33.592612],[-94.183913,33.594682],[-94.190891,33.587474],[-94.194465,33.582886],[-94.196536,33.581719],[-94.199752,33.581098],[-94.203588,33.580816],[-94.205788,33.58138],[-94.210967,33.583143],[-94.212997,33.583487],[-94.214431,33.583187],[-94.217198,33.580737],[-94.217408,33.57926],[-94.216141,33.576392],[-94.211329,33.573774],[-94.209665,33.57351],[-94.207405,33.574353],[-94.204265,33.575005],[-94.201106,33.575851],[-94.196367,33.57478],[-94.194399,33.573678],[-94.192483,33.570425],[-94.189884,33.562454],[-94.191333,33.557666],[-94.193248,33.556154],[-94.196395,33.555123],[-94.197817,33.555238],[-94.199486,33.556085],[-94.201237,33.557826],[-94.203594,33.566546],[-94.205634,33.567229],[-94.208078,33.566911],[-94.213604,33.563134],[-94.219221,33.556096],[-94.222921,33.554088],[-94.226392,33.552912],[-94.231844,33.552088],[-94.237904,33.552675],[-94.250197,33.556765],[-94.251569,33.558188],[-94.252283,33.560445],[-94.252331,33.561855],[-94.251108,33.56528],[-94.244366,33.573549],[-94.238868,33.576722],[-94.237975,33.577757],[-94.236836,33.580914],[-94.236363,33.585992],[-94.236972,33.587411],[-94.240179,33.589536],[-94.242777,33.589709],[-94.245932,33.589114],[-94.252656,33.586144],[-94.257801,33.582508],[-94.262755,33.577354],[-94.265669,33.573589],[-94.270853,33.564783],[-94.270979,33.563221],[-94.271998,33.561518],[-94.274473,33.558652],[-94.275601,33.557964],[-94.27909,33.557026],[-94.287572,33.557178],[-94.28944,33.557635],[-94.290901,33.558872],[-94.291687,33.563481],[-94.290372,33.567905],[-94.282172,33.572989],[-94.280605,33.574908],[-94.280849,33.577187],[-94.282648,33.580978],[-94.283582,33.581891],[-94.287025,33.58241],[-94.289129,33.582144],[-94.293258,33.580419],[-94.298392,33.576218],[-94.301023,33.573022],[-94.303577,33.56828],[-94.307181,33.559797],[-94.306215,33.557676],[-94.30641,33.555616],[-94.309582,33.551673],[-94.319492,33.548864],[-94.32366,33.549835],[-94.33059,33.552692],[-94.331833,33.553348],[-94.333203,33.555366],[-94.333895,33.557461],[-94.33438,33.562536],[-94.33494,33.563592],[-94.338422,33.567082],[-94.340577,33.567878],[-94.344023,33.567824],[-94.345513,33.567313],[-94.352433,33.562172],[-94.352653,33.560611],[-94.34729,33.552197],[-94.347383,33.551078],[-94.348945,33.548359],[-94.355945,33.54318],[-94.35897,33.54323],[-94.361351,33.544613],[-94.363297,33.544957],[-94.371598,33.545001],[-94.373393,33.544471],[-94.381667,33.544035],[-94.386086,33.544923],[-94.389515,33.546778],[-94.392573,33.551142],[-94.397957,33.55439],[-94.399144,33.555498],[-94.399393,33.557077],[-94.399227,33.559903],[-94.397398,33.562314],[-94.394656,33.564059],[-94.392357,33.565287],[-94.388052,33.565511],[-94.382534,33.567057],[-94.380091,33.568943],[-94.378561,33.571329],[-94.37776,33.574609],[-94.378076,33.577019],[-94.379649,33.580607],[-94.382887,33.583268],[-94.385927,33.581888],[-94.397342,33.571608],[-94.403342,33.568424],[-94.408901,33.568197],[-94.412175,33.568691],[-94.413155,33.569368],[-94.425982,33.586425],[-94.427578,33.589319],[-94.430039,33.591124],[-94.439518,33.594154],[-94.441537,33.591502],[-94.442364,33.591243],[-94.449112,33.590894],[-94.451622,33.591361],[-94.453996,33.592223],[-94.458232,33.59827],[-94.468086,33.599436],[-94.471152,33.601588],[-94.471974,33.602665],[-94.472166,33.604199],[-94.469451,33.607316],[-94.462336,33.610567],[-94.454769,33.615156],[-94.452961,33.616986],[-94.452325,33.618817],[-94.452711,33.622621],[-94.455255,33.622917],[-94.460286,33.624421],[-94.461129,33.625415],[-94.462736,33.63091],[-94.458817,33.632444],[-94.448451,33.634497],[-94.447514,33.636255],[-94.446871,33.640178],[-94.448637,33.642766],[-94.45482,33.644903],[-94.459198,33.645146],[-94.461453,33.643616],[-94.464186,33.637655],[-94.466075,33.636262],[-94.476415,33.638947],[-94.481313,33.638819],[-94.485875,33.637867],[-94.485577,33.65331],[-94.485528,33.663388],[-94.48452,33.687909],[-94.484616,33.691592],[-94.48384,33.711332],[-94.483874,33.716733],[-94.48287,33.750564],[-94.482862,33.75078],[-94.482777,33.753638],[-94.482682,33.756286],[-94.481842,33.789008],[-94.481543,33.795719],[-94.481361,33.802649],[-94.481355,33.802887],[-94.480574,33.830166],[-94.479954,33.85133],[-94.478994,33.881197],[-94.478842,33.881485],[-94.477387,33.937759],[-94.477318,33.940932],[-94.477038,33.953838],[-94.476957,33.957365],[-94.474895,34.019655],[-94.474896,34.021838],[-94.474896,34.021877],[-94.470292,34.189864],[-94.465847,34.352073],[-94.465425,34.359548],[-94.464176,34.402713],[-94.463816,34.414465],[-94.463671,34.419585],[-94.461149,34.507457],[-94.460058,34.545264],[-94.460052,34.547869],[-94.4575,34.634945],[-94.45753,34.642961],[-94.454576,34.728962],[-94.450233,34.855413],[-94.45014,34.858694],[-94.450065,34.861335],[-94.44963,34.875253],[-94.449058,34.890556],[-94.449086,34.894152],[-94.449253,34.895869],[-94.447889,34.933941],[-94.441232,35.119724],[-94.440754,35.128806],[-94.43955,35.169037],[-94.439509,35.171807],[-94.43886,35.187183],[-94.439056,35.193588],[-94.439084,35.197298],[-94.43847,35.208587],[-94.438247,35.210992],[-94.437578,35.230936],[-94.437774,35.239271],[-94.437578,35.242202],[-94.436595,35.250094],[-94.435812,35.2713],[-94.435706,35.274267],[-94.435316,35.275893],[-94.43528,35.287485],[-94.43517,35.291494],[-94.434115,35.306493],[-94.431815,35.362891],[-94.432015,35.367391],[-94.431515,35.369591],[-94.433415,35.376291],[-94.432685,35.380806],[-94.433742,35.386467],[-94.433915,35.387391],[-94.431215,35.39429],[-94.431822,35.397652],[-94.449696,35.496719],[-94.463318,35.58266],[-94.464097,35.587265],[-94.464457,35.588909],[-94.465272,35.594037],[-94.472647,35.638556],[-94.487585,35.726147],[-94.48821,35.72924],[-94.492932,35.759166],[-94.493362,35.761892],[-94.494549,35.768303],[-94.499045,35.79346],[-94.499647,35.79691],[-94.500526,35.802642],[-94.500764,35.80382],[-94.501162,35.80643],[-94.503011,35.81721],[-94.504438,35.826369],[-94.505642,35.833628],[-94.507631,35.845901],[-94.517571,35.901866],[-94.522658,35.93425],[-94.522658,35.934799],[-94.522634,35.934892],[-94.52291,35.936127],[-94.524344,35.94405],[-94.52464,35.945727],[-94.528162,35.965665],[-94.528305,35.966054],[-94.532071,35.987852],[-94.533646,35.996804],[-94.534852,36.002678],[-94.535724,36.007807],[-94.547715,36.077271],[-94.547871,36.078281],[-94.552184,36.102235],[-94.561165,36.15211],[-94.562803,36.161749],[-94.562828,36.161895],[-94.565655,36.178439],[-94.566588,36.183774],[-94.571253,36.210901],[-94.571806,36.213748],[-94.574395,36.229996],[-94.57488,36.232741],[-94.575071,36.233682],[-94.576003,36.24007],[-94.577899,36.249548],[-94.577883,36.25008],[-94.5862,36.299969],[-94.593397,36.345742],[-94.599723,36.387587],[-94.601984,36.40212],[-94.602623,36.405283],[-94.605408,36.421949],[-94.611609,36.461528],[-94.61383,36.476248],[-94.615311,36.484992],[-94.617919,36.499414],[-94.55929,36.499496],[-94.519478,36.499214],[-94.361203,36.4996],[-94.111473,36.498597],[-94.110673,36.498587],[-94.100252,36.49867],[-94.098588,36.498676],[-94.077089,36.49873],[-93.96392,36.498717],[-93.95919,36.498717],[-93.92184,36.498718],[-93.906128,36.498718],[-93.866758,36.498789],[-93.728022,36.499037],[-93.727552,36.499055],[-93.718893,36.499178],[-93.709956,36.499179],[-93.700171,36.499135],[-93.584282,36.498896],[-93.584281,36.498896],[-93.514512,36.498881],[-93.507408,36.498911],[-93.426989,36.498585],[-93.396079,36.498669],[-93.394718,36.498519],[-93.315337,36.498408],[-93.315324,36.498408],[-93.296117,36.498351],[-93.125969,36.497851],[-93.088988,36.498184],[-93.087635,36.498239],[-93.069512,36.498242],[-93.068455,36.49825],[-93.013742,36.49813],[-92.894336,36.497867],[-92.894001,36.49785],[-92.854049,36.497983],[-92.838876,36.498033],[-92.838621,36.498079],[-92.772341,36.497772],[-92.772333,36.497772],[-92.564238,36.49824],[-92.529128,36.498609],[-92.516836,36.498738],[-92.444129,36.498526],[-92.420383,36.497914],[-92.384927,36.497845],[-92.375159,36.497199],[-92.350277,36.497787],[-92.318415,36.497711],[-92.309424,36.497894],[-92.216412,36.498417],[-92.214143,36.498372],[-92.211449,36.498395],[-92.199396,36.498351],[-92.150295,36.498634],[-92.137741,36.498706],[-92.120415,36.498863],[-92.120306,36.498864],[-92.098356,36.498803],[-92.074934,36.498761],[-92.057178,36.49867],[-92.055789,36.49867],[-92.028847,36.498642],[-92.019375,36.498524],[-91.988751,36.498498],[-91.985802,36.498431],[-91.865995,36.498783],[-91.864385,36.498789],[-91.805981,36.498987],[-91.80204,36.498963],[-91.7995,36.498952],[-91.784713,36.499074],[-91.766111,36.499114],[-91.726663,36.499209],[-91.687615,36.499397],[-91.686026,36.499374],[-91.672343,36.499463],[-91.64259,36.499335],[-91.631439,36.499198],[-91.601317,36.499343],[-91.596213,36.499162],[-91.549163,36.499161],[-91.539359,36.499116],[-91.53687,36.499156],[-91.529774,36.499022],[-91.50014,36.498812],[-91.450004,36.497562],[-91.446284,36.497469],[-91.436502,36.497377],[-91.433298,36.497262],[-91.407261,36.497123],[-91.407137,36.497112],[-91.405141,36.497165],[-91.404915,36.49712],[-91.227398,36.497617],[-91.218645,36.497564],[-91.21736,36.497511],[-91.126529,36.497712],[-91.096277,36.497893],[-91.09588,36.49787],[-91.017974,36.498062],[-91.008558,36.49827],[-90.963063,36.498418],[-90.960648,36.498426],[-90.87922,36.498378],[-90.876867,36.498423],[-90.876567,36.498313],[-90.873775,36.498074],[-90.850434,36.498548],[-90.784398,36.498524],[-90.782454,36.498523],[-90.765672,36.498494],[-90.711226,36.498318],[-90.693005,36.49851],[-90.653246,36.498488],[-90.648494,36.498447],[-90.612554,36.498559],[-90.60545,36.498459],[-90.5943,36.498459],[-90.585342,36.498497],[-90.57618,36.498446],[-90.576112,36.498446],[-90.50016,36.498399],[-90.495027,36.498371],[-90.494575,36.498368],[-90.339892,36.498213],[-90.228943,36.497771],[-90.220732,36.497858],[-90.220702,36.497858],[-90.217323,36.497797],[-90.193943,36.497823],[-90.152481,36.497952],[-90.154409,36.496832],[-90.153871,36.495344],[-90.155012,36.493648],[-90.157358,36.494223],[-90.159048,36.493734],[-90.159305,36.492446],[-90.158568,36.491574],[-90.155997,36.490385],[-90.156369,36.487748],[-90.159462,36.487609],[-90.159305,36.485834],[-90.157136,36.484317],[-90.15946,36.481343],[-90.159376,36.480084],[-90.158838,36.479558],[-90.148329,36.476168],[-90.145382,36.47651],[-90.143683,36.476029],[-90.142269,36.472138],[-90.142222,36.470554],[-90.146327,36.46952],[-90.152888,36.47093],[-90.1557,36.466103],[-90.155804,36.463555],[-90.14462,36.462789],[-90.143849,36.46325],[-90.143162,36.46368],[-90.142475,36.463422],[-90.14153,36.462993],[-90.141101,36.461791],[-90.141568,36.460766],[-90.141399,36.459874],[-90.140041,36.457883],[-90.137323,36.455411],[-90.136029,36.442941],[-90.133993,36.437906],[-90.134136,36.436602],[-90.137565,36.431913],[-90.139039,36.431273],[-90.14272,36.43116],[-90.143798,36.428483],[-90.144139,36.425806],[-90.143743,36.424433],[-90.139499,36.421457],[-90.137771,36.421205],[-90.13559,36.422897],[-90.134797,36.42324],[-90.134231,36.422827],[-90.134915,36.416902],[-90.136218,36.415346],[-90.138653,36.414547],[-90.138512,36.413952],[-90.135002,36.413721],[-90.131038,36.415069],[-90.128719,36.411659],[-90.121445,36.410931],[-90.115839,36.408235],[-90.114677,36.406039],[-90.109495,36.404073],[-90.103644,36.40472],[-90.094353,36.403963],[-90.080426,36.400763],[-90.078671,36.399116],[-90.076689,36.395867],[-90.074227,36.393304],[-90.072897,36.393007],[-90.068907,36.38866],[-90.064514,36.382085],[-90.063891,36.372982],[-90.066297,36.3593],[-90.070653,36.356097],[-90.075376,36.350148],[-90.077723,36.349484],[-90.077695,36.348478],[-90.074668,36.344794],[-90.074074,36.342895],[-90.075064,36.341774],[-90.077185,36.341339],[-90.078231,36.336511],[-90.075884,36.335184],[-90.075572,36.33404],[-90.076986,36.330791],[-90.07888,36.327977],[-90.081425,36.325644],[-90.081961,36.322097],[-90.079981,36.318619],[-90.079077,36.318414],[-90.077296,36.319329],[-90.076504,36.319237],[-90.069266,36.313152],[-90.06398,36.303038],[-90.070085,36.29471],[-90.0778,36.288349],[-90.075934,36.281485],[-90.083731,36.272332],[-90.086471,36.271531],[-90.091247,36.271256],[-90.100175,36.268988],[-90.105231,36.266835],[-90.110317,36.26697],[-90.112945,36.266557],[-90.114922,36.265595],[-90.118219,36.253491],[-90.124476,36.244198],[-90.125958,36.243416],[-90.129716,36.243235],[-90.130565,36.242092],[-90.130114,36.240307],[-90.127264,36.236347],[-90.12466,36.235549],[-90.124673,36.233787],[-90.126366,36.229367],[-90.132356,36.226442],[-90.134785,36.226397],[-90.138089,36.227245],[-90.14224,36.227522],[-90.151422,36.219174],[-90.152497,36.215582],[-90.15614,36.213706],[-90.157383,36.213821],[-90.159415,36.215424],[-90.161166,36.215767],[-90.167745,36.21332],[-90.173281,36.210301],[-90.179695,36.208262],[-90.182853,36.205108],[-90.18579,36.204674],[-90.188189,36.20536],[-90.190053,36.201493],[-90.190415,36.201364],[-90.193017,36.20044],[-90.194259,36.200692],[-90.195247,36.200257],[-90.197167,36.196002],[-90.199905,36.196848],[-90.201655,36.19607],[-90.201712,36.193187],[-90.200582,36.192181],[-90.204449,36.18694],[-90.21128,36.183392],[-90.213509,36.183232],[-90.21574,36.184582],[-90.220425,36.184764],[-90.229339,36.17364],[-90.231284,36.169246],[-90.230324,36.167072],[-90.23537,36.159153],[-90.231445,36.153868],[-90.231386,36.147348],[-90.235585,36.139474],[-90.240887,36.137321],[-90.244317,36.136502],[-90.245961,36.132857],[-90.248808,36.129835],[-90.253198,36.127383],[-90.255596,36.127086],[-90.258755,36.127591],[-90.260645,36.127409],[-90.266256,36.120559],[-90.272378,36.11809],[-90.278724,36.117406],[-90.293109,36.114368],[-90.294492,36.112949],[-90.298413,36.106748],[-90.297878,36.104826],[-90.297991,36.103201],[-90.29991,36.098236],[-90.306255,36.094758],[-90.312373,36.094507],[-90.319168,36.089976],[-90.320662,36.087138],[-90.32007,36.081234],[-90.318745,36.079313],[-90.318378,36.076658],[-90.318491,36.075514],[-90.320746,36.071326],[-90.333261,36.067504],[-90.335466,36.061714],[-90.337146,36.047754],[-90.339343,36.047112],[-90.347908,36.041939],[-90.34909,36.040131],[-90.348297,36.035074],[-90.350974,36.031572],[-90.351818,36.028436],[-90.35131,36.02688],[-90.351732,36.025347],[-90.35739,36.01825],[-90.36443,36.013625],[-90.37789,35.995683],[-90.368718,35.995812],[-90.342616,35.995895],[-90.339434,35.996033],[-90.292376,35.996397],[-90.288947,35.996418],[-90.2888,35.996419],[-90.158812,35.997375],[-90.127331,35.997635],[-90.12635,35.997596],[-90.103842,35.998143],[-89.972563,35.998994],[-89.965327,35.998813],[-89.961075,35.999135],[-89.959893,35.99902],[-89.959377,35.99902],[-89.959375,35.99902],[-89.901183,35.999365],[-89.896508,35.999432],[-89.875586,35.999562],[-89.875085,35.999578],[-89.87459,35.999575],[-89.86901,35.99964],[-89.770255,36.000524],[-89.769973,36.000536],[-89.737648,36.000567],[-89.737564,36.000522],[-89.733095,36.000608],[-89.731218,35.996879],[-89.728442,35.993568],[-89.719168,35.985976],[-89.718801,35.985015],[-89.71997,35.97462],[-89.719679,35.970939],[-89.718796,35.968283],[-89.714565,35.963034],[-89.710227,35.959826],[-89.699871,35.954063],[-89.686924,35.947716],[-89.676621,35.940539],[-89.671117,35.935795],[-89.656147,35.92581],[-89.652279,35.921462],[-89.65034,35.917795],[-89.646711,35.908008],[-89.644838,35.904351],[-89.64727,35.89492],[-89.65068,35.89088],[-89.655452,35.886912],[-89.657771,35.88575],[-89.665672,35.883301],[-89.669553,35.883281],[-89.677012,35.88572],[-89.68182,35.88999],[-89.688141,35.896946],[-89.714934,35.906247],[-89.741241,35.906749],[-89.756312,35.89806],[-89.765689,35.891299],[-89.768743,35.886663],[-89.771726,35.879724],[-89.772855,35.876244],[-89.773564,35.871697],[-89.773294,35.867426],[-89.772467,35.865098],[-89.769413,35.861558],[-89.764343,35.858313],[-89.749424,35.852955],[-89.729517,35.847632],[-89.709261,35.838911],[-89.704351,35.835726],[-89.702883,35.834153],[-89.701407,35.830985],[-89.701045,35.828227],[-89.70175,35.824238],[-89.703875,35.820281],[-89.706085,35.81826],[-89.719915,35.811557],[-89.723426,35.809382],[-89.734044,35.806174],[-89.743025,35.805817],[-89.757874,35.810415],[-89.765442,35.811214],[-89.765457,35.809513],[-89.781793,35.805084],[-89.796324,35.792807],[-89.799331,35.788503],[-89.797053,35.782648],[-89.797231,35.780117],[-89.799249,35.775439],[-89.80928,35.764379],[-89.812891,35.761154],[-89.814456,35.759941],[-89.821216,35.756716],[-89.824923,35.755715],[-89.832895,35.754905],[-89.846343,35.755732],[-89.857707,35.750077],[-89.863874,35.747592],[-89.872845,35.741299],[-89.877256,35.741369],[-89.883535,35.744984],[-89.888163,35.750077],[-89.905538,35.759063],[-89.909996,35.759396],[-89.913132,35.757302],[-89.915491,35.754917],[-89.950278,35.738493],[-89.953983,35.73616],[-89.956254,35.733386],[-89.958687,35.727706],[-89.958882,35.723834],[-89.956933,35.711677],[-89.956589,35.695486],[-89.955753,35.690621],[-89.953303,35.686418],[-89.950161,35.682433],[-89.9427,35.675121],[-89.937383,35.665711],[-89.931036,35.660044],[-89.922749,35.655293],[-89.915427,35.652782],[-89.906147,35.651145],[-89.898916,35.650904],[-89.89051,35.652408],[-89.886979,35.653637],[-89.884932,35.655107],[-89.882893,35.657463],[-89.878534,35.66482],[-89.877158,35.666136],[-89.872078,35.668487],[-89.864782,35.670385],[-89.861277,35.670064],[-89.858935,35.66906],[-89.85351,35.663034],[-89.851176,35.657432],[-89.850863,35.650208],[-89.851825,35.644262],[-89.85389,35.638261],[-89.856619,35.634444],[-89.863875,35.630788],[-89.876548,35.626653],[-89.894346,35.615535],[-89.896999,35.614882],[-89.899789,35.615061],[-89.906029,35.616145],[-89.910687,35.617536],[-89.912172,35.617055],[-89.919619,35.612236],[-89.9325,35.607865],[-89.945405,35.601611],[-89.951147,35.597491],[-89.954145,35.594264],[-89.956749,35.590511],[-89.957896,35.587261],[-89.957924,35.585499],[-89.95669,35.581426],[-89.954196,35.57605],[-89.946911,35.56358],[-89.944754,35.560308],[-89.941393,35.556555],[-89.929101,35.551545],[-89.924145,35.550561],[-89.917424,35.550308],[-89.914177,35.549713],[-89.910789,35.547515],[-89.909923,35.544037],[-89.910885,35.541072],[-89.910787,35.538718],[-89.909205,35.538164],[-89.908826,35.538031],[-89.905582,35.536774],[-89.904392,35.535701],[-89.903882,35.534175],[-89.90766,35.522944],[-89.909022,35.520548],[-89.911931,35.51741],[-89.9154,35.515119],[-89.919331,35.51387],[-89.923161,35.514428],[-89.933614,35.518538],[-89.945026,35.519388],[-89.94801,35.52009],[-89.951248,35.521866],[-89.956347,35.525594],[-89.957715,35.527192],[-89.957739,35.530125],[-89.95578,35.533214],[-89.955641,35.534518],[-89.956706,35.539369],[-89.958498,35.541703],[-89.97631,35.553872],[-89.989363,35.560043],[-89.992975,35.560774],[-89.998996,35.56116],[-90.008293,35.560065],[-90.011262,35.559105],[-90.017312,35.555996],[-90.023903,35.556336],[-90.02862,35.555249],[-90.032938,35.55344],[-90.037615,35.550329],[-90.039744,35.548041],[-90.041962,35.537468],[-90.044748,35.531657],[-90.046227,35.529592],[-90.04909,35.522257],[-90.050277,35.515275],[-90.048519,35.504357],[-90.045805,35.496533],[-90.043517,35.492298],[-90.034976,35.480705],[-90.020386,35.470257],[-90.018998,35.467803],[-90.018842,35.464816],[-90.022064,35.457375],[-90.024247,35.45426],[-90.026604,35.447788],[-90.026899,35.444869],[-90.026584,35.440103],[-90.02737,35.43789],[-90.02931,35.435245],[-90.031267,35.431576],[-90.031584,35.427662],[-90.04057,35.422925],[-90.04264,35.421237],[-90.044216,35.419231],[-90.045306,35.415435],[-90.046598,35.412966],[-90.056644,35.403786],[-90.045104,35.397317],[-90.041563,35.39662],[-90.044856,35.392964],[-90.054451,35.38965],[-90.054585,35.389604],[-90.069283,35.408306],[-90.062018,35.41518],[-90.070549,35.423291],[-90.074082,35.433983],[-90.074063,35.439611],[-90.071327,35.450338],[-90.067206,35.460957],[-90.067138,35.464833],[-90.067798,35.466224],[-90.072154,35.470752],[-90.080128,35.476844],[-90.085009,35.478835],[-90.098719,35.478595],[-90.101759,35.476889],[-90.107723,35.476935],[-90.114412,35.472467],[-90.11839,35.468791],[-90.120619,35.465741],[-90.123142,35.459853],[-90.129448,35.441931],[-90.14018,35.436484],[-90.169002,35.421853],[-90.170599,35.418352],[-90.1707,35.410065],[-90.179265,35.385194],[-90.178341,35.382092],[-90.172388,35.377681],[-90.166246,35.374745],[-90.144924,35.374633],[-90.13551,35.376668],[-90.143475,35.387602],[-90.14587,35.395079],[-90.146191,35.399468],[-90.145085,35.403757],[-90.143448,35.406671],[-90.14166,35.408563],[-90.137881,35.41151],[-90.135125,35.412977],[-90.130475,35.413745],[-90.116902,35.411692],[-90.112504,35.410153],[-90.110543,35.408595],[-90.106775,35.403339],[-90.104842,35.401487],[-90.09665,35.395257],[-90.093589,35.393333],[-90.087743,35.390838],[-90.07993,35.385272],[-90.077971,35.384501],[-90.074992,35.384152],[-90.083824,35.368798],[-90.087903,35.36327],[-90.090492,35.360886],[-90.093492,35.360486],[-90.096825,35.357216],[-90.100294,35.351619],[-90.107312,35.343143],[-90.108817,35.342587],[-90.110293,35.342786],[-90.103862,35.332405],[-90.106824,35.324618],[-90.109093,35.304987],[-90.117219,35.303384],[-90.121864,35.304535],[-90.123707,35.30453],[-90.132393,35.300488],[-90.139504,35.298828],[-90.149794,35.303288],[-90.153394,35.302588],[-90.158913,35.300637],[-90.161225,35.298951],[-90.163812,35.296115],[-90.165194,35.293188],[-90.168871,35.281997],[-90.168794,35.279088],[-90.166594,35.274588],[-90.158865,35.262577],[-90.152094,35.255989],[-90.140394,35.252289],[-90.132116,35.25318],[-90.123593,35.254989],[-90.116493,35.255788],[-90.110106,35.255456],[-90.105093,35.254288],[-90.09949,35.251393],[-90.097947,35.249983],[-90.090892,35.242189],[-90.086322,35.235719],[-90.082939,35.231824],[-90.07875,35.227806],[-90.076879,35.224405],[-90.07492,35.220452],[-90.074155,35.21707],[-90.074271,35.211504],[-90.074547,35.211214],[-90.07682,35.208817],[-90.081173,35.208153],[-90.08412,35.210423],[-90.088597,35.212376],[-90.093285,35.203282],[-90.096466,35.194848],[-90.097408,35.194794],[-90.109076,35.199105],[-90.116182,35.198498],[-90.117542,35.19057],[-90.117393,35.18789],[-90.114214,35.181691],[-90.111091,35.178639],[-90.109177,35.178451],[-90.108075,35.174571],[-90.105525,35.170695],[-90.103216,35.16798],[-90.099777,35.164474],[-90.096549,35.160976],[-90.092944,35.157228],[-90.090371,35.15627],[-90.069402,35.153646],[-90.066958,35.151839],[-90.066482,35.151074],[-90.064612,35.140621],[-90.065392,35.137691],[-90.066591,35.13599],[-90.071192,35.131591],[-90.08342,35.12167],[-90.08671,35.119779],[-90.09061,35.118287],[-90.100593,35.116691],[-90.109393,35.118891],[-90.139024,35.133995],[-90.142794,35.135091],[-90.144691,35.134984],[-90.155994,35.130991],[-90.160058,35.12883],[-90.165328,35.125228],[-90.173603,35.118073],[-90.176843,35.112088],[-90.181387,35.091401],[-90.195133,35.061793],[-90.196583,35.056137],[-90.197146,35.050731],[-90.19686,35.043667],[-90.196095,35.0374],[-90.200124,35.032813],[-90.209397,35.026546],[-90.214382,35.025795],[-90.216258,35.026049],[-90.224791,35.029961],[-90.230611,35.03132],[-90.256495,35.034493],[-90.262396,35.036393],[-90.263396,35.037493],[-90.263796,35.039593],[-90.265296,35.040293],[-90.291996,35.041793],[-90.295596,35.040093],[-90.297296,35.037893],[-90.300697,35.028793],[-90.306897,35.018194],[-90.309877,35.00975],[-90.310298,35.004295],[-90.309297,34.995694],[-90.304425,34.984939],[-90.302471,34.982077],[-90.296422,34.976346],[-90.293083,34.974574],[-90.287239,34.972531],[-90.282234,34.967661],[-90.27824,34.965077],[-90.259663,34.957793],[-90.253969,34.954988],[-90.250056,34.951196],[-90.247832,34.947916],[-90.246116,34.944316],[-90.244476,34.937596],[-90.244725,34.921031],[-90.246546,34.914168],[-90.248308,34.909739],[-90.250095,34.90732],[-90.279364,34.890077],[-90.301957,34.880053],[-90.310005,34.875097],[-90.313476,34.871698],[-90.304419,34.860589],[-90.303698,34.859704],[-90.302523,34.856471],[-90.302669,34.854366],[-90.303944,34.850517],[-90.307384,34.846195],[-90.311312,34.844223],[-90.319198,34.844854],[-90.323067,34.846391],[-90.332298,34.85253],[-90.34038,34.860357],[-90.348218,34.855113],[-90.352174,34.853196],[-90.379837,34.845931],[-90.401633,34.835305],[-90.407991,34.832998],[-90.410666,34.832028],[-90.414864,34.831846],[-90.422355,34.833675],[-90.423879,34.834606],[-90.428754,34.8414],[-90.430828,34.848982],[-90.431741,34.855051],[-90.431722,34.858913],[-90.429115,34.865087],[-90.42898,34.867168],[-90.430096,34.871212],[-90.436561,34.882731],[-90.438313,34.884581],[-90.441254,34.886313],[-90.444806,34.887994],[-90.453916,34.891122],[-90.459819,34.891946],[-90.466154,34.890989],[-90.475686,34.88631],[-90.479872,34.883264],[-90.483969,34.877176],[-90.484558,34.875096],[-90.485038,34.869252],[-90.483876,34.861333],[-90.481955,34.857805],[-90.474403,34.849495],[-90.463795,34.834923],[-90.456935,34.823383],[-90.456761,34.820395],[-90.459024,34.81444],[-90.465367,34.810592],[-90.470544,34.805036],[-90.47228,34.802465],[-90.473877,34.798399],[-90.47459,34.7932],[-90.473527,34.788835],[-90.470411,34.780877],[-90.458883,34.764267],[-90.453038,34.753352],[-90.45117,34.747787],[-90.451257,34.744485],[-90.452479,34.739898],[-90.454968,34.735557],[-90.45795,34.732946],[-90.469897,34.72703],[-90.479704,34.724793],[-90.488865,34.723731],[-90.501667,34.724236],[-90.514735,34.729656],[-90.518317,34.73279],[-90.521004,34.738612],[-90.5219,34.743537],[-90.5219,34.748463],[-90.520556,34.753388],[-90.516522,34.758333],[-90.505494,34.764568],[-90.501325,34.769931],[-90.500994,34.771187],[-90.501523,34.774795],[-90.503679,34.780136],[-90.512761,34.796488],[-90.514706,34.801768],[-90.522892,34.802265],[-90.53133,34.800584],[-90.53651,34.798572],[-90.540222,34.795768],[-90.544067,34.791159],[-90.547612,34.784589],[-90.54817,34.78189],[-90.547859,34.779194],[-90.546225,34.773443],[-90.542631,34.764396],[-90.542695,34.752626],[-90.543811,34.749277],[-90.54582,34.745929],[-90.547606,34.744367],[-90.550284,34.742804],[-90.553186,34.741912],[-90.556308,34.741541],[-90.559895,34.740788],[-90.563544,34.738671],[-90.565437,34.736536],[-90.56724,34.733463],[-90.568172,34.727384],[-90.568081,34.724802],[-90.567482,34.723292],[-90.565646,34.721053],[-90.546053,34.702076],[-90.538974,34.698783],[-90.529211,34.696819],[-90.522084,34.696605],[-90.509847,34.698003],[-90.496552,34.700578],[-90.486966,34.701477],[-90.480041,34.701515],[-90.475194,34.700826],[-90.471185,34.699066],[-90.467064,34.695643],[-90.463734,34.691093],[-90.462552,34.687576],[-90.462816,34.684074],[-90.466041,34.674312],[-90.469821,34.669436],[-90.479718,34.659934],[-90.48789,34.654881],[-90.496639,34.648117],[-90.503061,34.64079],[-90.5081,34.636682],[-90.517168,34.630928],[-90.524481,34.628504],[-90.532188,34.627487],[-90.537165,34.627767],[-90.543696,34.629559],[-90.547614,34.631656],[-90.551761,34.636484],[-90.554129,34.640871],[-90.555104,34.646236],[-90.553962,34.655018],[-90.552642,34.659707],[-90.550158,34.663445],[-90.539409,34.670902],[-90.538061,34.673232],[-90.538856,34.682463],[-90.540074,34.684981],[-90.542761,34.688781],[-90.548071,34.693169],[-90.549856,34.695478],[-90.552317,34.697087],[-90.555627,34.697946],[-90.563391,34.695876],[-90.567334,34.693371],[-90.573106,34.686425],[-90.578745,34.683844],[-90.582006,34.680235],[-90.588419,34.670963],[-90.588536,34.668646],[-90.587323,34.665407],[-90.586336,34.651689],[-90.585031,34.647072],[-90.583088,34.64361],[-90.58302,34.642679],[-90.58344,34.641389],[-90.588255,34.626616],[-90.587224,34.615732],[-90.581693,34.604227],[-90.574787,34.595243],[-90.570133,34.587457],[-90.564866,34.582602],[-90.557666,34.576929],[-90.549244,34.568101],[-90.545891,34.563257],[-90.540951,34.550853],[-90.540736,34.548085],[-90.541282,34.545331],[-90.543633,34.540378],[-90.545728,34.53775],[-90.555276,34.531012],[-90.569347,34.524867],[-90.578493,34.516296],[-90.581062,34.512818],[-90.58353,34.504085],[-90.586525,34.500103],[-90.588942,34.491097],[-90.589921,34.484793],[-90.588346,34.470562],[-90.585477,34.461247],[-90.583717,34.458829],[-90.576893,34.454351],[-90.573959,34.451875],[-90.56733,34.440383],[-90.565826,34.434379],[-90.566505,34.429528],[-90.568397,34.424805],[-90.571145,34.420319],[-90.575336,34.415152],[-90.580677,34.410554],[-90.613944,34.390723],[-90.61848,34.388767],[-90.631586,34.387193],[-90.63494,34.386363],[-90.641398,34.383869],[-90.658542,34.375705],[-90.655346,34.371846],[-90.666788,34.35582],[-90.666862,34.348569],[-90.660404,34.33576],[-90.657371,34.327287],[-90.657488,34.322231],[-90.661395,34.315398],[-90.669343,34.31302],[-90.678097,34.313031],[-90.686003,34.315771],[-90.690005,34.318584],[-90.693129,34.32257],[-90.693686,34.32968],[-90.691551,34.338618],[-90.68162,34.35291],[-90.680512,34.362529],[-90.681921,34.365998],[-90.683222,34.368817],[-90.690497,34.368606],[-90.700147,34.365855],[-90.712088,34.363805],[-90.724909,34.363659],[-90.729131,34.364206],[-90.741616,34.367225],[-90.750107,34.367919],[-90.756197,34.367256],[-90.762085,34.364754],[-90.765764,34.362109],[-90.767061,34.360271],[-90.768445,34.353469],[-90.767732,34.346872],[-90.767108,34.345264],[-90.765174,34.342818],[-90.748942,34.331045],[-90.744713,34.324872],[-90.742694,34.320263],[-90.74061,34.313469],[-90.740889,34.306538],[-90.743082,34.302257],[-90.752681,34.289266],[-90.755271,34.286848],[-90.765165,34.280524],[-90.772266,34.279943],[-90.797569,34.282402],[-90.802928,34.282465],[-90.812829,34.279438],[-90.820919,34.27784],[-90.824478,34.27624],[-90.828267,34.27365],[-90.830612,34.271245],[-90.832407,34.267491],[-90.836972,34.250104],[-90.839981,34.236114],[-90.840128,34.230104],[-90.839509,34.226201],[-90.840009,34.223077],[-90.842151,34.21688],[-90.844824,34.210999],[-90.847808,34.20653],[-90.852764,34.209403],[-90.856708,34.211598],[-90.867064,34.212141],[-90.87912,34.21545],[-90.89456,34.22438],[-90.898286,34.227253],[-90.900078,34.229621],[-90.904279,34.24096],[-90.905934,34.243529],[-90.907082,34.244492],[-90.912396,34.245932],[-90.923152,34.24653],[-90.929015,34.244541],[-90.933511,34.240218],[-90.936404,34.236698],[-90.937152,34.23411],[-90.936988,34.227041],[-90.93522,34.21905],[-90.93268,34.214824],[-90.916048,34.196916],[-90.9118,34.193897],[-90.891871,34.184766],[-90.887884,34.18198],[-90.882701,34.184364],[-90.877475,34.185633],[-90.87383,34.18322],[-90.869651,34.182965],[-90.864566,34.183882],[-90.859087,34.186288],[-90.8556,34.18688],[-90.847108,34.186053],[-90.838205,34.183804],[-90.828388,34.184784],[-90.816572,34.183023],[-90.812374,34.180767],[-90.810016,34.178437],[-90.808685,34.175878],[-90.807164,34.16746],[-90.807813,34.161474],[-90.810884,34.155903],[-90.815878,34.149879],[-90.822593,34.144054],[-90.825708,34.142011],[-90.830285,34.139813],[-90.836099,34.137876],[-90.847168,34.136884],[-90.853471,34.137511],[-90.86458,34.140555],[-90.86788,34.142146],[-90.876836,34.14813],[-90.883073,34.151502],[-90.894385,34.160953],[-90.903577,34.164332],[-90.91001,34.165508],[-90.938064,34.148754],[-90.9543,34.138498],[-90.959317,34.13035],[-90.958467,34.125105],[-90.955974,34.120125],[-90.955004,34.118973],[-90.948514,34.111269],[-90.946323,34.109374],[-90.921273,34.093958],[-90.918395,34.093054],[-90.914066,34.092756],[-90.90113,34.094667],[-90.893526,34.097795],[-90.888085,34.09781],[-90.882628,34.096615],[-90.878912,34.094573],[-90.876606,34.092911],[-90.871923,34.086652],[-90.870461,34.082739],[-90.870528,34.080516],[-90.87194,34.076362],[-90.874541,34.072041],[-90.882115,34.063903],[-90.886351,34.058564],[-90.887837,34.055403],[-90.888627,34.052419],[-90.889058,34.046362],[-90.887394,34.039845],[-90.886991,34.035094],[-90.887413,34.032505],[-90.888956,34.029788],[-90.89242,34.02686],[-90.899467,34.023796],[-90.914642,34.021885],[-90.922017,34.023216],[-90.923745,34.023143],[-90.934896,34.019262],[-90.942662,34.01805],[-90.950311,34.017822],[-90.958456,34.020254],[-90.970726,34.02162],[-90.976918,34.021335],[-90.982742,34.020469],[-90.987948,34.019038],[-90.979945,34.000106],[-90.977489,33.996554],[-90.970947,33.991885],[-90.961548,33.979945],[-90.961222,33.976151],[-90.96372,33.967688],[-90.965187,33.965461],[-90.967632,33.963324],[-90.970856,33.961868],[-90.976864,33.960503],[-90.983359,33.960186],[-90.987653,33.960793],[-90.994856,33.963118],[-91.000108,33.966428],[-91.002986,33.970902],[-91.004981,33.977011],[-91.01361,33.994495],[-91.01889,34.003151],[-91.033765,33.995323],[-91.039589,33.989297],[-91.042751,33.986811],[-91.048367,33.985078],[-91.062264,33.985083],[-91.071203,33.984473],[-91.075378,33.983586],[-91.079254,33.982101],[-91.083187,33.979865],[-91.087921,33.975335],[-91.089119,33.972653],[-91.089756,33.969721],[-91.089787,33.966004],[-91.088696,33.961334],[-91.086758,33.95827],[-91.084095,33.956179],[-91.078496,33.95406],[-91.046725,33.947406],[-91.035961,33.943758],[-91.020097,33.937127],[-91.012994,33.932276],[-91.010318,33.929352],[-91.01004,33.927003],[-91.010831,33.925552],[-91.017481,33.919083],[-91.026382,33.90798],[-91.036674,33.898531],[-91.055309,33.883035],[-91.061247,33.877505],[-91.070883,33.866714],[-91.072798,33.862396],[-91.073011,33.857449],[-91.071195,33.849539],[-91.067511,33.840443],[-91.064977,33.837126],[-91.056692,33.828935],[-91.052819,33.824181],[-91.049679,33.818729],[-91.046849,33.815365],[-91.042448,33.812855],[-91.025173,33.805953],[-91.020098,33.804447],[-91.007767,33.802591],[-91.000107,33.799549],[-90.991747,33.792597],[-90.989299,33.788016],[-90.988466,33.78453],[-90.989444,33.780576],[-90.99122,33.776791],[-90.993842,33.773601],[-91.000106,33.769165],[-91.01277,33.764675],[-91.023285,33.762991],[-91.026782,33.763642],[-91.053886,33.778701],[-91.060524,33.77764],[-91.08551,33.77641],[-91.088996,33.775801],[-91.107318,33.770619],[-91.111494,33.774568],[-91.117836,33.779026],[-91.123466,33.782106],[-91.128222,33.783447],[-91.132185,33.78342],[-91.133854,33.782814],[-91.137351,33.779923],[-91.139869,33.777117],[-91.14201,33.77382],[-91.145112,33.76734],[-91.144812,33.763996],[-91.143634,33.762095],[-91.141304,33.760835],[-91.140756,33.759735],[-91.141553,33.755957],[-91.144571,33.751607],[-91.144539,33.749338],[-91.143287,33.747141],[-91.146523,33.736503],[-91.146618,33.732456],[-91.145792,33.728924],[-91.144732,33.726803],[-91.132338,33.714246],[-91.125527,33.70878],[-91.117733,33.705342],[-91.107646,33.704679],[-91.101101,33.705007],[-91.089873,33.707364],[-91.075389,33.714403],[-91.06829,33.716477],[-91.063752,33.715892],[-91.059891,33.714816],[-91.055562,33.712486],[-91.046778,33.706313],[-91.041261,33.699933],[-91.039025,33.696595],[-91.03715,33.692907],[-91.03612,33.689113],[-91.033366,33.688773],[-91.030402,33.687766],[-91.030332,33.681622],[-91.03146,33.678142],[-91.034565,33.673018],[-91.03684,33.671316],[-91.046412,33.668272],[-91.050523,33.668064],[-91.059182,33.6664],[-91.06711,33.662689],[-91.078507,33.658283],[-91.084126,33.657322],[-91.088202,33.657387],[-91.09404,33.658351],[-91.10098,33.660551],[-91.13045,33.674522],[-91.133416,33.67679],[-91.144188,33.689596],[-91.160866,33.707096],[-91.162464,33.70684],[-91.165846,33.705133],[-91.17573,33.703116],[-91.190113,33.70186],[-91.200712,33.701535],[-91.205377,33.700819],[-91.212077,33.698249],[-91.22057,33.692923],[-91.225279,33.687749],[-91.227857,33.683073],[-91.229015,33.677543],[-91.228228,33.671326],[-91.226537,33.668665],[-91.223001,33.664794],[-91.219048,33.661503],[-91.211284,33.658526],[-91.185455,33.653604],[-91.178311,33.651109],[-91.171168,33.647766],[-91.164212,33.643278],[-91.150499,33.633013],[-91.139209,33.625658],[-91.134389,33.619512],[-91.130902,33.610919],[-91.130445,33.606034],[-91.131588,33.59945],[-91.13245,33.596989],[-91.134043,33.594489],[-91.138418,33.590896],[-91.152148,33.582721],[-91.157429,33.581372],[-91.160755,33.581352],[-91.175979,33.582968],[-91.17822,33.582607],[-91.181068,33.58152],[-91.188942,33.576225],[-91.198285,33.572061],[-91.203151,33.570758],[-91.221466,33.568166],[-91.224121,33.567369],[-91.228489,33.564667],[-91.230858,33.561372],[-91.231418,33.560593],[-91.232537,33.557454],[-91.232295,33.552788],[-91.229834,33.547047],[-91.226325,33.5412],[-91.219297,33.532364],[-91.215671,33.529423],[-91.187367,33.510552],[-91.184612,33.507364],[-91.182901,33.502379],[-91.18307,33.498613],[-91.185637,33.496399],[-91.189375,33.493005],[-91.195634,33.488468],[-91.199593,33.483125],[-91.205661,33.473553],[-91.206753,33.470308],[-91.208535,33.468606],[-91.215508,33.46478],[-91.220192,33.463045],[-91.223338,33.462764],[-91.231661,33.4571],[-91.232587,33.453958],[-91.233422,33.444038],[-91.23431,33.4423],[-91.235928,33.440611],[-91.235181,33.438972],[-91.217374,33.434699],[-91.210275,33.433796],[-91.206807,33.433846],[-91.194658,33.436358],[-91.186979,33.438592],[-91.181787,33.44078],[-91.177293,33.443638],[-91.16936,33.452629],[-91.171799,33.462342],[-91.175635,33.471761],[-91.176984,33.478899],[-91.177148,33.48617],[-91.175488,33.49077],[-91.172213,33.496691],[-91.167403,33.498304],[-91.164019,33.497448],[-91.160142,33.494829],[-91.157319,33.492923],[-91.136656,33.481323],[-91.125109,33.472842],[-91.119667,33.46023],[-91.117975,33.453807],[-91.118495,33.449116],[-91.1211,33.443563],[-91.128589,33.436284],[-91.130552,33.433263],[-91.130561,33.4319],[-91.131885,33.430063],[-91.13915,33.426955],[-91.144877,33.427706],[-91.147663,33.427172],[-91.163387,33.422157],[-91.17628,33.416979],[-91.179368,33.417151],[-91.184427,33.419576],[-91.191973,33.417728],[-91.199354,33.418321],[-91.20258,33.416832],[-91.205272,33.414231],[-91.208702,33.408719],[-91.20922,33.40629],[-91.209032,33.403633],[-91.208113,33.402007],[-91.204758,33.398823],[-91.191127,33.389634],[-91.176942,33.382841],[-91.171968,33.38103],[-91.166304,33.379709],[-91.154017,33.378914],[-91.140938,33.380477],[-91.123623,33.387526],[-91.113764,33.393124],[-91.10717,33.399078],[-91.099277,33.408244],[-91.095211,33.417488],[-91.095335,33.425684],[-91.097474,33.431733],[-91.097531,33.433725],[-91.096723,33.437603],[-91.094279,33.442671],[-91.091566,33.446319],[-91.086498,33.451576],[-91.081834,33.454188],[-91.077814,33.455648],[-91.074555,33.455811],[-91.067623,33.455104],[-91.064701,33.453775],[-91.059828,33.450257],[-91.057621,33.445341],[-91.058152,33.428705],[-91.062281,33.421238],[-91.075293,33.405966],[-91.090852,33.395781],[-91.101456,33.38719],[-91.106758,33.381141],[-91.120409,33.363809],[-91.125108,33.360099],[-91.140192,33.351452],[-91.141793,33.350076],[-91.142219,33.348989],[-91.140968,33.336493],[-91.141893,33.332963],[-91.143353,33.33052],[-91.143667,33.328398],[-91.141475,33.314318],[-91.141615,33.299539],[-91.140057,33.296618],[-91.125539,33.280255],[-91.125528,33.274732],[-91.128078,33.268502],[-91.118208,33.262071],[-91.117223,33.260685],[-91.114325,33.252953],[-91.110561,33.24593],[-91.106142,33.241799],[-91.1001,33.238125],[-91.099093,33.238173],[-91.096931,33.241628],[-91.094748,33.250499],[-91.091489,33.254838],[-91.090342,33.257325],[-91.086137,33.273652],[-91.083694,33.278557],[-91.081244,33.28125],[-91.07853,33.283306],[-91.072567,33.285885],[-91.067035,33.28718],[-91.05873,33.286901],[-91.052369,33.285415],[-91.04815,33.282796],[-91.045141,33.279015],[-91.043624,33.274636],[-91.043985,33.269835],[-91.045191,33.265404],[-91.047648,33.259989],[-91.050407,33.251202],[-91.054126,33.246105],[-91.063912,33.237356],[-91.065629,33.232982],[-91.068708,33.232936],[-91.071079,33.230096],[-91.070697,33.227302],[-91.074103,33.226821],[-91.077673,33.227485],[-91.079227,33.2265],[-91.079227,33.223889],[-91.079635,33.223225],[-91.082878,33.221621],[-91.085984,33.221644],[-91.091711,33.220813],[-91.089909,33.210194],[-91.086963,33.198509],[-91.084366,33.180856],[-91.084889,33.1618],[-91.085562,33.155822],[-91.087589,33.145177],[-91.089862,33.139655],[-91.093201,33.136726],[-91.104317,33.131598],[-91.114087,33.129834],[-91.131659,33.129101],[-91.143334,33.129785],[-91.150362,33.130695],[-91.151853,33.131802],[-91.153015,33.135093],[-91.160298,33.141216],[-91.161651,33.141781],[-91.169406,33.142639],[-91.183662,33.141691],[-91.188718,33.139811],[-91.193174,33.136734],[-91.195296,33.134731],[-91.20178,33.125121],[-91.202089,33.121249],[-91.201462,33.109638],[-91.201125,33.108185],[-91.200167,33.10693],[-91.195953,33.104561],[-91.180836,33.098364],[-91.174723,33.09164],[-91.173546,33.089318],[-91.171514,33.087818],[-91.165918,33.086174],[-91.160656,33.085596],[-91.149823,33.081603],[-91.124639,33.064127],[-91.121195,33.059166],[-91.120293,33.055921],[-91.120379,33.05453],[-91.123441,33.046577],[-91.125656,33.038276],[-91.129088,33.033554],[-91.137439,33.028736],[-91.142424,33.027231],[-91.149758,33.026312],[-91.15616,33.02358],[-91.162363,33.019684],[-91.166282,33.011331],[-91.166073,33.004106],[-91.265018,33.005084],[-91.284398,33.005007],[-91.312016,33.005262],[-91.322506,33.005341],[-91.325037,33.005364],[-91.326396,33.005376],[-91.329767,33.005421],[-91.333011,33.005529],[-91.376016,33.005794],[-91.425466,33.006016],[-91.435782,33.006099],[-91.453369,33.005843],[-91.4604,33.00591],[-91.489176,33.006182],[-91.500118,33.006784],[-91.559494,33.00684],[-91.572326,33.006908],[-91.579639,33.006472],[-91.579802,33.006518],[-91.609001,33.006556],[-91.617615,33.006717],[-91.62667,33.006639],[-91.735531,33.007569],[-91.755068,33.00701],[-91.875128,33.007728],[-91.950001,33.00752],[-91.951958,33.007428],[-92.069105,33.008163],[-92.222825,33.00908],[-92.292664,33.010103],[-92.335893,33.010349],[-92.362865,33.010628],[-92.37029,33.010717],[-92.469762,33.01201],[-92.501383,33.01216],[-92.503776,33.012161],[-92.711289,33.014307],[-92.715884,33.014398],[-92.723553,33.014328],[-92.724743,33.014347],[-92.724994,33.014351],[-92.733197,33.014347],[-92.796533,33.014836],[-92.830798,33.015661],[-92.844073,33.016034],[-92.844286,33.01607],[-92.854167,33.016132],[-92.86751,33.016062],[-92.946553,33.016807],[-92.971137,33.017192],[-92.988708,33.017298],[-93.070686,33.017792],[-93.073167,33.017898],[-93.081428,33.017928],[-93.100981,33.017786],[-93.101443,33.01774],[-93.154351,33.017856],[-93.197402,33.017951],[-93.215653,33.018393],[-93.238607,33.017992],[-93.308181,33.018156],[-93.308398,33.018179],[-93.340353,33.018337],[-93.377134,33.018234],[-93.467042,33.018611],[-93.489506,33.018443],[-93.49052,33.018442],[-93.490893,33.018442],[-93.520971,33.018616],[-93.520994,33.018616],[-93.524916,33.018637],[-93.531499,33.018643],[-93.723273,33.019457],[-93.804916,33.019381],[-93.814553,33.019372],[-94.024475,33.019207],[-94.027983,33.019139],[-94.035839,33.019145],[-94.041444,33.019188],[-94.042964,33.019219]]]}}]} diff --git a/Where/RegionKit/Sources/Resources/regions/us-AZ.geojson b/Where/RegionKit/Sources/Resources/regions/us-AZ.geojson new file mode 100644 index 00000000..477fa0a6 --- /dev/null +++ b/Where/RegionKit/Sources/Resources/regions/us-AZ.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"region":"us-AZ","name":"Arizona"},"geometry":{"type":"Polygon","coordinates":[[[-112.538593,37.000674],[-112.534545,37.000684],[-112.368946,37.001125],[-112.35769,37.001025],[-111.412784,37.001478],[-111.405869,37.001481],[-111.405517,37.001497],[-111.278286,37.000465],[-111.254853,37.001077],[-111.133718,37.000779],[-111.066496,37.002389],[-110.75069,37.003197],[-110.62569,37.003721],[-110.625605,37.003416],[-110.599512,37.003448],[-110.50069,37.00426],[-110.490908,37.003566],[-110.47019,36.997997],[-110.021778,36.998602],[-110.000876,36.998502],[-110.000677,36.997968],[-109.875673,36.998504],[-109.625668,36.998308],[-109.495338,36.999105],[-109.381226,36.999148],[-109.378039,36.999135],[-109.270097,36.999266],[-109.268213,36.999242],[-109.26339,36.999263],[-109.246917,36.999346],[-109.233848,36.999266],[-109.181196,36.999271],[-109.045223,36.999084],[-109.045244,36.969489],[-109.045272,36.968871],[-109.045407,36.874998],[-109.045433,36.874589],[-109.045431,36.500001],[-109.046183,36.181751],[-109.045729,36.117028],[-109.045973,36.002338],[-109.046011,35.925896],[-109.046054,35.92586],[-109.046055,35.888721],[-109.046024,35.8798],[-109.046295,35.616517],[-109.046296,35.614251],[-109.046509,35.54644],[-109.046481,35.546326],[-109.046796,35.363606],[-109.046084,35.250025],[-109.046024,35.175499],[-109.045851,34.959718],[-109.046072,34.828566],[-109.045624,34.814226],[-109.046104,34.799981],[-109.045363,34.785406],[-109.046086,34.771016],[-109.046156,34.579291],[-109.046182,34.522553],[-109.046182,34.522393],[-109.047006,34.00005],[-109.046426,33.875052],[-109.046941,33.778233],[-109.047145,33.74001],[-109.046662,33.625055],[-109.047298,33.409783],[-109.046564,33.37506],[-109.04687,33.372654],[-109.047045,33.36928],[-109.046909,33.36557],[-109.046827,33.365272],[-109.04747,33.250063],[-109.047237,33.208965],[-109.047116,33.137995],[-109.047117,33.137559],[-109.047013,33.092917],[-109.046905,33.091931],[-109.047453,33.069427],[-109.04748,33.06842],[-109.047117,32.77757],[-109.047117,32.777569],[-109.047638,32.693439],[-109.047645,32.689988],[-109.047653,32.686327],[-109.047653,32.681379],[-109.047612,32.426377],[-109.048286,32.089114],[-109.048296,32.084093],[-109.048731,32.028174],[-109.048599,32.013651],[-109.04859,31.870791],[-109.048769,31.861383],[-109.049106,31.843715],[-109.048763,31.810776],[-109.049195,31.796551],[-109.049112,31.636598],[-109.049813,31.499528],[-109.049843,31.499515],[-109.050173,31.480004],[-109.050044,31.332502],[-109.278489,31.333959],[-109.829689,31.334067],[-110.000613,31.333145],[-110.140512,31.333965],[-110.460172,31.332827],[-110.760998,31.333547],[-110.795467,31.33363],[-111.000643,31.332177],[-111.074825,31.332239],[-111.125646,31.348978],[-111.366572,31.426132],[-111.560194,31.488138],[-111.979417,31.620683],[-112.246102,31.704195],[-112.365043,31.74113],[-112.375758,31.743988],[-112.39942,31.751757],[-112.867074,31.895488],[-113.125961,31.97278],[-113.217308,32.002107],[-113.333767,32.038763],[-113.493196,32.088943],[-113.750756,32.169005],[-113.78168,32.179034],[-114.250775,32.32391],[-114.50078,32.400057],[-114.813613,32.494277],[-114.813991,32.497231],[-114.812316,32.500054],[-114.813753,32.50426],[-114.813694,32.505065],[-114.813164,32.505594],[-114.812635,32.506918],[-114.81237,32.507712],[-114.810159,32.508383],[-114.807726,32.508726],[-114.806017,32.510094],[-114.804694,32.512476],[-114.804429,32.514594],[-114.804958,32.517506],[-114.809723,32.520153],[-114.811576,32.523594],[-114.810563,32.527666],[-114.8064,32.531192],[-114.802181,32.536414],[-114.802018,32.53946],[-114.804776,32.541659],[-114.805966,32.545346],[-114.80583,32.546354],[-114.803883,32.548002],[-114.795635,32.550956],[-114.793769,32.552329],[-114.792065,32.555009],[-114.791551,32.557023],[-114.791988,32.560652],[-114.793312,32.561976],[-114.794635,32.563564],[-114.795959,32.564093],[-114.79766,32.564444],[-114.804429,32.561976],[-114.808929,32.561976],[-114.810517,32.563828],[-114.810782,32.565152],[-114.810517,32.56727],[-114.808929,32.569652],[-114.804421,32.572942],[-114.801877,32.57601],[-114.801471,32.578255],[-114.803879,32.580889],[-114.803987,32.582652],[-114.802823,32.58508],[-114.800441,32.58808],[-114.799737,32.592178],[-114.799683,32.593621],[-114.801548,32.598591],[-114.802361,32.59937],[-114.805932,32.600721],[-114.807906,32.602783],[-114.809042,32.608806],[-114.809393,32.617119],[-114.80739,32.621332],[-114.799302,32.625115],[-114.797565,32.624578],[-114.794102,32.622475],[-114.791179,32.621833],[-114.781872,32.62505],[-114.78267,32.628634],[-114.782235,32.630215],[-114.781282,32.631459],[-114.779215,32.633579],[-114.774482,32.635869],[-114.764382,32.642666],[-114.76331,32.644617],[-114.763512,32.645996],[-114.765067,32.648047],[-114.76495,32.649391],[-114.75831,32.655178],[-114.753111,32.658304],[-114.748,32.664184],[-114.747848,32.667693],[-114.745345,32.672187],[-114.744491,32.678671],[-114.730453,32.698843],[-114.730041,32.699675],[-114.730086,32.704298],[-114.722746,32.713071],[-114.719633,32.718763],[-114.717665,32.721654],[-114.715788,32.727758],[-114.714522,32.73039],[-114.705717,32.741581],[-114.701918,32.745548],[-114.700743,32.745617],[-114.69879,32.744846],[-114.688779,32.737675],[-114.684278,32.737537],[-114.678632,32.736614],[-114.677091,32.736218],[-114.667493,32.734226],[-114.65884,32.73383],[-114.65826,32.733799],[-114.632686,32.730846],[-114.618373,32.728245],[-114.615585,32.728446],[-114.615733,32.729427],[-114.614772,32.734089],[-114.612697,32.734516],[-114.581784,32.734946],[-114.581736,32.742321],[-114.564508,32.742298],[-114.564447,32.749554],[-114.539224,32.749812],[-114.539093,32.756949],[-114.526856,32.757094],[-114.528443,32.767276],[-114.531831,32.774264],[-114.532432,32.776923],[-114.531746,32.782503],[-114.531669,32.791185],[-114.530755,32.793485],[-114.528849,32.796307],[-114.522031,32.801675],[-114.520385,32.803577],[-114.519758,32.805676],[-114.515389,32.811439],[-114.510217,32.816417],[-114.496827,32.822119],[-114.496284,32.822326],[-114.494116,32.823288],[-114.475892,32.838694],[-114.468971,32.845155],[-114.465546,32.874809],[-114.465715,32.879191],[-114.465715,32.87942],[-114.463127,32.901884],[-114.462929,32.907944],[-114.46365,32.911682],[-114.464448,32.913129],[-114.473713,32.920594],[-114.47664,32.923628],[-114.479005,32.928291],[-114.48092,32.935252],[-114.48074,32.937027],[-114.478456,32.940555],[-114.474042,32.94515],[-114.470833,32.949333],[-114.469113,32.952673],[-114.46773,32.956323],[-114.467272,32.960675],[-114.467664,32.966861],[-114.469039,32.972295],[-114.470988,32.97406],[-114.476156,32.975168],[-114.480417,32.973665],[-114.481315,32.972064],[-114.488625,32.969946],[-114.490129,32.969885],[-114.492938,32.971781],[-114.494212,32.974262],[-114.495712,32.980076],[-114.497315,32.991474],[-114.499797,33.003905],[-114.502871,33.011153],[-114.50613,33.01701],[-114.511343,33.023455],[-114.5149,33.026524],[-114.516484,33.027572],[-114.52013,33.029984],[-114.523578,33.030961],[-114.538459,33.033422],[-114.553189,33.033974],[-114.571653,33.036624],[-114.575161,33.036542],[-114.578287,33.035375],[-114.581404,33.032545],[-114.584765,33.028231],[-114.586982,33.026945],[-114.589778,33.026228],[-114.601014,33.02541],[-114.618788,33.027202],[-114.625787,33.029436],[-114.628293,33.031052],[-114.63419,33.039025],[-114.639553,33.045291],[-114.641622,33.046896],[-114.64598,33.048903],[-114.649001,33.046763],[-114.655038,33.037107],[-114.657827,33.033825],[-114.659832,33.032665],[-114.662317,33.032671],[-114.66506,33.033908],[-114.670803,33.037984],[-114.673659,33.041897],[-114.675104,33.047532],[-114.674296,33.057171],[-114.686991,33.070969],[-114.68912,33.076122],[-114.689307,33.079179],[-114.688597,33.082869],[-114.68902,33.084036],[-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.707896,33.097432],[-114.706175,33.105335],[-114.703682,33.113769],[-114.696829,33.131209],[-114.689995,33.137883],[-114.687074,33.142196],[-114.684489,33.148121],[-114.682253,33.155214],[-114.679359,33.159519],[-114.678729,33.162948],[-114.680248,33.169717],[-114.679034,33.174738],[-114.675831,33.18152],[-114.67536,33.185489],[-114.67519,33.188179],[-114.678178,33.199584],[-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.247966],[-114.674491,33.255597],[-114.672088,33.258499],[-114.672401,33.26047],[-114.677032,33.27017],[-114.680507,33.273577],[-114.684363,33.276025],[-114.694449,33.279786],[-114.702873,33.281916],[-114.711197,33.283342],[-114.717875,33.285157],[-114.72167,33.286982],[-114.723259,33.288079],[-114.731223,33.302434],[-114.731222,33.304039],[-114.729904,33.305745],[-114.723623,33.31211],[-114.710792,33.320607],[-114.707962,33.323421],[-114.705241,33.327767],[-114.700938,33.337014],[-114.698035,33.352442],[-114.69817,33.356575],[-114.699053,33.361148],[-114.707348,33.376628],[-114.707009,33.380634],[-114.70731,33.382542],[-114.708408,33.384147],[-114.713602,33.388257],[-114.722872,33.398779],[-114.725292,33.402342],[-114.725535,33.404056],[-114.725282,33.405048],[-114.723829,33.406531],[-114.720065,33.407891],[-114.710878,33.407254],[-114.701732,33.408388],[-114.697707,33.410942],[-114.696805,33.412087],[-114.696504,33.414059],[-114.695655,33.415127],[-114.687953,33.417944],[-114.673901,33.418299],[-114.658382,33.413036],[-114.652828,33.412922],[-114.64954,33.413633],[-114.643302,33.416745],[-114.635183,33.422726],[-114.62964,33.428138],[-114.627125,33.433554],[-114.622283,33.447558],[-114.623395,33.45449],[-114.622918,33.456561],[-114.612472,33.470768],[-114.607843,33.474834],[-114.601696,33.481394],[-114.599713,33.484315],[-114.597283,33.490653],[-114.591554,33.499443],[-114.588239,33.502453],[-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.559507,33.530724],[-114.558898,33.531819],[-114.542011,33.542481],[-114.524599,33.552231],[-114.524391,33.553683],[-114.526834,33.557466],[-114.535664,33.568788],[-114.535965,33.569154],[-114.5403,33.580615],[-114.540617,33.591412],[-114.529186,33.60665],[-114.526782,33.608831],[-114.524813,33.611351],[-114.524619,33.61426],[-114.525783,33.616588],[-114.527938,33.618839],[-114.529662,33.622794],[-114.529856,33.627448],[-114.528498,33.630164],[-114.526947,33.633073],[-114.526947,33.637534],[-114.527917,33.641413],[-114.52908,33.644128],[-114.53005,33.647619],[-114.530244,33.65014],[-114.528304,33.653049],[-114.526947,33.655571],[-114.525783,33.657122],[-114.525201,33.658092],[-114.525007,33.659643],[-114.525201,33.661583],[-114.525977,33.662941],[-114.526947,33.664298],[-114.528304,33.666044],[-114.529706,33.668031],[-114.530999,33.671102],[-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.504993,33.693022],[-114.496489,33.696901],[-114.495719,33.698454],[-114.494197,33.707922],[-114.494901,33.71443],[-114.496565,33.719155],[-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.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.520094,33.799473],[-114.52805,33.814963],[-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.529385,33.851755],[-114.528451,33.854929],[-114.526771,33.857357],[-114.52453,33.858477],[-114.516811,33.85812],[-114.514673,33.858638],[-114.505638,33.864276],[-114.503887,33.865754],[-114.503017,33.867998],[-114.503395,33.875018],[-114.50434,33.876882],[-114.512467,33.882884],[-114.516501,33.885926],[-114.517808,33.888167],[-114.518555,33.889847],[-114.518928,33.891714],[-114.518741,33.893208],[-114.517808,33.894889],[-114.516314,33.896196],[-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.518434,33.917518],[-114.525361,33.922272],[-114.528385,33.923674],[-114.533679,33.926072],[-114.534987,33.928499],[-114.535478,33.934651],[-114.52868,33.947817],[-114.522002,33.955623],[-114.51586,33.958106],[-114.511231,33.95704],[-114.509568,33.957264],[-114.499883,33.961789],[-114.495047,33.966835],[-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.462377,33.993781],[-114.46117,33.994687],[-114.460264,33.996649],[-114.460415,33.999215],[-114.46283,34.004497],[-114.463132,34.00661],[-114.46283,34.008421],[-114.46117,34.010081],[-114.458906,34.010835],[-114.454807,34.010968],[-114.450206,34.012574],[-114.443821,34.016176],[-114.44054,34.019329],[-114.438266,34.022609],[-114.436171,34.028083],[-114.434949,34.037784],[-114.435504,34.042615],[-114.438602,34.050205],[-114.439406,34.05381],[-114.43934,34.057893],[-114.437683,34.071937],[-114.435429,34.079727],[-114.434181,34.087379],[-114.43338,34.088413],[-114.428026,34.092787],[-114.426168,34.097042],[-114.420499,34.103466],[-114.415908,34.107636],[-114.411681,34.110031],[-114.405941,34.11154],[-114.401352,34.111652],[-114.390565,34.110084],[-114.379234,34.115988],[-114.369297,34.117517],[-114.366521,34.118575],[-114.360402,34.123577],[-114.356373,34.130429],[-114.353031,34.133121],[-114.348052,34.134458],[-114.336112,34.134035],[-114.324576,34.136759],[-114.320777,34.138635],[-114.312206,34.144776],[-114.292806,34.166725],[-114.287294,34.170529],[-114.275267,34.17215],[-114.268267,34.17021],[-114.254141,34.173831],[-114.244191,34.179625],[-114.240712,34.183232],[-114.229715,34.186928],[-114.227034,34.188866],[-114.224941,34.193896],[-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.174322,34.245468],[-114.173119,34.247226],[-114.166536,34.249647],[-114.164476,34.251667],[-114.163867,34.253349],[-114.163122,34.255187],[-114.161826,34.257038],[-114.159697,34.258242],[-114.156853,34.258415],[-114.153346,34.258289],[-114.147159,34.259564],[-114.144779,34.259623],[-114.139055,34.259538],[-114.136185,34.261296],[-114.134612,34.263518],[-114.134427,34.266387],[-114.134768,34.268965],[-114.136671,34.274377],[-114.137045,34.277018],[-114.13605,34.280833],[-114.138365,34.288564],[-114.139534,34.295844],[-114.138167,34.300936],[-114.138282,34.30323],[-114.14093,34.305919],[-114.157206,34.317862],[-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.199482,34.361373],[-114.213774,34.36246],[-114.226107,34.365916],[-114.229686,34.368908],[-114.234275,34.376662],[-114.245261,34.385659],[-114.248649,34.388113],[-114.252739,34.3901],[-114.264317,34.401329],[-114.267521,34.402486],[-114.280108,34.403147],[-114.286802,34.40534],[-114.288663,34.406623],[-114.290219,34.408291],[-114.291751,34.411104],[-114.292226,34.417606],[-114.294836,34.421389],[-114.301016,34.426807],[-114.312251,34.432726],[-114.319054,34.435831],[-114.32613,34.437251],[-114.330669,34.445295],[-114.332991,34.448082],[-114.335372,34.450038],[-114.339627,34.451435],[-114.342615,34.451442],[-114.356025,34.449744],[-114.363404,34.447773],[-114.373719,34.446938],[-114.375789,34.447798],[-114.378852,34.450376],[-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.495757],[-114.381402,34.499242],[-114.378124,34.507288],[-114.378223,34.516521],[-114.380838,34.529724],[-114.389603,34.542982],[-114.405228,34.569637],[-114.422382,34.580711],[-114.429747,34.591734],[-114.429747,34.595846],[-114.43009,34.596874],[-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.441398,34.630171],[-114.441525,34.631529],[-114.440294,34.63824],[-114.441465,34.64253],[-114.444276,34.646542],[-114.449549,34.651423],[-114.451753,34.654321],[-114.451971,34.657166],[-114.452628,34.659573],[-114.451785,34.663891],[-114.451753,34.665044],[-114.451971,34.666795],[-114.452628,34.668546],[-114.454305,34.671234],[-114.45491,34.673092],[-114.455473,34.675768],[-114.456567,34.677956],[-114.462178,34.6858],[-114.465246,34.691202],[-114.46809,34.701786],[-114.46862,34.707573],[-114.470477,34.711368],[-114.47162,34.712966],[-114.473682,34.713964],[-114.477297,34.714514],[-114.481954,34.716036],[-114.486768,34.7191],[-114.490971,34.724848],[-114.492017,34.725702],[-114.495858,34.727956],[-114.503361,34.731247],[-114.510292,34.733582],[-114.516619,34.736745],[-114.521048,34.741173],[-114.522619,34.74373],[-114.525611,34.747005],[-114.529615,34.750822],[-114.540306,34.757109],[-114.546884,34.761802],[-114.552682,34.766871],[-114.558653,34.773852],[-114.57101,34.794294],[-114.574569,34.805746],[-114.576452,34.8153],[-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.630682,34.866352],[-114.634382,34.87289],[-114.635176,34.875003],[-114.636768,34.885705],[-114.636725,34.889107],[-114.635425,34.895192],[-114.630877,34.907263],[-114.630552,34.911852],[-114.633237,34.92123],[-114.633253,34.924608],[-114.632196,34.930628],[-114.629753,34.938684],[-114.629769,34.94304],[-114.629811,34.94481],[-114.631681,34.95131],[-114.634953,34.958918],[-114.635237,34.965149],[-114.634607,34.96906],[-114.629907,34.980791],[-114.629015,34.986148],[-114.62919,34.991887],[-114.629928,34.99474],[-114.633013,35.002085],[-114.636674,35.008807],[-114.638023,35.020556],[-114.636893,35.028367],[-114.632429,35.037586],[-114.627124,35.044721],[-114.606694,35.058941],[-114.603619,35.064226],[-114.602908,35.068588],[-114.604736,35.07483],[-114.613132,35.083097],[-114.622517,35.088703],[-114.642831,35.096503],[-114.646759,35.101872],[-114.644352,35.105904],[-114.629934,35.118272],[-114.619905,35.121632],[-114.59912,35.12105],[-114.58774,35.123729],[-114.578524,35.12875],[-114.572747,35.138725],[-114.569569,35.163053],[-114.569238,35.18348],[-114.572119,35.200591],[-114.574835,35.205898],[-114.579963,35.20964],[-114.583559,35.22993],[-114.583111,35.23809],[-114.587129,35.262376],[-114.597503,35.296954],[-114.595931,35.325234],[-114.604314,35.353584],[-114.611435,35.369056],[-114.627137,35.409504],[-114.652005,35.429165],[-114.662125,35.444241],[-114.6645,35.449497],[-114.666377,35.466856],[-114.672901,35.481708],[-114.677643,35.489742],[-114.679205,35.499992],[-114.677205,35.513491],[-114.673805,35.517891],[-114.663105,35.524491],[-114.658005,35.530491],[-114.656905,35.534391],[-114.657405,35.536391],[-114.660205,35.539291],[-114.662005,35.545491],[-114.663005,35.56369],[-114.666184,35.577576],[-114.665649,35.580428],[-114.659606,35.58749],[-114.654306,35.59759],[-114.653406,35.610789],[-114.658206,35.619089],[-114.677107,35.641489],[-114.689407,35.651412],[-114.690008,35.664688],[-114.682207,35.678188],[-114.680607,35.685488],[-114.683208,35.689387],[-114.694108,35.695187],[-114.701208,35.701187],[-114.705409,35.708287],[-114.705309,35.711587],[-114.697309,35.733686],[-114.695709,35.755986],[-114.701409,35.769086],[-114.69891,35.790185],[-114.71211,35.806185],[-114.70991,35.810185],[-114.70371,35.814585],[-114.69571,35.830601],[-114.69641,35.833784],[-114.699848,35.843283],[-114.699848,35.84837],[-114.697767,35.854844],[-114.68201,35.863284],[-114.679501,35.868023],[-114.678114,35.871953],[-114.67742,35.874728],[-114.677883,35.876346],[-114.679039,35.880046],[-114.68112,35.885364],[-114.700271,35.901772],[-114.708516,35.912313],[-114.707526,35.92806],[-114.715692,35.934709],[-114.729356,35.941413],[-114.731159,35.943916],[-114.728318,35.95629],[-114.729941,35.962183],[-114.740595,35.975656],[-114.743756,35.985095],[-114.743243,36.00653],[-114.742779,36.009963],[-114.740522,36.013336],[-114.731162,36.021862],[-114.729707,36.028166],[-114.730435,36.031317],[-114.734314,36.035681],[-114.739405,36.037863],[-114.740617,36.041015],[-114.740375,36.043682],[-114.740375,36.049258],[-114.736738,36.054349],[-114.736253,36.05847],[-114.743342,36.070535],[-114.754099,36.07944],[-114.755491,36.081601],[-114.755618,36.087166],[-114.753638,36.090705],[-114.747079,36.097005],[-114.736165,36.104367],[-114.717293,36.107686],[-114.709771,36.107742],[-114.666538,36.117343],[-114.66289,36.119932],[-114.65995,36.124145],[-114.631716,36.142306],[-114.627855,36.141012],[-114.621883,36.13213],[-114.616694,36.130101],[-114.608264,36.133949],[-114.597212,36.142103],[-114.572031,36.15161],[-114.545789,36.152248],[-114.511721,36.150956],[-114.506711,36.148277],[-114.504631,36.145629],[-114.50482,36.142414],[-114.505387,36.137496],[-114.506144,36.134659],[-114.505766,36.131444],[-114.504442,36.129741],[-114.502172,36.128796],[-114.49612,36.12785],[-114.487034,36.129396],[-114.470152,36.138801],[-114.463637,36.139695],[-114.458369,36.138586],[-114.453325,36.130726],[-114.448654,36.12641],[-114.446605,36.12597],[-114.427169,36.136305],[-114.41695,36.145761],[-114.412373,36.147254],[-114.405475,36.147371],[-114.372106,36.143114],[-114.363109,36.130246],[-114.337273,36.10802],[-114.328777,36.105501],[-114.30843,36.082443],[-114.305738,36.074882],[-114.307879,36.071291],[-114.314206,36.066619],[-114.316109,36.063109],[-114.315557,36.059494],[-114.314028,36.058165],[-114.280202,36.046362],[-114.270645,36.03572],[-114.266721,36.029238],[-114.263146,36.025937],[-114.252651,36.020193],[-114.238799,36.014561],[-114.233289,36.014289],[-114.21369,36.015613],[-114.19238,36.020993],[-114.176824,36.027651],[-114.166465,36.027738],[-114.15413,36.023862],[-114.151725,36.024563],[-114.148191,36.028013],[-114.138202,36.041284],[-114.137188,36.046785],[-114.138203,36.053161],[-114.136896,36.059467],[-114.114531,36.095217],[-114.114165,36.096982],[-114.117459,36.100893],[-114.123221,36.104746],[-114.123975,36.106515],[-114.123144,36.111576],[-114.120862,36.114596],[-114.111011,36.119875],[-114.103222,36.120176],[-114.09987,36.121654],[-114.088954,36.144381],[-114.068027,36.180663],[-114.060302,36.189363],[-114.046838,36.194069],[-114.046743,36.245246],[-114.047106,36.250591],[-114.048226,36.268874],[-114.048515,36.289598],[-114.046935,36.315449],[-114.047584,36.325573],[-114.045806,36.391071],[-114.045829,36.442973],[-114.046488,36.473449],[-114.048476,36.49998],[-114.04966,36.621113],[-114.050167,36.624978],[-114.050562,36.656259],[-114.050606,36.800184],[-114.050619,36.843128],[-114.050619,36.843141],[-114.049995,36.957769],[-114.0506,37.000396],[-113.965907,37.000025],[-113.965907,36.999976],[-112.966471,37.000219],[-112.899366,37.000319],[-112.609787,37.000753],[-112.558974,37.000692],[-112.545094,37.000734],[-112.540368,37.000669],[-112.538593,37.000674]]]}}]} diff --git a/Where/RegionKit/Sources/Resources/regions/us-CA.geojson b/Where/RegionKit/Sources/Resources/regions/us-CA.geojson new file mode 100644 index 00000000..bcbc6141 --- /dev/null +++ b/Where/RegionKit/Sources/Resources/regions/us-CA.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"region":"us-CA","name":"California"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.421439,37.869969],[-122.421341,37.869946],[-122.41847,37.861764],[-122.41847,37.852721],[-122.418698,37.852717],[-122.434403,37.852434],[-122.443302,37.855448],[-122.446316,37.861046],[-122.438565,37.868367],[-122.430958,37.872242],[-122.421439,37.869969]]],[[[-122.3785,37.826505],[-122.377879,37.830648],[-122.369941,37.832137],[-122.363244,37.823951],[-122.358779,37.814278],[-122.362661,37.807577],[-122.372422,37.811301],[-122.37267,37.81651],[-122.3785,37.826505]]],[[[-120.248484,33.999329],[-120.247393,34.001911],[-120.238657,34.007592],[-120.230001,34.010136],[-120.221287,34.010367],[-120.208478,34.005655],[-120.19578,34.004284],[-120.167306,34.008219],[-120.151663,34.018126],[-120.147647,34.024831],[-120.140362,34.025974],[-120.135853,34.026087],[-120.115058,34.019866],[-120.090182,34.019806],[-120.073609,34.024477],[-120.062778,34.031161],[-120.061953,34.033976],[-120.057637,34.03734],[-120.055107,34.037729],[-120.043259,34.035806],[-120.044004,34.02482],[-120.047798,34.021227],[-120.050382,34.013331],[-120.048926,34.009898],[-120.046575,34.000002],[-120.041311,33.994507],[-120.025653,33.985553],[-120.011123,33.979894],[-120.003815,33.979547],[-119.984316,33.983948],[-119.978876,33.983081],[-119.979913,33.969623],[-119.976857,33.956693],[-119.971141,33.950401],[-119.97026,33.944359],[-119.973691,33.942481],[-120.00096,33.941554],[-120.017715,33.936366],[-120.046881,33.919597],[-120.048315,33.917625],[-120.048611,33.915775],[-120.049682,33.914563],[-120.077793,33.908886],[-120.098601,33.907853],[-120.105489,33.90428],[-120.109137,33.899129],[-120.121817,33.895712],[-120.168974,33.91909],[-120.179049,33.927994],[-120.18984,33.947703],[-120.192339,33.950266],[-120.198602,33.952211],[-120.200085,33.956904],[-120.209372,33.972376],[-120.224461,33.989059],[-120.248484,33.999329]]],[[[-119.789798,34.05726],[-119.770729,34.055051],[-119.766081,34.05537],[-119.763688,34.057155],[-119.755521,34.056716],[-119.739472,34.049299],[-119.726437,34.047908],[-119.712576,34.043265],[-119.704628,34.037681],[-119.686507,34.019805],[-119.637742,34.013178],[-119.619343,34.016468],[-119.612226,34.021256],[-119.604287,34.031561],[-119.608798,34.035245],[-119.609239,34.03735],[-119.59324,34.049625],[-119.57341,34.05011],[-119.5667,34.053452],[-119.529603,34.041155],[-119.52064,34.034262],[-119.52177,34.032247],[-119.532413,34.024949],[-119.538847,34.023988],[-119.542449,34.021082],[-119.54828,34.009819],[-119.547072,34.005469],[-119.554472,33.99782],[-119.560464,33.99553],[-119.575636,33.996009],[-119.5902,33.989712],[-119.596877,33.988611],[-119.619082,33.987228],[-119.621117,33.98899],[-119.64771,33.987786],[-119.662825,33.985889],[-119.69011,33.972225],[-119.706952,33.969178],[-119.712363,33.965422],[-119.714696,33.961439],[-119.721206,33.959583],[-119.742966,33.963877],[-119.750438,33.963759],[-119.758141,33.959212],[-119.795938,33.962929],[-119.842748,33.97034],[-119.873358,33.980375],[-119.877057,33.985757],[-119.883033,34.000802],[-119.884896,34.008814],[-119.882531,34.011674],[-119.876916,34.023527],[-119.876329,34.032087],[-119.892821,34.045529],[-119.916216,34.058351],[-119.923337,34.069361],[-119.919155,34.07728],[-119.912857,34.077508],[-119.89113,34.072856],[-119.857304,34.071298],[-119.825865,34.059794],[-119.818742,34.052997],[-119.807825,34.052127],[-119.789798,34.05726]]],[[[-120.46258,34.042627],[-120.440248,34.036918],[-120.418768,34.052093],[-120.415287,34.05496],[-120.411314,34.052869],[-120.403613,34.050442],[-120.396188,34.050187],[-120.390906,34.051994],[-120.374211,34.062658],[-120.368813,34.06778],[-120.368584,34.071214],[-120.370176,34.074907],[-120.368278,34.076465],[-120.362251,34.073056],[-120.354982,34.059256],[-120.36029,34.05582],[-120.358608,34.050235],[-120.346946,34.046576],[-120.331161,34.049097],[-120.319032,34.041979],[-120.313175,34.036576],[-120.302122,34.023574],[-120.304543,34.021171],[-120.317052,34.018837],[-120.347706,34.020114],[-120.35532,34.017914],[-120.35793,34.015029],[-120.375143,34.018775],[-120.409368,34.032198],[-120.415225,34.032245],[-120.419021,34.028949],[-120.427408,34.025425],[-120.454134,34.028081],[-120.459635,34.031537],[-120.465329,34.038448],[-120.46258,34.042627]]],[[[-118.524531,32.895488],[-118.535823,32.90628],[-118.551134,32.945155],[-118.560887,32.957891],[-118.573522,32.969183],[-118.586928,33.008281],[-118.596037,33.015357],[-118.606559,33.01469],[-118.605534,33.030999],[-118.594033,33.035951],[-118.57516,33.033961],[-118.569013,33.029151],[-118.564445,33.024914],[-118.564527,33.018637],[-118.559171,33.006291],[-118.540069,32.980933],[-118.529228,32.970921],[-118.496811,32.933847],[-118.485288,32.923545],[-118.479039,32.920363],[-118.460623,32.90951],[-118.446771,32.895424],[-118.369984,32.839273],[-118.353504,32.821962],[-118.356541,32.817311],[-118.36053,32.819921],[-118.379968,32.824545],[-118.387375,32.825327],[-118.394565,32.823978],[-118.401268,32.820338],[-118.425634,32.800595],[-118.42943,32.805429],[-118.428372,32.806872],[-118.44492,32.820593],[-118.476074,32.841754],[-118.487908,32.84459],[-118.496298,32.851572],[-118.506902,32.868503],[-118.508095,32.871321],[-118.507193,32.876264],[-118.524641,32.893175],[-118.524531,32.895488]]],[[[-118.500212,33.449592],[-118.499669,33.447879],[-118.48557,33.446213],[-118.477646,33.448392],[-118.445812,33.428907],[-118.423576,33.427258],[-118.382037,33.409883],[-118.370323,33.409285],[-118.368301,33.40711],[-118.365094,33.388374],[-118.32446,33.348782],[-118.316083,33.342928],[-118.310213,33.335795],[-118.303174,33.320264],[-118.305084,33.310323],[-118.316787,33.301137],[-118.325244,33.299075],[-118.343249,33.305234],[-118.360332,33.31533],[-118.374768,33.320065],[-118.402941,33.320901],[-118.440047,33.318638],[-118.456309,33.32182],[-118.465368,33.326056],[-118.481886,33.344123],[-118.48877,33.356649],[-118.482609,33.369914],[-118.478465,33.38632],[-118.484949,33.412131],[-118.48875,33.419826],[-118.503952,33.424234],[-118.515914,33.422417],[-118.516267,33.425075],[-118.52323,33.430733],[-118.53738,33.434608],[-118.558715,33.433419],[-118.563442,33.434381],[-118.570927,33.439351],[-118.575901,33.448261],[-118.593969,33.467198],[-118.601185,33.469853],[-118.60403,33.47654],[-118.603375,33.478098],[-118.598783,33.477939],[-118.585936,33.473819],[-118.54453,33.474119],[-118.530702,33.468071],[-118.500212,33.449592]]],[[[-119.543842,33.280329],[-119.532941,33.284728],[-119.528141,33.284929],[-119.50504,33.272829],[-119.48278,33.263973],[-119.465717,33.259239],[-119.458466,33.254661],[-119.429559,33.228167],[-119.444269,33.21919],[-119.464725,33.215432],[-119.476029,33.21552],[-119.500684,33.220569],[-119.511659,33.223027],[-119.517514,33.226737],[-119.545872,33.233406],[-119.564971,33.24744],[-119.565641,33.250029],[-119.566014,33.252639],[-119.570642,33.257729],[-119.578942,33.278628],[-119.562042,33.271129],[-119.555242,33.273429],[-119.547642,33.280328],[-119.543842,33.280329]]],[[[-122.289533,42.007764],[-122.289527,42.007764],[-122.261127,42.007364],[-122.161328,42.007637],[-122.160438,42.007637],[-122.156666,42.007384],[-122.155408,42.007429],[-122.101922,42.005766],[-122.000319,42.003967],[-121.846712,42.00307],[-121.708199,42.000815],[-121.705045,42.000766],[-121.689159,42.000584],[-121.675348,42.000351],[-121.580865,41.998668],[-121.52025,41.997983],[-121.44754,41.997169],[-121.43961,41.99708],[-121.434977,41.997022],[-121.376101,41.997026],[-121.360253,41.99668],[-121.340517,41.99622],[-121.335734,41.996518],[-121.334385,41.996655],[-121.309981,41.997612],[-121.251099,41.99757],[-121.247616,41.997054],[-121.126093,41.99601],[-121.094926,41.994658],[-121.035195,41.993323],[-120.879481,41.993781],[-120.812279,41.994183],[-120.693941,41.993676],[-120.692219,41.993677],[-120.647173,41.993084],[-120.501069,41.993785],[-120.326005,41.993122],[-120.286424,41.993058],[-120.181563,41.994588],[-120.001058,41.995139],[-119.999168,41.99454],[-119.999276,41.874891],[-119.998287,41.749892],[-119.998855,41.624893],[-119.99828,41.618765],[-119.999471,41.499894],[-119.999866,41.183974],[-119.999358,40.873101],[-119.999232,40.867454],[-119.999231,40.865899],[-119.998479,40.749899],[-119.997533,40.720992],[-119.995926,40.499901],[-119.996155,40.321838],[-119.996155,40.32125],[-119.996182,40.263532],[-119.996183,40.262461],[-119.997124,40.126363],[-119.997234,40.091591],[-119.997175,40.077245],[-119.997291,40.071803],[-119.997634,39.956505],[-119.999733,39.851406],[-120.000607,39.780779],[-120.000502,39.779956],[-120.001319,39.72242],[-120.001319,39.722416],[-120.00174,39.538852],[-120.003116,39.445113],[-120.003117,39.445044],[-120.00443,39.374908],[-120.00471,39.330488],[-120.005316,39.316453],[-120.00532,39.31635],[-120.005413,39.313848],[-120.005414,39.313345],[-120.005142,39.291258],[-120.005743,39.228664],[-120.005746,39.22521],[-120.004504,39.165599],[-120.003402,39.112687],[-120.002461,39.067489],[-120.001014,38.999574],[-119.904315,38.933324],[-119.587679,38.714734],[-119.587066,38.714345],[-119.585437,38.713212],[-119.494183,38.649852],[-119.494022,38.649734],[-119.450612,38.619964],[-119.450623,38.619965],[-119.375994,38.566793],[-119.370117,38.563281],[-119.333423,38.538328],[-119.328411,38.534773],[-119.279262,38.499914],[-119.250988,38.48078],[-119.234966,38.468997],[-119.156983,38.414739],[-119.125982,38.39317],[-119.097161,38.372853],[-119.082358,38.361267],[-119.030078,38.325181],[-119.000975,38.303675],[-118.949673,38.26894],[-118.922518,38.249919],[-118.859087,38.204808],[-118.771867,38.141871],[-118.746598,38.124926],[-118.714312,38.102185],[-118.62159,38.034389],[-118.571958,37.99993],[-118.500958,37.949019],[-118.4278,37.89623],[-118.250947,37.768616],[-118.052189,37.62493],[-118.039798,37.615273],[-118.039849,37.615245],[-117.975776,37.569293],[-117.904625,37.515836],[-117.875927,37.497267],[-117.832726,37.464929],[-117.712358,37.374931],[-117.68061,37.353399],[-117.581418,37.278936],[-117.540885,37.249931],[-117.500909,37.220282],[-117.500117,37.22038],[-117.375905,37.126843],[-117.266046,37.04491],[-117.244917,37.030244],[-117.166,36.971224],[-117.131975,36.945777],[-117.066728,36.896354],[-117.000895,36.847694],[-116.541983,36.499952],[-116.500882,36.468223],[-116.488233,36.459097],[-116.38034,36.374955],[-116.375875,36.372562],[-116.250869,36.276979],[-116.097216,36.158346],[-116.093601,36.155805],[-115.912858,36.015359],[-115.892975,35.999967],[-115.852908,35.96966],[-115.845984,35.964207],[-115.750844,35.889287],[-115.689302,35.842003],[-115.669005,35.826515],[-115.64802,35.809629],[-115.647683,35.809358],[-115.647202,35.808995],[-115.627386,35.793846],[-115.625838,35.792013],[-115.500832,35.693382],[-115.412908,35.624981],[-115.406079,35.618613],[-115.404537,35.617605],[-115.393996,35.609344],[-115.391535,35.607271],[-115.388866,35.605171],[-115.303743,35.538207],[-115.271342,35.51266],[-115.225273,35.475907],[-115.160599,35.424313],[-115.160068,35.424129],[-115.146788,35.413662],[-115.145813,35.413182],[-115.125816,35.39694],[-115.102881,35.379371],[-115.098018,35.37499],[-115.043812,35.332012],[-114.942216,35.249994],[-114.92548,35.237054],[-114.925381,35.237039],[-114.80503,35.140284],[-114.804249,35.139689],[-114.633013,35.002085],[-114.629928,34.99474],[-114.62919,34.991887],[-114.629015,34.986148],[-114.629907,34.980791],[-114.634607,34.96906],[-114.635237,34.965149],[-114.634953,34.958918],[-114.631681,34.95131],[-114.629811,34.94481],[-114.629769,34.94304],[-114.629753,34.938684],[-114.632196,34.930628],[-114.633253,34.924608],[-114.633237,34.92123],[-114.630552,34.911852],[-114.630877,34.907263],[-114.635425,34.895192],[-114.636725,34.889107],[-114.636768,34.885705],[-114.635176,34.875003],[-114.634382,34.87289],[-114.630682,34.866352],[-114.623939,34.859738],[-114.619878,34.856873],[-114.604255,34.849573],[-114.600653,34.847361],[-114.592339,34.841153],[-114.586842,34.835672],[-114.581126,34.826115],[-114.576452,34.8153],[-114.574569,34.805746],[-114.57101,34.794294],[-114.558653,34.773852],[-114.552682,34.766871],[-114.546884,34.761802],[-114.540306,34.757109],[-114.529615,34.750822],[-114.525611,34.747005],[-114.522619,34.74373],[-114.521048,34.741173],[-114.516619,34.736745],[-114.510292,34.733582],[-114.503361,34.731247],[-114.495858,34.727956],[-114.492017,34.725702],[-114.490971,34.724848],[-114.486768,34.7191],[-114.481954,34.716036],[-114.477297,34.714514],[-114.473682,34.713964],[-114.47162,34.712966],[-114.470477,34.711368],[-114.46862,34.707573],[-114.46809,34.701786],[-114.465246,34.691202],[-114.462178,34.6858],[-114.456567,34.677956],[-114.455473,34.675768],[-114.45491,34.673092],[-114.454305,34.671234],[-114.452628,34.668546],[-114.451971,34.666795],[-114.451753,34.665044],[-114.451785,34.663891],[-114.452628,34.659573],[-114.451971,34.657166],[-114.451753,34.654321],[-114.449549,34.651423],[-114.444276,34.646542],[-114.441465,34.64253],[-114.440294,34.63824],[-114.441525,34.631529],[-114.441398,34.630171],[-114.438739,34.621455],[-114.428648,34.614641],[-114.424202,34.610453],[-114.424326,34.602338],[-114.425338,34.600842],[-114.427502,34.599227],[-114.43009,34.596874],[-114.429747,34.595846],[-114.429747,34.591734],[-114.422382,34.580711],[-114.405228,34.569637],[-114.389603,34.542982],[-114.380838,34.529724],[-114.378223,34.516521],[-114.378124,34.507288],[-114.381402,34.499242],[-114.382358,34.495757],[-114.383038,34.488903],[-114.381555,34.477883],[-114.381701,34.47604],[-114.383525,34.470405],[-114.387187,34.462021],[-114.387407,34.460492],[-114.386699,34.457911],[-114.378852,34.450376],[-114.375789,34.447798],[-114.373719,34.446938],[-114.363404,34.447773],[-114.356025,34.449744],[-114.342615,34.451442],[-114.339627,34.451435],[-114.335372,34.450038],[-114.332991,34.448082],[-114.330669,34.445295],[-114.32613,34.437251],[-114.319054,34.435831],[-114.312251,34.432726],[-114.301016,34.426807],[-114.294836,34.421389],[-114.292226,34.417606],[-114.291751,34.411104],[-114.290219,34.408291],[-114.288663,34.406623],[-114.286802,34.40534],[-114.280108,34.403147],[-114.267521,34.402486],[-114.264317,34.401329],[-114.252739,34.3901],[-114.248649,34.388113],[-114.245261,34.385659],[-114.234275,34.376662],[-114.229686,34.368908],[-114.226107,34.365916],[-114.213774,34.36246],[-114.199482,34.361373],[-114.191094,34.356125],[-114.185556,34.354386],[-114.181145,34.352186],[-114.176909,34.349306],[-114.172845,34.344979],[-114.168807,34.339513],[-114.157206,34.317862],[-114.14093,34.305919],[-114.138282,34.30323],[-114.138167,34.300936],[-114.139534,34.295844],[-114.138365,34.288564],[-114.13605,34.280833],[-114.137045,34.277018],[-114.136671,34.274377],[-114.134768,34.268965],[-114.134427,34.266387],[-114.134612,34.263518],[-114.136185,34.261296],[-114.139055,34.259538],[-114.144779,34.259623],[-114.147159,34.259564],[-114.153346,34.258289],[-114.156853,34.258415],[-114.159697,34.258242],[-114.161826,34.257038],[-114.163122,34.255187],[-114.163867,34.253349],[-114.164476,34.251667],[-114.166536,34.249647],[-114.173119,34.247226],[-114.174322,34.245468],[-114.175948,34.242695],[-114.176403,34.241512],[-114.17805,34.239969],[-114.190876,34.230858],[-114.208253,34.215505],[-114.211761,34.211539],[-114.215454,34.208956],[-114.223384,34.205136],[-114.225194,34.203642],[-114.225861,34.201774],[-114.224941,34.193896],[-114.227034,34.188866],[-114.229715,34.186928],[-114.240712,34.183232],[-114.244191,34.179625],[-114.254141,34.173831],[-114.268267,34.17021],[-114.275267,34.17215],[-114.287294,34.170529],[-114.292806,34.166725],[-114.312206,34.144776],[-114.320777,34.138635],[-114.324576,34.136759],[-114.336112,34.134035],[-114.348052,34.134458],[-114.353031,34.133121],[-114.356373,34.130429],[-114.360402,34.123577],[-114.366521,34.118575],[-114.369297,34.117517],[-114.379234,34.115988],[-114.390565,34.110084],[-114.401352,34.111652],[-114.405941,34.11154],[-114.411681,34.110031],[-114.415908,34.107636],[-114.420499,34.103466],[-114.426168,34.097042],[-114.428026,34.092787],[-114.43338,34.088413],[-114.434181,34.087379],[-114.435429,34.079727],[-114.437683,34.071937],[-114.43934,34.057893],[-114.439406,34.05381],[-114.438602,34.050205],[-114.435504,34.042615],[-114.434949,34.037784],[-114.436171,34.028083],[-114.438266,34.022609],[-114.44054,34.019329],[-114.443821,34.016176],[-114.450206,34.012574],[-114.454807,34.010968],[-114.458906,34.010835],[-114.46117,34.010081],[-114.46283,34.008421],[-114.463132,34.00661],[-114.46283,34.004497],[-114.460415,33.999215],[-114.460264,33.996649],[-114.46117,33.994687],[-114.462377,33.993781],[-114.466187,33.993465],[-114.467932,33.992877],[-114.471138,33.98804],[-114.475907,33.984424],[-114.481455,33.981261],[-114.482333,33.980181],[-114.483097,33.977745],[-114.484784,33.975519],[-114.495047,33.966835],[-114.499883,33.961789],[-114.509568,33.957264],[-114.511231,33.95704],[-114.51586,33.958106],[-114.522002,33.955623],[-114.52868,33.947817],[-114.535478,33.934651],[-114.534987,33.928499],[-114.533679,33.926072],[-114.528385,33.923674],[-114.525361,33.922272],[-114.518434,33.917518],[-114.511511,33.911092],[-114.508558,33.906098],[-114.50792,33.903807],[-114.507988,33.901813],[-114.508708,33.90064],[-114.510944,33.899099],[-114.513715,33.897959],[-114.516314,33.896196],[-114.517808,33.894889],[-114.518741,33.893208],[-114.518928,33.891714],[-114.518555,33.889847],[-114.517808,33.888167],[-114.516501,33.885926],[-114.512467,33.882884],[-114.50434,33.876882],[-114.503395,33.875018],[-114.503017,33.867998],[-114.503887,33.865754],[-114.505638,33.864276],[-114.514673,33.858638],[-114.516811,33.85812],[-114.52453,33.858477],[-114.526771,33.857357],[-114.528451,33.854929],[-114.529385,33.851755],[-114.529597,33.848063],[-114.525539,33.838614],[-114.523409,33.835323],[-114.520465,33.827778],[-114.51997,33.825381],[-114.520733,33.822031],[-114.522714,33.818979],[-114.527161,33.816191],[-114.52805,33.814963],[-114.520094,33.799473],[-114.516734,33.788345],[-114.507089,33.76793],[-114.504863,33.760465],[-114.50434,33.756381],[-114.504483,33.750998],[-114.506,33.746344],[-114.508206,33.741587],[-114.512348,33.734214],[-114.510265,33.732146],[-114.506799,33.730518],[-114.504176,33.728055],[-114.502661,33.724584],[-114.500788,33.722204],[-114.496565,33.719155],[-114.494901,33.71443],[-114.494197,33.707922],[-114.495719,33.698454],[-114.496489,33.696901],[-114.504993,33.693022],[-114.512409,33.691282],[-114.519113,33.688473],[-114.523959,33.685879],[-114.527782,33.682684],[-114.530348,33.679245],[-114.531523,33.675108],[-114.530999,33.671102],[-114.529706,33.668031],[-114.528304,33.666044],[-114.526947,33.664298],[-114.525977,33.662941],[-114.525201,33.661583],[-114.525007,33.659643],[-114.525201,33.658092],[-114.525783,33.657122],[-114.526947,33.655571],[-114.528304,33.653049],[-114.530244,33.65014],[-114.53005,33.647619],[-114.52908,33.644128],[-114.527917,33.641413],[-114.526947,33.637534],[-114.526947,33.633073],[-114.528498,33.630164],[-114.529856,33.627448],[-114.529662,33.622794],[-114.527938,33.618839],[-114.525783,33.616588],[-114.524619,33.61426],[-114.524813,33.611351],[-114.526782,33.608831],[-114.529186,33.60665],[-114.540617,33.591412],[-114.5403,33.580615],[-114.535965,33.569154],[-114.535664,33.568788],[-114.526834,33.557466],[-114.524391,33.553683],[-114.524599,33.552231],[-114.542011,33.542481],[-114.558898,33.531819],[-114.559507,33.530724],[-114.560835,33.524334],[-114.560552,33.518272],[-114.560963,33.516739],[-114.569533,33.509219],[-114.573757,33.507543],[-114.580468,33.506465],[-114.588239,33.502453],[-114.591554,33.499443],[-114.597283,33.490653],[-114.599713,33.484315],[-114.601696,33.481394],[-114.607843,33.474834],[-114.612472,33.470768],[-114.622918,33.456561],[-114.623395,33.45449],[-114.622283,33.447558],[-114.627125,33.433554],[-114.62964,33.428138],[-114.635183,33.422726],[-114.643302,33.416745],[-114.64954,33.413633],[-114.652828,33.412922],[-114.658382,33.413036],[-114.673901,33.418299],[-114.687953,33.417944],[-114.695655,33.415127],[-114.696504,33.414059],[-114.696805,33.412087],[-114.697707,33.410942],[-114.701732,33.408388],[-114.710878,33.407254],[-114.720065,33.407891],[-114.723829,33.406531],[-114.725282,33.405048],[-114.725535,33.404056],[-114.725292,33.402342],[-114.722872,33.398779],[-114.713602,33.388257],[-114.708408,33.384147],[-114.70731,33.382542],[-114.707009,33.380634],[-114.707348,33.376628],[-114.699053,33.361148],[-114.69817,33.356575],[-114.698035,33.352442],[-114.700938,33.337014],[-114.705241,33.327767],[-114.707962,33.323421],[-114.710792,33.320607],[-114.723623,33.31211],[-114.729904,33.305745],[-114.731222,33.304039],[-114.731223,33.302434],[-114.723259,33.288079],[-114.72167,33.286982],[-114.717875,33.285157],[-114.711197,33.283342],[-114.702873,33.281916],[-114.694449,33.279786],[-114.684363,33.276025],[-114.680507,33.273577],[-114.677032,33.27017],[-114.672401,33.26047],[-114.672088,33.258499],[-114.674491,33.255597],[-114.688205,33.247966],[-114.689541,33.246428],[-114.689421,33.24525],[-114.682731,33.234918],[-114.678097,33.2303],[-114.674479,33.225504],[-114.673626,33.223121],[-114.673715,33.219245],[-114.676072,33.210835],[-114.678749,33.203448],[-114.678178,33.199584],[-114.67519,33.188179],[-114.67536,33.185489],[-114.675831,33.18152],[-114.679034,33.174738],[-114.680248,33.169717],[-114.678729,33.162948],[-114.679359,33.159519],[-114.682253,33.155214],[-114.684489,33.148121],[-114.687074,33.142196],[-114.689995,33.137883],[-114.696829,33.131209],[-114.703682,33.113769],[-114.706175,33.105335],[-114.707896,33.097432],[-114.707819,33.091102],[-114.706488,33.08816],[-114.70473,33.087051],[-114.701165,33.086368],[-114.694628,33.086226],[-114.692548,33.085786],[-114.68902,33.084036],[-114.688597,33.082869],[-114.689307,33.079179],[-114.68912,33.076122],[-114.686991,33.070969],[-114.674296,33.057171],[-114.675104,33.047532],[-114.673659,33.041897],[-114.670803,33.037984],[-114.66506,33.033908],[-114.662317,33.032671],[-114.659832,33.032665],[-114.657827,33.033825],[-114.655038,33.037107],[-114.649001,33.046763],[-114.64598,33.048903],[-114.641622,33.046896],[-114.639553,33.045291],[-114.63419,33.039025],[-114.628293,33.031052],[-114.625787,33.029436],[-114.618788,33.027202],[-114.601014,33.02541],[-114.589778,33.026228],[-114.586982,33.026945],[-114.584765,33.028231],[-114.581404,33.032545],[-114.578287,33.035375],[-114.575161,33.036542],[-114.571653,33.036624],[-114.553189,33.033974],[-114.538459,33.033422],[-114.523578,33.030961],[-114.52013,33.029984],[-114.516484,33.027572],[-114.5149,33.026524],[-114.511343,33.023455],[-114.50613,33.01701],[-114.502871,33.011153],[-114.499797,33.003905],[-114.497315,32.991474],[-114.495712,32.980076],[-114.494212,32.974262],[-114.492938,32.971781],[-114.490129,32.969885],[-114.488625,32.969946],[-114.481315,32.972064],[-114.480417,32.973665],[-114.476156,32.975168],[-114.470988,32.97406],[-114.469039,32.972295],[-114.467664,32.966861],[-114.467272,32.960675],[-114.46773,32.956323],[-114.469113,32.952673],[-114.470833,32.949333],[-114.474042,32.94515],[-114.478456,32.940555],[-114.48074,32.937027],[-114.48092,32.935252],[-114.479005,32.928291],[-114.47664,32.923628],[-114.473713,32.920594],[-114.464448,32.913129],[-114.46365,32.911682],[-114.462929,32.907944],[-114.463127,32.901884],[-114.465715,32.87942],[-114.465715,32.879191],[-114.465546,32.874809],[-114.468971,32.845155],[-114.475892,32.838694],[-114.494116,32.823288],[-114.496284,32.822326],[-114.496827,32.822119],[-114.510217,32.816417],[-114.515389,32.811439],[-114.519758,32.805676],[-114.520385,32.803577],[-114.522031,32.801675],[-114.528849,32.796307],[-114.530755,32.793485],[-114.531669,32.791185],[-114.531746,32.782503],[-114.532432,32.776923],[-114.531831,32.774264],[-114.528443,32.767276],[-114.526856,32.757094],[-114.539093,32.756949],[-114.539224,32.749812],[-114.564447,32.749554],[-114.564508,32.742298],[-114.581736,32.742321],[-114.581784,32.734946],[-114.612697,32.734516],[-114.614772,32.734089],[-114.615733,32.729427],[-114.615585,32.728446],[-114.618373,32.728245],[-114.632686,32.730846],[-114.65826,32.733799],[-114.65884,32.73383],[-114.667493,32.734226],[-114.677091,32.736218],[-114.678632,32.736614],[-114.684278,32.737537],[-114.688779,32.737675],[-114.69879,32.744846],[-114.700743,32.745617],[-114.701918,32.745548],[-114.705717,32.741581],[-114.714522,32.73039],[-114.715788,32.727758],[-114.717665,32.721654],[-114.719633,32.718763],[-115.000802,32.699676],[-115.465164,32.6671],[-116.04662,32.623353],[-116.106181,32.618641],[-116.115427,32.61791],[-116.125848,32.616673],[-116.211033,32.610326],[-116.540643,32.583747],[-116.62705,32.576261],[-116.857154,32.557459],[-116.928055,32.550758],[-116.945956,32.550058],[-117.026358,32.542457],[-117.062759,32.539857],[-117.118868,32.534706],[-117.124862,32.534156],[-117.133363,32.575625],[-117.132963,32.597054],[-117.136664,32.618754],[-117.139464,32.627054],[-117.159865,32.660652],[-117.168866,32.671952],[-117.180366,32.681652],[-117.192967,32.687751],[-117.196767,32.688851],[-117.213068,32.687751],[-117.223868,32.683051],[-117.236239,32.671353],[-117.246069,32.669352],[-117.255169,32.700051],[-117.25757,32.72605],[-117.25537,32.745449],[-117.25257,32.752949],[-117.25497,32.786948],[-117.26107,32.803148],[-117.280971,32.822247],[-117.28217,32.839547],[-117.28117,32.843047],[-117.27387,32.851447],[-117.26497,32.848947],[-117.26067,32.852647],[-117.25617,32.859447],[-117.25167,32.874346],[-117.25447,32.900146],[-117.26047,32.931245],[-117.262547,32.939542],[-117.28077,33.012343],[-117.29337,33.034642],[-117.309771,33.07454],[-117.315278,33.093504],[-117.328359,33.121842],[-117.359484,33.164231],[-117.362572,33.168437],[-117.39148,33.202762],[-117.401926,33.213598],[-117.445583,33.268517],[-117.469794,33.296417],[-117.50565,33.334063],[-117.547693,33.365491],[-117.571722,33.378988],[-117.59588,33.386629],[-117.607905,33.406317],[-117.631682,33.430528],[-117.645582,33.440728],[-117.645592,33.440733],[-117.684584,33.461927],[-117.689284,33.460155],[-117.691984,33.456627],[-117.691384,33.454028],[-117.715349,33.460556],[-117.726486,33.483427],[-117.761387,33.516326],[-117.784888,33.541525],[-117.801288,33.546324],[-117.814188,33.552224],[-117.840289,33.573523],[-117.87679,33.592322],[-117.89979,33.599622],[-117.927091,33.605521],[-117.940591,33.620021],[-117.957114,33.629466],[-118.000593,33.654319],[-118.029694,33.676418],[-118.064895,33.711018],[-118.088896,33.729817],[-118.101097,33.734117],[-118.116703,33.743549],[-118.132698,33.753217],[-118.1569,33.760317],[-118.1755,33.763617],[-118.180831,33.763072],[-118.187701,33.749218],[-118.1837,33.736118],[-118.181367,33.717367],[-118.207476,33.716905],[-118.258687,33.703741],[-118.277208,33.707091],[-118.297104,33.708319],[-118.317205,33.712818],[-118.354705,33.732317],[-118.360505,33.736817],[-118.385006,33.741417],[-118.396606,33.735917],[-118.411211,33.741985],[-118.428407,33.774715],[-118.423407,33.782015],[-118.405007,33.800215],[-118.394376,33.804289],[-118.394307,33.804315],[-118.391507,33.815415],[-118.392107,33.840915],[-118.412708,33.883913],[-118.44241,33.940312],[-118.460611,33.969111],[-118.482729,33.995912],[-118.484212,33.99771],[-118.502813,34.015509],[-118.519514,34.027509],[-118.543115,34.038508],[-118.569235,34.04164],[-118.603572,34.039048],[-118.609652,34.036424],[-118.668358,34.038887],[-118.67543,34.037479],[-118.679366,34.033255],[-118.706215,34.029383],[-118.732391,34.032743],[-118.744952,34.032103],[-118.783433,34.021543],[-118.787094,34.019545],[-118.805114,34.001239],[-118.821579,34.013959],[-118.84038,34.027527],[-118.854653,34.034215],[-118.896159,34.039207],[-118.928048,34.045847],[-118.938081,34.043383],[-118.944887,34.04534],[-118.954722,34.048167],[-118.977751,34.059822],[-118.99698,34.065943],[-119.004644,34.066231],[-119.037494,34.083111],[-119.069959,34.09047],[-119.088536,34.09831],[-119.098216,34.099334],[-119.109784,34.094566],[-119.130169,34.100102],[-119.159554,34.119653],[-119.18864,34.139005],[-119.20314,34.144505],[-119.211241,34.144905],[-119.216441,34.146105],[-119.227743,34.161728],[-119.237142,34.175804],[-119.257043,34.213304],[-119.265927,34.234609],[-119.270144,34.252903],[-119.278644,34.266902],[-119.290945,34.274902],[-119.302131,34.272761],[-119.313034,34.275689],[-119.337475,34.290576],[-119.349187,34.304383],[-119.370356,34.319486],[-119.37578,34.321118],[-119.388249,34.317398],[-119.390449,34.318198],[-119.42777,34.353016],[-119.431066,34.355297],[-119.435888,34.355839],[-119.461036,34.374064],[-119.472678,34.375628],[-119.478265,34.377197],[-119.510655,34.386295],[-119.536957,34.395495],[-119.559459,34.413395],[-119.616862,34.420995],[-119.638864,34.415696],[-119.648664,34.417396],[-119.671866,34.416096],[-119.688167,34.412497],[-119.684666,34.408297],[-119.691749,34.403154],[-119.709067,34.395397],[-119.729369,34.395897],[-119.74547,34.402898],[-119.785871,34.415997],[-119.794771,34.417597],[-119.835771,34.415796],[-119.853771,34.407996],[-119.873971,34.408795],[-119.925227,34.433931],[-119.956433,34.435288],[-119.971951,34.444641],[-120.008077,34.460447],[-120.038828,34.463434],[-120.050682,34.461651],[-120.088591,34.460208],[-120.097212,34.461809],[-120.118411,34.469927],[-120.141165,34.473405],[-120.183505,34.470372],[-120.225498,34.470587],[-120.238002,34.468098],[-120.25777,34.467451],[-120.283001,34.468354],[-120.295051,34.470623],[-120.299169,34.469731],[-120.301822,34.467077],[-120.341369,34.458789],[-120.441975,34.451512],[-120.451425,34.447094],[-120.471376,34.447846],[-120.47661,34.475131],[-120.480372,34.481059],[-120.490523,34.490075],[-120.511421,34.522953],[-120.524776,34.531291],[-120.581293,34.556959],[-120.608355,34.556656],[-120.612005,34.553564],[-120.622575,34.554017],[-120.637805,34.56622],[-120.645739,34.581035],[-120.640244,34.604406],[-120.625127,34.634489],[-120.60197,34.692095],[-120.60045,34.70464],[-120.601672,34.709721],[-120.614852,34.730709],[-120.62632,34.738072],[-120.637415,34.755895],[-120.62297,34.7933],[-120.616296,34.816308],[-120.609898,34.842751],[-120.610266,34.85818],[-120.616325,34.866739],[-120.639283,34.880413],[-120.642212,34.894145],[-120.647328,34.901133],[-120.662889,34.901183],[-120.670835,34.904115],[-120.648905,34.974393],[-120.63999,35.002963],[-120.63357,35.033085],[-120.629931,35.061515],[-120.629583,35.078362],[-120.630957,35.101941],[-120.635787,35.123805],[-120.644311,35.139616],[-120.651134,35.147768],[-120.662475,35.153357],[-120.667994,35.15203],[-120.675074,35.153061],[-120.686974,35.160708],[-120.698906,35.171192],[-120.704203,35.173206],[-120.714185,35.175998],[-120.734231,35.178472],[-120.74887,35.177795],[-120.754823,35.174701],[-120.756862,35.169208],[-120.756086,35.160459],[-120.760492,35.15971],[-120.778998,35.168897],[-120.786076,35.177666],[-120.805258,35.184973],[-120.846674,35.204429],[-120.856047,35.206487],[-120.873046,35.225688],[-120.89679,35.247877],[-120.896876,35.25399],[-120.889354,35.277819],[-120.87957,35.294184],[-120.8672,35.327154],[-120.862684,35.346776],[-120.862133,35.360763],[-120.866099,35.393045],[-120.869209,35.403276],[-120.884757,35.430196],[-120.896862,35.442243],[-120.907937,35.449069],[-120.946546,35.446715],[-120.950742,35.44802],[-120.955863,35.453743],[-120.969436,35.460197],[-120.976122,35.459028],[-121.003359,35.46071],[-121.025621,35.484598],[-121.05308,35.50753],[-121.059913,35.509671],[-121.101595,35.548814],[-121.126027,35.593058],[-121.133556,35.600455],[-121.143561,35.606046],[-121.166712,35.635399],[-121.188897,35.643138],[-121.195291,35.640734],[-121.251034,35.656641],[-121.272322,35.666711],[-121.284973,35.674109],[-121.289794,35.689428],[-121.296473,35.696824],[-121.304583,35.701794],[-121.314632,35.71331],[-121.315786,35.75252],[-121.324918,35.769347],[-121.332449,35.783106],[-121.346363,35.795183],[-121.356737,35.804187],[-121.388053,35.823483],[-121.406823,35.844623],[-121.413146,35.855316],[-121.426955,35.860103],[-121.439584,35.86695],[-121.462264,35.885618],[-121.461227,35.896906],[-121.463452,35.904416],[-121.472435,35.91989],[-121.4862,35.970348],[-121.503112,36.000299],[-121.51159,36.006598],[-121.531876,36.014368],[-121.553716,36.019798],[-121.569612,36.021539],[-121.574602,36.025156],[-121.590395,36.050363],[-121.589183,36.053775],[-121.592853,36.065062],[-121.606845,36.072065],[-121.618672,36.087767],[-121.622009,36.099695],[-121.629634,36.114452],[-121.680145,36.165818],[-121.717176,36.195146],[-121.779851,36.227407],[-121.797059,36.234211],[-121.806979,36.232907],[-121.813734,36.234235],[-121.826425,36.24186],[-121.835785,36.250748],[-121.83935,36.260478],[-121.851967,36.277831],[-121.874797,36.289064],[-121.888491,36.30281],[-121.894714,36.317806],[-121.892917,36.340428],[-121.905446,36.358269],[-121.902669,36.363901],[-121.901813,36.381879],[-121.903195,36.393603],[-121.905657,36.398206],[-121.914378,36.404344],[-121.917463,36.414809],[-121.91474,36.42589],[-121.9255,36.453918],[-121.937205,36.472488],[-121.9416,36.485602],[-121.939216,36.496896],[-121.938763,36.506423],[-121.943678,36.511802],[-121.944666,36.521861],[-121.928769,36.523147],[-121.925937,36.525173],[-121.932508,36.559935],[-121.942533,36.566435],[-121.949659,36.567602],[-121.95146,36.564009],[-121.957335,36.564482],[-121.972594,36.57337],[-121.978592,36.580488],[-121.970427,36.582754],[-121.941666,36.618059],[-121.938551,36.633908],[-121.93643,36.636746],[-121.929666,36.636959],[-121.923866,36.634559],[-121.890164,36.609259],[-121.889064,36.601759],[-121.886764,36.601459],[-121.871364,36.604559],[-121.860604,36.611136],[-121.842263,36.630059],[-121.831995,36.644856],[-121.825052,36.657207],[-121.814462,36.682858],[-121.807062,36.714157],[-121.805643,36.750239],[-121.788278,36.803994],[-121.791544,36.815186],[-121.809363,36.848654],[-121.810552,36.850648],[-121.827664,36.879353],[-121.862266,36.931552],[-121.880167,36.950151],[-121.894667,36.961851],[-121.906468,36.96895],[-121.930069,36.97815],[-121.93947,36.97805],[-121.95167,36.97145],[-121.972771,36.954151],[-121.975871,36.954051],[-121.983896,36.958727],[-122.012373,36.96455],[-122.023373,36.96215],[-122.027174,36.95115],[-122.050122,36.948523],[-122.066421,36.948271],[-122.079356,36.950783],[-122.105976,36.955951],[-122.140578,36.97495],[-122.155078,36.98085],[-122.186879,37.00345],[-122.20618,37.013949],[-122.252181,37.059448],[-122.260481,37.072548],[-122.284882,37.101747],[-122.292974,37.107318],[-122.306139,37.116383],[-122.313907,37.118161],[-122.322971,37.11546],[-122.330463,37.115338],[-122.337071,37.117382],[-122.338856,37.120854],[-122.337085,37.130795],[-122.337833,37.135936],[-122.344029,37.144099],[-122.359791,37.155574],[-122.36179,37.163593],[-122.367085,37.172817],[-122.37927,37.181128],[-122.390599,37.182988],[-122.397065,37.187249],[-122.405073,37.195791],[-122.407181,37.219465],[-122.408982,37.225258],[-122.415822,37.232839],[-122.419113,37.24147],[-122.418452,37.248521],[-122.411686,37.265844],[-122.401323,37.337009],[-122.40085,37.359225],[-122.409258,37.374805],[-122.423286,37.392542],[-122.443687,37.435941],[-122.445987,37.461541],[-122.452087,37.48054],[-122.467888,37.49814],[-122.472388,37.50054],[-122.476443,37.498768],[-122.482351,37.496187],[-122.485888,37.494641],[-122.486749,37.49439],[-122.487139,37.494277],[-122.493789,37.492341],[-122.494429,37.49269],[-122.499289,37.495341],[-122.516689,37.52134],[-122.519533,37.537302],[-122.516589,37.544939],[-122.514789,37.546139],[-122.513688,37.552239],[-122.518088,37.576138],[-122.517187,37.590637],[-122.501386,37.599637],[-122.496786,37.612136],[-122.494085,37.644035],[-122.496784,37.686433],[-122.502427,37.708133],[-122.506483,37.723731],[-122.509397,37.748841],[-122.511983,37.77113],[-122.514483,37.780829],[-122.50531,37.788312],[-122.492883,37.787929],[-122.485783,37.790629],[-122.478083,37.810828],[-122.470336,37.808671],[-122.463793,37.804653],[-122.425942,37.810979],[-122.407452,37.811441],[-122.398139,37.80563],[-122.385323,37.790724],[-122.375854,37.734979],[-122.370094,37.732331],[-122.367697,37.734943],[-122.365478,37.734621],[-122.356784,37.729505],[-122.361749,37.71501],[-122.370411,37.717572],[-122.391374,37.708331],[-122.39319,37.707531],[-122.387626,37.67906],[-122.374291,37.662206],[-122.3756,37.652389],[-122.37789,37.650425],[-122.387381,37.648462],[-122.386072,37.637662],[-122.365455,37.626208],[-122.35531,37.615736],[-122.358583,37.611155],[-122.370364,37.614427],[-122.373309,37.613773],[-122.378545,37.605592],[-122.360219,37.592501],[-122.317676,37.590865],[-122.315385,37.587265],[-122.315713,37.583666],[-122.305895,37.575484],[-122.262698,37.572866],[-122.251898,37.566321],[-122.244372,37.55814],[-122.242832,37.557136],[-122.236323,37.552891],[-122.225135,37.545594],[-122.214264,37.538505],[-122.196593,37.537196],[-122.194957,37.522469],[-122.168449,37.504143],[-122.155686,37.501198],[-122.149632,37.502671],[-122.140142,37.507907],[-122.130979,37.503652],[-122.127706,37.500053],[-122.116112,37.505386],[-122.111344,37.50758],[-122.111998,37.528851],[-122.128688,37.560594],[-122.133924,37.562885],[-122.137524,37.567467],[-122.144396,37.581866],[-122.147014,37.588411],[-122.145378,37.600846],[-122.14636,37.607391],[-122.152905,37.640771],[-122.163049,37.667933],[-122.170904,37.676114],[-122.179085,37.680041],[-122.197411,37.692804],[-122.203971,37.697769],[-122.213774,37.698695],[-122.221628,37.705567],[-122.246826,37.72193],[-122.255989,37.735674],[-122.257953,37.739601],[-122.257134,37.745001],[-122.252226,37.747619],[-122.244938,37.750294],[-122.242638,37.753744],[-122.253753,37.761218],[-122.264101,37.764667],[-122.275408,37.76735],[-122.286139,37.769458],[-122.293996,37.770416],[-122.304345,37.774632],[-122.318909,37.77904],[-122.329159,37.783173],[-122.33079,37.78383],[-122.330963,37.786035],[-122.331748,37.796052],[-122.33555,37.799538],[-122.335675,37.799652],[-122.333711,37.809797],[-122.323567,37.823214],[-122.317676,37.826814],[-122.306222,37.827469],[-122.303931,37.830087],[-122.301313,37.847758],[-122.310477,37.873938],[-122.309986,37.892755],[-122.313258,37.89701],[-122.313496,37.897211],[-122.32373,37.905845],[-122.33453,37.908791],[-122.35711,37.908791],[-122.362346,37.904209],[-122.367582,37.903882],[-122.378709,37.905191],[-122.385908,37.908136],[-122.389181,37.9101],[-122.39049,37.922535],[-122.395071,37.927117],[-122.401289,37.928426],[-122.413725,37.937262],[-122.417371,37.943513],[-122.430087,37.963115],[-122.42976,37.965405],[-122.415361,37.963115],[-122.411761,37.960497],[-122.408383,37.957544],[-122.399832,37.956009],[-122.367582,37.978168],[-122.361905,37.989991],[-122.363001,37.994375],[-122.366928,37.998458],[-122.368891,38.007948],[-122.367909,38.01253],[-122.363655,38.014166],[-122.359493,38.009941],[-122.340093,38.003694],[-122.331912,38.00533],[-122.321112,38.012857],[-122.315549,38.013511],[-122.300823,38.010893],[-122.283478,38.022674],[-122.262861,38.0446],[-122.262861,38.051473],[-122.266669,38.06007],[-122.273006,38.07438],[-122.282824,38.082889],[-122.301804,38.105142],[-122.314567,38.115287],[-122.366273,38.141467],[-122.39638,38.149976],[-122.403514,38.150624],[-122.40358,38.15063],[-122.409798,38.136231],[-122.439577,38.116923],[-122.450377,38.116269],[-122.454958,38.118887],[-122.484411,38.11496],[-122.489974,38.112014],[-122.490727,38.109755],[-122.491283,38.108087],[-122.489974,38.096961],[-122.486702,38.090088],[-122.483757,38.071762],[-122.492265,38.056381],[-122.499465,38.032165],[-122.497828,38.019402],[-122.494556,38.015148],[-122.481466,38.007621],[-122.462812,38.003367],[-122.452995,37.996167],[-122.448413,37.988313],[-122.448413,37.984713],[-122.456595,37.978823],[-122.462485,37.981441],[-122.471975,37.981768],[-122.488665,37.966714],[-122.490302,37.964751],[-122.490302,37.959188],[-122.487684,37.948716],[-122.480484,37.945443],[-122.479175,37.941516],[-122.48572,37.937589],[-122.499465,37.939225],[-122.503064,37.936607],[-122.503064,37.928753],[-122.493574,37.921881],[-122.486375,37.921881],[-122.478193,37.918608],[-122.471975,37.910427],[-122.472303,37.902573],[-122.458558,37.894064],[-122.448413,37.89341],[-122.43925,37.88392],[-122.438268,37.880974],[-122.45005,37.871157],[-122.462158,37.868866],[-122.474266,37.874429],[-122.480811,37.873448],[-122.483429,37.868866],[-122.483102,37.863957],[-122.476536,37.832812],[-122.476473,37.832513],[-122.479151,37.825428],[-122.47986,37.825641],[-122.483483,37.826728],[-122.492474,37.82484],[-122.505383,37.822128],[-122.522836,37.824717],[-122.523585,37.824828],[-122.537285,37.830328],[-122.548986,37.836227],[-122.561487,37.851827],[-122.584289,37.859227],[-122.60129,37.875126],[-122.627113,37.88608],[-122.639977,37.897349],[-122.656519,37.904519],[-122.678474,37.906604],[-122.682171,37.90645],[-122.693569,37.901171],[-122.70264,37.89382],[-122.727297,37.904626],[-122.732898,37.920225],[-122.736898,37.925825],[-122.754606,37.935527],[-122.766138,37.938004],[-122.783244,37.951334],[-122.791739,37.969422],[-122.797405,37.976657],[-122.821383,37.996735],[-122.856573,38.016717],[-122.882114,38.025273],[-122.939711,38.031908],[-122.956811,38.02872],[-122.972378,38.020247],[-122.981776,38.009119],[-122.982386,38.004274],[-122.980147,38.000831],[-122.976764,37.99568],[-122.97439,37.992429],[-123.024066,37.994878],[-123.020562,37.999544],[-123.016303,38.001691],[-123.011533,38.003438],[-122.99242,38.041758],[-122.960889,38.112962],[-122.952086,38.138562],[-122.949074,38.15406],[-122.949626,38.164041],[-122.953629,38.17567],[-122.965408,38.187113],[-122.96637,38.198514],[-122.968112,38.202428],[-122.991953,38.233185],[-122.993959,38.237602],[-122.993235,38.239686],[-122.987149,38.237538],[-122.968569,38.242879],[-122.967203,38.250691],[-122.977082,38.267902],[-122.986319,38.273164],[-122.994603,38.283096],[-122.997106,38.289458],[-123.002911,38.295708],[-123.004122,38.297012],[-123.024333,38.310573],[-123.038742,38.313576],[-123.051061,38.310693],[-123.053476,38.305722],[-123.052021,38.302246],[-123.053504,38.299385],[-123.058239,38.298355],[-123.063671,38.302178],[-123.074684,38.322574],[-123.068437,38.33521],[-123.068265,38.359865],[-123.085572,38.390525],[-123.103706,38.415541],[-123.122379,38.437314],[-123.128825,38.450418],[-123.145325,38.459422],[-123.166428,38.474947],[-123.202277,38.494314],[-123.249797,38.511045],[-123.287156,38.540223],[-123.297151,38.543452],[-123.331899,38.565542],[-123.343338,38.590008],[-123.349612,38.596805],[-123.371876,38.607235],[-123.379303,38.621953],[-123.398166,38.647044],[-123.40301,38.649449],[-123.405663,38.656729],[-123.43272,38.687131],[-123.441774,38.699744],[-123.461291,38.717001],[-123.490021,38.732213],[-123.514784,38.741966],[-123.525152,38.753801],[-123.533535,38.768408],[-123.541837,38.776764],[-123.571987,38.798189],[-123.579856,38.802835],[-123.58638,38.802857],[-123.600221,38.814115],[-123.601569,38.81899],[-123.605317,38.822765],[-123.638637,38.843865],[-123.642676,38.844005],[-123.647387,38.845472],[-123.652212,38.854582],[-123.654696,38.865638],[-123.659846,38.872529],[-123.688099,38.893594],[-123.71054,38.91323],[-123.725367,38.917438],[-123.72763,38.9295],[-123.726315,38.936367],[-123.738886,38.95412],[-123.732892,38.954994],[-123.729053,38.956667],[-123.721347,38.963879],[-123.711149,38.977316],[-123.6969,39.004401],[-123.69074,39.021293],[-123.690095,39.031157],[-123.693969,39.057363],[-123.713392,39.108422],[-123.721505,39.125327],[-123.735936,39.139644],[-123.737913,39.143442],[-123.742221,39.164885],[-123.76101,39.191595],[-123.765891,39.193657],[-123.774998,39.212083],[-123.777368,39.237214],[-123.787893,39.264327],[-123.798991,39.271355],[-123.803848,39.278771],[-123.801757,39.28353],[-123.803081,39.291747],[-123.811387,39.312825],[-123.808772,39.324368],[-123.817369,39.3388],[-123.822085,39.343857],[-123.825331,39.360814],[-123.826306,39.36871],[-123.822325,39.379987],[-123.821887,39.406809],[-123.81469,39.446538],[-123.795639,39.492215],[-123.78417,39.509419],[-123.778521,39.521478],[-123.766475,39.552803],[-123.76721,39.559852],[-123.787417,39.604552],[-123.78354,39.609517],[-123.782322,39.621486],[-123.78636,39.659932],[-123.792659,39.684122],[-123.808208,39.710715],[-123.824744,39.718128],[-123.829545,39.723071],[-123.831599,39.730629],[-123.835092,39.738768],[-123.838089,39.752409],[-123.83715,39.776232],[-123.839797,39.795637],[-123.851714,39.832041],[-123.853764,39.8341],[-123.881458,39.845422],[-123.907664,39.863028],[-123.915142,39.875313],[-123.915853,39.881114],[-123.930047,39.909697],[-123.954952,39.922373],[-123.962655,39.937635],[-123.980031,39.962458],[-123.99586,39.973045],[-124.023938,40.001284],[-124.035904,40.013319],[-124.056408,40.024305],[-124.065069,40.024785],[-124.068908,40.021307],[-124.072509,40.022657],[-124.079983,40.029773],[-124.080709,40.06611],[-124.087086,40.078442],[-124.110549,40.103765],[-124.139952,40.11635],[-124.170767,40.124207],[-124.187874,40.130542],[-124.214895,40.160902],[-124.231095,40.171581],[-124.258405,40.184277],[-124.296497,40.208816],[-124.320912,40.226617],[-124.327691,40.23737],[-124.34307,40.243979],[-124.352715,40.250453],[-124.363414,40.260974],[-124.363634,40.276212],[-124.347853,40.314634],[-124.353124,40.331425],[-124.356595,40.335016],[-124.362796,40.350046],[-124.365357,40.374855],[-124.373599,40.392923],[-124.379082,40.398828],[-124.391496,40.407047],[-124.402623,40.422105],[-124.409591,40.438076],[-124.408601,40.443201],[-124.396642,40.462119],[-124.38494,40.48982],[-124.383224,40.499852],[-124.387023,40.504954],[-124.382816,40.519],[-124.379096,40.522865],[-124.363545,40.548698],[-124.329404,40.61643],[-124.315141,40.639526],[-124.312558,40.641333],[-124.289119,40.67963],[-124.248406,40.735166],[-124.228244,40.76939],[-124.201921,40.805111],[-124.176715,40.843618],[-124.158322,40.876069],[-124.137066,40.925732],[-124.118147,40.989263],[-124.112165,41.028173],[-124.125448,41.048504],[-124.132946,41.052482],[-124.138217,41.054342],[-124.142867,41.054032],[-124.147216,41.052884],[-124.148939,41.051467],[-124.151266,41.051101],[-124.153622,41.05355],[-124.154028,41.059923],[-124.154513,41.087159],[-124.160556,41.099011],[-124.159065,41.121957],[-124.165414,41.129822],[-124.163988,41.138675],[-124.158539,41.143021],[-124.149674,41.140845],[-124.1438,41.144686],[-124.122677,41.189726],[-124.106986,41.229678],[-124.106389,41.240682],[-124.092284,41.287695],[-124.079015,41.347135],[-124.072294,41.374844],[-124.063076,41.439579],[-124.065521,41.464739],[-124.066057,41.470258],[-124.075917,41.501757],[-124.081427,41.511228],[-124.081987,41.547761],[-124.092404,41.553615],[-124.101123,41.569192],[-124.101403,41.578524],[-124.097385,41.585251],[-124.100961,41.602499],[-124.114413,41.616768],[-124.116037,41.628849],[-124.120225,41.640354],[-124.135552,41.657307],[-124.139354,41.671652],[-124.138373,41.678881],[-124.143479,41.709284],[-124.147412,41.717955],[-124.154246,41.728801],[-124.164716,41.740126],[-124.17739,41.745756],[-124.185363,41.739351],[-124.19104,41.736079],[-124.194953,41.736778],[-124.203843,41.747035],[-124.23972,41.7708],[-124.242288,41.772034],[-124.248704,41.771459],[-124.255994,41.783014],[-124.245027,41.7923],[-124.230678,41.818681],[-124.219592,41.846432],[-124.208439,41.888192],[-124.203402,41.940964],[-124.204948,41.983441],[-124.211605,41.99846],[-124.126194,41.996992],[-124.100921,41.996956],[-124.100216,41.996842],[-124.087827,41.996891],[-124.086661,41.996869],[-124.001188,41.996146],[-123.834208,41.996116],[-123.821472,41.995473],[-123.813992,41.995096],[-123.789295,41.996111],[-123.728156,41.997007],[-123.656998,41.995137],[-123.624554,41.999837],[-123.55256,42.000246],[-123.525245,42.001047],[-123.517906,42.000883],[-123.501997,42.000527],[-123.498896,42.000474],[-123.49883,42.000525],[-123.43477,42.001641],[-123.381776,41.999268],[-123.347562,41.999108],[-123.230764,42.003845],[-123.230762,42.003845],[-123.192361,42.005446],[-123.154908,42.008036],[-123.145959,42.009247],[-123.083956,42.005448],[-123.065655,42.004948],[-123.045254,42.003049],[-122.941597,42.003085],[-122.893961,42.002605],[-122.876148,42.003247],[-122.80008,42.004071],[-122.712942,42.004157],[-122.634739,42.004858],[-122.501135,42.00846],[-122.397984,42.008758],[-122.378193,42.009518],[-122.289533,42.007764]]]]}}]} diff --git a/Where/RegionKit/Sources/Resources/regions/us-CO.geojson b/Where/RegionKit/Sources/Resources/regions/us-CO.geojson new file mode 100644 index 00000000..a4a2679c --- /dev/null +++ b/Where/RegionKit/Sources/Resources/regions/us-CO.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"region":"us-CO","name":"Colorado"},"geometry":{"type":"Polygon","coordinates":[[[-106.190554,40.997607],[-106.061181,40.996999],[-105.730421,40.996886],[-105.724804,40.99691],[-105.277138,40.998173],[-105.27686,40.998173],[-105.256527,40.998191],[-105.254779,40.99821],[-104.943371,40.998084],[-104.855273,40.998048],[-104.829504,40.99927],[-104.675999,41.000957],[-104.497149,41.001828],[-104.497058,41.001805],[-104.467672,41.001473],[-104.214692,41.001657],[-104.214191,41.001568],[-104.211473,41.001591],[-104.123586,41.001626],[-104.10459,41.001543],[-104.086068,41.001563],[-104.066961,41.001504],[-104.053249,41.001406],[-104.039238,41.001502],[-104.023383,41.001887],[-104.018223,41.001617],[-103.972642,41.001615],[-103.971373,41.001524],[-103.953525,41.001596],[-103.906324,41.001387],[-103.896207,41.00175],[-103.877967,41.001673],[-103.858449,41.001681],[-103.750498,41.002054],[-103.574522,41.001721],[-103.497447,41.001635],[-103.486697,41.001914],[-103.421975,41.002007],[-103.421925,41.001969],[-103.396991,41.002558],[-103.382492,41.002232],[-103.365314,41.001846],[-103.362979,41.001844],[-103.077804,41.002298],[-103.076536,41.002253],[-103.059538,41.002368],[-103.057998,41.002368],[-103.043444,41.002344],[-103.038704,41.002251],[-103.002026,41.002486],[-103.000102,41.0024],[-102.98269,41.002157],[-102.981483,41.002112],[-102.963669,41.002186],[-102.962522,41.002072],[-102.960706,41.002059],[-102.959624,41.002095],[-102.94483,41.002303],[-102.943109,41.002051],[-102.925568,41.00228],[-102.924029,41.002142],[-102.906547,41.002276],[-102.904796,41.002207],[-102.887407,41.002178],[-102.885746,41.002131],[-102.867822,41.002183],[-102.865784,41.001988],[-102.849263,41.002301],[-102.846455,41.002256],[-102.830303,41.002351],[-102.82728,41.002143],[-102.773546,41.002414],[-102.766723,41.002275],[-102.754617,41.002361],[-102.739624,41.00223],[-102.653463,41.002332],[-102.621033,41.002597],[-102.578696,41.002291],[-102.575738,41.002268],[-102.575496,41.0022],[-102.566048,41.0022],[-102.556789,41.002219],[-102.487955,41.002445],[-102.470537,41.002382],[-102.469223,41.002424],[-102.379593,41.002301],[-102.364066,41.002174],[-102.292833,41.002207],[-102.292622,41.00223],[-102.292553,41.002207],[-102.291354,41.002207],[-102.2721,41.002245],[-102.267812,41.002383],[-102.231931,41.002327],[-102.2122,41.002462],[-102.209361,41.002442],[-102.19121,41.002326],[-102.124972,41.002338],[-102.070598,41.002423],[-102.051718,41.002377],[-102.051614,41.002377],[-102.051292,40.749591],[-102.051292,40.749586],[-102.051398,40.697542],[-102.051725,40.537839],[-102.051519,40.520094],[-102.051465,40.440008],[-102.05184,40.396396],[-102.051572,40.39308],[-102.051798,40.360069],[-102.051553,40.349214],[-102.051309,40.338381],[-102.051922,40.235344],[-102.051894,40.229193],[-102.051909,40.162674],[-102.052001,40.148359],[-102.051744,40.003078],[-102.051569,39.849805],[-102.051363,39.843471],[-102.051318,39.833311],[-102.051254,39.818992],[-102.050594,39.675594],[-102.050099,39.653812],[-102.050422,39.646048],[-102.049954,39.592331],[-102.049806,39.574058],[-102.049764,39.56818],[-102.049554,39.538932],[-102.049673,39.536691],[-102.049679,39.506183],[-102.049369,39.423333],[-102.04937,39.41821],[-102.049167,39.403597],[-102.04896,39.373712],[-102.048449,39.303138],[-102.04725,39.13702],[-102.047189,39.133147],[-102.047134,39.129701],[-102.046571,39.047038],[-102.045388,38.813392],[-102.045334,38.799463],[-102.045448,38.783453],[-102.045371,38.770064],[-102.045287,38.755528],[-102.045375,38.754339],[-102.045212,38.697567],[-102.045156,38.688555],[-102.045127,38.686725],[-102.04516,38.675221],[-102.045102,38.674946],[-102.045074,38.669617],[-102.045288,38.615249],[-102.045288,38.615168],[-102.045211,38.581609],[-102.045189,38.558732],[-102.045223,38.543797],[-102.045112,38.523784],[-102.045262,38.505532],[-102.045263,38.505395],[-102.045324,38.453647],[-102.044936,38.41968],[-102.044442,38.415802],[-102.044944,38.384419],[-102.044613,38.312324],[-102.044568,38.268819],[-102.044567,38.268749],[-102.04451,38.262412],[-102.044398,38.250015],[-102.044251,38.141778],[-102.044589,38.125013],[-102.044255,38.113011],[-102.044644,38.045532],[-102.043844,37.928102],[-102.043845,37.926135],[-102.043219,37.867929],[-102.043033,37.824146],[-102.042953,37.803535],[-102.042668,37.788758],[-102.042158,37.760164],[-102.04199,37.738541],[-102.041876,37.723875],[-102.041574,37.680436],[-102.041694,37.665681],[-102.041582,37.654495],[-102.041585,37.644282],[-102.041618,37.607868],[-102.041894,37.557977],[-102.041899,37.541186],[-102.042016,37.535261],[-102.041786,37.506066],[-102.041801,37.469488],[-102.041755,37.434855],[-102.041669,37.43474],[-102.041676,37.409898],[-102.041586,37.38919],[-102.041524,37.375018],[-102.042089,37.352819],[-102.041974,37.352613],[-102.041817,37.30949],[-102.041664,37.29765],[-102.041963,37.258164],[-102.042002,37.141744],[-102.042135,37.125021],[-102.042092,37.125021],[-102.041809,37.111973],[-102.041983,37.106551],[-102.04192,37.035083],[-102.041749,37.034397],[-102.041921,37.032178],[-102.04195,37.030805],[-102.041952,37.024742],[-102.04224,36.993083],[-102.054503,36.993109],[-102.184271,36.993593],[-102.208316,36.99373],[-102.260789,36.994388],[-102.355288,36.994506],[-102.355367,36.994575],[-102.698142,36.995149],[-102.74206,36.997689],[-102.75986,37.000019],[-102.778569,36.999242],[-102.806762,37.000019],[-102.814616,37.000783],[-102.841989,36.999598],[-102.979613,36.998549],[-102.985807,36.998571],[-102.986976,36.998524],[-103.002199,37.000104],[-103.086106,37.000174],[-103.155922,37.000232],[-103.733247,36.998016],[-103.734364,36.998041],[-104.007855,36.996239],[-104.250536,36.994644],[-104.338833,36.993535],[-104.519257,36.993766],[-104.624556,36.994377],[-104.625545,36.993599],[-104.645029,36.993378],[-104.732031,36.993447],[-104.73212,36.993484],[-105.000554,36.993264],[-105.029228,36.992729],[-105.1208,36.995428],[-105.155042,36.995339],[-105.220613,36.995169],[-105.251296,36.995605],[-105.41931,36.995856],[-105.442459,36.995994],[-105.447255,36.996017],[-105.465182,36.995991],[-105.508836,36.995895],[-105.512485,36.995777],[-105.533922,36.995875],[-105.62747,36.995679],[-105.66472,36.995874],[-105.716471,36.995849],[-105.71847,36.995846],[-105.996159,36.995418],[-105.997472,36.995417],[-106.006634,36.995343],[-106.201469,36.994122],[-106.247705,36.994266],[-106.248675,36.994288],[-106.293279,36.99389],[-106.343139,36.99423],[-106.47628,36.993839],[-106.500589,36.993768],[-106.617159,36.992967],[-106.617125,36.993004],[-106.628652,36.993175],[-106.628733,36.993161],[-106.661344,36.993243],[-106.675626,36.993123],[-106.750591,36.992461],[-106.869796,36.992426],[-106.877292,37.000139],[-107.420913,37.000005],[-107.420915,37.000005],[-107.481737,37.000005],[-108.000623,37.000001],[-108.249358,36.999015],[-108.250635,36.999561],[-108.288086,36.999555],[-108.2884,36.99952],[-108.320464,36.999499],[-108.320721,36.99951],[-108.379203,36.999459],[-108.619689,36.999249],[-108.620309,36.999287],[-108.954404,36.998906],[-108.958868,36.998913],[-109.045223,36.999084],[-109.045166,37.072742],[-109.045058,37.074661],[-109.044995,37.086429],[-109.045189,37.096271],[-109.045173,37.109464],[-109.045203,37.111958],[-109.045156,37.112064],[-109.045995,37.177279],[-109.045978,37.201831],[-109.045487,37.210844],[-109.045584,37.249351],[-109.046039,37.249993],[-109.04581,37.374993],[-109.043464,37.484711],[-109.043137,37.499992],[-109.041915,37.530653],[-109.041865,37.530726],[-109.041806,37.604171],[-109.042131,37.617662],[-109.042089,37.623795],[-109.042269,37.666067],[-109.041732,37.711214],[-109.04176,37.713182],[-109.041636,37.74021],[-109.042098,37.74999],[-109.041461,37.800105],[-109.041754,37.835826],[-109.041723,37.842051],[-109.041844,37.872788],[-109.041653,37.88117],[-109.041058,37.907236],[-109.043121,37.97426],[-109.042819,37.997068],[-109.04282,37.999301],[-109.041837,38.153022],[-109.041762,38.16469],[-109.054648,38.244921],[-109.060062,38.275489],[-109.059962,38.499987],[-109.060253,38.599328],[-109.059541,38.719888],[-109.057388,38.795456],[-109.054189,38.874984],[-109.053943,38.904414],[-109.053797,38.905284],[-109.053233,38.942467],[-109.053292,38.942878],[-109.052436,38.999985],[-109.051512,39.126095],[-109.050765,39.366677],[-109.051363,39.497674],[-109.05104,39.660472],[-109.050615,39.87497],[-109.050873,40.058915],[-109.050813,40.059579],[-109.050944,40.180712],[-109.050973,40.180849],[-109.050969,40.222662],[-109.050946,40.444368],[-109.050314,40.495092],[-109.050698,40.499963],[-109.049955,40.539901],[-109.050074,40.540358],[-109.048044,40.619231],[-109.048249,40.653601],[-109.048373,40.662602],[-109.049088,40.714562],[-109.048455,40.826081],[-109.050076,41.000659],[-108.884138,41.000094],[-108.631108,41.000156],[-108.526667,40.999608],[-108.500659,41.000112],[-108.250649,41.000114],[-108.181227,41.000455],[-108.046539,41.002064],[-107.918421,41.002036],[-107.625624,41.002124],[-107.367443,41.003073],[-107.317794,41.002967],[-107.241194,41.002804],[-107.000606,41.003444],[-106.857773,41.002663],[-106.453859,41.002057],[-106.439563,41.001978],[-106.437419,41.001795],[-106.43095,41.001752],[-106.391852,41.001176],[-106.386356,41.001144],[-106.321165,40.999123],[-106.217573,40.997734],[-106.190554,40.997607]]]}}]} diff --git a/Where/RegionKit/Sources/Resources/regions/us-CT.geojson b/Where/RegionKit/Sources/Resources/regions/us-CT.geojson new file mode 100644 index 00000000..a8d1c4a9 --- /dev/null +++ b/Where/RegionKit/Sources/Resources/regions/us-CT.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"region":"us-CT","name":"Connecticut"},"geometry":{"type":"Polygon","coordinates":[[[-71.799242,42.008065],[-71.797922,41.935395],[-71.797649,41.928556],[-71.794161,41.841101],[-71.794161,41.840141],[-71.792786,41.80867],[-71.792767,41.807001],[-71.791062,41.770273],[-71.789678,41.724734],[-71.789672,41.724569],[-71.786994,41.655992],[-71.787637,41.639917],[-71.789356,41.59691],[-71.789359,41.596852],[-71.797683,41.416709],[-71.81839,41.419599],[-71.839649,41.412119],[-71.842563,41.409855],[-71.843472,41.40583],[-71.842131,41.395359],[-71.833443,41.384524],[-71.831613,41.370899],[-71.837738,41.363529],[-71.835951,41.353935],[-71.829595,41.344544],[-71.839013,41.334042],[-71.860513,41.320248],[-71.859566,41.3224],[-71.868235,41.330941],[-71.886302,41.33641],[-71.91671,41.332217],[-71.922092,41.334518],[-71.923282,41.335113],[-71.936284,41.337959],[-71.945652,41.337799],[-71.956747,41.329871],[-71.970955,41.324526],[-71.979447,41.329987],[-71.982194,41.329861],[-71.988153,41.320577],[-72.021898,41.316838],[-72.084487,41.319634],[-72.094443,41.314164],[-72.09982,41.306998],[-72.11182,41.299098],[-72.134221,41.299398],[-72.16158,41.310262],[-72.173922,41.317597],[-72.177622,41.322497],[-72.184122,41.323997],[-72.191022,41.323197],[-72.201422,41.315697],[-72.203022,41.313197],[-72.204022,41.299097],[-72.212924,41.291365],[-72.225276,41.299047],[-72.235531,41.300413],[-72.248161,41.299488],[-72.251895,41.29862],[-72.250515,41.294386],[-72.251323,41.289997],[-72.261487,41.282926],[-72.31776,41.277782],[-72.327595,41.27846],[-72.333894,41.282916],[-72.34146,41.28011],[-72.348643,41.277446],[-72.348068,41.269698],[-72.386629,41.261798],[-72.398688,41.278172],[-72.40593,41.278398],[-72.451925,41.278885],[-72.472539,41.270103],[-72.485693,41.270881],[-72.499534,41.265866],[-72.506634,41.260099],[-72.51866,41.261253],[-72.521312,41.2656],[-72.529416,41.264421],[-72.533247,41.26269],[-72.536746,41.256207],[-72.537776,41.255646],[-72.546833,41.250718],[-72.547235,41.250499],[-72.570655,41.267744],[-72.571076,41.268054],[-72.571136,41.268098],[-72.583336,41.271698],[-72.585181,41.271321],[-72.585934,41.271168],[-72.586674,41.271017],[-72.587926,41.270761],[-72.589818,41.270375],[-72.590967,41.270141],[-72.598036,41.268698],[-72.607863,41.270387],[-72.610236,41.270795],[-72.617237,41.271998],[-72.617521,41.27194],[-72.617983,41.271845],[-72.631363,41.269092],[-72.641001,41.267108],[-72.641538,41.266998],[-72.642811,41.266884],[-72.650697,41.266178],[-72.653838,41.265897],[-72.653931,41.265931],[-72.654715,41.266219],[-72.662203,41.268964],[-72.662838,41.269197],[-72.667176,41.268192],[-72.671673,41.267151],[-72.672339,41.266997],[-72.674319,41.26552],[-72.684939,41.257597],[-72.685414,41.252607],[-72.685539,41.251297],[-72.689446,41.247629],[-72.690237,41.246887],[-72.690439,41.246697],[-72.693441,41.245493],[-72.694744,41.24497],[-72.69547,41.244948],[-72.701806,41.244752],[-72.706236,41.244615],[-72.707212,41.244585],[-72.708658,41.24454],[-72.708963,41.24453],[-72.709193,41.244523],[-72.710595,41.24448],[-72.710821,41.244812],[-72.713674,41.249007],[-72.711208,41.251018],[-72.71246,41.254167],[-72.722439,41.259138],[-72.732813,41.254727],[-72.754444,41.266913],[-72.757477,41.266913],[-72.786142,41.264796],[-72.818737,41.252244],[-72.819372,41.254061],[-72.826883,41.256755],[-72.847767,41.25669],[-72.85021,41.255544],[-72.854055,41.24774],[-72.861344,41.245297],[-72.881445,41.242597],[-72.895445,41.243697],[-72.900803,41.245864],[-72.904345,41.247297],[-72.905245,41.248297],[-72.903045,41.252797],[-72.902808,41.252894],[-72.894745,41.256197],[-72.89473,41.25626],[-72.893845,41.259897],[-72.89637,41.263949],[-72.903129,41.274794],[-72.907962,41.282549],[-72.9082,41.282932],[-72.916827,41.282033],[-72.917037,41.281905],[-72.920062,41.280056],[-72.920658,41.271574],[-72.920714,41.27078],[-72.920846,41.268897],[-72.931887,41.261139],[-72.933472,41.260024],[-72.935646,41.258497],[-72.956984,41.25292],[-72.959633,41.252228],[-72.961345,41.25178],[-72.962047,41.251597],[-72.983751,41.235364],[-72.985095,41.234358],[-72.986247,41.233497],[-72.997948,41.222697],[-73.003639,41.215287],[-73.007548,41.210197],[-73.013465,41.205479],[-73.013988,41.205062],[-73.014948,41.204297],[-73.020149,41.204097],[-73.020167,41.204237],[-73.020195,41.204446],[-73.02021,41.204568],[-73.020254,41.204906],[-73.020449,41.206397],[-73.022549,41.207197],[-73.024783,41.207435],[-73.045602,41.209658],[-73.05065,41.210197],[-73.054947,41.208468],[-73.05935,41.206697],[-73.07761,41.195176],[-73.07945,41.194015],[-73.09122,41.184153],[-73.092,41.1835],[-73.092147,41.183377],[-73.104328,41.17317],[-73.105483,41.172203],[-73.105493,41.172194],[-73.107987,41.168738],[-73.110352,41.159697],[-73.109952,41.156997],[-73.108352,41.153718],[-73.111052,41.150797],[-73.130253,41.146797],[-73.16437,41.158565],[-73.170074,41.160532],[-73.170701,41.164945],[-73.177774,41.166697],[-73.202656,41.158096],[-73.228295,41.142602],[-73.235058,41.143996],[-73.247958,41.126396],[-73.262358,41.117496],[-73.286759,41.127896],[-73.296359,41.125696],[-73.31186,41.116296],[-73.33066,41.109996],[-73.372296,41.10402],[-73.392162,41.087696],[-73.400154,41.086299],[-73.41367,41.073258],[-73.435063,41.056696],[-73.450364,41.057096],[-73.468239,41.051347],[-73.477364,41.035997],[-73.493327,41.048173],[-73.516903,41.038738],[-73.516766,41.029497],[-73.522666,41.019297],[-73.528866,41.016397],[-73.531169,41.021919],[-73.530189,41.028776],[-73.532786,41.03167],[-73.535338,41.03192],[-73.551494,41.024336],[-73.561968,41.016797],[-73.567668,41.010897],[-73.570068,41.001597],[-73.583968,41.000897],[-73.584988,41.010537],[-73.595699,41.015995],[-73.603952,41.015054],[-73.643478,41.002171],[-73.651175,40.995229],[-73.657336,40.985171],[-73.659671,40.987909],[-73.658772,40.993497],[-73.659372,40.999497],[-73.655571,41.007697],[-73.654671,41.011697],[-73.655371,41.012797],[-73.662672,41.020497],[-73.670472,41.030097],[-73.679973,41.041797],[-73.687173,41.050697],[-73.694273,41.059296],[-73.716875,41.087596],[-73.722575,41.093596],[-73.727775,41.100696],[-73.639672,41.141495],[-73.632153,41.144921],[-73.614391,41.152915],[-73.564941,41.17517],[-73.514617,41.198434],[-73.509487,41.200814],[-73.482709,41.21276],[-73.518384,41.256719],[-73.550961,41.295422],[-73.548929,41.307598],[-73.549574,41.315931],[-73.548973,41.326297],[-73.544728,41.366375],[-73.543425,41.376622],[-73.543415,41.376754],[-73.541169,41.405994],[-73.537673,41.433905],[-73.537469,41.43589],[-73.536969,41.441094],[-73.536067,41.451331],[-73.535986,41.45306],[-73.535885,41.455236],[-73.535857,41.455709],[-73.535769,41.457159],[-73.534369,41.475894],[-73.534269,41.476394],[-73.534269,41.476911],[-73.53415,41.47806],[-73.534055,41.478968],[-73.533969,41.479693],[-73.530067,41.527194],[-73.521041,41.619773],[-73.520017,41.641197],[-73.518238,41.666734],[-73.516785,41.687581],[-73.511921,41.740941],[-73.510961,41.758749],[-73.505008,41.823773],[-73.504944,41.824285],[-73.501984,41.858717],[-73.498304,41.892508],[-73.496527,41.92238],[-73.492975,41.958524],[-73.489615,42.000092],[-73.487314,42.049638],[-73.432812,42.050587],[-73.29442,42.046984],[-73.293097,42.04694],[-73.231056,42.044945],[-73.229798,42.044877],[-73.127276,42.041964],[-73.053254,42.039861],[-73.008745,42.03886],[-72.999549,42.038653],[-72.863733,42.03771],[-72.863619,42.037709],[-72.847142,42.036894],[-72.813541,42.036494],[-72.816741,41.997595],[-72.774757,42.002129],[-72.766739,42.002995],[-72.766139,42.007695],[-72.763265,42.009742],[-72.763238,42.012795],[-72.761238,42.014595],[-72.759738,42.016995],[-72.761354,42.018183],[-72.76231,42.019775],[-72.762151,42.021527],[-72.760558,42.021846],[-72.758151,42.020865],[-72.757467,42.020947],[-72.754038,42.025395],[-72.751738,42.030195],[-72.753538,42.032095],[-72.757538,42.033295],[-72.755838,42.036195],[-72.714134,42.036608],[-72.695927,42.036788],[-72.643134,42.032395],[-72.607933,42.030795],[-72.606933,42.024995],[-72.590233,42.024695],[-72.582332,42.024695],[-72.573231,42.030141],[-72.528131,42.034295],[-72.509192,42.034217],[-72.45668,42.033999],[-72.317148,42.031907],[-72.249523,42.031626],[-72.135715,42.030245],[-72.135687,42.030245],[-72.102162,42.028899],[-72.063496,42.027347],[-71.987326,42.02688],[-71.89078,42.024368],[-71.80065,42.023569],[-71.799242,42.008065]]]}}]} diff --git a/Where/RegionKit/Sources/Resources/regions/us-DC.geojson b/Where/RegionKit/Sources/Resources/regions/us-DC.geojson new file mode 100644 index 00000000..58579869 --- /dev/null +++ b/Where/RegionKit/Sources/Resources/regions/us-DC.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"region":"us-DC","name":"District of Columbia"},"geometry":{"type":"Polygon","coordinates":[[[-77.038598,38.791513],[-77.038898,38.800813],[-77.035798,38.814913],[-77.038098,38.815613],[-77.039098,38.821413],[-77.038098,38.828612],[-77.039199,38.832212],[-77.041199,38.833712],[-77.042599,38.833812],[-77.043499,38.833212],[-77.044899,38.834712],[-77.044999,38.838512],[-77.044489,38.839595],[-77.044199,38.840212],[-77.041699,38.840212],[-77.032798,38.841712],[-77.031698,38.850512],[-77.039299,38.864312],[-77.038899,38.865812],[-77.039099,38.868112],[-77.040599,38.871212],[-77.043299,38.874012],[-77.045399,38.875212],[-77.046599,38.874912],[-77.045599,38.873012],[-77.046299,38.871312],[-77.049099,38.870712],[-77.051299,38.873212],[-77.051099,38.875212],[-77.054099,38.879112],[-77.055199,38.880012],[-77.058254,38.880069],[-77.063499,38.888611],[-77.067299,38.899211],[-77.068199,38.899811],[-77.070099,38.900711],[-77.0822,38.901911],[-77.0902,38.904211],[-77.0937,38.905911],[-77.1012,38.911111],[-77.1034,38.912911],[-77.1063,38.919111],[-77.1134,38.925211],[-77.1166,38.928911],[-77.1179,38.932411],[-77.119857,38.93427],[-77.1199,38.934311],[-77.1045,38.94641],[-77.1007,38.94891],[-77.0915,38.95651],[-77.054299,38.98511],[-77.040999,38.99511],[-77.036299,38.99171],[-77.015598,38.97591],[-77.013798,38.97441],[-77.008298,38.97011],[-77.002636,38.965521],[-77.002498,38.96541],[-76.941519,38.918276],[-76.935096,38.913311],[-76.909395,38.892812],[-76.910795,38.891712],[-76.919295,38.885112],[-76.920195,38.884412],[-76.949696,38.861312],[-76.953696,38.858512],[-76.979497,38.837812],[-76.992697,38.828213],[-76.999997,38.821913],[-77.001397,38.821513],[-77.024392,38.80297],[-77.038598,38.791513]]]}}]} diff --git a/Where/RegionKit/Sources/Resources/regions/us-DE.geojson b/Where/RegionKit/Sources/Resources/regions/us-DE.geojson new file mode 100644 index 00000000..13af11e1 --- /dev/null +++ b/Where/RegionKit/Sources/Resources/regions/us-DE.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"region":"us-DE","name":"Delaware"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-75.564927,39.583248],[-75.576271,39.588144],[-75.578719,39.591504],[-75.579615,39.598656],[-75.565823,39.590608],[-75.564927,39.583248]]],[[[-75.55587,39.605824],[-75.561934,39.605216],[-75.567694,39.613744],[-75.571759,39.623584],[-75.570798,39.626768],[-75.559446,39.629812],[-75.559102,39.629056],[-75.559614,39.624208],[-75.558446,39.617296],[-75.556878,39.612144],[-75.557502,39.609184],[-75.556734,39.606688],[-75.55587,39.605824]]],[[[-75.594846,39.837286],[-75.593666,39.837455],[-75.593082,39.8375],[-75.5799,39.838522],[-75.579849,39.838526],[-75.570464,39.839007],[-75.539346,39.838211],[-75.518444,39.836311],[-75.498843,39.833312],[-75.481242,39.829112],[-75.463341,39.823812],[-75.45374,39.820312],[-75.428038,39.809212],[-75.415041,39.801786],[-75.405337,39.796213],[-75.437938,39.783413],[-75.440909,39.780831],[-75.448639,39.774113],[-75.448135,39.773969],[-75.447339,39.773313],[-75.452339,39.769013],[-75.459439,39.765813],[-75.463339,39.761213],[-75.463039,39.758313],[-75.466249,39.750769],[-75.466263,39.750737],[-75.469239,39.743613],[-75.474168,39.735473],[-75.475384,39.731057],[-75.47544,39.728713],[-75.47724,39.724713],[-75.477432,39.720561],[-75.476888,39.718337],[-75.47764,39.715013],[-75.47894,39.713813],[-75.481741,39.714546],[-75.483141,39.715513],[-75.485241,39.715813],[-75.488553,39.714833],[-75.491341,39.711113],[-75.496241,39.701413],[-75.504042,39.698313],[-75.507162,39.696961],[-75.509042,39.694513],[-75.509742,39.686113],[-75.529744,39.692613],[-75.562246,39.656712],[-75.587147,39.651012],[-75.611969,39.621968],[-75.613153,39.62096],[-75.613377,39.620288],[-75.614065,39.61832],[-75.614929,39.615952],[-75.614273,39.61464],[-75.613345,39.613056],[-75.613665,39.61256],[-75.613233,39.607408],[-75.613477,39.606861],[-75.613473,39.606832],[-75.613793,39.606192],[-75.611905,39.597568],[-75.611873,39.597408],[-75.60464,39.58992],[-75.603584,39.58896],[-75.592224,39.583568],[-75.591984,39.583248],[-75.587744,39.580672],[-75.5872,39.580256],[-75.586608,39.57888],[-75.586016,39.578448],[-75.571599,39.567728],[-75.570783,39.56728],[-75.563034,39.56224],[-75.564649,39.559922],[-75.565636,39.558509],[-75.569359,39.540589],[-75.569418,39.539124],[-75.570362,39.527223],[-75.560728,39.520472],[-75.566933,39.508273],[-75.576436,39.509195],[-75.587729,39.496353],[-75.587729,39.495369],[-75.593068,39.479186],[-75.593068,39.477996],[-75.589901,39.462022],[-75.589439,39.460812],[-75.580185,39.450786],[-75.578914,39.44788],[-75.570985,39.442486],[-75.57183,39.438897],[-75.55589,39.430351],[-75.538512,39.416502],[-75.535977,39.409384],[-75.523583,39.391583],[-75.521682,39.387871],[-75.512996,39.366153],[-75.512372,39.365656],[-75.511788,39.365191],[-75.505276,39.359169],[-75.494158,39.354613],[-75.491797,39.351845],[-75.494122,39.34658],[-75.493148,39.345527],[-75.491688,39.343963],[-75.490377,39.342818],[-75.479845,39.337472],[-75.479963,39.336577],[-75.469324,39.33082],[-75.460423,39.328236],[-75.439027,39.313384],[-75.436936,39.309379],[-75.435551,39.297546],[-75.435374,39.296676],[-75.427953,39.285049],[-75.408376,39.264698],[-75.402964,39.254626],[-75.404823,39.245898],[-75.405927,39.243631],[-75.405716,39.223834],[-75.404745,39.222666],[-75.396892,39.216141],[-75.393015,39.204512],[-75.39479,39.188354],[-75.398584,39.186616],[-75.400144,39.186456],[-75.408266,39.174625],[-75.410625,39.156246],[-75.401193,39.088762],[-75.402035,39.066885],[-75.400294,39.065645],[-75.395806,39.059211],[-75.396277,39.057884],[-75.387914,39.051174],[-75.379873,39.04879],[-75.345763,39.024857],[-75.34089,39.01996],[-75.318354,38.988191],[-75.314951,38.980775],[-75.311607,38.967637],[-75.312546,38.951065],[-75.312546,38.94928],[-75.311923,38.945917],[-75.311882,38.945698],[-75.311542,38.944633],[-75.302552,38.939002],[-75.312282,38.924594],[-75.304078,38.91316],[-75.263115,38.877351],[-75.232029,38.844254],[-75.205329,38.823386],[-75.190552,38.806861],[-75.160748,38.791224],[-75.159022,38.790193],[-75.134022,38.782242],[-75.113331,38.782998],[-75.097103,38.788703],[-75.093654,38.793992],[-75.097197,38.803101],[-75.093805,38.803812],[-75.089473,38.797198],[-75.082153,38.772157],[-75.080217,38.750112],[-75.079221,38.738238],[-75.06551,38.66103],[-75.065217,38.632394],[-75.06192,38.608869],[-75.061259,38.608602],[-75.060478,38.608012],[-75.060032,38.607709],[-75.049748,38.486387],[-75.048939,38.451263],[-75.049268,38.451264],[-75.05251,38.451273],[-75.053483,38.451274],[-75.064719,38.451289],[-75.066327,38.451291],[-75.069909,38.451276],[-75.070356,38.451276],[-75.085814,38.451258],[-75.088281,38.451256],[-75.089649,38.451254],[-75.141894,38.451196],[-75.185413,38.451013],[-75.252723,38.451397],[-75.26035,38.451492],[-75.341247,38.45197],[-75.34125,38.45197],[-75.355797,38.452008],[-75.371054,38.452107],[-75.393563,38.452114],[-75.394786,38.45216],[-75.410884,38.4524],[-75.424831,38.45261],[-75.428728,38.452671],[-75.47915,38.453699],[-75.500142,38.454144],[-75.502961,38.45422],[-75.521304,38.454657],[-75.52273,38.454657],[-75.533763,38.454958],[-75.559212,38.455563],[-75.559934,38.455579],[-75.57411,38.455991],[-75.583601,38.456424],[-75.589307,38.456286],[-75.593082,38.456404],[-75.598069,38.456855],[-75.630457,38.457904],[-75.662843,38.458759],[-75.665585,38.4589],[-75.693521,38.460128],[-75.696369,38.492373],[-75.696688,38.496467],[-75.698777,38.522001],[-75.700179,38.542717],[-75.701465,38.559433],[-75.701565,38.560736],[-75.703445,38.58512],[-75.703981,38.592066],[-75.705774,38.61474],[-75.70586,38.616268],[-75.706235,38.621296],[-75.706585,38.626125],[-75.707346,38.63528],[-75.707352,38.635359],[-75.722028,38.822078],[-75.722599,38.829859],[-75.72261,38.830008],[-75.722882,38.833156],[-75.724002,38.846682],[-75.724061,38.847781],[-75.725565,38.868152],[-75.725829,38.869296],[-75.743811,39.094674],[-75.745793,39.114935],[-75.746121,39.120318],[-75.747668,39.143306],[-75.747671,39.143345],[-75.749356,39.164815],[-75.751028,39.177762],[-75.755953,39.245958],[-75.755962,39.246069],[-75.760104,39.296817],[-75.766667,39.377216],[-75.766693,39.377537],[-75.779518,39.534724],[-75.779663,39.536504],[-75.780786,39.550262],[-75.78689,39.630575],[-75.78745,39.637455],[-75.788658,39.658211],[-75.788616,39.680742],[-75.788658,39.681911],[-75.788395,39.700031],[-75.788395,39.700287],[-75.788359,39.721811],[-75.773558,39.722411],[-75.766058,39.737811],[-75.760346,39.747231],[-75.753066,39.757631],[-75.744394,39.767855],[-75.736489,39.775759],[-75.727049,39.784126],[-75.716969,39.791998],[-75.701208,39.802606],[-75.685991,39.811054],[-75.662822,39.82115],[-75.641518,39.828363],[-75.634706,39.830164],[-75.617251,39.833999],[-75.595756,39.837156],[-75.594846,39.837286]]]]}}]} diff --git a/Where/RegionKit/Sources/Resources/regions/us-FL.geojson b/Where/RegionKit/Sources/Resources/regions/us-FL.geojson new file mode 100644 index 00000000..d5e6088f --- /dev/null +++ b/Where/RegionKit/Sources/Resources/regions/us-FL.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"region":"us-FL","name":"Florida"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-82.821585,27.964443],[-82.829801,27.968469],[-82.828625,28.019795],[-82.823025,28.030695],[-82.823063,28.044758],[-82.826282,28.05345],[-82.831825,28.062893],[-82.836326,28.073193],[-82.833225,28.082193],[-82.830525,28.085293],[-82.826125,28.083793],[-82.823063,28.068258],[-82.818288,28.057613],[-82.813435,28.03716],[-82.815168,28.012547],[-82.821408,28.008387],[-82.821755,28.002494],[-82.817248,27.992094],[-82.815168,27.973721],[-82.821585,27.964443]]],[[[-81.582923,24.658732],[-81.580534,24.66914],[-81.562917,24.692912],[-81.55761,24.692488],[-81.542116,24.681026],[-81.535323,24.67954],[-81.51898,24.687818],[-81.516433,24.700341],[-81.5124,24.703737],[-81.490962,24.710105],[-81.476642,24.711244],[-81.474186,24.706332],[-81.469275,24.704286],[-81.459043,24.707355],[-81.454132,24.710834],[-81.451881,24.714518],[-81.4527,24.736209],[-81.456588,24.740097],[-81.451267,24.747464],[-81.440831,24.73539],[-81.43858,24.727],[-81.435715,24.723931],[-81.432032,24.722908],[-81.423028,24.731911],[-81.421595,24.737641],[-81.427121,24.745827],[-81.430599,24.747259],[-81.431009,24.751761],[-81.425483,24.752989],[-81.402769,24.749101],[-81.392947,24.743371],[-81.390287,24.73846],[-81.389468,24.731298],[-81.38558,24.726182],[-81.36041,24.708788],[-81.345881,24.70756],[-81.319282,24.701238],[-81.314787,24.691764],[-81.313933,24.680707],[-81.309664,24.665017],[-81.298028,24.656774],[-81.298369,24.654326],[-81.303113,24.651665],[-81.332831,24.639528],[-81.395096,24.621062],[-81.401946,24.623564],[-81.403319,24.640294],[-81.414187,24.647167],[-81.432315,24.645949],[-81.448623,24.640172],[-81.470411,24.641985],[-81.480951,24.645121],[-81.48183,24.647369],[-81.477915,24.649893],[-81.47641,24.653197],[-81.480504,24.659757],[-81.49858,24.66498],[-81.502992,24.660877],[-81.505585,24.654609],[-81.50874,24.64421],[-81.509028,24.631516],[-81.511165,24.625135],[-81.518595,24.620304],[-81.54645,24.614895],[-81.602998,24.586444],[-81.664209,24.573143],[-81.674694,24.564359],[-81.685278,24.558739],[-81.691575,24.559886],[-81.732511,24.556423],[-81.765993,24.552103],[-81.786157,24.54658],[-81.810333,24.544701],[-81.81289,24.546468],[-81.814446,24.56358],[-81.811386,24.56975],[-81.800676,24.570989],[-81.794057,24.586],[-81.773808,24.584977],[-81.748071,24.590199],[-81.739241,24.589973],[-81.734573,24.584148],[-81.730473,24.58196],[-81.715944,24.587956],[-81.71548,24.592498],[-81.705364,24.597647],[-81.699349,24.597647],[-81.694235,24.591932],[-81.687017,24.592534],[-81.678595,24.597647],[-81.66897,24.607873],[-81.655735,24.616295],[-81.637087,24.621408],[-81.614829,24.642764],[-81.614529,24.650584],[-81.597685,24.655397],[-81.587759,24.655998],[-81.582923,24.658732]]],[[[-82.15068,24.576331],[-82.143075,24.593395],[-82.135423,24.596879],[-82.125268,24.597426],[-82.104187,24.588256],[-82.101051,24.584679],[-82.099417,24.572522],[-82.104429,24.561167],[-82.116787,24.549144],[-82.159439,24.548212],[-82.165206,24.552159],[-82.164426,24.563375],[-82.15068,24.576331]]],[[[-81.249799,24.673357],[-81.246095,24.675832],[-81.243232,24.673998],[-81.244761,24.669202],[-81.281778,24.65375],[-81.278312,24.660448],[-81.260006,24.674848],[-81.249799,24.673357]]],[[[-80.909954,24.781154],[-80.906288,24.769867],[-80.912042,24.76505],[-80.938543,24.767535],[-81.015933,24.719881],[-81.023794,24.716901],[-81.028616,24.720618],[-81.032447,24.727323],[-81.03429,24.727341],[-81.064554,24.715453],[-81.071034,24.711722],[-81.075855,24.704266],[-81.078716,24.696557],[-81.078439,24.692382],[-81.108041,24.688592],[-81.124094,24.704873],[-81.125371,24.708291],[-81.107355,24.71276],[-81.105287,24.71128],[-81.099135,24.711993],[-81.066816,24.723926],[-81.05057,24.737581],[-81.041797,24.742965],[-81.036698,24.742827],[-81.035192,24.739982],[-81.02217,24.733091],[-81.016918,24.734676],[-80.994426,24.743991],[-80.986454,24.752749],[-80.960129,24.764226],[-80.910431,24.782324],[-80.909954,24.781154]]],[[[-81.317673,24.75729],[-81.305468,24.756612],[-81.290801,24.736862],[-81.288259,24.720881],[-81.302984,24.714199],[-81.310744,24.727068],[-81.318505,24.729477],[-81.326844,24.728375],[-81.350162,24.746524],[-81.357417,24.756834],[-81.342695,24.75625],[-81.327555,24.762315],[-81.324637,24.76721],[-81.317673,24.75729]]],[[[-80.89054,24.791678],[-80.884572,24.791561],[-80.88402,24.790414],[-80.892649,24.785991],[-80.906874,24.783744],[-80.89054,24.791678]]],[[[-80.788263,24.824218],[-80.790497,24.817789],[-80.796053,24.81194],[-80.822342,24.812629],[-80.846191,24.802968],[-80.850338,24.8026],[-80.850866,24.803701],[-80.846142,24.807488],[-80.830158,24.81428],[-80.814551,24.827953],[-80.79278,24.843918],[-80.780564,24.84052],[-80.788263,24.824218]]],[[[-80.729275,24.865361],[-80.719977,24.864644],[-80.703028,24.880873],[-80.691762,24.885759],[-80.690354,24.881539],[-80.703176,24.869495],[-80.71185,24.863323],[-80.761359,24.836225],[-80.766966,24.836158],[-80.745468,24.850652],[-80.740611,24.857421],[-80.732343,24.86481],[-80.729275,24.865361]]],[[[-84.777208,29.707398],[-84.729836,29.738881],[-84.716994,29.749066],[-84.696726,29.76993],[-84.694125,29.764593],[-84.694939,29.761844],[-84.713747,29.74139],[-84.765117,29.699724],[-84.776954,29.692191],[-84.799129,29.681565],[-84.853829,29.66472],[-84.884632,29.652248],[-84.957779,29.612635],[-85.036219,29.588919],[-85.051033,29.586928],[-85.054624,29.592084],[-85.069453,29.605282],[-85.09519,29.62249],[-85.097082,29.625215],[-85.094882,29.627757],[-85.06653,29.609952],[-85.038497,29.599552],[-85.023501,29.597073],[-85.017205,29.604379],[-84.987775,29.610307],[-84.968314,29.617238],[-84.932592,29.637232],[-84.925842,29.644949],[-84.920333,29.648638],[-84.895885,29.657444],[-84.862099,29.672572],[-84.813352,29.687028],[-84.79816,29.699321],[-84.777208,29.707398]]],[[[-85.156415,29.679628],[-85.137397,29.684348],[-85.134639,29.686569],[-85.114268,29.688658],[-85.093902,29.684838],[-85.083719,29.679019],[-85.077237,29.670862],[-85.091399,29.648634],[-85.097218,29.633004],[-85.124913,29.628433],[-85.142746,29.635404],[-85.16252,29.650282],[-85.18453,29.663987],[-85.204314,29.672695],[-85.222546,29.678039],[-85.220324,29.680138],[-85.208981,29.681775],[-85.184776,29.68271],[-85.168625,29.682409],[-85.156415,29.679628]]],[[[-82.255777,26.703437],[-82.255159,26.70816],[-82.246535,26.706435],[-82.24251,26.694361],[-82.24596,26.688612],[-82.246535,26.683437],[-82.23744,26.661976],[-82.218342,26.626407],[-82.214337,26.602944],[-82.196514,26.559823],[-82.187315,26.527626],[-82.177541,26.502328],[-82.166042,26.489679],[-82.149368,26.477605],[-82.131545,26.47703],[-82.120046,26.473581],[-82.088423,26.455182],[-82.076924,26.466106],[-82.062551,26.470131],[-82.038403,26.456907],[-82.015607,26.454858],[-82.013713,26.454258],[-82.013913,26.452058],[-82.063114,26.425459],[-82.075015,26.422059],[-82.082915,26.422059],[-82.098115,26.424959],[-82.126671,26.436279],[-82.148716,26.455458],[-82.172917,26.467658],[-82.177017,26.471558],[-82.180717,26.476257],[-82.186441,26.489221],[-82.201402,26.55631],[-82.205523,26.566536],[-82.222131,26.590402],[-82.238872,26.636433],[-82.248659,26.654337],[-82.263008,26.673388],[-82.268007,26.682791],[-82.264351,26.698496],[-82.255777,26.703437]]],[[[-80.250581,25.34193],[-80.254916,25.336336],[-80.260137,25.324641],[-80.268138,25.320675],[-80.288184,25.282835],[-80.307584,25.257561],[-80.351399,25.190615],[-80.354019,25.184306],[-80.349855,25.168825],[-80.35857,25.154073],[-80.377084,25.130487],[-80.399767,25.108536],[-80.428318,25.095547],[-80.431032,25.08925],[-80.443375,25.076084],[-80.462011,25.069935],[-80.47387,25.060253],[-80.493881,25.038502],[-80.48912,25.031301],[-80.494781,25.023019],[-80.537995,24.990244],[-80.565831,24.958155],[-80.571668,24.953659],[-80.588272,24.951153],[-80.596073,24.948173],[-80.611693,24.93842],[-80.635571,24.913003],[-80.659395,24.897433],[-80.66128,24.899704],[-80.660198,24.90498],[-80.650765,24.908121],[-80.641306,24.914311],[-80.623866,24.931236],[-80.622896,24.935587],[-80.624172,24.939058],[-80.621658,24.944265],[-80.597074,24.958492],[-80.581131,24.964738],[-80.578185,24.962811],[-80.570813,24.962215],[-80.558785,24.971505],[-80.54411,24.999916],[-80.543254,25.007337],[-80.545971,25.01477],[-80.524498,25.016945],[-80.509136,25.028317],[-80.501326,25.041436],[-80.495569,25.047497],[-80.4889,25.05011],[-80.481197,25.056604],[-80.460652,25.078904],[-80.465496,25.086609],[-80.470211,25.089438],[-80.481763,25.091905],[-80.494715,25.102269],[-80.484188,25.10943],[-80.47748,25.107407],[-80.476174,25.099454],[-80.463987,25.09321],[-80.450399,25.088751],[-80.444887,25.092966],[-80.433575,25.106317],[-80.433499,25.114665],[-80.447659,25.147729],[-80.446473,25.151287],[-80.41326,25.137053],[-80.403177,25.141798],[-80.395467,25.150694],[-80.387164,25.170859],[-80.38835,25.182721],[-80.391909,25.19221],[-80.387164,25.198141],[-80.369965,25.206444],[-80.358696,25.207037],[-80.3498,25.210595],[-80.337345,25.231353],[-80.333787,25.253891],[-80.336159,25.261601],[-80.342683,25.268125],[-80.368186,25.282359],[-80.364034,25.28651],[-80.339421,25.290069],[-80.334676,25.285917],[-80.328746,25.28651],[-80.315698,25.29422],[-80.292567,25.314385],[-80.289602,25.325061],[-80.275961,25.344039],[-80.264614,25.354322],[-80.256982,25.361239],[-80.25461,25.38081],[-80.251052,25.391486],[-80.246307,25.398603],[-80.226142,25.406313],[-80.219025,25.411058],[-80.21428,25.416988],[-80.20657,25.434188],[-80.199453,25.458504],[-80.192336,25.473331],[-80.189964,25.485786],[-80.191743,25.495275],[-80.188778,25.50773],[-80.179288,25.518999],[-80.174544,25.518406],[-80.173951,25.482821],[-80.184033,25.468587],[-80.204198,25.412244],[-80.221991,25.397417],[-80.238004,25.361832],[-80.240376,25.347005],[-80.249865,25.342853],[-80.250581,25.34193]]],[[[-83.309455,30.634417],[-83.30925,30.634405],[-83.309249,30.634405],[-83.256218,30.631279],[-83.187391,30.627223],[-83.174411,30.626444],[-83.163309,30.625895],[-83.15617,30.625504],[-83.136614,30.623989],[-83.13137,30.623583],[-82.878779,30.609082],[-82.877259,30.609024],[-82.698902,30.598271],[-82.698618,30.598232],[-82.689539,30.597734],[-82.689271,30.597719],[-82.584002,30.591796],[-82.569237,30.590965],[-82.565476,30.590622],[-82.553159,30.589934],[-82.545055,30.589361],[-82.536233,30.588885],[-82.524899,30.588189],[-82.459792,30.584287],[-82.459544,30.584272],[-82.418915,30.581745],[-82.374844,30.579004],[-82.287343,30.573458],[-82.2581,30.571559],[-82.249841,30.570863],[-82.214839,30.568591],[-82.214818,30.568517],[-82.214385,30.566958],[-82.218579,30.564403],[-82.223025,30.56321],[-82.227254,30.561041],[-82.231916,30.55627],[-82.235603,30.544885],[-82.23582,30.537187],[-82.234952,30.533066],[-82.230752,30.526758],[-82.229399,30.520823],[-82.230377,30.517339],[-82.226933,30.510281],[-82.225026,30.50783],[-82.218514,30.504187],[-82.212852,30.498751],[-82.206445,30.491877],[-82.201416,30.485164],[-82.200938,30.474438],[-82.204614,30.468868],[-82.207708,30.460503],[-82.207522,30.456928],[-82.20604,30.455507],[-82.204823,30.45184],[-82.203975,30.444507],[-82.206486,30.437081],[-82.20987,30.432818],[-82.210291,30.42459],[-82.204151,30.40133],[-82.19294,30.378779],[-82.189847,30.375938],[-82.183797,30.373712],[-82.180018,30.368625],[-82.171508,30.359869],[-82.170054,30.358929],[-82.165192,30.358035],[-82.161757,30.357851],[-82.158109,30.359913],[-82.143282,30.363393],[-82.116385,30.367335],[-82.104834,30.368319],[-82.1025,30.367823],[-82.101416,30.366556],[-82.101798,30.365336],[-82.094687,30.360781],[-82.081106,30.358806],[-82.068533,30.359184],[-82.060034,30.360328],[-82.050069,30.362338],[-82.049966,30.362382],[-82.047917,30.363265],[-82.040746,30.370158],[-82.036825,30.377884],[-82.035871,30.385287],[-82.041164,30.396841],[-82.04199,30.403266],[-82.041164,30.409966],[-82.039971,30.41428],[-82.034005,30.422357],[-82.034464,30.428048],[-82.037209,30.434518],[-82.036203,30.43846],[-82.030064,30.444853],[-82.028212,30.447396],[-82.025457,30.457755],[-82.023734,30.467289],[-82.017779,30.475081],[-82.016982,30.478779],[-82.017297,30.487638],[-82.018222,30.492085],[-82.015892,30.495499],[-82.01477,30.513009],[-82.015826,30.518166],[-82.01699,30.519358],[-82.018868,30.523828],[-82.018361,30.531184],[-82.013216,30.550091],[-82.005477,30.563495],[-82.008091,30.577018],[-82.012109,30.593773],[-82.015708,30.601704],[-82.016503,30.602484],[-82.026941,30.606153],[-82.027338,30.606726],[-82.026541,30.613303],[-82.028499,30.621829],[-82.033927,30.629603],[-82.037609,30.633271],[-82.039941,30.637144],[-82.039092,30.641132],[-82.039595,30.643309],[-82.042271,30.649452],[-82.046114,30.651767],[-82.049507,30.655548],[-82.050432,30.676266],[-82.041812,30.692376],[-82.036426,30.706585],[-82.037563,30.71864],[-82.039154,30.723178],[-82.04101,30.72508],[-82.043795,30.729641],[-82.041168,30.734248],[-82.040026,30.737548],[-82.039634,30.747727],[-82.038967,30.749262],[-82.035964,30.750998],[-82.032645,30.750674],[-82.0284,30.750981],[-82.017917,30.755263],[-82.01266,30.761289],[-82.011597,30.763122],[-82.017881,30.775844],[-82.024035,30.783156],[-82.023848,30.786685],[-82.022866,30.787991],[-82.017051,30.791657],[-82.007865,30.792937],[-82.004973,30.791744],[-81.994972,30.786073],[-81.990855,30.781611],[-81.988605,30.780056],[-81.981273,30.776767],[-81.979061,30.776415],[-81.973856,30.778487],[-81.962534,30.796526],[-81.961989,30.800443],[-81.962441,30.808441],[-81.962739,30.813636],[-81.962175,30.818001],[-81.959759,30.821168],[-81.949787,30.827493],[-81.943168,30.827434],[-81.938381,30.825745],[-81.935444,30.821131],[-81.934655,30.820424],[-81.924448,30.817566],[-81.910926,30.815889],[-81.906279,30.817015],[-81.903745,30.818986],[-81.902337,30.820817],[-81.89938,30.821662],[-81.89572,30.821098],[-81.892904,30.819268],[-81.891281,30.815945],[-81.882725,30.805124],[-81.876882,30.799516],[-81.868608,30.792754],[-81.852626,30.794439],[-81.846286,30.790548],[-81.842058,30.78712],[-81.840375,30.786384],[-81.827014,30.788933],[-81.808529,30.790014],[-81.806652,30.789683],[-81.792769,30.784432],[-81.78435,30.77359],[-81.782653,30.769937],[-81.779171,30.768062],[-81.775021,30.76833],[-81.772611,30.769535],[-81.770468,30.772481],[-81.768192,30.773954],[-81.763372,30.77382],[-81.759338,30.771377],[-81.755074,30.768319],[-81.751283,30.767082],[-81.747572,30.766455],[-81.746312,30.765891],[-81.745035,30.765039],[-81.744183,30.763868],[-81.743438,30.762271],[-81.743094,30.759912],[-81.742736,30.759201],[-81.732227,30.749634],[-81.727127,30.746934],[-81.719927,30.744634],[-81.694778,30.748414],[-81.692815,30.7471],[-81.691818,30.74399],[-81.69099,30.742841],[-81.688925,30.741434],[-81.672824,30.738935],[-81.670124,30.740235],[-81.669324,30.741335],[-81.668275,30.744643],[-81.667336,30.74566],[-81.664598,30.746599],[-81.662173,30.746521],[-81.656541,30.745113],[-81.652123,30.742435],[-81.651723,30.740235],[-81.652161,30.735648],[-81.65177,30.732284],[-81.65044,30.729703],[-81.649188,30.728686],[-81.646137,30.727591],[-81.633266,30.729603],[-81.629609,30.732407],[-81.625098,30.733017],[-81.621929,30.731188],[-81.620822,30.729535],[-81.619613,30.724849],[-81.617663,30.722046],[-81.609495,30.720705],[-81.607667,30.721924],[-81.605716,30.725337],[-81.60401,30.727287],[-81.601206,30.728141],[-81.593648,30.725459],[-81.58682,30.723735],[-81.573719,30.722336],[-81.571419,30.721636],[-81.566219,30.717836],[-81.561706,30.715597],[-81.552566,30.716974],[-81.549186,30.715972],[-81.546932,30.714345],[-81.544679,30.713969],[-81.542675,30.713593],[-81.540923,30.713343],[-81.539295,30.713468],[-81.537668,30.714345],[-81.535539,30.716348],[-81.534517,30.717936],[-81.534037,30.719853],[-81.532785,30.721606],[-81.530531,30.722858],[-81.528278,30.723359],[-81.521417,30.722536],[-81.516116,30.722236],[-81.507216,30.722936],[-81.489537,30.7261],[-81.487332,30.726081],[-81.483786,30.723891],[-81.475754,30.714754],[-81.472597,30.713312],[-81.464465,30.711045],[-81.459978,30.710434],[-81.448718,30.709353],[-81.444124,30.709714],[-81.432725,30.703017],[-81.42742,30.69802],[-81.430843,30.669393],[-81.443099,30.600938],[-81.442564,30.555189],[-81.434064,30.522569],[-81.442784,30.50992],[-81.447087,30.503679],[-81.440108,30.497678],[-81.42601,30.496739],[-81.410809,30.482039],[-81.407008,30.42204],[-81.397422,30.400626],[-81.396407,30.34004],[-81.391606,30.303441],[-81.385505,30.273841],[-81.379879,30.252914],[-81.355591,30.162563],[-81.308978,29.96944],[-81.295268,29.928614],[-81.288955,29.91518],[-81.27654,29.90046],[-81.270442,29.883106],[-81.264693,29.858212],[-81.263396,29.820663],[-81.256711,29.784693],[-81.240924,29.739218],[-81.229015,29.714693],[-81.212878,29.670667],[-81.211565,29.667085],[-81.163581,29.55529],[-81.123896,29.474465],[-81.101923,29.427055],[-81.046678,29.307856],[-80.995423,29.206052],[-80.966176,29.14796],[-80.944376,29.110861],[-80.907275,29.064262],[-80.893675,29.036163],[-80.878275,29.010563],[-80.787021,28.875266],[-80.732244,28.791237],[-80.713183,28.761997],[-80.713108,28.761882],[-80.712714,28.761277],[-80.709725,28.756692],[-80.708545,28.755202],[-80.672232,28.709363],[-80.663183,28.69794],[-80.647924,28.678677],[-80.64776,28.67847],[-80.647288,28.677875],[-80.645839,28.675817],[-80.641436,28.669564],[-80.639019,28.666131],[-80.631314,28.655188],[-80.61679,28.634561],[-80.583884,28.597705],[-80.574868,28.585166],[-80.567361,28.562353],[-80.560973,28.530736],[-80.536115,28.478647],[-80.525094,28.459454],[-80.526732,28.451705],[-80.562877,28.437779],[-80.574136,28.427764],[-80.587813,28.410856],[-80.596174,28.390682],[-80.603374,28.363983],[-80.606874,28.336484],[-80.608074,28.311285],[-80.604214,28.257733],[-80.589975,28.17799],[-80.566432,28.09563],[-80.547675,28.048795],[-80.508871,27.970477],[-80.446973,27.861954],[-80.447084,27.860755],[-80.447179,27.859731],[-80.383695,27.740045],[-80.351717,27.642623],[-80.350553,27.628361],[-80.34437,27.616226],[-80.330956,27.597541],[-80.324699,27.569178],[-80.321271,27.557378],[-80.311757,27.524625],[-80.30117,27.500314],[-80.293171,27.500314],[-80.265535,27.420542],[-80.253665,27.37979],[-80.233538,27.341307],[-80.226753,27.322736],[-80.199288,27.263022],[-80.19309,27.249546],[-80.16147,27.192814],[-80.153375,27.169308],[-80.159554,27.163325],[-80.14982,27.143557],[-80.138605,27.111517],[-80.116772,27.072397],[-80.093909,27.018587],[-80.079531,26.9705],[-80.066697,26.927579],[-80.046263,26.859238],[-80.031362,26.796339],[-80.03212,26.77153],[-80.036362,26.77124],[-80.037462,26.76634],[-80.032862,26.715242],[-80.032862,26.700842],[-80.035763,26.676043],[-80.035363,26.612346],[-80.038863,26.569347],[-80.050363,26.509549],[-80.060564,26.444652],[-80.070564,26.336455],[-80.072264,26.335356],[-80.074837,26.321032],[-80.075264,26.318656],[-80.079865,26.264358],[-80.085565,26.249259],[-80.089365,26.231859],[-80.101366,26.147762],[-80.105266,26.096264],[-80.106813,26.092991],[-80.108995,26.088372],[-80.109566,26.087165],[-80.112334,26.053193],[-80.117778,25.986369],[-80.117798,25.975152],[-80.117904,25.915772],[-80.12087,25.883152],[-80.119684,25.841043],[-80.122056,25.817913],[-80.127394,25.791224],[-80.127987,25.772245],[-80.137476,25.750301],[-80.144,25.740812],[-80.152896,25.702855],[-80.154082,25.683283],[-80.152303,25.676759],[-80.154972,25.66549],[-80.160903,25.664897],[-80.176916,25.685062],[-80.170392,25.710565],[-80.164461,25.721833],[-80.166241,25.72895],[-80.172765,25.737847],[-80.184626,25.745557],[-80.197674,25.74437],[-80.229107,25.732509],[-80.240376,25.724206],[-80.244528,25.717089],[-80.250459,25.688028],[-80.265879,25.658373],[-80.267065,25.651849],[-80.277147,25.637022],[-80.288416,25.630498],[-80.296719,25.622195],[-80.301464,25.613299],[-80.305615,25.593134],[-80.305615,25.575342],[-80.302057,25.567632],[-80.313918,25.539164],[-80.324594,25.535605],[-80.328746,25.53264],[-80.339421,25.499427],[-80.339421,25.478669],[-80.337049,25.465621],[-80.328152,25.443084],[-80.320442,25.437153],[-80.326373,25.422919],[-80.32578,25.39801],[-80.320442,25.391486],[-80.31036,25.389707],[-80.306801,25.384369],[-80.31036,25.3731],[-80.335269,25.338701],[-80.352469,25.329805],[-80.361662,25.327433],[-80.374116,25.31735],[-80.383013,25.301337],[-80.409103,25.25346],[-80.418872,25.235532],[-80.495341,25.199463],[-80.569124,25.190117],[-80.652253,25.146705],[-80.653878,25.145857],[-80.658322,25.143536],[-80.660569,25.142362],[-80.669236,25.137837],[-80.777499,25.135047],[-80.798355,25.145864],[-80.80058,25.147018],[-80.82653,25.160478],[-80.826544,25.160509],[-80.827179,25.161888],[-80.827489,25.162562],[-80.828435,25.164619],[-80.830034,25.168094],[-80.838227,25.174791],[-80.843703,25.176312],[-80.846395,25.17706],[-80.8464,25.17706],[-80.858167,25.176576],[-80.858801,25.176493],[-80.874323,25.174469],[-80.874815,25.174405],[-80.87546,25.174321],[-80.875731,25.174185],[-80.878982,25.172562],[-80.879235,25.172436],[-80.891681,25.166221],[-80.899459,25.162337],[-80.900066,25.162034],[-80.900124,25.161726],[-80.90111,25.156496],[-80.901592,25.153933],[-80.901617,25.153803],[-80.90022,25.150627],[-80.898911,25.147652],[-80.900559,25.139755],[-80.900577,25.139669],[-80.900668,25.139679],[-80.902311,25.139853],[-80.906578,25.140307],[-80.915924,25.141301],[-80.915965,25.141291],[-80.931353,25.137424],[-80.93675,25.136068],[-80.939272,25.135434],[-80.940988,25.135003],[-80.943164,25.134456],[-80.943216,25.134443],[-80.954567,25.13545],[-80.955577,25.13554],[-80.95615,25.135591],[-80.957427,25.135704],[-80.958727,25.135546],[-80.967465,25.134482],[-80.967506,25.134477],[-80.96774,25.134448],[-80.967832,25.134437],[-80.970185,25.13415],[-80.970727,25.134084],[-80.970797,25.134076],[-80.971585,25.13398],[-80.971664,25.13397],[-80.971765,25.133958],[-80.973129,25.133473],[-80.977198,25.132028],[-80.991949,25.126789],[-80.994096,25.126026],[-80.999176,25.124222],[-80.999772,25.12429],[-81.009598,25.125403],[-81.022989,25.129393],[-81.025154,25.129305],[-81.033404,25.128969],[-81.038021,25.128781],[-81.049308,25.128322],[-81.049344,25.12832],[-81.049445,25.128316],[-81.049896,25.128298],[-81.050505,25.128273],[-81.079859,25.118797],[-81.094524,25.127054],[-81.111943,25.14547],[-81.120616,25.152302],[-81.133567,25.156295],[-81.141024,25.163868],[-81.142278,25.183],[-81.142471,25.18344],[-81.142897,25.184406],[-81.146737,25.193139],[-81.155252,25.207706],[-81.155481,25.208098],[-81.15582,25.208389],[-81.168046,25.218854],[-81.171265,25.221609],[-81.172044,25.222276],[-81.171978,25.223648],[-81.171455,25.234483],[-81.171369,25.236268],[-81.170953,25.244898],[-81.170907,25.245857],[-81.169709,25.249231],[-81.169509,25.249795],[-81.169294,25.250398],[-81.168307,25.253178],[-81.16207,25.289833],[-81.159293,25.298595],[-81.1523,25.305543],[-81.148915,25.318067],[-81.151916,25.324766],[-81.148103,25.332793],[-81.140099,25.341117],[-81.133913,25.342996],[-81.12141,25.33875],[-81.118208,25.34522],[-81.117265,25.354953],[-81.128492,25.380511],[-81.141395,25.381358],[-81.150508,25.387255],[-81.150656,25.399206],[-81.147144,25.404297],[-81.146765,25.407577],[-81.168652,25.463848],[-81.179406,25.475427],[-81.191924,25.484745],[-81.208201,25.504937],[-81.210149,25.516888],[-81.203175,25.53416],[-81.204389,25.538908],[-81.209321,25.548611],[-81.225557,25.55847],[-81.232705,25.573366],[-81.233051,25.586587],[-81.240519,25.599041],[-81.240677,25.613629],[-81.253951,25.638181],[-81.268924,25.656927],[-81.277374,25.66498],[-81.290328,25.687506],[-81.328935,25.717233],[-81.335037,25.715649],[-81.346078,25.721473],[-81.345972,25.736536],[-81.343984,25.747668],[-81.346767,25.754029],[-81.355116,25.76039],[-81.359489,25.766354],[-81.361875,25.772715],[-81.344779,25.782257],[-81.340406,25.786631],[-81.341598,25.794582],[-81.344564,25.803322],[-81.349152,25.816847],[-81.352731,25.822015],[-81.362272,25.824401],[-81.386127,25.839906],[-81.394476,25.851834],[-81.417536,25.864954],[-81.424295,25.867737],[-81.429066,25.865351],[-81.441391,25.863761],[-81.458487,25.868929],[-81.471607,25.881652],[-81.473992,25.888411],[-81.48751,25.888411],[-81.501027,25.884037],[-81.508979,25.884037],[-81.512955,25.886423],[-81.511762,25.89676],[-81.515738,25.899941],[-81.527665,25.901531],[-81.541183,25.900338],[-81.577363,25.889206],[-81.584519,25.888808],[-81.614735,25.893977],[-81.623482,25.897158],[-81.640084,25.897784],[-81.644553,25.897953],[-81.654493,25.893579],[-81.663821,25.885605],[-81.672633,25.856654],[-81.678287,25.845301],[-81.6848,25.847205],[-81.68954,25.85271],[-81.713172,25.897568],[-81.717687,25.902039],[-81.727086,25.907207],[-81.73195,25.931506],[-81.738118,25.942009],[-81.745579,25.949643],[-81.749724,25.960463],[-81.747834,25.994273],[-81.750668,25.998425],[-81.757463,26.000374],[-81.762439,26.00607],[-81.801663,26.088227],[-81.808833,26.152246],[-81.81461,26.173167],[-81.81681,26.207166],[-81.820675,26.236735],[-81.833142,26.294518],[-81.844555,26.327712],[-81.845834,26.330378],[-81.868983,26.378648],[-81.90191,26.410859],[-81.90271,26.416159],[-81.91171,26.427158],[-81.923611,26.436658],[-81.938411,26.445058],[-81.956611,26.452358],[-81.964212,26.457957],[-81.967112,26.462857],[-81.966212,26.465057],[-81.969509,26.476505],[-81.980712,26.480957],[-81.997012,26.484856],[-82.008961,26.484052],[-82.01368,26.490829],[-82.00908,26.505203],[-82.024604,26.512677],[-82.043577,26.519577],[-82.06715,26.513252],[-82.07175,26.492554],[-82.094748,26.48393],[-82.105672,26.48393],[-82.111996,26.54085],[-82.118896,26.560973],[-82.122345,26.579371],[-82.137869,26.637441],[-82.149943,26.654115],[-82.181565,26.681712],[-82.17984,26.696661],[-82.173516,26.701836],[-82.151668,26.704136],[-82.139019,26.702986],[-82.125795,26.699536],[-82.118896,26.690912],[-82.106247,26.667339],[-82.099922,26.662739],[-82.093023,26.665614],[-82.086698,26.685162],[-82.084974,26.702411],[-82.079799,26.716784],[-82.066575,26.742657],[-82.062029,26.770439],[-82.061401,26.774279],[-82.061401,26.789228],[-82.055076,26.802452],[-82.057951,26.822],[-82.058526,26.838674],[-82.056801,26.858797],[-82.059101,26.876621],[-82.066575,26.88237],[-82.090723,26.888694],[-82.093023,26.906518],[-82.090148,26.923191],[-82.083249,26.927791],[-82.067725,26.927791],[-82.061976,26.931241],[-82.061401,26.938715],[-82.063126,26.950214],[-82.076349,26.958263],[-82.107972,26.957688],[-82.113039,26.955788],[-82.117171,26.954239],[-82.124645,26.945615],[-82.137294,26.926066],[-82.162017,26.925491],[-82.169491,26.923191],[-82.175241,26.916867],[-82.172941,26.897319],[-82.156267,26.851898],[-82.147068,26.789803],[-82.151093,26.783479],[-82.172941,26.778879],[-82.17869,26.772555],[-82.209329,26.772146],[-82.221812,26.77198],[-82.232193,26.78288],[-82.233311,26.784054],[-82.234019,26.783251],[-82.241935,26.774279],[-82.251134,26.755881],[-82.259867,26.717398],[-82.263804,26.725644],[-82.264682,26.756836],[-82.269499,26.784674],[-82.271699,26.789516],[-82.281552,26.811203],[-82.289086,26.827784],[-82.301736,26.841588],[-82.351649,26.908384],[-82.375737,26.946041],[-82.400618,26.984937],[-82.419218,27.020736],[-82.445718,27.060634],[-82.460319,27.099933],[-82.465319,27.110732],[-82.46889,27.113612],[-82.477019,27.141231],[-82.512319,27.207528],[-82.539719,27.254326],[-82.54512,27.261026],[-82.55902,27.268826],[-82.569754,27.279452],[-82.569248,27.298588],[-82.57602,27.309324],[-82.597629,27.335754],[-82.623863,27.362206],[-82.642821,27.38972],[-82.642837,27.389737],[-82.675121,27.424318],[-82.691821,27.437218],[-82.691004,27.444331],[-82.707821,27.487615],[-82.714521,27.500415],[-82.724522,27.513614],[-82.743017,27.531086],[-82.745748,27.538834],[-82.742437,27.53936],[-82.708121,27.523514],[-82.710621,27.501715],[-82.706821,27.498415],[-82.690421,27.496415],[-82.686421,27.497215],[-82.686921,27.508015],[-82.683621,27.513115],[-82.674621,27.519614],[-82.66202,27.522814],[-82.65072,27.523115],[-82.646014,27.53354],[-82.632053,27.551908],[-82.612019,27.571231],[-82.613003,27.582837],[-82.612749,27.583319],[-82.611717,27.585283],[-82.596488,27.594045],[-82.584629,27.596021],[-82.570607,27.608882],[-82.565667,27.615713],[-82.558538,27.638678],[-82.554499,27.645145],[-82.537146,27.672933],[-82.514265,27.705588],[-82.494891,27.718963],[-82.482449,27.719886],[-82.477638,27.723004],[-82.476297,27.729929],[-82.477129,27.735216],[-82.482305,27.742649],[-82.478339,27.74625],[-82.457543,27.752571],[-82.434635,27.764355],[-82.43198,27.768092],[-82.433981,27.774087],[-82.419066,27.793767],[-82.418401,27.803187],[-82.410837,27.810868],[-82.402857,27.812671],[-82.393383,27.837519],[-82.397463,27.851631],[-82.402615,27.882602],[-82.413915,27.901401],[-82.432316,27.901301],[-82.451591,27.907506],[-82.460016,27.9116],[-82.459616,27.9169],[-82.462078,27.920066],[-82.478063,27.92768],[-82.489817,27.9196],[-82.491117,27.9145],[-82.487417,27.895001],[-82.488057,27.863566],[-82.480137,27.853246],[-82.471624,27.847342],[-82.46884,27.843295],[-82.47244,27.822559],[-82.475273,27.820991],[-82.489849,27.822607],[-82.511193,27.828015],[-82.553946,27.848462],[-82.552918,27.862702],[-82.538618,27.864901],[-82.533218,27.870701],[-82.529918,27.877501],[-82.539318,27.885001],[-82.542818,27.890601],[-82.541747,27.893706],[-82.535818,27.898],[-82.531318,27.9039],[-82.533718,27.932999],[-82.541218,27.948998],[-82.553918,27.966998],[-82.576003,27.969424],[-82.62959,27.998474],[-82.648685,27.99662],[-82.678606,27.993715],[-82.684793,27.971824],[-82.716522,27.958398],[-82.720522,27.955798],[-82.724122,27.948098],[-82.721975,27.941819],[-82.721429,27.940222],[-82.720395,27.937199],[-82.720122,27.936399],[-82.710022,27.928299],[-82.691621,27.924899],[-82.685121,27.916299],[-82.671221,27.913],[-82.628063,27.910397],[-82.63422,27.9037],[-82.63212,27.8911],[-82.61002,27.873501],[-82.567919,27.883701],[-82.567826,27.881537],[-82.566819,27.858002],[-82.598443,27.857582],[-82.594819,27.843402],[-82.589319,27.835702],[-82.586519,27.816703],[-82.60742,27.798904],[-82.622723,27.779868],[-82.63052,27.753905],[-82.62502,27.732706],[-82.62572,27.727006],[-82.63362,27.710607],[-82.63982,27.703907],[-82.652521,27.700307],[-82.662921,27.702307],[-82.663246,27.702442],[-82.667445,27.704179],[-82.668772,27.704728],[-82.670449,27.705422],[-82.670942,27.705626],[-82.671549,27.705877],[-82.671621,27.705907],[-82.672093,27.705932],[-82.673061,27.705983],[-82.674123,27.706039],[-82.677321,27.706207],[-82.679019,27.696054],[-82.679251,27.694665],[-82.693748,27.700217],[-82.713629,27.698661],[-82.718822,27.692007],[-82.723022,27.671208],[-82.721622,27.663908],[-82.716322,27.651409],[-82.712555,27.646647],[-82.698091,27.638858],[-82.705017,27.62531],[-82.733076,27.612972],[-82.736552,27.617326],[-82.737312,27.623115],[-82.73779,27.626758],[-82.739122,27.636909],[-82.738022,27.706807],[-82.740323,27.718206],[-82.746223,27.731306],[-82.753723,27.736306],[-82.760923,27.745205],[-82.770023,27.767904],[-82.783124,27.783804],[-82.790224,27.791603],[-82.820433,27.813742],[-82.828561,27.822254],[-82.846526,27.854301],[-82.849126,27.8632],[-82.851126,27.8863],[-82.847826,27.910199],[-82.840882,27.937162],[-82.831388,27.962117],[-82.824875,27.960201],[-82.821975,27.956868],[-82.830819,27.930926],[-82.838484,27.909111],[-82.832155,27.909242],[-82.820715,27.927268],[-82.808745,27.953112],[-82.805462,27.960201],[-82.79782,27.990563],[-82.792635,28.01116],[-82.792635,28.032307],[-82.782724,28.055894],[-82.783824,28.106292],[-82.782181,28.120287],[-82.781324,28.127591],[-82.786624,28.144991],[-82.790724,28.15249],[-82.799024,28.15179],[-82.808474,28.154803],[-82.805097,28.172181],[-82.797762,28.187789],[-82.762643,28.219013],[-82.76446,28.220069],[-82.764103,28.244345],[-82.759072,28.25402],[-82.746188,28.261192],[-82.732792,28.291933],[-82.735463,28.30039],[-82.73146,28.325075],[-82.715822,28.345501],[-82.706112,28.368057],[-82.706322,28.401325],[-82.697433,28.420166],[-82.684137,28.428019],[-82.678743,28.433456],[-82.677839,28.434367],[-82.674787,28.441956],[-82.680396,28.457194],[-82.67241,28.464746],[-82.665055,28.484434],[-82.66447,28.488788],[-82.66639,28.49733],[-82.670146,28.500769],[-82.669416,28.519879],[-82.66804,28.528199],[-82.663705,28.530193],[-82.656694,28.544814],[-82.661729,28.549743],[-82.66165,28.554143],[-82.65705,28.568028],[-82.654138,28.590837],[-82.664055,28.606584],[-82.674665,28.647588],[-82.668889,28.694302],[-82.668722,28.695658],[-82.712373,28.720921],[-82.698281,28.75701],[-82.730245,28.850155],[-82.688864,28.905609],[-82.702618,28.932955],[-82.708793,28.935979],[-82.723861,28.953506],[-82.735754,28.973709],[-82.737872,28.995703],[-82.758906,28.993277],[-82.760551,28.993087],[-82.764055,28.999707],[-82.759378,29.006619],[-82.753513,29.026496],[-82.759704,29.054192],[-82.783328,29.064619],[-82.780558,29.07358],[-82.816925,29.076215],[-82.823659,29.098902],[-82.809483,29.10462],[-82.801166,29.105103],[-82.799117,29.110647],[-82.798876,29.114504],[-82.805703,29.129848],[-82.804736,29.146624],[-82.827073,29.158425],[-82.858179,29.162275],[-82.887211,29.161741],[-82.922613,29.169769],[-82.932405,29.167891],[-82.945302,29.167821],[-82.974676,29.17091],[-82.979522,29.171817],[-82.987162,29.180094],[-82.991653,29.180664],[-82.996144,29.178074],[-83.018212,29.151417],[-83.019071,29.141324],[-83.030453,29.134023],[-83.053207,29.130839],[-83.056867,29.146263],[-83.068249,29.153135],[-83.060947,29.170959],[-83.061162,29.176113],[-83.065242,29.184489],[-83.078986,29.196944],[-83.087839,29.21642],[-83.074734,29.247975],[-83.077265,29.255331],[-83.089013,29.266502],[-83.107477,29.268889],[-83.125567,29.278845],[-83.128027,29.282733],[-83.146445,29.289194],[-83.149764,29.289768],[-83.16073,29.286611],[-83.166091,29.28888],[-83.169576,29.290355],[-83.176736,29.31422],[-83.17826,29.327916],[-83.176852,29.329269],[-83.175518,29.34469],[-83.189581,29.363417],[-83.200702,29.373855],[-83.202446,29.394422],[-83.218075,29.420492],[-83.240509,29.433178],[-83.263965,29.435806],[-83.272019,29.432256],[-83.294747,29.437923],[-83.307094,29.459651],[-83.307828,29.468861],[-83.311546,29.475666],[-83.323214,29.476789],[-83.33113,29.475594],[-83.350067,29.489358],[-83.356722,29.499901],[-83.370288,29.499901],[-83.379254,29.503558],[-83.383973,29.512995],[-83.400252,29.517242],[-83.401552,29.523291],[-83.39983,29.533042],[-83.405256,29.578319],[-83.405068,29.59557],[-83.39948,29.612956],[-83.404081,29.640798],[-83.412278,29.666922],[-83.412768,29.668485],[-83.414701,29.670536],[-83.436259,29.677389],[-83.444635,29.677155],[-83.448194,29.675254],[-83.455356,29.676444],[-83.483143,29.690478],[-83.483567,29.698542],[-83.493728,29.708388],[-83.512716,29.71648],[-83.537645,29.72306],[-83.547172,29.732223],[-83.554993,29.7426],[-83.566018,29.761434],[-83.578955,29.768378],[-83.584716,29.77608],[-83.586089,29.784644],[-83.583045,29.787307],[-83.581903,29.792063],[-83.585899,29.811754],[-83.595493,29.827984],[-83.605244,29.836387],[-83.618568,29.842336],[-83.63798,29.886073],[-83.659951,29.899524],[-83.679219,29.918513],[-83.686423,29.923735],[-83.757249,29.957943],[-83.788729,29.976982],[-83.82869,29.983187],[-83.845427,29.998068],[-83.93151,30.039068],[-83.933668,30.041152],[-83.931879,30.044175],[-83.933432,30.046305],[-83.95968,30.064943],[-83.991607,30.08392],[-84.000716,30.096209],[-84.024274,30.103271],[-84.048715,30.103208],[-84.06299,30.101378],[-84.076043,30.095464],[-84.083057,30.092286],[-84.087034,30.092103],[-84.094725,30.094964],[-84.10273,30.093611],[-84.11384,30.085478],[-84.124889,30.090601],[-84.135683,30.083018],[-84.157278,30.072714],[-84.167881,30.071422],[-84.179149,30.073187],[-84.19853,30.087937],[-84.201585,30.087982],[-84.203349,30.085875],[-84.20801,30.084776],[-84.237014,30.08556],[-84.245668,30.093021],[-84.247491,30.10114],[-84.256439,30.103791],[-84.269363,30.09766],[-84.272511,30.092358],[-84.274003,30.083079],[-84.270368,30.075469],[-84.270792,30.068094],[-84.277168,30.060263],[-84.289727,30.057197],[-84.297836,30.057451],[-84.315344,30.069492],[-84.342022,30.063858],[-84.358923,30.058224],[-84.365882,30.024588],[-84.361962,29.987739],[-84.359986,29.984739],[-84.3477,29.984123],[-84.343041,29.9751],[-84.341261,29.960775],[-84.339426,29.946007],[-84.336511,29.942508],[-84.333746,29.923721],[-84.335953,29.912962],[-84.343389,29.899539],[-84.349066,29.896812],[-84.378937,29.893112],[-84.404958,29.901229],[-84.423834,29.902996],[-84.434287,29.906328],[-84.443652,29.913785],[-84.451705,29.929085],[-84.470323,29.924524],[-84.494562,29.913957],[-84.511996,29.916574],[-84.535873,29.910092],[-84.57744,29.887828],[-84.603303,29.876117],[-84.613154,29.867984],[-84.647958,29.847104],[-84.656318,29.837943],[-84.65645,29.834277],[-84.669728,29.82891],[-84.683934,29.831327],[-84.692053,29.829059],[-84.730327,29.8069],[-84.755595,29.78854],[-84.762998,29.788846],[-84.824197,29.758288],[-84.837168,29.755926],[-84.868271,29.742454],[-84.881777,29.733882],[-84.888031,29.722406],[-84.892493,29.72266],[-84.901781,29.735723],[-84.890066,29.755802],[-84.877111,29.772888],[-84.893992,29.785176],[-84.90413,29.786279],[-84.91511,29.783303],[-84.920917,29.772901],[-84.93837,29.750211],[-84.946595,29.745032],[-84.964007,29.742422],[-84.968841,29.72708],[-84.977004,29.721209],[-84.993264,29.714961],[-85.037212,29.711074],[-85.072123,29.719027],[-85.101682,29.718748],[-85.121473,29.715854],[-85.153238,29.708231],[-85.177284,29.700193],[-85.217355,29.694953],[-85.22745,29.693633],[-85.259719,29.681296],[-85.29074,29.684081],[-85.319215,29.681494],[-85.343619,29.672004],[-85.347711,29.66719],[-85.344768,29.654793],[-85.352615,29.659787],[-85.369419,29.681048],[-85.380303,29.698485],[-85.397871,29.740498],[-85.413983,29.799865],[-85.417971,29.828855],[-85.416548,29.842628],[-85.413575,29.85294],[-85.405815,29.865817],[-85.392469,29.870914],[-85.39874,29.859267],[-85.405011,29.830151],[-85.405907,29.80193],[-85.395528,29.762368],[-85.37796,29.709621],[-85.3638,29.693526],[-85.353885,29.684765],[-85.344986,29.685015],[-85.317661,29.691286],[-85.31139,29.697557],[-85.301331,29.797117],[-85.302591,29.808094],[-85.304877,29.811096],[-85.31142,29.814373],[-85.314547,29.822279],[-85.314783,29.830575],[-85.312911,29.832273],[-85.317464,29.838894],[-85.325008,29.844966],[-85.332289,29.845905],[-85.336654,29.849295],[-85.347044,29.871981],[-85.363731,29.898915],[-85.38473,29.920949],[-85.388677,29.924355],[-85.405052,29.938487],[-85.425956,29.949888],[-85.460488,29.959579],[-85.469425,29.957788],[-85.487764,29.961227],[-85.509148,29.971466],[-85.541176,29.995791],[-85.571907,30.02644],[-85.58139,30.037783],[-85.588242,30.055543],[-85.601178,30.056342],[-85.618254,30.065481],[-85.637285,30.073319],[-85.653251,30.077839],[-85.69681,30.09689],[-85.730054,30.118153],[-85.74993,30.136537],[-85.775405,30.15629],[-85.811219,30.17832],[-85.878138,30.215619],[-85.9226,30.238024],[-85.996083,30.269148],[-85.999937,30.27078],[-86.089963,30.303569],[-86.222561,30.343585],[-86.2987,30.363049],[-86.364175,30.374524],[-86.397325,30.378553],[-86.400403,30.378927],[-86.412076,30.380346],[-86.429322,30.381389],[-86.454731,30.382925],[-86.456197,30.383014],[-86.457045,30.383065],[-86.470849,30.3839],[-86.47399,30.383758],[-86.50615,30.3823],[-86.529067,30.386896],[-86.632953,30.396299],[-86.750906,30.391881],[-86.800283,30.386477],[-86.850625,30.380967],[-86.909679,30.372423],[-86.919292,30.370675],[-87.155392,30.327748],[-87.206254,30.320943],[-87.267827,30.31548],[-87.282787,30.318744],[-87.295422,30.323503],[-87.319518,30.317814],[-87.350486,30.313064],[-87.419859,30.297128],[-87.518324,30.280435],[-87.51838,30.283901],[-87.50548,30.287101],[-87.49998,30.287901],[-87.452378,30.300201],[-87.450078,30.3111],[-87.455578,30.3102],[-87.459578,30.3083],[-87.462978,30.3078],[-87.465778,30.3076],[-87.468678,30.3082],[-87.475879,30.3079],[-87.481879,30.306001],[-87.483679,30.304801],[-87.494879,30.305001],[-87.50278,30.307301],[-87.50468,30.308901],[-87.50578,30.3125],[-87.505943,30.319396],[-87.504701,30.324039],[-87.502572,30.327405],[-87.49998,30.328957],[-87.491879,30.3309],[-87.475579,30.3314],[-87.464878,30.3333],[-87.462978,30.334],[-87.459978,30.3363],[-87.452278,30.344099],[-87.450962,30.346262],[-87.451978,30.360299],[-87.451878,30.364999],[-87.451378,30.367199],[-87.449078,30.370399],[-87.441823,30.376304],[-87.438678,30.380798],[-87.438678,30.382098],[-87.440878,30.386698],[-87.441178,30.388598],[-87.440678,30.391498],[-87.437278,30.395898],[-87.434278,30.397498],[-87.431778,30.403198],[-87.429578,30.406498],[-87.426177,30.409198],[-87.422677,30.410098],[-87.419177,30.410198],[-87.413177,30.408998],[-87.408877,30.408798],[-87.403477,30.410198],[-87.401777,30.411398],[-87.398776,30.415098],[-87.395676,30.417597],[-87.386376,30.420497],[-87.382076,30.422897],[-87.371169,30.43049],[-87.368191,30.433407],[-87.366591,30.436648],[-87.366939,30.44048],[-87.36868,30.444631],[-87.370768,30.446865],[-87.381176,30.450097],[-87.391976,30.451597],[-87.396877,30.450597],[-87.399877,30.450997],[-87.404677,30.452897],[-87.407877,30.456396],[-87.414677,30.457296],[-87.425078,30.465596],[-87.429578,30.470596],[-87.430578,30.476596],[-87.431578,30.477696],[-87.434678,30.479196],[-87.435578,30.480496],[-87.432978,30.484896],[-87.430578,30.491096],[-87.431178,30.495795],[-87.438269,30.505357],[-87.43969,30.506649],[-87.44322,30.506782],[-87.444714,30.507494],[-87.447702,30.510458],[-87.447782,30.511913],[-87.447305,30.512629],[-87.446499,30.513569],[-87.445182,30.51398],[-87.444944,30.514943],[-87.446427,30.520306],[-87.446586,30.527068],[-87.43544,30.54914],[-87.434963,30.549599],[-87.431441,30.550263],[-87.427891,30.554159],[-87.426037,30.560073],[-87.423362,30.561425],[-87.422805,30.561379],[-87.422408,30.560439],[-87.420925,30.560668],[-87.418647,30.561837],[-87.41666,30.566306],[-87.416951,30.568003],[-87.418513,30.569561],[-87.418354,30.570043],[-87.416261,30.572448],[-87.414513,30.573456],[-87.412712,30.573227],[-87.408736,30.583701],[-87.406558,30.599928],[-87.404597,30.603389],[-87.401178,30.604397],[-87.39927,30.605611],[-87.397308,30.608728],[-87.395026,30.615281],[-87.395053,30.6159],[-87.39643,30.616909],[-87.39643,30.617734],[-87.395659,30.623372],[-87.394479,30.625192],[-87.393775,30.627006],[-87.393588,30.63088],[-87.395941,30.643968],[-87.397185,30.648117],[-87.396177,30.650454],[-87.397262,30.654351],[-87.400177,30.657217],[-87.400707,30.657148],[-87.405874,30.666616],[-87.407118,30.671796],[-87.406561,30.674019],[-87.406958,30.675165],[-87.412739,30.678055],[-87.419527,30.679981],[-87.424883,30.683374],[-87.430372,30.688645],[-87.436021,30.688668],[-87.439814,30.690479],[-87.44228,30.692679],[-87.44358,30.694604],[-87.449362,30.698913],[-87.451404,30.699806],[-87.456948,30.69756],[-87.466338,30.700835],[-87.467717,30.701683],[-87.470397,30.705281],[-87.474429,30.706586],[-87.479579,30.712865],[-87.479819,30.71495],[-87.481225,30.716508],[-87.487036,30.7185],[-87.496772,30.720353],[-87.497515,30.720123],[-87.502317,30.72159],[-87.505153,30.726313],[-87.511729,30.733535],[-87.523613,30.738306],[-87.532607,30.743489],[-87.535365,30.749775],[-87.535416,30.75476],[-87.536528,30.761383],[-87.537085,30.76253],[-87.54226,30.767504],[-87.54616,30.77202],[-87.545364,30.774105],[-87.545044,30.778666],[-87.552051,30.786254],[-87.552954,30.786941],[-87.554838,30.787125],[-87.559484,30.790447],[-87.560068,30.792258],[-87.564209,30.796246],[-87.56814,30.799088],[-87.572043,30.800532],[-87.576849,30.808163],[-87.581869,30.812403],[-87.58787,30.815037],[-87.594297,30.816984],[-87.600486,30.820627],[-87.60163,30.82514],[-87.60357,30.828624],[-87.605776,30.831304],[-87.610982,30.832632],[-87.615923,30.834693],[-87.615367,30.837031],[-87.617281,30.840353],[-87.624137,30.845713],[-87.626075,30.846494],[-87.627323,30.847961],[-87.626497,30.85188],[-87.62538,30.854355],[-87.626228,30.857127],[-87.628245,30.860131],[-87.634938,30.865886],[-87.629987,30.877686],[-87.629454,30.880115],[-87.6244,30.884696],[-87.622062,30.885408],[-87.620788,30.887494],[-87.620922,30.889923],[-87.622519,30.89368],[-87.622203,30.897508],[-87.620715,30.89893],[-87.616013,30.901453],[-87.614951,30.904226],[-87.614209,30.908536],[-87.611847,30.914541],[-87.6102,30.916628],[-87.608262,30.9219],[-87.607811,30.92449],[-87.602684,30.934277],[-87.600691,30.937074],[-87.598299,30.938793],[-87.59689,30.941131],[-87.592055,30.951492],[-87.589187,30.964464],[-87.590917,30.969414],[-87.593046,30.972966],[-87.594111,30.976335],[-87.594164,30.977572],[-87.592676,30.98014],[-87.593395,30.982959],[-87.596722,30.98761],[-87.599172,30.995722],[-87.598928,30.997454],[-87.598928,30.997457],[-87.571281,30.99787],[-87.548543,30.997927],[-87.51952,30.997586],[-87.480243,30.998202],[-87.479703,30.998197],[-87.478706,30.998213],[-87.466879,30.998178],[-87.466827,30.998178],[-87.461783,30.998201],[-87.461638,30.998202],[-87.458658,30.998386],[-87.455705,30.998318],[-87.449811,30.998272],[-87.432292,30.998205],[-87.425774,30.99809],[-87.367842,30.998292],[-87.364011,30.998218],[-87.355656,30.998244],[-87.333973,30.998272],[-87.312183,30.998435],[-87.30403,30.998191],[-87.301567,30.998434],[-87.290995,30.998352],[-87.288905,30.998345],[-87.265564,30.998267],[-87.26054,30.998195],[-87.259689,30.998172],[-87.25796,30.998263],[-87.257002,30.998194],[-87.255592,30.998216],[-87.25498,30.998285],[-87.237685,30.996393],[-87.224746,30.997169],[-87.163083,30.999041],[-87.162614,30.999055],[-87.140755,30.999532],[-87.124969,30.998802],[-87.118873,30.999427],[-87.068633,30.999143],[-87.064063,30.999191],[-87.053737,30.999131],[-87.039989,30.999594],[-87.036366,30.999348],[-87.027107,30.999255],[-87.004359,30.999316],[-86.998477,30.998661],[-86.92781,30.997704],[-86.888135,30.997577],[-86.872989,30.997631],[-86.831934,30.997378],[-86.830497,30.997401],[-86.785918,30.996978],[-86.785692,30.996974],[-86.74524,30.99629],[-86.728392,30.996739],[-86.727293,30.996882],[-86.725379,30.996872],[-86.706261,30.994703],[-86.688313,30.994596],[-86.678383,30.994537],[-86.664681,30.994534],[-86.567586,30.995109],[-86.563436,30.995223],[-86.519938,30.993245],[-86.512834,30.9937],[-86.49995,30.99334],[-86.458319,30.993998],[-86.454704,30.993791],[-86.404912,30.994049],[-86.391937,30.994172],[-86.388647,30.994181],[-86.388646,30.994181],[-86.374545,30.994474],[-86.36927,30.994477],[-86.364907,30.994455],[-86.304596,30.994029],[-86.289247,30.993798],[-86.256448,30.993853],[-86.238335,30.99437],[-86.187247,30.994049],[-86.180232,30.994005],[-86.175204,30.993798],[-86.168979,30.993706],[-86.162886,30.993682],[-86.116918,30.992917],[-86.056213,30.993133],[-86.052462,30.993247],[-86.035039,30.99332],[-85.998643,30.99287],[-85.893543,30.993467],[-85.749932,30.994837],[-85.749619,30.995292],[-85.498272,30.996928],[-85.497992,30.996932],[-85.488298,30.997083],[-85.243632,31.000884],[-85.154452,31.000835],[-85.152218,31.000834],[-85.152085,31.000888],[-85.145835,31.000695],[-85.057534,31.000585],[-85.054802,31.000585],[-85.052088,31.000585],[-85.031155,31.000647],[-85.030107,31.000653],[-85.027512,31.00067],[-85.024108,31.000681],[-85.002368,31.000682],[-85.0019,31.000681],[-85.001819,30.997889],[-85.00254,30.986899],[-85.005934,30.979804],[-85.005931,30.97704],[-85.005105,30.974704],[-85.004026,30.973468],[-84.999928,30.971186],[-84.999828,30.971486],[-84.997628,30.971186],[-84.988027,30.968786],[-84.984827,30.967486],[-84.982527,30.965586],[-84.980127,30.961286],[-84.979627,30.958986],[-84.979627,30.954686],[-84.982227,30.946886],[-84.983027,30.942586],[-84.983627,30.936986],[-84.983127,30.934786],[-84.980627,30.932687],[-84.975226,30.930787],[-84.971026,30.928187],[-84.969426,30.921987],[-84.966726,30.917287],[-84.956125,30.907587],[-84.952325,30.902287],[-84.949625,30.897387],[-84.942525,30.888488],[-84.941325,30.887688],[-84.939974,30.886728],[-84.938087,30.885627],[-84.936828,30.884683],[-84.935413,30.882481],[-84.93557,30.878707],[-84.937615,30.875876],[-84.938401,30.873045],[-84.937772,30.870528],[-84.935728,30.86754],[-84.934627,30.865495],[-84.933997,30.863293],[-84.934627,30.86062],[-84.935413,30.858418],[-84.935256,30.854328],[-84.933224,30.851488],[-84.930065,30.848824],[-84.928807,30.846779],[-84.928335,30.844263],[-84.928335,30.842532],[-84.929436,30.840331],[-84.931953,30.837499],[-84.934155,30.834039],[-84.935256,30.830894],[-84.93557,30.824603],[-84.936042,30.820671],[-84.935413,30.81721],[-84.930923,30.810489],[-84.928323,30.80509],[-84.927923,30.80279],[-84.929023,30.79729],[-84.928323,30.79309],[-84.926723,30.79019],[-84.918023,30.77809],[-84.917423,30.77589],[-84.918023,30.77209],[-84.920123,30.76599],[-84.915022,30.761191],[-84.914322,30.753591],[-84.913522,30.752291],[-84.911122,30.751191],[-84.906322,30.750591],[-84.903122,30.751791],[-84.900222,30.751891],[-84.897622,30.751391],[-84.896122,30.750591],[-84.887522,30.741791],[-84.885221,30.734991],[-84.883821,30.732591],[-84.875421,30.727491],[-84.869752,30.721897],[-84.864693,30.711542],[-84.86346,30.711506],[-84.836324,30.710709],[-84.644815,30.701992],[-84.606386,30.699865],[-84.606249,30.699872],[-84.53937,30.696775],[-84.535042,30.696523],[-84.474409,30.692793],[-84.380706,30.689969],[-84.374905,30.689794],[-84.282561,30.685321],[-84.28121,30.685256],[-84.2499,30.684145],[-84.124895,30.678046],[-84.107699,30.676818],[-84.083757,30.675816],[-84.057228,30.674705],[-84.046605,30.6742],[-84.04181,30.673878],[-84.039707,30.673819],[-84.007454,30.6721],[-84.007391,30.672097],[-83.880317,30.665807],[-83.88022,30.665832],[-83.855216,30.664412],[-83.820886,30.662612],[-83.810536,30.66188],[-83.743729,30.658396],[-83.676773,30.654905],[-83.674058,30.654747],[-83.61172,30.651258],[-83.611667,30.651255],[-83.499876,30.645671],[-83.448895,30.64241],[-83.440021,30.642023],[-83.429584,30.641496],[-83.429477,30.641519],[-83.390062,30.639333],[-83.37946,30.63868],[-83.357703,30.637359],[-83.341011,30.636346],[-83.340852,30.636336],[-83.311647,30.634577],[-83.309455,30.634417]]]]}}]} diff --git a/Where/RegionKit/Sources/Resources/regions/us-GA.geojson b/Where/RegionKit/Sources/Resources/regions/us-GA.geojson new file mode 100644 index 00000000..cf99ffa1 --- /dev/null +++ b/Where/RegionKit/Sources/Resources/regions/us-GA.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"region":"us-GA","name":"Georgia"},"geometry":{"type":"Polygon","coordinates":[[[-84.810477,34.987607],[-84.809184,34.987569],[-84.808127,34.987592],[-84.775852,34.9878],[-84.731022,34.988088],[-84.727434,34.98802],[-84.624933,34.987978],[-84.621483,34.988329],[-84.509886,34.98801],[-84.509052,34.988033],[-84.394903,34.98803],[-84.393935,34.988068],[-84.321869,34.988408],[-84.129555,34.987504],[-84.129455,34.987504],[-84.029954,34.987321],[-84.021357,34.98743],[-84.005457,34.98744],[-83.936646,34.987485],[-83.936413,34.987485],[-83.831097,34.987289],[-83.749893,34.987691],[-83.619985,34.986592],[-83.620185,34.992091],[-83.549381,34.992492],[-83.482908,34.993484],[-83.322768,34.995874],[-83.19041,34.999456],[-83.108714,35.000768],[-83.108535,35.000771],[-83.105531,34.996344],[-83.1046,34.992783],[-83.10449,34.989332],[-83.106991,34.98272],[-83.110025,34.980635],[-83.112021,34.975896],[-83.120387,34.968406],[-83.121803,34.96362],[-83.12114,34.958966],[-83.124378,34.95524],[-83.127035,34.953778],[-83.126761,34.948742],[-83.12294,34.944513],[-83.121214,34.942684],[-83.120502,34.941262],[-83.121112,34.939129],[-83.122585,34.938062],[-83.125175,34.937047],[-83.12807,34.938113],[-83.129493,34.937402],[-83.130356,34.935167],[-83.129885,34.932351],[-83.130554,34.930932],[-83.140621,34.924915],[-83.143261,34.924756],[-83.149946,34.927218],[-83.153253,34.926342],[-83.155879,34.9243],[-83.158019,34.920117],[-83.160937,34.918269],[-83.165022,34.918853],[-83.168524,34.91788],[-83.170754,34.914231],[-83.174034,34.910911],[-83.178932,34.90825],[-83.180871,34.904708],[-83.186541,34.899534],[-83.190409,34.89794],[-83.194786,34.897843],[-83.197627,34.895046],[-83.203351,34.893717],[-83.204572,34.890284],[-83.201183,34.884653],[-83.205627,34.880142],[-83.209683,34.880279],[-83.213323,34.882796],[-83.220099,34.878124],[-83.22924,34.879907],[-83.232379,34.878051],[-83.23751,34.877057],[-83.239081,34.875661],[-83.238557,34.872868],[-83.238419,34.869771],[-83.240847,34.866736],[-83.245602,34.865522],[-83.247018,34.863094],[-83.24722,34.85844],[-83.250053,34.856012],[-83.252582,34.853483],[-83.253762,34.848057],[-83.254605,34.846402],[-83.255718,34.845592],[-83.258146,34.844985],[-83.25986,34.845629],[-83.262193,34.846402],[-83.26452,34.846402],[-83.267656,34.845289],[-83.269982,34.837196],[-83.267293,34.832748],[-83.268159,34.821393],[-83.271214,34.81844],[-83.275656,34.816862],[-83.283151,34.821328],[-83.284812,34.823043],[-83.289914,34.824477],[-83.29112,34.822508],[-83.291325,34.818833],[-83.294292,34.814725],[-83.297259,34.814268],[-83.299428,34.814268],[-83.301368,34.814154],[-83.302395,34.813241],[-83.302965,34.812214],[-83.302965,34.811073],[-83.301482,34.808677],[-83.301182,34.804008],[-83.303643,34.802403],[-83.313782,34.799911],[-83.323866,34.789712],[-83.319945,34.773725],[-83.321008,34.765371],[-83.320062,34.759616],[-83.338666,34.742295],[-83.348829,34.737194],[-83.353238,34.728648],[-83.352493,34.716121],[-83.352485,34.715993],[-83.351392,34.714456],[-83.350976,34.713243],[-83.349788,34.708274],[-83.347718,34.705474],[-83.347831,34.703669],[-83.349636,34.70096],[-83.349975,34.699155],[-83.349411,34.697575],[-83.347831,34.696108],[-83.344671,34.693512],[-83.342414,34.691255],[-83.340383,34.688998],[-83.339367,34.686967],[-83.339335,34.686666],[-83.339029,34.683807],[-83.33869,34.682002],[-83.336207,34.680534],[-83.330284,34.681342],[-83.325336,34.679517],[-83.321463,34.677543],[-83.31944,34.675974],[-83.318524,34.674773],[-83.316401,34.669316],[-83.314394,34.668944],[-83.308917,34.670273],[-83.304641,34.669561],[-83.301477,34.666582],[-83.300848,34.66247],[-83.292883,34.654196],[-83.286583,34.650896],[-83.27796,34.644853],[-83.271982,34.641896],[-83.262282,34.640296],[-83.255281,34.637696],[-83.248281,34.631696],[-83.244581,34.626297],[-83.240669,34.624507],[-83.240676,34.624307],[-83.243381,34.617997],[-83.23178,34.611297],[-83.221402,34.609947],[-83.211598,34.610905],[-83.199779,34.608398],[-83.196979,34.605998],[-83.179439,34.60802],[-83.173428,34.607162],[-83.169994,34.605444],[-83.169572,34.603866],[-83.169994,34.60201],[-83.170978,34.598798],[-83.170278,34.592398],[-83.168278,34.590998],[-83.154577,34.588198],[-83.152577,34.578299],[-83.139876,34.567999],[-83.129676,34.561699],[-83.127176,34.561999],[-83.122901,34.560129],[-83.103987,34.540166],[-83.103563,34.53663],[-83.103176,34.533406],[-83.102179,34.532179],[-83.096858,34.531524],[-83.092564,34.532944],[-83.087789,34.532078],[-83.084855,34.530967],[-83.078113,34.524837],[-83.077995,34.523746],[-83.086861,34.517798],[-83.087189,34.515939],[-83.069451,34.502131],[-83.065515,34.501126],[-83.057843,34.503711],[-83.054463,34.50289],[-83.049467,34.495093],[-83.048289,34.493254],[-83.043771,34.488816],[-83.034712,34.483495],[-83.032513,34.483032],[-83.029315,34.484147],[-83.002924,34.472132],[-82.99509,34.472483],[-82.995279,34.475648],[-82.992671,34.479072],[-82.992215,34.479198],[-82.979568,34.482702],[-82.960668,34.482002],[-82.954667,34.477302],[-82.947367,34.479602],[-82.940867,34.486102],[-82.928466,34.484202],[-82.925766,34.481802],[-82.922866,34.481402],[-82.908365,34.485402],[-82.902665,34.485902],[-82.882864,34.479003],[-82.876864,34.475303],[-82.873831,34.471508],[-82.874864,34.468891],[-82.875864,34.468003],[-82.876464,34.465803],[-82.875463,34.463503],[-82.865345,34.460319],[-82.862156,34.458748],[-82.860707,34.457428],[-82.860874,34.451469],[-82.860127,34.449707],[-82.855762,34.443977],[-82.854434,34.432275],[-82.851367,34.426812],[-82.848651,34.423844],[-82.847781,34.420571],[-82.847446,34.412049],[-82.841997,34.399766],[-82.841326,34.397332],[-82.841997,34.392503],[-82.841524,34.39013],[-82.836611,34.382676],[-82.835203,34.373899],[-82.835413,34.369177],[-82.835004,34.366069],[-82.833702,34.364242],[-82.82342,34.358872],[-82.809949,34.349998],[-82.798198,34.341317],[-82.795223,34.34096],[-82.794054,34.339772],[-82.791235,34.331048],[-82.791608,34.327428],[-82.790966,34.32355],[-82.78684,34.310381],[-82.781752,34.302901],[-82.780308,34.296701],[-82.773702,34.288744],[-82.770928,34.285402],[-82.765266,34.281539],[-82.762945,34.28199],[-82.761995,34.281492],[-82.755028,34.276067],[-82.749856,34.27087],[-82.746656,34.266407],[-82.748656,34.264107],[-82.748756,34.263407],[-82.744056,34.252407],[-82.744982,34.244861],[-82.744834,34.242957],[-82.74198,34.230196],[-82.743461,34.227343],[-82.744415,34.224913],[-82.740447,34.219679],[-82.740544,34.218387],[-82.74238,34.213766],[-82.74192,34.210063],[-82.741127,34.208788],[-82.732761,34.195338],[-82.731975,34.193154],[-82.732359,34.180564],[-82.731881,34.178363],[-82.730824,34.175906],[-82.725409,34.169774],[-82.723312,34.165895],[-82.717507,34.150504],[-82.715373,34.148165],[-82.70414,34.141007],[-82.699758,34.139318],[-82.69553,34.138815],[-82.692152,34.138986],[-82.690386,34.138293],[-82.68629,34.134454],[-82.67732,34.131657],[-82.67522,34.129779],[-82.668113,34.12016],[-82.666879,34.113591],[-82.661851,34.107754],[-82.660322,34.106897],[-82.659077,34.103544],[-82.658561,34.103118],[-82.654019,34.100346],[-82.652175,34.099704],[-82.648184,34.098649],[-82.647028,34.097825],[-82.641553,34.092212],[-82.64103,34.090861],[-82.641252,34.088914],[-82.640701,34.088341],[-82.640151,34.087609],[-82.640345,34.086304],[-82.642797,34.081312],[-82.64522,34.079046],[-82.645661,34.076046],[-82.64398,34.072237],[-82.640543,34.067595],[-82.635991,34.064941],[-82.633565,34.064822],[-82.630972,34.065528],[-82.626963,34.063457],[-82.622155,34.058516],[-82.621255,34.056916],[-82.620955,34.054416],[-82.619155,34.051316],[-82.613355,34.046816],[-82.609655,34.039917],[-82.603055,34.034817],[-82.596155,34.030517],[-82.594555,34.028717],[-82.594055,34.025917],[-82.595855,34.018518],[-82.595655,34.016118],[-82.594488,34.013937],[-82.591855,34.009018],[-82.589245,34.000118],[-82.586234,33.997151],[-82.583394,33.995286],[-82.577735,33.993743],[-82.576222,33.993106],[-82.57554,33.992049],[-82.575351,33.990904],[-82.57633,33.989694],[-82.578244,33.988671],[-82.579996,33.987011],[-82.580571,33.98514],[-82.580551,33.982463],[-82.579576,33.979761],[-82.57754,33.977034],[-82.574724,33.974113],[-82.569864,33.970684],[-82.568288,33.968772],[-82.566145,33.9639],[-82.5657,33.958682],[-82.564582,33.95581],[-82.564531,33.955741],[-82.556835,33.945353],[-82.554497,33.943819],[-82.543128,33.940949],[-82.53977,33.941551],[-82.534111,33.943651],[-82.526741,33.943765],[-82.524515,33.94336],[-82.51295,33.936969],[-82.50764,33.931456],[-82.503584,33.926048],[-82.496109,33.913459],[-82.492929,33.909754],[-82.480111,33.901897],[-82.469913,33.892838],[-82.459391,33.886386],[-82.455105,33.88165],[-82.448109,33.877543],[-82.440503,33.875123],[-82.438644,33.873919],[-82.43115,33.867051],[-82.429164,33.865844],[-82.422803,33.863754],[-82.417871,33.864233],[-82.414259,33.865348],[-82.408354,33.86632],[-82.403881,33.865477],[-82.400517,33.863343],[-82.395736,33.859089],[-82.390527,33.857162],[-82.384973,33.854428],[-82.37975,33.851086],[-82.374286,33.84559],[-82.371775,33.843813],[-82.369107,33.842375],[-82.351881,33.836432],[-82.346933,33.834298],[-82.337829,33.827156],[-82.32448,33.820033],[-82.314746,33.811499],[-82.313339,33.809205],[-82.308997,33.805892],[-82.302885,33.802907],[-82.300213,33.800627],[-82.29928,33.798939],[-82.298923,33.795839],[-82.299601,33.786483],[-82.299393,33.785037],[-82.298286,33.783518],[-82.294984,33.781868],[-82.292468,33.782406],[-82.289762,33.782032],[-82.285804,33.780058],[-82.28106,33.776056],[-82.277681,33.772032],[-82.270445,33.767913],[-82.267719,33.767651],[-82.266127,33.766745],[-82.265019,33.765742],[-82.26438,33.763481],[-82.263206,33.761962],[-82.259471,33.760245],[-82.258049,33.760429],[-82.255267,33.75969],[-82.247472,33.752591],[-82.246161,33.746347],[-82.240405,33.734901],[-82.239098,33.730872],[-82.235753,33.71439],[-82.237192,33.70788],[-82.234576,33.700216],[-82.222709,33.689124],[-82.218649,33.686299],[-82.216868,33.6844],[-82.212047,33.677317],[-82.209677,33.67176],[-82.208411,33.669872],[-82.200718,33.66464],[-82.199847,33.661758],[-82.199747,33.657611],[-82.201186,33.646898],[-82.196583,33.630582],[-82.186154,33.62088],[-82.179854,33.615945],[-82.174351,33.613117],[-82.161908,33.610643],[-82.158331,33.60971],[-82.156288,33.60863],[-82.153357,33.606319],[-82.15106,33.600956],[-82.148816,33.598092],[-82.142872,33.594278],[-82.133523,33.590535],[-82.12908,33.589925],[-82.125864,33.590741],[-82.120385,33.594885],[-82.116545,33.596485],[-82.115328,33.596501],[-82.109376,33.596581],[-82.10624,33.595637],[-82.098816,33.586358],[-82.096352,33.58407],[-82.094128,33.582742],[-82.087488,33.580614],[-82.073104,33.57751],[-82.069039,33.575382],[-82.057727,33.566774],[-82.054943,33.565382],[-82.048959,33.56487],[-82.046335,33.56383],[-82.037375,33.554662],[-82.034895,33.549158],[-82.033023,33.546454],[-82.028238,33.544934],[-82.023438,33.540734],[-82.023438,33.537935],[-82.019838,33.535035],[-82.012426,33.532088],[-82.011538,33.531735],[-82.010038,33.530435],[-82.007638,33.523335],[-82.007138,33.522835],[-82.004338,33.521935],[-82.001338,33.520135],[-81.991938,33.504435],[-81.990382,33.500759],[-81.990938,33.494235],[-81.989338,33.490036],[-81.985938,33.486536],[-81.980637,33.484036],[-81.973537,33.482636],[-81.967037,33.480636],[-81.955083,33.475472],[-81.946437,33.471737],[-81.941737,33.470037],[-81.934136,33.468337],[-81.929436,33.465837],[-81.926336,33.462937],[-81.920836,33.452038],[-81.913532,33.441274],[-81.913457,33.439641],[-81.913356,33.437418],[-81.916236,33.433114],[-81.920716,33.430986],[-81.924981,33.429288],[-81.926789,33.426576],[-81.927241,33.422846],[-81.924893,33.419307],[-81.921068,33.417419],[-81.91933,33.415613],[-81.919217,33.413126],[-81.920121,33.410753],[-81.92306,33.408266],[-81.930519,33.406797],[-81.934927,33.406006],[-81.936961,33.404197],[-81.9373,33.401259],[-81.935453,33.397851],[-81.930861,33.380076],[-81.924837,33.37414],[-81.925737,33.37114],[-81.930634,33.368165],[-81.934637,33.36894],[-81.939637,33.37254],[-81.943737,33.37234],[-81.946337,33.37064],[-81.946737,33.36734],[-81.944737,33.364041],[-81.934837,33.356041],[-81.935637,33.352041],[-81.939837,33.347741],[-81.939737,33.344941],[-81.937237,33.343641],[-81.932737,33.343541],[-81.924737,33.345341],[-81.917973,33.34159],[-81.919137,33.334442],[-81.918337,33.332842],[-81.913314,33.329532],[-81.911266,33.327616],[-81.910342,33.32537],[-81.909285,33.324181],[-81.906444,33.324181],[-81.904132,33.327286],[-81.902613,33.330258],[-81.900301,33.331117],[-81.898187,33.329664],[-81.896937,33.327642],[-81.897064,33.324445],[-81.897329,33.322331],[-81.886637,33.316943],[-81.884137,33.310443],[-81.875836,33.307443],[-81.870436,33.312943],[-81.867936,33.314043],[-81.853652,33.310326],[-81.847296,33.306783],[-81.846136,33.303843],[-81.849636,33.299544],[-81.851636,33.298544],[-81.852936,33.299644],[-81.857336,33.299544],[-81.861536,33.297944],[-81.863236,33.288844],[-81.861336,33.286244],[-81.851836,33.283544],[-81.844036,33.278644],[-81.838257,33.272975],[-81.838337,33.269098],[-81.840078,33.26704],[-81.842522,33.266584],[-81.847336,33.266345],[-81.853137,33.250745],[-81.852136,33.247544],[-81.851979,33.247382],[-81.846536,33.241746],[-81.837016,33.237652],[-81.831736,33.233546],[-81.827936,33.228746],[-81.819636,33.226646],[-81.811736,33.223847],[-81.809636,33.222647],[-81.808136,33.219447],[-81.807936,33.213747],[-81.807336,33.212647],[-81.805236,33.211447],[-81.790236,33.208447],[-81.784535,33.208147],[-81.778935,33.209847],[-81.777535,33.211347],[-81.777335,33.214947],[-81.781035,33.219847],[-81.780135,33.221147],[-81.778435,33.221847],[-81.774035,33.221147],[-81.768935,33.217447],[-81.767635,33.215747],[-81.763535,33.203648],[-81.761635,33.201748],[-81.758235,33.200248],[-81.757083,33.198122],[-81.756935,33.197848],[-81.760635,33.189248],[-81.762835,33.188248],[-81.765735,33.187948],[-81.772435,33.181249],[-81.772435,33.180449],[-81.766735,33.170749],[-81.764435,33.165549],[-81.763135,33.159449],[-81.755135,33.15155],[-81.743835,33.14145],[-81.724334,33.129451],[-81.717134,33.124051],[-81.704634,33.116451],[-81.703134,33.116151],[-81.699834,33.116751],[-81.696934,33.116551],[-81.683533,33.112651],[-81.658433,33.103152],[-81.646433,33.094552],[-81.642333,33.093152],[-81.637232,33.092952],[-81.632232,33.093952],[-81.617779,33.095277],[-81.615132,33.095036],[-81.614298,33.094661],[-81.612725,33.093953],[-81.6108,33.09263],[-81.609476,33.089862],[-81.609533,33.086877],[-81.609837,33.084929],[-81.610078,33.082883],[-81.609837,33.082161],[-81.608995,33.0818],[-81.606836,33.081717],[-81.603587,33.084578],[-81.601655,33.084688],[-81.600211,33.083966],[-81.598165,33.081078],[-81.598286,33.079153],[-81.599369,33.076867],[-81.600211,33.075182],[-81.600091,33.073497],[-81.599248,33.071813],[-81.594555,33.069887],[-81.592645,33.06991],[-81.590705,33.071211],[-81.588539,33.07085],[-81.583804,33.067021],[-81.580994,33.062697],[-81.578332,33.058936],[-81.57288,33.05418],[-81.568925,33.053523],[-81.566759,33.053763],[-81.564714,33.054726],[-81.56327,33.055568],[-81.562548,33.055568],[-81.562066,33.055568],[-81.561344,33.055568],[-81.560502,33.055207],[-81.559179,33.054124],[-81.558938,33.052921],[-81.559173,33.051765],[-81.55966,33.04907],[-81.559179,33.047386],[-81.558336,33.046183],[-81.557013,33.0451],[-81.553643,33.044137],[-81.551838,33.044739],[-81.546785,33.047145],[-81.544258,33.046905],[-81.54251,33.045254],[-81.542092,33.044859],[-81.540081,33.040613],[-81.538789,33.039185],[-81.519632,33.029181],[-81.513231,33.028546],[-81.511245,33.027786],[-81.50203,33.015113],[-81.492253,33.009342],[-81.491419,33.008078],[-81.491197,32.997824],[-81.491457,32.995437],[-81.494736,32.978998],[-81.499471,32.96478],[-81.49983,32.963816],[-81.501369,32.962914],[-81.503346,32.96295],[-81.505256,32.963019],[-81.506449,32.962423],[-81.507144,32.96133],[-81.507442,32.960237],[-81.507741,32.959243],[-81.508436,32.958349],[-81.508536,32.957156],[-81.508436,32.955765],[-81.508138,32.953976],[-81.507045,32.951194],[-81.504016,32.948091],[-81.499446,32.944988],[-81.499566,32.943722],[-81.502716,32.938688],[-81.502427,32.935353],[-81.499829,32.932614],[-81.495092,32.931596],[-81.483198,32.921802],[-81.480008,32.913444],[-81.479184,32.905638],[-81.468978,32.901083],[-81.465924,32.899889],[-81.464069,32.897814],[-81.464655,32.895999],[-81.470836,32.890521],[-81.471703,32.890439],[-81.4771,32.887469],[-81.479445,32.881082],[-81.475918,32.877641],[-81.470376,32.876267],[-81.468042,32.876675],[-81.45392,32.874074],[-81.452883,32.872964],[-81.451351,32.868583],[-81.453017,32.859636],[-81.455978,32.854107],[-81.453949,32.849761],[-81.452573,32.84795],[-81.451199,32.847925],[-81.449396,32.849126],[-81.444866,32.850967],[-81.443595,32.850628],[-81.442671,32.850107],[-81.426475,32.840773],[-81.421614,32.835178],[-81.42062,32.831223],[-81.417984,32.818196],[-81.418497,32.815664],[-81.419752,32.813731],[-81.423772,32.810514],[-81.424874,32.801882],[-81.425234,32.79419],[-81.424999,32.790334],[-81.428031,32.787618],[-81.429017,32.785505],[-81.428313,32.78311],[-81.426481,32.78142],[-81.424227,32.780152],[-81.422114,32.779306],[-81.421128,32.778039],[-81.420987,32.776912],[-81.421128,32.775926],[-81.421269,32.774658],[-81.422678,32.773249],[-81.424714,32.772648],[-81.425636,32.77184],[-81.426059,32.771136],[-81.426481,32.770291],[-81.426481,32.769023],[-81.426199,32.768319],[-81.425017,32.768058],[-81.422396,32.767051],[-81.420142,32.765501],[-81.417606,32.762684],[-81.416479,32.760289],[-81.415212,32.757753],[-81.416479,32.754654],[-81.416761,32.752259],[-81.416198,32.750428],[-81.415353,32.748879],[-81.412817,32.748174],[-81.411408,32.747329],[-81.410563,32.74592],[-81.410281,32.744653],[-81.410563,32.743244],[-81.410845,32.741694],[-81.411549,32.740145],[-81.41267,32.739083],[-81.418542,32.732586],[-81.420516,32.720238],[-81.421194,32.711978],[-81.427517,32.701896],[-81.426735,32.700867],[-81.4131,32.692648],[-81.411609,32.693145],[-81.411157,32.693959],[-81.41075,32.694772],[-81.409982,32.695179],[-81.409349,32.695269],[-81.40831,32.694908],[-81.401256,32.680156],[-81.401029,32.677494],[-81.404287,32.667798],[-81.406646,32.662515],[-81.4073,32.66156],[-81.407193,32.660519],[-81.405273,32.656517],[-81.398314,32.656307],[-81.393818,32.653491],[-81.393033,32.651543],[-81.394589,32.64957],[-81.403582,32.643398],[-81.405109,32.64269],[-81.404238,32.638258],[-81.402735,32.637032],[-81.402846,32.63621],[-81.407271,32.631737],[-81.40933,32.631096],[-81.41026,32.631392],[-81.411523,32.632907],[-81.413411,32.637368],[-81.414761,32.63744],[-81.417014,32.636147],[-81.418431,32.634704],[-81.41866,32.629392],[-81.411906,32.61841],[-81.404714,32.611207],[-81.397106,32.605587],[-81.393865,32.60234],[-81.389338,32.595436],[-81.389261,32.595383],[-81.380999,32.589652],[-81.379216,32.589022],[-81.376237,32.589217],[-81.373178,32.592115],[-81.37157,32.592018],[-81.369757,32.591231],[-81.368982,32.590025],[-81.368386,32.584221],[-81.366964,32.577059],[-81.328753,32.561228],[-81.320588,32.559534],[-81.309009,32.56097],[-81.300593,32.562843],[-81.297955,32.563026],[-81.29676,32.562648],[-81.281324,32.556464],[-81.281298,32.55644],[-81.279238,32.55459],[-81.275213,32.545202],[-81.274927,32.544158],[-81.274802,32.541143],[-81.276242,32.538558],[-81.277131,32.535417],[-81.252882,32.51833],[-81.249827,32.517541],[-81.247874,32.518231],[-81.24501,32.518317],[-81.237095,32.517314],[-81.23466,32.51627],[-81.234023,32.513778],[-81.234834,32.512271],[-81.236707,32.511402],[-81.238411,32.510192],[-81.238728,32.508896],[-81.238281,32.505988],[-81.233585,32.498488],[-81.227528,32.493884],[-81.212428,32.478685],[-81.200029,32.467985],[-81.194829,32.465086],[-81.192429,32.464786],[-81.189229,32.465586],[-81.188129,32.465386],[-81.186829,32.464086],[-81.187329,32.462886],[-81.192629,32.456286],[-81.197529,32.452086],[-81.200908,32.451593],[-81.202359,32.450448],[-81.203046,32.448844],[-81.203046,32.447164],[-81.202206,32.445484],[-81.201137,32.444033],[-81.201137,32.442964],[-81.201595,32.44136],[-81.202588,32.439833],[-81.20453,32.438687],[-81.207246,32.437542],[-81.20843,32.435987],[-81.20513,32.423788],[-81.194931,32.411489],[-81.189731,32.407289],[-81.180931,32.39649],[-81.177231,32.39169],[-81.178131,32.38459],[-81.181072,32.380398],[-81.173432,32.372591],[-81.169332,32.369436],[-81.168722,32.367544],[-81.169332,32.365591],[-81.170553,32.363821],[-81.170858,32.362722],[-81.170126,32.361318],[-81.161732,32.356092],[-81.155032,32.350093],[-81.154974,32.348794],[-81.155136,32.34717],[-81.154812,32.346412],[-81.154433,32.346087],[-81.154,32.345924],[-81.153296,32.345816],[-81.152105,32.345816],[-81.150589,32.34587],[-81.149073,32.346682],[-81.148477,32.347549],[-81.147632,32.349393],[-81.144032,32.351093],[-81.142532,32.350893],[-81.140932,32.349393],[-81.133632,32.341293],[-81.133032,32.334794],[-81.137032,32.329994],[-81.137633,32.328194],[-81.135733,32.324594],[-81.125433,32.309295],[-81.123933,32.308695],[-81.122933,32.307295],[-81.122333,32.305395],[-81.119833,32.289596],[-81.119633,32.287596],[-81.121433,32.284496],[-81.128034,32.276297],[-81.130834,32.274597],[-81.136534,32.272697],[-81.145834,32.263397],[-81.148334,32.255098],[-81.155595,32.246022],[-81.156587,32.24391],[-81.155995,32.241478],[-81.153531,32.237687],[-81.14653,32.226938],[-81.143139,32.221731],[-81.136727,32.213669],[-81.136012,32.212858],[-81.128283,32.208634],[-81.12315,32.201329],[-81.118234,32.189201],[-81.117934,32.185301],[-81.119834,32.181202],[-81.120434,32.178702],[-81.119361,32.177142],[-81.119434,32.175402],[-81.121134,32.174902],[-81.124492,32.17212],[-81.128134,32.169102],[-81.129402,32.166922],[-81.129634,32.165602],[-81.128434,32.164402],[-81.123134,32.162902],[-81.122034,32.161803],[-81.120034,32.153303],[-81.118334,32.144403],[-81.119134,32.142104],[-81.119994,32.134268],[-81.117234,32.117605],[-81.113334,32.113205],[-81.111134,32.112005],[-81.100458,32.111181],[-81.093386,32.11123],[-81.091498,32.110782],[-81.090874,32.10699],[-81.088234,32.10395],[-81.083546,32.100782],[-81.066906,32.090351],[-81.060442,32.087503],[-81.050234,32.085308],[-81.038265,32.084469],[-81.032674,32.08545],[-81.021622,32.090897],[-81.020104,32.092662],[-81.016009,32.097424],[-81.011961,32.100176],[-81.006745,32.101152],[-81.002297,32.100048],[-80.999833,32.099014],[-80.994333,32.094608],[-80.991733,32.091208],[-80.987733,32.084209],[-80.983133,32.079609],[-80.978833,32.077309],[-80.959402,32.071259],[-80.954482,32.068622],[-80.943226,32.057824],[-80.933557,32.047554],[-80.926753,32.041672],[-80.922794,32.039151],[-80.917845,32.037575],[-80.910669,32.036735],[-80.892977,32.034949],[-80.885517,32.0346],[-80.859111,32.023693],[-80.852276,32.026676],[-80.84313,32.024226],[-80.840549,32.011306],[-80.841913,32.002643],[-80.848441,31.988279],[-80.862814,31.969346],[-80.882814,31.959075],[-80.897687,31.949065],[-80.911207,31.943769],[-80.929101,31.944964],[-80.930279,31.956705],[-80.948491,31.95723],[-80.972392,31.94127],[-80.975714,31.923602],[-80.968494,31.915822],[-80.954469,31.911768],[-80.941359,31.912984],[-80.934508,31.90918],[-80.947294,31.89621],[-80.971434,31.877941],[-80.99269,31.857641],[-81.000317,31.856744],[-81.014478,31.867474],[-81.041548,31.876198],[-81.065255,31.877095],[-81.058596,31.857811],[-81.05907,31.850106],[-81.06279,31.84474],[-81.076178,31.836132],[-81.075812,31.829031],[-81.057181,31.822687],[-81.050946,31.822383],[-81.04794,31.824881],[-81.039808,31.823],[-81.036958,31.819558],[-81.036873,31.812721],[-81.047345,31.802865],[-81.068116,31.768735],[-81.077057,31.761256],[-81.097402,31.753126],[-81.130634,31.722692],[-81.138448,31.720934],[-81.154686,31.726203],[-81.16067,31.728144],[-81.192784,31.733245],[-81.198394,31.72607],[-81.203572,31.719448],[-81.186303,31.701509],[-81.161084,31.691401],[-81.154624,31.693874],[-81.151888,31.698411],[-81.149369,31.699304],[-81.139394,31.699917],[-81.131137,31.695774],[-81.135608,31.683491],[-81.136408,31.674832],[-81.131728,31.654484],[-81.133493,31.623348],[-81.14997,31.593476],[-81.160364,31.570436],[-81.173079,31.555908],[-81.178822,31.55553],[-81.183252,31.560058],[-81.186114,31.568032],[-81.19438,31.568101],[-81.204315,31.568183],[-81.214536,31.557601],[-81.240699,31.552313],[-81.254218,31.55594],[-81.260076,31.54828],[-81.263905,31.532579],[-81.263437,31.530932],[-81.258809,31.52906],[-81.217948,31.527284],[-81.213519,31.528152],[-81.199518,31.537596],[-81.193016,31.535833],[-81.181592,31.527697],[-81.17831,31.52241],[-81.177254,31.517074],[-81.189643,31.503588],[-81.204883,31.473124],[-81.246911,31.422784],[-81.258616,31.404425],[-81.278798,31.367214],[-81.279338,31.351127],[-81.282923,31.326491],[-81.274513,31.326237],[-81.268027,31.324218],[-81.25482,31.315452],[-81.260958,31.30391],[-81.269906,31.294489],[-81.274688,31.289454],[-81.276862,31.254734],[-81.282842,31.24433],[-81.289136,31.225487],[-81.288403,31.211065],[-81.293359,31.206332],[-81.304957,31.206173],[-81.314183,31.207938],[-81.339028,31.186918],[-81.35488,31.167204],[-81.360791,31.155903],[-81.359349,31.149166],[-81.368241,31.136534],[-81.38683,31.133214],[-81.399677,31.134113],[-81.402096,31.125383],[-81.403732,31.107115],[-81.401209,31.086143],[-81.401267,31.072781],[-81.415123,31.026718],[-81.420474,31.016703],[-81.424732,31.013678],[-81.432475,31.012991],[-81.43471,31.014641],[-81.434923,31.017804],[-81.44317,31.016661],[-81.451444,31.015515],[-81.457795,31.010259],[-81.45924,31.005692],[-81.469298,30.996028],[-81.490586,30.984952],[-81.493651,30.977528],[-81.486966,30.969602],[-81.475789,30.965976],[-81.472321,30.969899],[-81.466814,30.97091],[-81.453568,30.965573],[-81.447388,30.956732],[-81.426929,30.956615],[-81.420108,30.974076],[-81.415825,30.977192],[-81.408484,30.977718],[-81.403409,30.957914],[-81.405153,30.908203],[-81.428577,30.836336],[-81.430835,30.831156],[-81.44013,30.821369],[-81.446927,30.81039],[-81.455287,30.79093],[-81.460061,30.769912],[-81.461065,30.753684],[-81.45947,30.741979],[-81.449375,30.715601],[-81.444124,30.709714],[-81.448718,30.709353],[-81.459978,30.710434],[-81.464465,30.711045],[-81.472597,30.713312],[-81.475754,30.714754],[-81.483786,30.723891],[-81.487332,30.726081],[-81.489537,30.7261],[-81.507216,30.722936],[-81.516116,30.722236],[-81.521417,30.722536],[-81.528278,30.723359],[-81.530531,30.722858],[-81.532785,30.721606],[-81.534037,30.719853],[-81.534517,30.717936],[-81.535539,30.716348],[-81.537668,30.714345],[-81.539295,30.713468],[-81.540923,30.713343],[-81.542675,30.713593],[-81.544679,30.713969],[-81.546932,30.714345],[-81.549186,30.715972],[-81.552566,30.716974],[-81.561706,30.715597],[-81.566219,30.717836],[-81.571419,30.721636],[-81.573719,30.722336],[-81.58682,30.723735],[-81.593648,30.725459],[-81.601206,30.728141],[-81.60401,30.727287],[-81.605716,30.725337],[-81.607667,30.721924],[-81.609495,30.720705],[-81.617663,30.722046],[-81.619613,30.724849],[-81.620822,30.729535],[-81.621929,30.731188],[-81.625098,30.733017],[-81.629609,30.732407],[-81.633266,30.729603],[-81.646137,30.727591],[-81.649188,30.728686],[-81.65044,30.729703],[-81.65177,30.732284],[-81.652161,30.735648],[-81.651723,30.740235],[-81.652123,30.742435],[-81.656541,30.745113],[-81.662173,30.746521],[-81.664598,30.746599],[-81.667336,30.74566],[-81.668275,30.744643],[-81.669324,30.741335],[-81.670124,30.740235],[-81.672824,30.738935],[-81.688925,30.741434],[-81.69099,30.742841],[-81.691818,30.74399],[-81.692815,30.7471],[-81.694778,30.748414],[-81.719927,30.744634],[-81.727127,30.746934],[-81.732227,30.749634],[-81.742736,30.759201],[-81.743094,30.759912],[-81.743438,30.762271],[-81.744183,30.763868],[-81.745035,30.765039],[-81.746312,30.765891],[-81.747572,30.766455],[-81.751283,30.767082],[-81.755074,30.768319],[-81.759338,30.771377],[-81.763372,30.77382],[-81.768192,30.773954],[-81.770468,30.772481],[-81.772611,30.769535],[-81.775021,30.76833],[-81.779171,30.768062],[-81.782653,30.769937],[-81.78435,30.77359],[-81.792769,30.784432],[-81.806652,30.789683],[-81.808529,30.790014],[-81.827014,30.788933],[-81.840375,30.786384],[-81.842058,30.78712],[-81.846286,30.790548],[-81.852626,30.794439],[-81.868608,30.792754],[-81.876882,30.799516],[-81.882725,30.805124],[-81.891281,30.815945],[-81.892904,30.819268],[-81.89572,30.821098],[-81.89938,30.821662],[-81.902337,30.820817],[-81.903745,30.818986],[-81.906279,30.817015],[-81.910926,30.815889],[-81.924448,30.817566],[-81.934655,30.820424],[-81.935444,30.821131],[-81.938381,30.825745],[-81.943168,30.827434],[-81.949787,30.827493],[-81.959759,30.821168],[-81.962175,30.818001],[-81.962739,30.813636],[-81.962441,30.808441],[-81.961989,30.800443],[-81.962534,30.796526],[-81.973856,30.778487],[-81.979061,30.776415],[-81.981273,30.776767],[-81.988605,30.780056],[-81.990855,30.781611],[-81.994972,30.786073],[-82.004973,30.791744],[-82.007865,30.792937],[-82.017051,30.791657],[-82.022866,30.787991],[-82.023848,30.786685],[-82.024035,30.783156],[-82.017881,30.775844],[-82.011597,30.763122],[-82.01266,30.761289],[-82.017917,30.755263],[-82.0284,30.750981],[-82.032645,30.750674],[-82.035964,30.750998],[-82.038967,30.749262],[-82.039634,30.747727],[-82.040026,30.737548],[-82.041168,30.734248],[-82.043795,30.729641],[-82.04101,30.72508],[-82.039154,30.723178],[-82.037563,30.71864],[-82.036426,30.706585],[-82.041812,30.692376],[-82.050432,30.676266],[-82.049507,30.655548],[-82.046114,30.651767],[-82.042271,30.649452],[-82.039595,30.643309],[-82.039092,30.641132],[-82.039941,30.637144],[-82.037609,30.633271],[-82.033927,30.629603],[-82.028499,30.621829],[-82.026541,30.613303],[-82.027338,30.606726],[-82.026941,30.606153],[-82.016503,30.602484],[-82.015708,30.601704],[-82.012109,30.593773],[-82.008091,30.577018],[-82.005477,30.563495],[-82.013216,30.550091],[-82.018361,30.531184],[-82.018868,30.523828],[-82.01699,30.519358],[-82.015826,30.518166],[-82.01477,30.513009],[-82.015892,30.495499],[-82.018222,30.492085],[-82.017297,30.487638],[-82.016982,30.478779],[-82.017779,30.475081],[-82.023734,30.467289],[-82.025457,30.457755],[-82.028212,30.447396],[-82.030064,30.444853],[-82.036203,30.43846],[-82.037209,30.434518],[-82.034464,30.428048],[-82.034005,30.422357],[-82.039971,30.41428],[-82.041164,30.409966],[-82.04199,30.403266],[-82.041164,30.396841],[-82.035871,30.385287],[-82.036825,30.377884],[-82.040746,30.370158],[-82.047917,30.363265],[-82.049966,30.362382],[-82.050069,30.362338],[-82.060034,30.360328],[-82.068533,30.359184],[-82.081106,30.358806],[-82.094687,30.360781],[-82.101798,30.365336],[-82.101416,30.366556],[-82.1025,30.367823],[-82.104834,30.368319],[-82.116385,30.367335],[-82.143282,30.363393],[-82.158109,30.359913],[-82.161757,30.357851],[-82.165192,30.358035],[-82.170054,30.358929],[-82.171508,30.359869],[-82.180018,30.368625],[-82.183797,30.373712],[-82.189847,30.375938],[-82.19294,30.378779],[-82.204151,30.40133],[-82.210291,30.42459],[-82.20987,30.432818],[-82.206486,30.437081],[-82.203975,30.444507],[-82.204823,30.45184],[-82.20604,30.455507],[-82.207522,30.456928],[-82.207708,30.460503],[-82.204614,30.468868],[-82.200938,30.474438],[-82.201416,30.485164],[-82.206445,30.491877],[-82.212852,30.498751],[-82.218514,30.504187],[-82.225026,30.50783],[-82.226933,30.510281],[-82.230377,30.517339],[-82.229399,30.520823],[-82.230752,30.526758],[-82.234952,30.533066],[-82.23582,30.537187],[-82.235603,30.544885],[-82.231916,30.55627],[-82.227254,30.561041],[-82.223025,30.56321],[-82.218579,30.564403],[-82.214385,30.566958],[-82.214818,30.568517],[-82.214839,30.568591],[-82.249841,30.570863],[-82.2581,30.571559],[-82.287343,30.573458],[-82.374844,30.579004],[-82.418915,30.581745],[-82.459544,30.584272],[-82.459792,30.584287],[-82.524899,30.588189],[-82.536233,30.588885],[-82.545055,30.589361],[-82.553159,30.589934],[-82.565476,30.590622],[-82.569237,30.590965],[-82.584002,30.591796],[-82.689271,30.597719],[-82.689539,30.597734],[-82.698618,30.598232],[-82.698902,30.598271],[-82.877259,30.609024],[-82.878779,30.609082],[-83.13137,30.623583],[-83.136614,30.623989],[-83.15617,30.625504],[-83.163309,30.625895],[-83.174411,30.626444],[-83.187391,30.627223],[-83.256218,30.631279],[-83.309249,30.634405],[-83.30925,30.634405],[-83.309455,30.634417],[-83.311647,30.634577],[-83.340852,30.636336],[-83.341011,30.636346],[-83.357703,30.637359],[-83.37946,30.63868],[-83.390062,30.639333],[-83.429477,30.641519],[-83.429584,30.641496],[-83.440021,30.642023],[-83.448895,30.64241],[-83.499876,30.645671],[-83.611667,30.651255],[-83.61172,30.651258],[-83.674058,30.654747],[-83.676773,30.654905],[-83.743729,30.658396],[-83.810536,30.66188],[-83.820886,30.662612],[-83.855216,30.664412],[-83.88022,30.665832],[-83.880317,30.665807],[-84.007391,30.672097],[-84.007454,30.6721],[-84.039707,30.673819],[-84.04181,30.673878],[-84.046605,30.6742],[-84.057228,30.674705],[-84.083757,30.675816],[-84.107699,30.676818],[-84.124895,30.678046],[-84.2499,30.684145],[-84.28121,30.685256],[-84.282561,30.685321],[-84.374905,30.689794],[-84.380706,30.689969],[-84.474409,30.692793],[-84.535042,30.696523],[-84.53937,30.696775],[-84.606249,30.699872],[-84.606386,30.699865],[-84.644815,30.701992],[-84.836324,30.710709],[-84.86346,30.711506],[-84.864693,30.711542],[-84.869752,30.721897],[-84.875421,30.727491],[-84.883821,30.732591],[-84.885221,30.734991],[-84.887522,30.741791],[-84.896122,30.750591],[-84.897622,30.751391],[-84.900222,30.751891],[-84.903122,30.751791],[-84.906322,30.750591],[-84.911122,30.751191],[-84.913522,30.752291],[-84.914322,30.753591],[-84.915022,30.761191],[-84.920123,30.76599],[-84.918023,30.77209],[-84.917423,30.77589],[-84.918023,30.77809],[-84.926723,30.79019],[-84.928323,30.79309],[-84.929023,30.79729],[-84.927923,30.80279],[-84.928323,30.80509],[-84.930923,30.810489],[-84.935413,30.81721],[-84.936042,30.820671],[-84.93557,30.824603],[-84.935256,30.830894],[-84.934155,30.834039],[-84.931953,30.837499],[-84.929436,30.840331],[-84.928335,30.842532],[-84.928335,30.844263],[-84.928807,30.846779],[-84.930065,30.848824],[-84.933224,30.851488],[-84.935256,30.854328],[-84.935413,30.858418],[-84.934627,30.86062],[-84.933997,30.863293],[-84.934627,30.865495],[-84.935728,30.86754],[-84.937772,30.870528],[-84.938401,30.873045],[-84.937615,30.875876],[-84.93557,30.878707],[-84.935413,30.882481],[-84.936828,30.884683],[-84.938087,30.885627],[-84.939974,30.886728],[-84.941325,30.887688],[-84.942525,30.888488],[-84.949625,30.897387],[-84.952325,30.902287],[-84.956125,30.907587],[-84.966726,30.917287],[-84.969426,30.921987],[-84.971026,30.928187],[-84.975226,30.930787],[-84.980627,30.932687],[-84.983127,30.934786],[-84.983627,30.936986],[-84.983027,30.942586],[-84.982227,30.946886],[-84.979627,30.954686],[-84.979627,30.958986],[-84.980127,30.961286],[-84.982527,30.965586],[-84.984827,30.967486],[-84.988027,30.968786],[-84.997628,30.971186],[-84.999828,30.971486],[-84.999928,30.971186],[-85.004026,30.973468],[-85.005105,30.974704],[-85.005931,30.97704],[-85.005934,30.979804],[-85.00254,30.986899],[-85.001819,30.997889],[-85.0019,31.000681],[-85.002368,31.000682],[-85.001366,31.005044],[-84.999626,31.009079],[-84.999428,31.013843],[-85.00006,31.014983],[-85.004549,31.01918],[-85.005051,31.024701],[-85.009409,31.032378],[-85.008552,31.042824],[-85.008816,31.045573],[-85.011392,31.053546],[-85.012642,31.055402],[-85.018148,31.059253],[-85.028573,31.074583],[-85.028473,31.075526],[-85.028333,31.076851],[-85.026068,31.08418],[-85.029736,31.096163],[-85.032832,31.10057],[-85.035615,31.108192],[-85.037079,31.109751],[-85.040513,31.111583],[-85.050178,31.118916],[-85.052867,31.119489],[-85.054677,31.120818],[-85.061072,31.134225],[-85.06243,31.139518],[-85.064028,31.142495],[-85.070181,31.14868],[-85.076628,31.156927],[-85.077801,31.157889],[-85.083582,31.15963],[-85.092106,31.160293],[-85.100207,31.16549],[-85.100447,31.166727],[-85.098426,31.17777],[-85.098507,31.180153],[-85.102052,31.184734],[-85.104424,31.18565],[-85.106503,31.185305],[-85.107516,31.186451],[-85.108133,31.195637],[-85.106963,31.202693],[-85.105631,31.204595],[-85.09977,31.209751],[-85.098704,31.211286],[-85.098707,31.219511],[-85.096763,31.225651],[-85.098844,31.232524],[-85.100765,31.234813],[-85.102472,31.23786],[-85.10426,31.241869],[-85.106182,31.248077],[-85.109149,31.254609],[-85.111711,31.258022],[-85.112352,31.25958],[-85.113261,31.264343],[-85.111983,31.267987],[-85.111905,31.272477],[-85.112546,31.274378],[-85.114548,31.276302],[-85.114601,31.277333],[-85.112762,31.280037],[-85.110309,31.281733],[-85.099107,31.284165],[-85.09316,31.289688],[-85.089774,31.295026],[-85.087695,31.304053],[-85.087651,31.308677],[-85.087404,31.311223],[-85.084469,31.316194],[-85.083776,31.31821],[-85.084152,31.328313],[-85.088983,31.334292],[-85.089411,31.336033],[-85.08781,31.337981],[-85.087063,31.340317],[-85.085864,31.35019],[-85.085918,31.353146],[-85.087413,31.354428],[-85.09099,31.354428],[-85.091791,31.355207],[-85.092619,31.357474],[-85.092487,31.362881],[-85.092167,31.364576],[-85.08691,31.374474],[-85.082431,31.38454],[-85.080403,31.393932],[-85.078641,31.39636],[-85.077626,31.39888],[-85.077387,31.402844],[-85.079978,31.410472],[-85.079818,31.411732],[-85.076746,31.415971],[-85.075827,31.421506],[-85.074762,31.424879],[-85.072898,31.426477],[-85.070413,31.426921],[-85.068546,31.427311],[-85.06697,31.428594],[-85.065875,31.430586],[-85.065554,31.439543],[-85.065955,31.442979],[-85.066703,31.447286],[-85.069268,31.453472],[-85.071621,31.468384],[-85.065687,31.484122],[-85.062105,31.488017],[-85.058923,31.495989],[-85.052951,31.506518],[-85.048445,31.513684],[-85.045642,31.516813],[-85.045496,31.517129],[-85.044986,31.51823],[-85.044556,31.520908],[-85.047649,31.523751],[-85.048263,31.526012],[-85.047196,31.528671],[-85.042983,31.5352],[-85.041813,31.537754],[-85.041305,31.540987],[-85.041881,31.544684],[-85.042547,31.545953],[-85.045698,31.548707],[-85.050838,31.555551],[-85.051873,31.557871],[-85.052931,31.56289],[-85.05796,31.57084],[-85.057719,31.573062],[-85.055284,31.577092],[-85.055417,31.578696],[-85.05844,31.58369],[-85.058109,31.593343],[-85.056405,31.600963],[-85.055976,31.605178],[-85.057314,31.606713],[-85.059696,31.607262],[-85.060552,31.608224],[-85.060418,31.611271],[-85.05833,31.614546],[-85.057527,31.616883],[-85.057473,31.618624],[-85.058169,31.620227],[-85.059534,31.621717],[-85.065236,31.624351],[-85.067628,31.625267],[-85.073829,31.629567],[-85.080029,31.636867],[-85.082829,31.637967],[-85.084503,31.639026],[-85.085173,31.640749],[-85.085365,31.642186],[-85.085173,31.644101],[-85.082588,31.649463],[-85.081429,31.650966],[-85.080864,31.652336],[-85.08096,31.653102],[-85.082013,31.65473],[-85.083545,31.656071],[-85.08546,31.657028],[-85.087829,31.657866],[-85.092429,31.659966],[-85.10943,31.677465],[-85.11263,31.685165],[-85.11393,31.686865],[-85.12233,31.691265],[-85.12553,31.694965],[-85.12683,31.708965],[-85.12653,31.716764],[-85.12573,31.718864],[-85.12223,31.722764],[-85.11913,31.730964],[-85.11893,31.732664],[-85.12393,31.747564],[-85.12663,31.752463],[-85.129231,31.758663],[-85.126954,31.76233],[-85.12563,31.764463],[-85.12523,31.767063],[-85.12633,31.768863],[-85.130731,31.772263],[-85.140431,31.779663],[-85.140951,31.78046],[-85.141931,31.781963],[-85.137131,31.788363],[-85.132931,31.792363],[-85.132231,31.795162],[-85.132831,31.798862],[-85.132931,31.808062],[-85.131531,31.813062],[-85.131331,31.817562],[-85.133631,31.826062],[-85.135931,31.830462],[-85.139231,31.834161],[-85.141831,31.839261],[-85.141331,31.841061],[-85.138331,31.844161],[-85.137731,31.845861],[-85.138031,31.851262],[-85.140231,31.855261],[-85.140731,31.857461],[-85.140131,31.858761],[-85.137431,31.860661],[-85.135831,31.862461],[-85.133731,31.870061],[-85.128831,31.87636],[-85.128431,31.87756],[-85.128431,31.87966],[-85.129331,31.88246],[-85.131631,31.88676],[-85.133731,31.88956],[-85.134331,31.89146],[-85.134131,31.89216],[-85.132931,31.89306],[-85.121131,31.89326],[-85.117031,31.89286],[-85.114031,31.89336],[-85.11203,31.89476],[-85.11063,31.89686],[-85.11133,31.89936],[-85.10803,31.90516],[-85.10983,31.90806],[-85.112731,31.909859],[-85.113131,31.911859],[-85.10913,31.914359],[-85.10243,31.917359],[-85.10133,31.918659],[-85.10023,31.924059],[-85.09953,31.925259],[-85.09823,31.926259],[-85.09183,31.928859],[-85.08643,31.935959],[-85.08473,31.937359],[-85.07893,31.940159],[-85.07893,31.941459],[-85.08243,31.945358],[-85.08683,31.957758],[-85.08673,31.959158],[-85.08573,31.960758],[-85.08323,31.962458],[-85.07393,31.964158],[-85.07023,31.965658],[-85.067829,31.967358],[-85.065929,31.971158],[-85.065929,31.972458],[-85.066829,31.974758],[-85.06993,31.978358],[-85.07093,31.981658],[-85.06833,31.986757],[-85.068098,31.991857],[-85.06803,31.993357],[-85.064544,32.002489],[-85.063441,32.00414],[-85.055075,32.010714],[-85.053815,32.013502],[-85.054768,32.017407],[-85.053669,32.020662],[-85.053214,32.021576],[-85.053072,32.02313],[-85.053214,32.024189],[-85.053779,32.025532],[-85.055217,32.027213],[-85.056253,32.028336],[-85.056464,32.031819],[-85.055474,32.034221],[-85.054627,32.036694],[-85.054839,32.038814],[-85.055333,32.04058],[-85.05803,32.043756],[-85.05883,32.046656],[-85.05663,32.054155],[-85.05643,32.058055],[-85.05683,32.059755],[-85.056029,32.063055],[-85.054179,32.067985],[-85.054084,32.07021],[-85.055491,32.072657],[-85.055813,32.074439],[-85.053232,32.080604],[-85.051161,32.082527],[-85.04774,32.084908],[-85.047063,32.087389],[-85.047063,32.090433],[-85.04955,32.095362],[-85.053777,32.107684],[-85.055045,32.113671],[-85.05918,32.125153],[-85.06154,32.129673],[-85.06206,32.132486],[-85.061144,32.134065],[-85.058749,32.136018],[-85.047865,32.142033],[-85.045593,32.143758],[-85.033989,32.156348],[-85.030336,32.161727],[-85.026583,32.166104],[-85.014648,32.176882],[-85.013065,32.179112],[-85.011267,32.180493],[-85.008531,32.181903],[-84.995929,32.184852],[-84.973728,32.191552],[-84.966828,32.193952],[-84.965032,32.196642],[-84.964944,32.19892],[-84.965032,32.200585],[-84.966346,32.202688],[-84.966928,32.204451],[-84.967047,32.205843],[-84.966784,32.206895],[-84.966346,32.208034],[-84.965733,32.208823],[-84.964594,32.209787],[-84.963367,32.211014],[-84.962227,32.212503],[-84.96065,32.214344],[-84.958985,32.215571],[-84.957057,32.21671],[-84.953727,32.217148],[-84.948995,32.217849],[-84.939328,32.217951],[-84.930127,32.219051],[-84.928227,32.219851],[-84.925427,32.221551],[-84.922927,32.224751],[-84.923527,32.229751],[-84.923031,32.230853],[-84.922627,32.231751],[-84.920627,32.233951],[-84.916327,32.236551],[-84.912727,32.24335],[-84.913249,32.24529],[-84.912488,32.247463],[-84.910098,32.248333],[-84.907227,32.24905],[-84.904087,32.250838],[-84.902496,32.253217],[-84.901549,32.255584],[-84.898234,32.256768],[-84.892315,32.258189],[-84.891131,32.25961],[-84.890894,32.261504],[-84.891841,32.263398],[-84.893959,32.265846],[-84.904023,32.273749],[-84.911127,32.276949],[-84.922872,32.285333],[-84.9338,32.29826],[-84.93868,32.300708],[-84.989514,32.319316],[-85.001874,32.322015],[-85.007103,32.328362],[-85.008096,32.336677],[-85.004582,32.345196],[-84.986778,32.359058],[-84.983466,32.363186],[-84.983242,32.365122],[-84.983552,32.368371],[-84.982949,32.371387],[-84.980084,32.373347],[-84.978727,32.376212],[-84.978739,32.376271],[-84.97933,32.379077],[-84.980084,32.382244],[-84.980385,32.385561],[-84.979028,32.38918],[-84.976767,32.392648],[-84.97752,32.39687],[-84.979898,32.400097],[-84.981098,32.402833],[-84.979431,32.412244],[-84.97183,32.416244],[-84.96343,32.422544],[-84.96303,32.424244],[-84.967031,32.435343],[-84.971831,32.442843],[-84.983831,32.445643],[-84.993531,32.450743],[-84.995331,32.453243],[-84.998031,32.461743],[-84.998231,32.469842],[-84.995231,32.475242],[-84.994831,32.486042],[-84.996732,32.492342],[-84.998332,32.494142],[-84.998832,32.497041],[-84.999832,32.504341],[-85.000182,32.506485],[-85.000789,32.510195],[-85.001532,32.514741],[-85.0071,32.523868],[-85.008396,32.524876],[-85.013788,32.526108],[-85.015805,32.528428],[-85.020237,32.534748],[-85.022045,32.540044],[-85.022509,32.542923],[-85.035726,32.553963],[-85.056926,32.571242],[-85.067535,32.579546],[-85.076399,32.594665],[-85.080288,32.603577],[-85.080618,32.608095],[-85.080768,32.610152],[-85.08224,32.616264],[-85.083616,32.6178],[-85.08536,32.618536],[-85.087294,32.62047],[-85.088319,32.623032],[-85.088729,32.624774],[-85.088627,32.626619],[-85.087192,32.628463],[-85.086065,32.631435],[-85.086167,32.633177],[-85.087294,32.634407],[-85.088934,32.635432],[-85.092008,32.636456],[-85.09662,32.638199],[-85.098259,32.642708],[-85.097952,32.645474],[-85.096005,32.649983],[-85.09457,32.652443],[-85.089736,32.655635],[-85.088483,32.657758],[-85.093536,32.669734],[-85.104037,32.679634],[-85.112637,32.683434],[-85.114737,32.685634],[-85.117037,32.692033],[-85.122738,32.715727],[-85.120838,32.722932],[-85.119733,32.72644],[-85.119422,32.729397],[-85.119577,32.731577],[-85.119577,32.734223],[-85.119733,32.736091],[-85.1202,32.737647],[-85.121601,32.73936],[-85.124092,32.741694],[-85.127205,32.743718],[-85.132186,32.74652],[-85.13393,32.747915],[-85.136077,32.749633],[-85.138101,32.753836],[-85.138879,32.760062],[-85.138412,32.764576],[-85.136544,32.769402],[-85.133898,32.772359],[-85.13312,32.773449],[-85.132653,32.774694],[-85.13203,32.776718],[-85.132186,32.778897],[-85.133275,32.780609],[-85.134676,32.782166],[-85.139285,32.784921],[-85.151913,32.794104],[-85.162137,32.804237],[-85.167939,32.811612],[-85.168644,32.814246],[-85.168342,32.828516],[-85.164651,32.834791],[-85.16058,32.838249],[-85.159474,32.839735],[-85.159309,32.841382],[-85.159474,32.842535],[-85.159638,32.844018],[-85.160133,32.8455],[-85.160462,32.847148],[-85.160792,32.848466],[-85.161615,32.849948],[-85.163427,32.851431],[-85.165569,32.85209],[-85.16771,32.852419],[-85.170099,32.852497],[-85.177127,32.853895],[-85.179353,32.855269],[-85.1844,32.861317],[-85.184888,32.863355],[-85.184914,32.868944],[-85.184131,32.870525],[-85.18474,32.870527],[-85.188741,32.889727],[-85.221868,33.055538],[-85.223261,33.06258],[-85.232378,33.108077],[-85.236509,33.129562],[-85.293902,33.428079],[-85.304439,33.482884],[-85.313999,33.529807],[-85.314091,33.530218],[-85.314994,33.535898],[-85.322569,33.574159],[-85.338201,33.653116],[-85.357402,33.750104],[-85.360491,33.767958],[-85.361844,33.773951],[-85.377426,33.856047],[-85.386473,33.901718],[-85.398837,33.964129],[-85.405918,34.0001],[-85.406748,34.002314],[-85.420232,34.072278],[-85.421853,34.080822],[-85.428222,34.114397],[-85.42947,34.125096],[-85.455057,34.250689],[-85.455371,34.252854],[-85.458071,34.265736],[-85.458693,34.269437],[-85.462082,34.286385],[-85.47045,34.328239],[-85.502316,34.473954],[-85.502454,34.474527],[-85.508384,34.501212],[-85.512108,34.518252],[-85.513699,34.524133],[-85.513709,34.52417],[-85.51393,34.525192],[-85.517074,34.542598],[-85.527261,34.588683],[-85.534089,34.623858],[-85.534327,34.625082],[-85.541264,34.656701],[-85.541267,34.656783],[-85.552454,34.708138],[-85.552482,34.708321],[-85.561416,34.750079],[-85.583145,34.860371],[-85.595163,34.924171],[-85.595191,34.924331],[-85.598781,34.944915],[-85.599385,34.951766],[-85.605165,34.984678],[-85.474105,34.983063],[-85.466713,34.982972],[-85.384967,34.982987],[-85.363919,34.983375],[-85.308257,34.984375],[-85.305457,34.984475],[-85.301488,34.984475],[-85.2945,34.984651],[-85.277556,34.984975],[-85.275856,34.984975],[-85.265055,34.985075],[-85.254955,34.985175],[-85.235555,34.985475],[-85.230354,34.985475],[-85.221854,34.985475],[-85.220554,34.985575],[-85.217854,34.985675],[-85.216554,34.985675],[-85.185905,34.985995],[-85.180553,34.986075],[-85.045183,34.986883],[-85.045052,34.986859],[-84.97986,34.987647],[-84.976973,34.987669],[-84.955623,34.98783],[-84.94442,34.987864],[-84.939306,34.987916],[-84.861314,34.987791],[-84.858032,34.987746],[-84.831799,34.988004],[-84.82401,34.987707],[-84.820478,34.987913],[-84.817279,34.987753],[-84.810742,34.987615],[-84.810477,34.987607]]]}}]} diff --git a/Where/RegionKit/Sources/Resources/regions/us-HI.geojson b/Where/RegionKit/Sources/Resources/regions/us-HI.geojson new file mode 100644 index 00000000..d216f52a --- /dev/null +++ b/Where/RegionKit/Sources/Resources/regions/us-HI.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"region":"us-HI","name":"Hawaii"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-155.778234,20.245743],[-155.772734,20.245409],[-155.746893,20.232325],[-155.737004,20.222773],[-155.735822,20.212417],[-155.732704,20.205392],[-155.653966,20.16736],[-155.630382,20.146916],[-155.624565,20.145911],[-155.607797,20.137987],[-155.600909,20.126573],[-155.598033,20.124539],[-155.590923,20.122497],[-155.58168,20.123617],[-155.568368,20.130545],[-155.558933,20.13157],[-155.523661,20.120028],[-155.516795,20.11523],[-155.502561,20.114155],[-155.468211,20.104296],[-155.443957,20.095318],[-155.405459,20.078772],[-155.4024,20.075541],[-155.387578,20.067119],[-155.33021,20.038517],[-155.29548,20.024438],[-155.282629,20.021969],[-155.270316,20.014525],[-155.240933,19.990173],[-155.204486,19.969438],[-155.194593,19.958368],[-155.179939,19.949372],[-155.149215,19.922872],[-155.144394,19.920523],[-155.131235,19.906801],[-155.124618,19.897288],[-155.12175,19.886099],[-155.107541,19.872467],[-155.098716,19.867811],[-155.095032,19.867882],[-155.086341,19.855399],[-155.084357,19.849736],[-155.085674,19.838584],[-155.088979,19.826656],[-155.094414,19.81491],[-155.09207,19.799409],[-155.091216,19.776368],[-155.093517,19.771832],[-155.093387,19.737751],[-155.087118,19.728013],[-155.079426,19.726193],[-155.063972,19.728917],[-155.045382,19.739824],[-155.006423,19.739286],[-154.997278,19.72858],[-154.987168,19.708524],[-154.981102,19.690687],[-154.984718,19.672161],[-154.983778,19.641647],[-154.974342,19.633201],[-154.963933,19.627605],[-154.950359,19.626461],[-154.947874,19.62425],[-154.947718,19.621947],[-154.951014,19.613614],[-154.947106,19.604856],[-154.93394,19.597505],[-154.928205,19.592702],[-154.924422,19.586553],[-154.903542,19.570622],[-154.875,19.556797],[-154.852618,19.549172],[-154.837384,19.538354],[-154.826732,19.537626],[-154.814417,19.53009],[-154.809561,19.522377],[-154.809379,19.519086],[-154.822968,19.48129],[-154.838545,19.463642],[-154.86854,19.438126],[-154.887817,19.426425],[-154.928772,19.397646],[-154.944185,19.381852],[-154.964619,19.365646],[-154.980861,19.349291],[-155.020537,19.331317],[-155.061729,19.316636],[-155.113272,19.290613],[-155.1337,19.276099],[-155.159635,19.268375],[-155.172413,19.26906],[-155.187427,19.266156],[-155.19626,19.261295],[-155.205892,19.260907],[-155.243961,19.271313],[-155.264619,19.274213],[-155.296761,19.266289],[-155.303808,19.261835],[-155.31337,19.250698],[-155.341268,19.234039],[-155.349148,19.217756],[-155.360631,19.20893],[-155.378638,19.202435],[-155.390701,19.201171],[-155.417369,19.187858],[-155.427093,19.179546],[-155.432519,19.170623],[-155.453516,19.151952],[-155.465663,19.146964],[-155.505281,19.137908],[-155.51474,19.132501],[-155.51214,19.128174],[-155.512137,19.124296],[-155.519652,19.117025],[-155.526136,19.115889],[-155.528902,19.11371],[-155.544806,19.091059],[-155.551129,19.08878],[-155.557817,19.08213],[-155.555326,19.069377],[-155.555177,19.053932],[-155.557371,19.046565],[-155.566446,19.032531],[-155.576599,19.027412],[-155.581903,19.02224],[-155.596032,18.998833],[-155.596521,18.980654],[-155.601866,18.971572],[-155.613966,18.970399],[-155.625256,18.961951],[-155.625,18.959934],[-155.638054,18.941723],[-155.658486,18.924835],[-155.672005,18.917466],[-155.681825,18.918694],[-155.687716,18.923358],[-155.690171,18.932195],[-155.693117,18.940542],[-155.726043,18.969437],[-155.763598,18.981837],[-155.806109,19.013967],[-155.853943,19.023762],[-155.88155,19.036644],[-155.884077,19.039266],[-155.886278,19.05576],[-155.903693,19.080777],[-155.908355,19.081138],[-155.921389,19.121183],[-155.917292,19.155963],[-155.903339,19.217792],[-155.90491,19.230147],[-155.902565,19.258427],[-155.895435,19.274639],[-155.890842,19.298905],[-155.887356,19.337101],[-155.888701,19.348031],[-155.898792,19.377984],[-155.913849,19.401107],[-155.909087,19.415455],[-155.921707,19.43055],[-155.924269,19.438794],[-155.925166,19.468081],[-155.922609,19.478611],[-155.924124,19.481406],[-155.930523,19.484921],[-155.935641,19.485628],[-155.936403,19.481905],[-155.939145,19.481577],[-155.95149,19.486649],[-155.952897,19.488805],[-155.953663,19.510003],[-155.960457,19.546612],[-155.962264,19.551779],[-155.965211,19.554745],[-155.96935,19.555963],[-155.970969,19.586328],[-155.978206,19.608159],[-155.997728,19.642816],[-156.028982,19.650098],[-156.032928,19.653905],[-156.034994,19.65936],[-156.033326,19.66923],[-156.027427,19.672154],[-156.029281,19.678908],[-156.036079,19.690252],[-156.04796,19.698938],[-156.051652,19.703649],[-156.052485,19.718667],[-156.064364,19.730766],[-156.05722,19.742536],[-156.052315,19.756836],[-156.049651,19.780452],[-156.021732,19.8022],[-156.006267,19.81758],[-155.982821,19.845651],[-155.976651,19.85053],[-155.964817,19.855183],[-155.949251,19.857034],[-155.945297,19.853443],[-155.940311,19.852305],[-155.925843,19.858928],[-155.926938,19.870221],[-155.92549,19.875],[-155.915662,19.887126],[-155.901987,19.912081],[-155.894099,19.923135],[-155.894474,19.926927],[-155.892533,19.932162],[-155.866919,19.954172],[-155.856588,19.968885],[-155.840708,19.976952],[-155.838692,19.975527],[-155.835312,19.976078],[-155.831948,19.982775],[-155.828965,19.995542],[-155.825473,20.025944],[-155.828182,20.035424],[-155.850385,20.062506],[-155.866931,20.078652],[-155.88419,20.10675],[-155.899149,20.145728],[-155.906035,20.205157],[-155.901452,20.235787],[-155.890663,20.25524],[-155.882631,20.263026],[-155.873921,20.267744],[-155.853293,20.271548],[-155.811459,20.26032],[-155.783242,20.246395],[-155.778234,20.245743]]],[[[-157.789581,21.438396],[-157.789734,21.437679],[-157.789276,21.435833],[-157.790543,21.434313],[-157.791718,21.434881],[-157.793045,21.43391],[-157.793167,21.43574],[-157.791565,21.43651],[-157.791779,21.437752],[-157.793289,21.437658],[-157.791779,21.438435],[-157.791092,21.438442],[-157.790741,21.43874],[-157.789581,21.438396]]],[[[-160.125,21.95909],[-160.122262,21.962881],[-160.112746,21.995245],[-160.09645,22.001489],[-160.072123,22.003334],[-160.058543,21.99638],[-160.051992,21.983681],[-160.052729,21.980321],[-160.056336,21.977939],[-160.060549,21.976729],[-160.063349,21.978354],[-160.065811,21.976562],[-160.078393,21.955153],[-160.085787,21.927295],[-160.080012,21.910808],[-160.079065,21.89608],[-160.098897,21.884711],[-160.124283,21.876789],[-160.147609,21.872814],[-160.16162,21.864746],[-160.174796,21.846923],[-160.189782,21.82245],[-160.205211,21.789053],[-160.200427,21.786479],[-160.205851,21.779518],[-160.218044,21.783755],[-160.23478,21.795418],[-160.24961,21.815145],[-160.244943,21.848943],[-160.231028,21.886263],[-160.228965,21.889117],[-160.21383,21.899193],[-160.205528,21.907507],[-160.202716,21.912422],[-160.190158,21.923592],[-160.167471,21.932863],[-160.13705,21.948632],[-160.127302,21.955508],[-160.125,21.95909]]],[[[-159.431707,22.220015],[-159.40732,22.230555],[-159.388119,22.223252],[-159.385977,22.220009],[-159.367563,22.214906],[-159.359842,22.214831],[-159.357227,22.217744],[-159.353795,22.217669],[-159.339964,22.208519],[-159.315613,22.186817],[-159.308855,22.155555],[-159.297808,22.149748],[-159.295875,22.144547],[-159.295271,22.13039],[-159.297143,22.113815],[-159.317451,22.080944],[-159.321667,22.063411],[-159.324775,22.05867],[-159.333267,22.054639],[-159.337996,22.046575],[-159.341401,22.028978],[-159.333224,21.973005],[-159.333109,21.964176],[-159.334714,21.961099],[-159.350828,21.950817],[-159.356613,21.939546],[-159.382349,21.924479],[-159.408284,21.897781],[-159.425862,21.884527],[-159.446599,21.871647],[-159.471962,21.88292],[-159.490914,21.888898],[-159.517973,21.890996],[-159.555415,21.891355],[-159.574991,21.896585],[-159.577784,21.900486],[-159.584272,21.899038],[-159.610241,21.898356],[-159.637849,21.917166],[-159.648132,21.93297],[-159.671872,21.957038],[-159.681493,21.960054],[-159.705255,21.963427],[-159.72014,21.970789],[-159.758218,21.980694],[-159.765735,21.986593],[-159.788139,22.018411],[-159.790932,22.031177],[-159.786543,22.06369],[-159.780096,22.072567],[-159.748159,22.100388],[-159.741223,22.115666],[-159.733457,22.142756],[-159.726043,22.152171],[-159.699978,22.165252],[-159.66984,22.170782],[-159.608794,22.207878],[-159.591596,22.219456],[-159.583965,22.22668],[-159.559643,22.229185],[-159.554166,22.228212],[-159.548594,22.226263],[-159.54115,22.216764],[-159.534594,22.219403],[-159.523769,22.217602],[-159.51941,22.215646],[-159.518348,22.211182],[-159.515574,22.208008],[-159.507811,22.205987],[-159.501055,22.211064],[-159.500821,22.225538],[-159.488558,22.23317],[-159.480158,22.232715],[-159.467007,22.226529],[-159.45619,22.228811],[-159.441809,22.226321],[-159.431707,22.220015]]],[[[-157.014553,21.185503],[-156.999108,21.182221],[-156.991318,21.18551],[-156.987768,21.18935],[-156.982343,21.207798],[-156.984464,21.210063],[-156.984032,21.212198],[-156.974002,21.218503],[-156.969064,21.217018],[-156.962847,21.212131],[-156.951654,21.191662],[-156.950808,21.182636],[-156.946159,21.175963],[-156.918248,21.168279],[-156.903466,21.16421],[-156.898174,21.16594],[-156.89613,21.169561],[-156.896537,21.172208],[-156.867944,21.16452],[-156.841592,21.167926],[-156.821944,21.174693],[-156.771495,21.180053],[-156.742231,21.176214],[-156.738341,21.17202],[-156.736648,21.16188],[-156.719386,21.163911],[-156.712696,21.161547],[-156.714158,21.152238],[-156.726033,21.13236],[-156.748932,21.1086],[-156.775995,21.089751],[-156.790815,21.081686],[-156.794136,21.075796],[-156.835351,21.06336],[-156.865795,21.057801],[-156.877137,21.0493],[-156.891946,21.051831],[-156.89517,21.055771],[-156.953719,21.067761],[-157.00295,21.083282],[-157.02617,21.089015],[-157.032045,21.091094],[-157.037667,21.097864],[-157.079696,21.105835],[-157.095373,21.10636],[-157.125,21.1026],[-157.143483,21.096632],[-157.254061,21.090601],[-157.298054,21.096917],[-157.313343,21.105755],[-157.299187,21.132488],[-157.299471,21.135972],[-157.293774,21.146127],[-157.284346,21.157755],[-157.276474,21.163175],[-157.274504,21.162762],[-157.259911,21.174875],[-157.254709,21.181376],[-157.251007,21.190952],[-157.25026,21.207739],[-157.256935,21.215665],[-157.261457,21.217661],[-157.263163,21.220873],[-157.26069,21.225684],[-157.257085,21.227268],[-157.241534,21.220969],[-157.226445,21.220185],[-157.212082,21.221848],[-157.202125,21.219298],[-157.192439,21.207644],[-157.185553,21.205602],[-157.157103,21.200706],[-157.148125,21.200745],[-157.144627,21.202555],[-157.128207,21.201488],[-157.113438,21.197375],[-157.097971,21.198012],[-157.064264,21.189076],[-157.053053,21.188754],[-157.047757,21.190739],[-157.039987,21.190909],[-157.014553,21.185503]]],[[[-156.544169,20.522802],[-156.550016,20.520273],[-156.559994,20.521892],[-156.586238,20.511711],[-156.603844,20.524372],[-156.631143,20.514943],[-156.642347,20.508285],[-156.647464,20.512017],[-156.668809,20.504738],[-156.682939,20.506775],[-156.703673,20.527237],[-156.702265,20.532451],[-156.696662,20.541646],[-156.6801,20.557021],[-156.651567,20.565574],[-156.614598,20.587109],[-156.610734,20.59377],[-156.576871,20.60657],[-156.56714,20.604895],[-156.553604,20.594729],[-156.543034,20.580115],[-156.542808,20.573674],[-156.548909,20.56859],[-156.556021,20.542657],[-156.553018,20.539382],[-156.540189,20.534741],[-156.539643,20.527644],[-156.544169,20.522802]]],[[[-156.612012,21.02477],[-156.612065,21.027273],[-156.606238,21.034371],[-156.592256,21.03288],[-156.580448,21.020172],[-156.562773,21.016167],[-156.549813,21.004939],[-156.546291,21.005082],[-156.528246,20.967757],[-156.518707,20.954662],[-156.512226,20.95128],[-156.510391,20.940358],[-156.507913,20.937886],[-156.49948,20.934577],[-156.495883,20.928005],[-156.493263,20.916011],[-156.481055,20.898199],[-156.474796,20.894546],[-156.422668,20.911631],[-156.386045,20.919563],[-156.374297,20.927616],[-156.370729,20.932669],[-156.352649,20.941414],[-156.345655,20.941596],[-156.342365,20.938737],[-156.332817,20.94645],[-156.324578,20.950184],[-156.307198,20.942739],[-156.286332,20.947701],[-156.275116,20.937361],[-156.263107,20.940888],[-156.242555,20.937838],[-156.230159,20.931936],[-156.230089,20.917864],[-156.226757,20.916677],[-156.222062,20.918309],[-156.217953,20.916573],[-156.216341,20.907035],[-156.173103,20.876926],[-156.170458,20.874605],[-156.166746,20.865646],[-156.132669,20.861369],[-156.129381,20.847513],[-156.115735,20.827301],[-156.100123,20.828502],[-156.090291,20.831872],[-156.059788,20.81054],[-156.033287,20.808246],[-156.003532,20.795545],[-156.002947,20.789418],[-155.987944,20.776552],[-155.984587,20.767496],[-155.986851,20.758577],[-155.985413,20.744245],[-155.987216,20.722717],[-155.991534,20.713654],[-156.00187,20.698064],[-156.01415,20.685681],[-156.020044,20.686857],[-156.030702,20.682452],[-156.040341,20.672719],[-156.043786,20.664902],[-156.053385,20.65432],[-156.059753,20.652044],[-156.081472,20.654387],[-156.089365,20.648519],[-156.120985,20.633685],[-156.129898,20.627523],[-156.142665,20.623605],[-156.144588,20.624032],[-156.148085,20.629067],[-156.156772,20.629639],[-156.169732,20.627358],[-156.173393,20.6241],[-156.184556,20.629719],[-156.192938,20.631769],[-156.210258,20.628518],[-156.225338,20.62294],[-156.236145,20.61595],[-156.265921,20.601629],[-156.284391,20.596488],[-156.288037,20.59203],[-156.293454,20.588783],[-156.302692,20.586199],[-156.322944,20.588273],[-156.351716,20.58697],[-156.359634,20.581977],[-156.370725,20.57876],[-156.377633,20.578427],[-156.415313,20.586099],[-156.417523,20.589728],[-156.415746,20.594044],[-156.417799,20.598682],[-156.423141,20.602079],[-156.427708,20.598873],[-156.431872,20.598143],[-156.438385,20.601337],[-156.444242,20.607941],[-156.442884,20.613842],[-156.450651,20.642212],[-156.445894,20.64927],[-156.443673,20.656018],[-156.448656,20.704739],[-156.451038,20.725469],[-156.452895,20.731287],[-156.458438,20.736676],[-156.462242,20.753952],[-156.462058,20.772571],[-156.464043,20.781667],[-156.473562,20.790756],[-156.489496,20.798339],[-156.501688,20.799933],[-156.506026,20.799463],[-156.515994,20.794234],[-156.525215,20.780821],[-156.537752,20.778408],[-156.631794,20.82124],[-156.678634,20.870541],[-156.688969,20.888673],[-156.687804,20.89072],[-156.688132,20.906325],[-156.691334,20.91244],[-156.697418,20.916368],[-156.69989,20.920629],[-156.69411,20.952708],[-156.680905,20.980262],[-156.665514,21.007054],[-156.652419,21.008994],[-156.645966,21.014416],[-156.642592,21.019936],[-156.644167,21.022312],[-156.642809,21.027583],[-156.619581,21.027793],[-156.612012,21.02477]]],[[[-157.010001,20.929757],[-156.989813,20.932127],[-156.971604,20.926254],[-156.937529,20.925274],[-156.91845,20.922546],[-156.897169,20.915395],[-156.837047,20.863575],[-156.825237,20.850731],[-156.809576,20.826036],[-156.808469,20.820396],[-156.809463,20.809169],[-156.817427,20.794606],[-156.838321,20.764575],[-156.846413,20.760201],[-156.851481,20.760069],[-156.869753,20.754701],[-156.890295,20.744855],[-156.909081,20.739533],[-156.949009,20.738997],[-156.96789,20.73508],[-156.984747,20.756677],[-156.994001,20.786671],[-156.988933,20.815496],[-156.991834,20.826603],[-157.006243,20.849603],[-157.010911,20.854476],[-157.054552,20.877219],[-157.059663,20.884634],[-157.061128,20.890635],[-157.062511,20.904385],[-157.05913,20.913407],[-157.035789,20.927078],[-157.025626,20.929528],[-157.010001,20.929757]]],[[[-158.044485,21.306011],[-158.0883,21.2988],[-158.1033,21.2979],[-158.1127,21.3019],[-158.1211,21.3169],[-158.1225,21.3224],[-158.111949,21.326622],[-158.114196,21.331123],[-158.119427,21.334594],[-158.125459,21.330264],[-158.13324,21.359207],[-158.1403,21.3738],[-158.149719,21.385208],[-158.161743,21.396282],[-158.1792,21.4043],[-158.181274,21.409626],[-158.181,21.420868],[-158.182648,21.430073],[-158.192352,21.44804],[-158.205383,21.459793],[-158.219446,21.46978],[-158.233,21.4876],[-158.231171,21.523857],[-158.23175,21.533035],[-158.234314,21.540058],[-158.250671,21.557373],[-158.27951,21.575794],[-158.277679,21.578789],[-158.254425,21.582684],[-158.190704,21.585892],[-158.17,21.5823],[-158.12561,21.586739],[-158.10672,21.596577],[-158.106689,21.603024],[-158.1095,21.6057],[-158.108185,21.607487],[-158.079895,21.628101],[-158.0668,21.6437],[-158.066711,21.65234],[-158.0639,21.6584],[-158.0372,21.6843],[-158.018127,21.699955],[-157.9923,21.708],[-157.98703,21.712494],[-157.968628,21.712704],[-157.947174,21.689568],[-157.939,21.669],[-157.9301,21.6552],[-157.924591,21.651183],[-157.9228,21.6361],[-157.9238,21.6293],[-157.910797,21.611183],[-157.900574,21.605885],[-157.87735,21.575277],[-157.878601,21.560181],[-157.872528,21.557568],[-157.8669,21.5637],[-157.85614,21.560661],[-157.85257,21.557514],[-157.836945,21.529945],[-157.837372,21.512085],[-157.849579,21.509598],[-157.852625,21.499971],[-157.84549,21.466747],[-157.84099,21.459483],[-157.82489,21.455379],[-157.8163,21.4502],[-157.8139,21.4403],[-157.8059,21.4301],[-157.786513,21.415633],[-157.779846,21.417309],[-157.774455,21.421352],[-157.772209,21.431236],[-157.774905,21.453698],[-157.772209,21.457741],[-157.764572,21.461335],[-157.754239,21.461335],[-157.737617,21.459089],[-157.731777,21.455944],[-157.731328,21.444713],[-157.73582,21.438424],[-157.740762,21.424048],[-157.741211,21.414614],[-157.7386,21.4043],[-157.730191,21.401871],[-157.728221,21.402104],[-157.726421,21.402845],[-157.724324,21.403311],[-157.723794,21.40329],[-157.723286,21.403227],[-157.722735,21.403121],[-157.722544,21.403036],[-157.721845,21.401596],[-157.721083,21.399541],[-157.7189,21.3961],[-157.7089,21.3833],[-157.7087,21.3793],[-157.7126,21.3689],[-157.7106,21.3585],[-157.7088,21.3534],[-157.6971,21.3364],[-157.6938,21.3329],[-157.6619,21.3131],[-157.6518,21.3139],[-157.652629,21.308709],[-157.6537,21.302],[-157.6946,21.2739],[-157.6944,21.2665],[-157.7001,21.264],[-157.7097,21.2621],[-157.7139,21.2638],[-157.7142,21.2665],[-157.7114,21.272],[-157.7122,21.2814],[-157.7143,21.2845],[-157.7213,21.2869],[-157.7572,21.278],[-157.765,21.2789],[-157.7782,21.2735],[-157.7931,21.2604],[-157.8096,21.2577],[-157.8211,21.2606],[-157.8241,21.2646],[-157.8253,21.2714],[-157.8319,21.2795],[-157.8457,21.29],[-157.89,21.3065],[-157.894518,21.319632],[-157.898969,21.327391],[-157.90482,21.329172],[-157.918939,21.318615],[-157.917921,21.313781],[-157.913469,21.310983],[-157.910925,21.305768],[-157.952263,21.306531],[-157.950736,21.312509],[-157.951881,21.318742],[-157.967971,21.327986],[-157.973334,21.327426],[-157.989424,21.317984],[-158.0245,21.3093],[-158.044485,21.306011]]]]}}]} diff --git a/Where/RegionKit/Sources/Resources/regions/us-IA.geojson b/Where/RegionKit/Sources/Resources/regions/us-IA.geojson new file mode 100644 index 00000000..c1b0fa91 --- /dev/null +++ b/Where/RegionKit/Sources/Resources/regions/us-IA.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"region":"us-IA","name":"Iowa"},"geometry":{"type":"Polygon","coordinates":[[[-91.217706,43.50055],[-91.21827,43.497228],[-91.217615,43.491008],[-91.215282,43.484798],[-91.216035,43.481142],[-91.220399,43.471306],[-91.224586,43.465525],[-91.229503,43.462607],[-91.232241,43.460018],[-91.233187,43.457784],[-91.233367,43.455168],[-91.232276,43.450952],[-91.22875,43.445537],[-91.207145,43.425031],[-91.205551,43.422949],[-91.203144,43.419805],[-91.201224,43.415903],[-91.200359,43.412701],[-91.200527,43.408486],[-91.199408,43.403032],[-91.198048,43.399223],[-91.19767,43.395334],[-91.198953,43.389835],[-91.200701,43.38593],[-91.204831,43.378887],[-91.206072,43.374976],[-91.207367,43.373659],[-91.21336,43.370097],[-91.21499,43.368006],[-91.21477,43.365874],[-91.20662,43.352524],[-91.203964,43.349852],[-91.201847,43.349103],[-91.188014,43.347602],[-91.181115,43.345926],[-91.171055,43.340967],[-91.154806,43.334826],[-91.137343,43.329757],[-91.132813,43.32803],[-91.129121,43.32635],[-91.117661,43.319332],[-91.107237,43.313645],[-91.085652,43.29187],[-91.079875,43.282773],[-91.07371,43.274746],[-91.071724,43.271392],[-91.071574,43.268193],[-91.072782,43.264363],[-91.072649,43.262129],[-91.071698,43.261014],[-91.069937,43.260272],[-91.061798,43.259952],[-91.05975,43.259074],[-91.058644,43.257679],[-91.057918,43.255366],[-91.05791,43.253968],[-91.059684,43.248566],[-91.062562,43.243165],[-91.066398,43.239293],[-91.071857,43.235164],[-91.079278,43.228259],[-91.087456,43.221891],[-91.107931,43.206578],[-91.113749,43.202908],[-91.119115,43.200366],[-91.12217,43.197255],[-91.123896,43.193536],[-91.124428,43.187886],[-91.134173,43.174405],[-91.135917,43.173422],[-91.138649,43.169993],[-91.141356,43.163537],[-91.143283,43.156413],[-91.1462,43.152405],[-91.1562,43.142945],[-91.160449,43.140575],[-91.170372,43.137384],[-91.175253,43.134665],[-91.177003,43.131846],[-91.177932,43.128875],[-91.178251,43.124982],[-91.177728,43.118733],[-91.175193,43.103771],[-91.177222,43.080247],[-91.177264,43.072983],[-91.178761,43.070578],[-91.179457,43.067427],[-91.177894,43.064206],[-91.178087,43.062044],[-91.174692,43.038713],[-91.168283,43.019426],[-91.15749,42.991475],[-91.156813,42.98817],[-91.156743,42.98783],[-91.156562,42.978226],[-91.155519,42.975774],[-91.150906,42.970514],[-91.148001,42.966155],[-91.14655,42.963345],[-91.14543,42.958211],[-91.14554,42.95651],[-91.14909,42.946554],[-91.14988,42.941955],[-91.149784,42.940244],[-91.145517,42.930378],[-91.144315,42.926592],[-91.1438,42.922877],[-91.143878,42.920646],[-91.145868,42.914967],[-91.146182,42.912338],[-91.146177,42.90985],[-91.14556,42.90798],[-91.144706,42.905964],[-91.143375,42.90467],[-91.138,42.903772],[-91.117411,42.895837],[-91.115512,42.894672],[-91.112158,42.891149],[-91.104051,42.885971],[-91.100565,42.883078],[-91.098238,42.875798],[-91.09882,42.864421],[-91.097656,42.859871],[-91.095329,42.85532],[-91.091837,42.851225],[-91.091402,42.84986],[-91.095114,42.834966],[-91.09406,42.830813],[-91.090136,42.829237],[-91.08277,42.829977],[-91.078665,42.827678],[-91.079314,42.820309],[-91.078097,42.806526],[-91.075481,42.795466],[-91.072447,42.787732],[-91.071138,42.783004],[-91.070716,42.775502],[-91.069549,42.769628],[-91.063254,42.763947],[-91.060261,42.761847],[-91.060129,42.759986],[-91.061432,42.757974],[-91.06312,42.757273],[-91.065492,42.757081],[-91.065783,42.753387],[-91.06468,42.750914],[-91.060172,42.750481],[-91.058091,42.749246],[-91.056297,42.747341],[-91.05481,42.744686],[-91.054801,42.740529],[-91.053733,42.738238],[-91.051275,42.737001],[-91.049972,42.736905],[-91.046571,42.737167],[-91.044139,42.738605],[-91.039383,42.738478],[-91.035418,42.73734],[-91.032013,42.734484],[-91.030984,42.73255],[-91.030718,42.729684],[-91.029692,42.726774],[-91.026786,42.724228],[-91.017239,42.719566],[-91.015687,42.719229],[-91.009577,42.720123],[-91.000128,42.716189],[-90.995536,42.713704],[-90.988776,42.708724],[-90.980578,42.698932],[-90.977735,42.696816],[-90.974237,42.695249],[-90.965048,42.693233],[-90.952415,42.686778],[-90.949213,42.685573],[-90.941567,42.683844],[-90.937045,42.683399],[-90.929881,42.684128],[-90.923634,42.6855],[-90.921155,42.685406],[-90.9134,42.682949],[-90.900261,42.676254],[-90.896898,42.675262],[-90.88743,42.67247],[-90.867125,42.668728],[-90.852497,42.664822],[-90.84391,42.663071],[-90.832702,42.661662],[-90.797017,42.655772],[-90.788226,42.653888],[-90.778752,42.652965],[-90.769495,42.651443],[-90.760389,42.649131],[-90.743677,42.64556],[-90.731132,42.643437],[-90.720209,42.640758],[-90.709204,42.636078],[-90.706303,42.634169],[-90.702671,42.630756],[-90.700856,42.626445],[-90.700095,42.622461],[-90.693999,42.614509],[-90.692031,42.610366],[-90.687999,42.599198],[-90.687775,42.594606],[-90.686975,42.591774],[-90.685487,42.589614],[-90.679375,42.581503],[-90.677055,42.579215],[-90.672727,42.576599],[-90.661527,42.567999],[-90.659127,42.5579],[-90.654127,42.5499],[-90.645627,42.5441],[-90.643927,42.540401],[-90.640627,42.527701],[-90.636727,42.518702],[-90.636927,42.513202],[-90.640927,42.508302],[-90.648627,42.498102],[-90.655927,42.491703],[-90.656527,42.489203],[-90.656327,42.483603],[-90.654027,42.478503],[-90.646727,42.471904],[-90.624328,42.458904],[-90.606328,42.451505],[-90.590416,42.447493],[-90.582128,42.444437],[-90.570736,42.441701],[-90.567968,42.440389],[-90.565248,42.438742],[-90.560439,42.432897],[-90.558801,42.428517],[-90.558168,42.420984],[-90.55755,42.419258],[-90.555018,42.416138],[-90.548068,42.413115],[-90.517516,42.403019],[-90.506829,42.398792],[-90.500128,42.395539],[-90.495766,42.392406],[-90.490334,42.387093],[-90.487154,42.385141],[-90.484621,42.38453],[-90.480148,42.384616],[-90.477279,42.383794],[-90.474121,42.381729],[-90.473812,42.381458],[-90.470273,42.378355],[-90.464788,42.369452],[-90.462619,42.367253],[-90.452724,42.359303],[-90.44632,42.357041],[-90.443874,42.355218],[-90.430546,42.33686],[-90.425363,42.332615],[-90.42135,42.330472],[-90.419027,42.328505],[-90.416535,42.325109],[-90.415937,42.322699],[-90.4162,42.321314],[-90.417125,42.319943],[-90.420075,42.317681],[-90.421047,42.316109],[-90.4203,42.31169],[-90.420454,42.305374],[-90.424326,42.293326],[-90.426909,42.290719],[-90.430735,42.284211],[-90.430884,42.27823],[-90.424098,42.266364],[-90.422181,42.259899],[-90.419326,42.254467],[-90.416315,42.251679],[-90.410471,42.247749],[-90.400653,42.239293],[-90.395883,42.233133],[-90.394749,42.229059],[-90.391108,42.225473],[-90.375129,42.214811],[-90.365138,42.210526],[-90.356964,42.205445],[-90.338169,42.203321],[-90.328273,42.201047],[-90.317774,42.193789],[-90.317108,42.193575],[-90.298442,42.187576],[-90.282173,42.178846],[-90.26908,42.1745],[-90.255456,42.171821],[-90.250129,42.171469],[-90.234919,42.165431],[-90.224244,42.160028],[-90.216107,42.15673],[-90.209479,42.15268],[-90.207421,42.149109],[-90.206369,42.1455],[-90.20536,42.139079],[-90.201404,42.130937],[-90.197342,42.128163],[-90.190452,42.125779],[-90.187474,42.125423],[-90.17097,42.125198],[-90.167533,42.122475],[-90.162895,42.116718],[-90.161884,42.11378],[-90.161159,42.106372],[-90.161504,42.098912],[-90.163405,42.087613],[-90.168358,42.075779],[-90.165555,42.062638],[-90.165294,42.050973],[-90.164485,42.042105],[-90.163446,42.040407],[-90.158829,42.037769],[-90.154221,42.033073],[-90.151579,42.030633],[-90.150916,42.02944],[-90.149733,42.026564],[-90.149112,42.022679],[-90.148096,42.020014],[-90.143776,42.014881],[-90.141167,42.008931],[-90.140061,42.003252],[-90.140613,41.995999],[-90.146033,41.988139],[-90.146225,41.981329],[-90.148599,41.978269],[-90.153834,41.974116],[-90.162141,41.961293],[-90.164135,41.956178],[-90.164939,41.948861],[-90.163847,41.944934],[-90.160648,41.940845],[-90.156902,41.938181],[-90.152659,41.933058],[-90.1516,41.931002],[-90.151838,41.928917],[-90.153362,41.915593],[-90.153584,41.906614],[-90.157019,41.898019],[-90.165065,41.883777],[-90.170041,41.876439],[-90.172765,41.866149],[-90.173006,41.857402],[-90.175051,41.853629],[-90.181401,41.844647],[-90.181901,41.843216],[-90.183765,41.83624],[-90.183973,41.83307],[-90.18172,41.822599],[-90.180643,41.811979],[-90.180954,41.809354],[-90.181973,41.80707],[-90.187969,41.803163],[-90.208467,41.797615],[-90.216889,41.795335],[-90.222263,41.793133],[-90.24238,41.782965],[-90.248631,41.779805],[-90.258622,41.775295],[-90.263286,41.772112],[-90.278633,41.767358],[-90.302782,41.750031],[-90.310708,41.742214],[-90.31522,41.734264],[-90.316358,41.728885],[-90.317668,41.72269],[-90.317421,41.718333],[-90.31332,41.709494],[-90.312893,41.707528],[-90.31277,41.702426],[-90.313435,41.698082],[-90.314687,41.69483],[-90.317315,41.69167],[-90.319924,41.689721],[-90.330222,41.683954],[-90.332481,41.682146],[-90.334525,41.679559],[-90.336729,41.664532],[-90.343452,41.646959],[-90.34333,41.640855],[-90.339528,41.598633],[-90.341528,41.590633],[-90.343228,41.587833],[-90.364128,41.579633],[-90.381329,41.576633],[-90.39793,41.572233],[-90.41283,41.565333],[-90.41583,41.562933],[-90.42223,41.554233],[-90.427231,41.551533],[-90.432731,41.549533],[-90.438431,41.544133],[-90.445231,41.536133],[-90.461432,41.523533],[-90.474332,41.519733],[-90.489933,41.518233],[-90.500633,41.518033],[-90.513134,41.519533],[-90.533035,41.524933],[-90.540935,41.526133],[-90.556235,41.524232],[-90.567236,41.517532],[-90.571136,41.516332],[-90.582036,41.515132],[-90.591037,41.512832],[-90.595237,41.511032],[-90.602137,41.506032],[-90.604237,41.497032],[-90.605937,41.494232],[-90.618537,41.485032],[-90.632538,41.478732],[-90.640238,41.473332],[-90.650238,41.465032],[-90.655839,41.462132],[-90.666239,41.460632],[-90.676439,41.460832],[-90.690951,41.456643],[-90.701159,41.454743],[-90.723545,41.452248],[-90.737537,41.450127],[-90.750142,41.449632],[-90.771672,41.450761],[-90.777583,41.451261],[-90.786282,41.452888],[-90.807283,41.454466],[-90.824736,41.454467],[-90.837414,41.455623],[-90.846558,41.455141],[-90.853604,41.453909],[-90.857554,41.452751],[-90.867282,41.448215],[-90.879778,41.441065],[-90.890787,41.435432],[-90.900471,41.431154],[-90.919351,41.425589],[-90.924343,41.42286],[-90.930016,41.421404],[-90.949791,41.424163],[-90.953198,41.425075],[-90.966662,41.430051],[-90.975168,41.433985],[-90.979815,41.434321],[-90.984898,41.433869],[-91.005846,41.426135],[-91.01198,41.425024],[-91.027787,41.423603],[-91.037131,41.420017],[-91.039872,41.418523],[-91.043988,41.415897],[-91.04589,41.414085],[-91.047819,41.4109],[-91.050328,41.400049],[-91.05101,41.387556],[-91.05158,41.385283],[-91.065058,41.369101],[-91.06652,41.365246],[-91.071552,41.339651],[-91.071941,41.333592],[-91.071956,41.333358],[-91.073233,41.31344],[-91.074841,41.305578],[-91.077505,41.301828],[-91.08688,41.294371],[-91.092034,41.286911],[-91.101142,41.267169],[-91.104462,41.262104],[-91.110304,41.256088],[-91.114186,41.250029],[-91.113648,41.241401],[-91.112333,41.239003],[-91.109562,41.236567],[-91.100829,41.230532],[-91.093018,41.222635],[-91.081445,41.214429],[-91.07298,41.207151],[-91.065899,41.199517],[-91.055069,41.185766],[-91.041536,41.166138],[-91.030029,41.16354],[-91.027214,41.163373],[-91.012557,41.165922],[-91.007586,41.166183],[-90.997906,41.162564],[-90.99496,41.160624],[-90.989663,41.155716],[-90.981311,41.142659],[-90.970851,41.130107],[-90.965905,41.119559],[-90.957246,41.111085],[-90.946627,41.096632],[-90.946259,41.094734],[-90.948207,41.084413],[-90.949383,41.072711],[-90.949383,41.07271],[-90.949136,41.070611],[-90.94899,41.07025],[-90.945549,41.06173],[-90.944577,41.052255],[-90.943652,41.048637],[-90.94232,41.038472],[-90.942253,41.034702],[-90.945324,41.019279],[-90.945054,41.011917],[-90.945949,41.006495],[-90.949634,40.995248],[-90.955201,40.986805],[-90.958142,40.979767],[-90.958089,40.976643],[-90.955111,40.969858],[-90.952715,40.962087],[-90.951967,40.958238],[-90.952233,40.954047],[-90.960462,40.936356],[-90.962916,40.924957],[-90.965344,40.921633],[-90.968995,40.919127],[-90.97919,40.915522],[-90.985462,40.912141],[-90.9985,40.90812],[-91.003536,40.905146],[-91.009536,40.900565],[-91.01324,40.896622],[-91.021562,40.884021],[-91.027489,40.879173],[-91.036789,40.875038],[-91.039097,40.873565],[-91.044653,40.868356],[-91.047344,40.864654],[-91.050241,40.858514],[-91.05643,40.848387],[-91.058749,40.846309],[-91.067159,40.841997],[-91.077521,40.833405],[-91.090072,40.824638],[-91.092993,40.821079],[-91.096846,40.811617],[-91.097649,40.805575],[-91.097031,40.802471],[-91.092256,40.792909],[-91.091246,40.786724],[-91.091703,40.779708],[-91.096133,40.767134],[-91.098105,40.763233],[-91.102486,40.757076],[-91.1082,40.750935],[-91.110424,40.745528],[-91.115735,40.725168],[-91.115158,40.721895],[-91.113885,40.719532],[-91.111095,40.708282],[-91.110927,40.703262],[-91.11194,40.697018],[-91.112434,40.696279],[-91.115407,40.691825],[-91.119632,40.675892],[-91.12082,40.672777],[-91.122421,40.670675],[-91.123928,40.669152],[-91.138055,40.660893],[-91.154293,40.653596],[-91.185428,40.638071],[-91.18698,40.637297],[-91.197906,40.636107],[-91.218437,40.638437],[-91.247851,40.63839],[-91.253074,40.637962],[-91.258249,40.636672],[-91.264953,40.633893],[-91.276175,40.63224],[-91.306524,40.626231],[-91.339719,40.613488],[-91.348733,40.609695],[-91.353989,40.606553],[-91.359873,40.601805],[-91.374252,40.58259],[-91.379752,40.57445],[-91.401482,40.559458],[-91.405241,40.554641],[-91.406373,40.551831],[-91.406851,40.547557],[-91.406202,40.542698],[-91.404125,40.539127],[-91.400725,40.536789],[-91.394475,40.534543],[-91.388067,40.533069],[-91.384531,40.530948],[-91.381857,40.528247],[-91.369059,40.512532],[-91.367876,40.510479],[-91.364211,40.500043],[-91.363683,40.494211],[-91.36391,40.490122],[-91.364915,40.484168],[-91.368074,40.474642],[-91.378144,40.456394],[-91.379907,40.45211],[-91.381468,40.44604],[-91.381769,40.442555],[-91.380965,40.435395],[-91.377625,40.426335],[-91.373721,40.417891],[-91.37245,40.411475],[-91.372554,40.4012],[-91.372921,40.399108],[-91.375746,40.391879],[-91.378422,40.38967],[-91.381958,40.387632],[-91.38836,40.384929],[-91.396996,40.383127],[-91.413011,40.382277],[-91.415695,40.381381],[-91.419422,40.378264],[-91.422324,40.380939],[-91.425662,40.382491],[-91.441243,40.386255],[-91.448441,40.378914],[-91.452458,40.375501],[-91.463895,40.375659],[-91.465009,40.376223],[-91.465891,40.378365],[-91.464681,40.380949],[-91.465116,40.385257],[-91.471967,40.382884],[-91.480251,40.381783],[-91.482322,40.382057],[-91.484507,40.3839],[-91.490977,40.393484],[-91.490816,40.395225],[-91.488597,40.400009],[-91.487955,40.402465],[-91.487829,40.403866],[-91.488481,40.404317],[-91.489816,40.404317],[-91.493644,40.402433],[-91.498093,40.401926],[-91.505272,40.403512],[-91.506745,40.404335],[-91.507427,40.405524],[-91.509063,40.406775],[-91.513993,40.408537],[-91.518392,40.408682],[-91.522333,40.409648],[-91.524612,40.410765],[-91.526425,40.413404],[-91.527057,40.416689],[-91.526555,40.419872],[-91.521388,40.426488],[-91.519012,40.431298],[-91.519134,40.432822],[-91.519935,40.433673],[-91.525,40.433483],[-91.529132,40.434272],[-91.532807,40.436784],[-91.533623,40.43832],[-91.533548,40.440804],[-91.531912,40.44273],[-91.526108,40.446634],[-91.524053,40.448437],[-91.523271,40.450061],[-91.523072,40.452254],[-91.523864,40.456331],[-91.52509,40.457845],[-91.526155,40.458625],[-91.5286,40.459002],[-91.543785,40.458149],[-91.552691,40.458769],[-91.563844,40.460988],[-91.567743,40.46229],[-91.574746,40.465664],[-91.580355,40.471015],[-91.581528,40.472876],[-91.582437,40.474703],[-91.583315,40.479118],[-91.586884,40.487233],[-91.590817,40.492292],[-91.594644,40.494997],[-91.608347,40.50004],[-91.612821,40.502377],[-91.616948,40.504794],[-91.619486,40.507134],[-91.621353,40.510072],[-91.622362,40.514362],[-91.622196,40.51704],[-91.618793,40.526286],[-91.618028,40.53403],[-91.618999,40.539084],[-91.620071,40.540817],[-91.6219,40.542292],[-91.625161,40.5435],[-91.638082,40.545541],[-91.654345,40.549189],[-91.670993,40.550937],[-91.681714,40.553035],[-91.6887,40.55739],[-91.690804,40.559893],[-91.691591,40.562222],[-91.691557,40.564867],[-91.685723,40.576785],[-91.685381,40.578892],[-91.686357,40.580875],[-91.68882,40.583409],[-91.696359,40.588148],[-91.712025,40.595046],[-91.716769,40.59853],[-91.720058,40.601527],[-91.729115,40.61364],[-91.785916,40.611488],[-91.795374,40.611101],[-91.800133,40.610953],[-91.813968,40.610526],[-91.824826,40.610191],[-91.832481,40.609797],[-91.868401,40.608059],[-91.939292,40.60615],[-91.943113,40.605842],[-91.947708,40.605471],[-91.970988,40.605112],[-91.998683,40.604433],[-92.029649,40.603713],[-92.067904,40.602648],[-92.069521,40.602772],[-92.082339,40.602176],[-92.0832,40.602244],[-92.092875,40.602082],[-92.096387,40.60183],[-92.17978,40.600529],[-92.196162,40.600069],[-92.201669,40.59998],[-92.217603,40.599832],[-92.236484,40.599531],[-92.298754,40.598469],[-92.331205,40.597805],[-92.331445,40.597714],[-92.350776,40.597274],[-92.350807,40.597273],[-92.379691,40.596509],[-92.453745,40.595288],[-92.461609,40.595355],[-92.481692,40.594941],[-92.482394,40.594894],[-92.484588,40.594924],[-92.580278,40.592151],[-92.637898,40.590853],[-92.639223,40.590825],[-92.686693,40.589809],[-92.689854,40.589884],[-92.714598,40.589564],[-92.742232,40.589207],[-92.757407,40.588908],[-92.828061,40.588593],[-92.827992,40.588515],[-92.835074,40.588484],[-92.857391,40.58836],[-92.863034,40.588175],[-92.879178,40.588341],[-92.889796,40.588039],[-92.903544,40.58786],[-92.941595,40.587743],[-92.957747,40.58743],[-93.085517,40.584403],[-93.097296,40.584014],[-93.098507,40.583973],[-93.135802,40.582854],[-93.260612,40.580797],[-93.317605,40.580671],[-93.345442,40.580514],[-93.374386,40.580334],[-93.441767,40.579916],[-93.465297,40.580164],[-93.466887,40.580072],[-93.524124,40.580481],[-93.527607,40.580436],[-93.528177,40.580367],[-93.548284,40.580417],[-93.553986,40.580303],[-93.556899,40.580235],[-93.558938,40.580189],[-93.560798,40.580304],[-93.56524,40.580143],[-93.56581,40.580075],[-93.566189,40.580117],[-93.597352,40.579496],[-93.656211,40.578352],[-93.659272,40.57833],[-93.661913,40.578354],[-93.668845,40.578241],[-93.677099,40.578127],[-93.690333,40.577875],[-93.722443,40.577641],[-93.728355,40.577547],[-93.737259,40.577542],[-93.742759,40.577518],[-93.750223,40.57772],[-93.770231,40.577615],[-93.774344,40.577584],[-93.815485,40.577278],[-93.818725,40.577086],[-93.84093,40.576791],[-93.853656,40.576606],[-93.898327,40.576011],[-93.899317,40.575942],[-93.900877,40.575874],[-93.913961,40.575672],[-93.935687,40.57533],[-93.936317,40.575284],[-93.937097,40.575421],[-93.938627,40.575284],[-93.939857,40.575192],[-93.963863,40.574754],[-93.976766,40.574635],[-94.015492,40.573914],[-94.034134,40.573585],[-94.080223,40.572899],[-94.080463,40.572899],[-94.089194,40.572806],[-94.091085,40.572897],[-94.23224,40.571907],[-94.28735,40.571521],[-94.294813,40.571341],[-94.310724,40.571524],[-94.324765,40.571477],[-94.336556,40.571475],[-94.336706,40.571452],[-94.358307,40.571363],[-94.429725,40.571041],[-94.460088,40.570947],[-94.470648,40.57083],[-94.471213,40.570825],[-94.48928,40.570707],[-94.533878,40.570739],[-94.537058,40.570763],[-94.538318,40.570763],[-94.541828,40.570809],[-94.542154,40.570809],[-94.594001,40.570966],[-94.632032,40.571186],[-94.632035,40.571186],[-94.682601,40.571787],[-94.714925,40.572201],[-94.716665,40.572201],[-94.773988,40.572977],[-94.811188,40.573532],[-94.819978,40.573714],[-94.823758,40.573942],[-94.896801,40.574738],[-94.901451,40.574877],[-94.914896,40.575068],[-94.955134,40.575669],[-94.966491,40.575839],[-94.991661,40.575692],[-95.068921,40.57688],[-95.079742,40.577007],[-95.097607,40.577168],[-95.107213,40.577116],[-95.110303,40.57716],[-95.110663,40.577206],[-95.112222,40.577228],[-95.120829,40.577413],[-95.154499,40.57786],[-95.164058,40.578017],[-95.202264,40.578528],[-95.211408,40.57865],[-95.21159,40.578654],[-95.212715,40.578679],[-95.213327,40.578689],[-95.217455,40.578759],[-95.218783,40.578781],[-95.221525,40.578827],[-95.335588,40.579871],[-95.357802,40.5801],[-95.373893,40.580501],[-95.373923,40.580501],[-95.415406,40.581014],[-95.469319,40.58154],[-95.525392,40.58209],[-95.526682,40.582136],[-95.533182,40.582249],[-95.554959,40.582629],[-95.574046,40.582963],[-95.611069,40.583495],[-95.64184,40.584234],[-95.687442,40.58438],[-95.6875,40.584381],[-95.746443,40.584935],[-95.765645,40.585208],[-95.758895,40.588973],[-95.753148,40.59284],[-95.750053,40.597052],[-95.748858,40.599965],[-95.748626,40.603355],[-95.749685,40.606842],[-95.751271,40.609057],[-95.758045,40.613759],[-95.764412,40.61709],[-95.766823,40.61878],[-95.768926,40.621264],[-95.770083,40.624425],[-95.770442,40.635285],[-95.771325,40.639393],[-95.772832,40.642496],[-95.776251,40.647463],[-95.781909,40.653272],[-95.786568,40.657253],[-95.789485,40.659388],[-95.795489,40.662384],[-95.804307,40.664886],[-95.81415,40.66557],[-95.822913,40.66724],[-95.832177,40.6712],[-95.842801,40.677496],[-95.844827,40.679867],[-95.846034,40.682605],[-95.847931,40.694197],[-95.849828,40.698147],[-95.852615,40.702262],[-95.859378,40.708055],[-95.870481,40.71248],[-95.87528,40.71412],[-95.877015,40.714287],[-95.883178,40.717579],[-95.885349,40.721093],[-95.888907,40.731855],[-95.888697,40.736292],[-95.88669,40.742101],[-95.883643,40.747831],[-95.879027,40.753081],[-95.873335,40.757616],[-95.869982,40.759645],[-95.861695,40.762871],[-95.852776,40.765631],[-95.84662,40.768619],[-95.842824,40.771093],[-95.838879,40.774545],[-95.836903,40.776477],[-95.835232,40.779151],[-95.834156,40.783016],[-95.834215,40.783784],[-95.834523,40.787778],[-95.835815,40.79063],[-95.843745,40.803783],[-95.845342,40.811324],[-95.844852,40.815307],[-95.843921,40.817686],[-95.838601,40.826175],[-95.837303,40.831164],[-95.837186,40.835347],[-95.841309,40.845604],[-95.847084,40.854174],[-95.84849,40.858607],[-95.84859,40.861061],[-95.847785,40.864328],[-95.846938,40.865745],[-95.844073,40.869248],[-95.842521,40.870266],[-95.838735,40.872191],[-95.824989,40.875],[-95.81959,40.877439],[-95.815933,40.879846],[-95.812083,40.884239],[-95.810709,40.886681],[-95.809474,40.891228],[-95.809775,40.895447],[-95.810886,40.897907],[-95.813458,40.901693],[-95.814302,40.902936],[-95.818709,40.906818],[-95.830699,40.915004],[-95.833041,40.917243],[-95.836438,40.921642],[-95.837774,40.924712],[-95.839743,40.93278],[-95.840275,40.939942],[-95.837951,40.950618],[-95.829829,40.963857],[-95.828329,40.972378],[-95.829074,40.975688],[-95.830297,40.978332],[-95.833537,40.98266],[-95.838908,40.986484],[-95.844351,40.989524],[-95.852547,40.991738],[-95.860116,40.995242],[-95.863492,40.99734],[-95.867286,41.001599],[-95.869198,41.005951],[-95.869486,41.009399],[-95.868374,41.012703],[-95.865878,41.017403],[-95.859918,41.025403],[-95.859102,41.031599],[-95.859654,41.035695],[-95.860462,41.037887],[-95.861782,41.039427],[-95.869807,41.045199],[-95.879487,41.053299],[-95.881855,41.057211],[-95.882415,41.060411],[-95.881375,41.065203],[-95.878103,41.069587],[-95.870631,41.075231],[-95.865463,41.080367],[-95.863839,41.083507],[-95.862587,41.088399],[-95.863268,41.093765],[-95.86545,41.101266],[-95.865888,41.117898],[-95.868688,41.124698],[-95.878888,41.138098],[-95.882088,41.143998],[-95.883389,41.150898],[-95.883489,41.154898],[-95.881289,41.159898],[-95.880936,41.160269],[-95.876289,41.165146],[-95.871912,41.168122],[-95.86964,41.16883],[-95.867344,41.168734],[-95.865072,41.167802],[-95.852788,41.165398],[-95.846188,41.166698],[-95.841888,41.171098],[-95.841288,41.174998],[-95.844088,41.180598],[-95.850188,41.184798],[-95.856788,41.187098],[-95.864789,41.188298],[-95.90969,41.184398],[-95.91459,41.185098],[-95.91829,41.186698],[-95.92319,41.190998],[-95.923219,41.191046],[-95.92599,41.195698],[-95.927491,41.202198],[-95.924891,41.211198],[-95.915091,41.222998],[-95.912591,41.226998],[-95.910891,41.231798],[-95.910891,41.233998],[-95.911391,41.237998],[-95.921291,41.258498],[-95.921891,41.264598],[-95.920391,41.268398],[-95.918791,41.269698],[-95.913991,41.271398],[-95.928691,41.281398],[-95.929591,41.285097],[-95.929591,41.292297],[-95.927491,41.298397],[-95.920291,41.301097],[-95.90589,41.300897],[-95.90429,41.299597],[-95.90429,41.293497],[-95.912491,41.279498],[-95.90249,41.273398],[-95.88239,41.281397],[-95.87689,41.285097],[-95.872889,41.289497],[-95.871489,41.295797],[-95.874689,41.307097],[-95.878189,41.312497],[-95.883089,41.316697],[-95.88869,41.319097],[-95.89929,41.321197],[-95.91379,41.320197],[-95.92209,41.321097],[-95.92569,41.322197],[-95.939291,41.328897],[-95.946891,41.334096],[-95.953091,41.339896],[-95.956691,41.345496],[-95.956791,41.349196],[-95.954891,41.351796],[-95.952191,41.353496],[-95.94099,41.357496],[-95.93549,41.360596],[-95.93099,41.364696],[-95.92879,41.370096],[-95.92929,41.374896],[-95.93519,41.384395],[-95.936931,41.390979],[-95.93749,41.393095],[-95.93689,41.396387],[-95.930778,41.406179],[-95.929721,41.411331],[-95.929889,41.415155],[-95.932297,41.422123],[-95.933169,41.42943],[-95.932193,41.431914],[-95.930705,41.433894],[-95.923905,41.439742],[-95.921833,41.442062],[-95.920577,41.444302],[-95.919865,41.447922],[-95.920281,41.451566],[-95.922529,41.455766],[-95.925713,41.459382],[-95.932921,41.463798],[-95.936801,41.46519],[-95.941969,41.466262],[-95.946465,41.466166],[-95.957017,41.462814],[-95.962329,41.46281],[-95.965481,41.46351],[-95.973449,41.467318],[-95.982962,41.469778],[-95.991018,41.470374],[-96.004708,41.472342],[-96.008833,41.474039],[-96.011757,41.476212],[-96.016389,41.481556],[-96.019542,41.486617],[-96.019817,41.48803],[-96.019224,41.489296],[-96.015986,41.492659],[-96.007334,41.497631],[-95.997903,41.504789],[-95.996175,41.506959],[-95.993943,41.509761],[-95.992833,41.512002],[-95.992599,41.514174],[-95.99267,41.51729],[-95.993891,41.523412],[-95.999529,41.538679],[-96.001161,41.541146],[-96.005079,41.544004],[-96.010028,41.545533],[-96.016474,41.546085],[-96.019686,41.545743],[-96.023182,41.544364],[-96.027289,41.541081],[-96.028439,41.539616],[-96.030593,41.527292],[-96.034305,41.512853],[-96.036603,41.509047],[-96.038101,41.50799],[-96.040701,41.507076],[-96.048118,41.507271],[-96.05369,41.508859],[-96.057935,41.51149],[-96.063638,41.516162],[-96.067527,41.52034],[-96.07307,41.525052],[-96.080493,41.528199],[-96.08822,41.530595],[-96.089714,41.531778],[-96.09409,41.539265],[-96.096186,41.547192],[-96.095851,41.55088],[-96.093613,41.558271],[-96.09182,41.561086],[-96.084786,41.567831],[-96.082406,41.571229],[-96.081178,41.574274],[-96.081152,41.577289],[-96.081843,41.580407],[-96.083417,41.583339],[-96.085771,41.585746],[-96.088683,41.58752],[-96.101496,41.59158],[-96.104465,41.593169],[-96.109387,41.596871],[-96.113833,41.602277],[-96.11583,41.60576],[-96.117558,41.609999],[-96.118105,41.613495],[-96.11795,41.617356],[-96.116233,41.621574],[-96.114146,41.623975],[-96.100701,41.635507],[-96.097728,41.639633],[-96.095046,41.647365],[-96.095415,41.652736],[-96.097933,41.658682],[-96.099837,41.66103],[-96.111483,41.668548],[-96.114978,41.67122],[-96.11812,41.674399],[-96.120983,41.677861],[-96.121726,41.68274],[-96.121712,41.68299],[-96.121401,41.688522],[-96.120157,41.69115],[-96.117751,41.694221],[-96.111968,41.697773],[-96.105119,41.699917],[-96.090579,41.697425],[-96.082429,41.698159],[-96.075955,41.701661],[-96.073063,41.705004],[-96.072321,41.706858],[-96.072494,41.708794],[-96.073376,41.710674],[-96.075151,41.713265],[-96.079682,41.717962],[-96.0876,41.72218],[-96.10261,41.728016],[-96.105582,41.731647],[-96.106326,41.734591],[-96.106425,41.73789],[-96.104622,41.744211],[-96.102772,41.746339],[-96.097511,41.749076],[-96.091687,41.750419],[-96.084673,41.753314],[-96.079915,41.757895],[-96.0783,41.761598],[-96.078939,41.771353],[-96.077543,41.777824],[-96.073197,41.783009],[-96.066413,41.788913],[-96.064537,41.793002],[-96.064879,41.79623],[-96.067329,41.800628],[-96.069662,41.803509],[-96.075548,41.807811],[-96.081026,41.810144],[-96.093835,41.812785],[-96.09827,41.814206],[-96.103749,41.817151],[-96.107592,41.820685],[-96.109347,41.823735],[-96.11081,41.828172],[-96.110907,41.830818],[-96.107911,41.840339],[-96.108029,41.844397],[-96.110246,41.84885],[-96.113962,41.853102],[-96.116202,41.854869],[-96.123215,41.85858],[-96.13062,41.860809],[-96.135253,41.863128],[-96.13901,41.866301],[-96.142045,41.868865],[-96.144483,41.871854],[-96.146083,41.874988],[-96.146757,41.877538],[-96.14735,41.884811],[-96.148826,41.888132],[-96.152179,41.892085],[-96.158204,41.897173],[-96.161756,41.90182],[-96.161988,41.905553],[-96.160767,41.908044],[-96.159098,41.910057],[-96.154301,41.912421],[-96.142265,41.915379],[-96.139653,41.916838],[-96.136743,41.920826],[-96.136133,41.92353],[-96.136613,41.927167],[-96.143493,41.937387],[-96.144583,41.941544],[-96.143603,41.944512],[-96.142597,41.945908],[-96.135393,41.952223],[-96.133318,41.955732],[-96.129186,41.965136],[-96.1289,41.969727],[-96.129505,41.971673],[-96.132537,41.974625],[-96.141228,41.978063],[-96.156538,41.980137],[-96.16068,41.980114],[-96.168071,41.978996],[-96.174154,41.976864],[-96.177203,41.976325],[-96.184243,41.976696],[-96.186265,41.977417],[-96.190602,41.980721],[-96.191549,41.982032],[-96.192141,41.984461],[-96.189516,41.989314],[-96.184784,41.99546],[-96.183801,41.99776],[-96.183568,41.999987],[-96.184644,42.002633],[-96.188067,42.006323],[-96.194556,42.008662],[-96.206083,42.009267],[-96.215225,42.006701],[-96.217637,42.003862],[-96.221813,41.997382],[-96.223896,41.995456],[-96.225463,41.994734],[-96.229739,41.99441],[-96.236487,41.996428],[-96.240713,41.999351],[-96.242035,42.000911],[-96.24238,42.002899],[-96.241932,42.006965],[-96.238859,42.012315],[-96.227867,42.018651],[-96.223611,42.022652],[-96.22173,42.026205],[-96.221901,42.029558],[-96.223822,42.033346],[-96.225656,42.035217],[-96.232125,42.039145],[-96.238392,42.041088],[-96.246832,42.041616],[-96.254542,42.039454],[-96.256087,42.03808],[-96.261132,42.038974],[-96.263886,42.039858],[-96.268637,42.042314],[-96.271427,42.044988],[-96.272877,42.047238],[-96.272901,42.047281],[-96.275548,42.051976],[-96.278445,42.060399],[-96.279342,42.07028],[-96.279079,42.074026],[-96.276758,42.081416],[-96.274135,42.085934],[-96.271777,42.088697],[-96.267636,42.096177],[-96.266594,42.103262],[-96.267318,42.110265],[-96.2689,42.11359],[-96.272299,42.118396],[-96.275002,42.120779],[-96.279203,42.12348],[-96.28567,42.125619],[-96.301023,42.128042],[-96.305884,42.129826],[-96.310085,42.132523],[-96.313819,42.136338],[-96.316979,42.143171],[-96.319528,42.146647],[-96.325872,42.151487],[-96.33798,42.157197],[-96.342395,42.160491],[-96.347752,42.166806],[-96.349688,42.172043],[-96.350323,42.17744],[-96.347243,42.186721],[-96.348066,42.194747],[-96.349166,42.197253],[-96.351515,42.200485],[-96.359087,42.207799],[-96.35987,42.210545],[-96.358141,42.214088],[-96.356655,42.215137],[-96.356591,42.215182],[-96.345055,42.21749],[-96.339086,42.218087],[-96.336323,42.218922],[-96.332044,42.221585],[-96.323723,42.229887],[-96.322827,42.231461],[-96.322868,42.233637],[-96.330004,42.240224],[-96.328955,42.241885],[-96.327706,42.249992],[-96.328905,42.254734],[-96.331331,42.25943],[-96.336003,42.264806],[-96.34145,42.269115],[-96.356389,42.27648],[-96.356406,42.276493],[-96.3608,42.279867],[-96.365792,42.285875],[-96.368454,42.291848],[-96.368507,42.303622],[-96.369212,42.308344],[-96.369969,42.310878],[-96.37179,42.314172],[-96.375307,42.318339],[-96.384169,42.325874],[-96.396269,42.330857],[-96.402957,42.334156],[-96.407998,42.337408],[-96.413895,42.343393],[-96.417786,42.351449],[-96.418168,42.354678],[-96.417918,42.3587],[-96.417093,42.361443],[-96.413994,42.365932],[-96.408436,42.376092],[-96.409153,42.381491],[-96.41498,42.393442],[-96.415509,42.400294],[-96.413609,42.407894],[-96.411808,42.410894],[-96.387608,42.432494],[-96.384307,42.437294],[-96.380707,42.446394],[-96.380107,42.451494],[-96.381307,42.461694],[-96.385407,42.473094],[-96.386007,42.474495],[-96.396107,42.484095],[-96.409408,42.487595],[-96.423892,42.48898],[-96.443408,42.489495],[-96.456348,42.492478],[-96.46255,42.490788],[-96.474409,42.491895],[-96.476509,42.493595],[-96.476909,42.497795],[-96.474709,42.500095],[-96.473339,42.503537],[-96.477454,42.509589],[-96.479384,42.511138],[-96.483592,42.510345],[-96.490089,42.512441],[-96.49297,42.517282],[-96.490802,42.520331],[-96.479909,42.524195],[-96.479009,42.526395],[-96.479809,42.529595],[-96.477709,42.535595],[-96.476962,42.546434],[-96.476952,42.556079],[-96.494699,42.556745],[-96.498041,42.558153],[-96.498439,42.560876],[-96.499414,42.567552],[-96.498709,42.57087],[-96.497186,42.571464],[-96.493279,42.570736],[-96.489328,42.5708],[-96.486855,42.572198],[-96.485937,42.573524],[-96.485796,42.575001],[-96.486606,42.576062],[-96.491402,42.577023],[-96.49545,42.579474],[-96.496066,42.580872],[-96.49557,42.582722],[-96.494676,42.584028],[-96.494777,42.585741],[-96.496792,42.587655],[-96.499885,42.588539],[-96.501037,42.589247],[-96.501434,42.59061],[-96.500243,42.592731],[-96.500183,42.594106],[-96.504654,42.605001],[-96.509468,42.61273],[-96.513237,42.614894],[-96.517048,42.615343],[-96.519514,42.614371],[-96.522309,42.612558],[-96.525671,42.609312],[-96.527928,42.608986],[-96.529894,42.610432],[-96.531604,42.615148],[-96.530896,42.617129],[-96.528185,42.618447],[-96.523998,42.618631],[-96.521158,42.619229],[-96.518542,42.62035],[-96.516599,42.622361],[-96.515918,42.624994],[-96.51535,42.627645],[-96.516338,42.630435],[-96.526766,42.641184],[-96.533701,42.643541],[-96.537881,42.646446],[-96.538468,42.648092],[-96.5376,42.652161],[-96.537877,42.655431],[-96.542366,42.660736],[-96.543698,42.661377],[-96.546827,42.661491],[-96.556214,42.657949],[-96.559281,42.657903],[-96.559962,42.658543],[-96.5599,42.662819],[-96.558939,42.663642],[-96.556461,42.663939],[-96.556244,42.664396],[-96.56055,42.669198],[-96.566684,42.675942],[-96.568078,42.676241],[-96.569194,42.675509],[-96.570247,42.674068],[-96.570743,42.671691],[-96.572261,42.670776],[-96.576381,42.671302],[-96.578581,42.672079],[-96.578148,42.672765],[-96.575272,42.675417],[-96.574318,42.676997],[-96.574064,42.67801],[-96.575299,42.682665],[-96.58562,42.687076],[-96.591602,42.688081],[-96.596405,42.688514],[-96.595548,42.691222],[-96.596625,42.695122],[-96.59908,42.697296],[-96.600789,42.697698],[-96.601989,42.697429],[-96.604839,42.695119],[-96.60614,42.694661],[-96.61017,42.694568],[-96.612061,42.695688],[-96.612124,42.69658],[-96.611901,42.697095],[-96.611851,42.697548],[-96.612203,42.698151],[-96.612555,42.698402],[-96.613058,42.698603],[-96.613409,42.698704],[-96.613912,42.698704],[-96.614516,42.698654],[-96.615257,42.698613],[-96.619536,42.700189],[-96.629625,42.705102],[-96.630617,42.70588],[-96.629777,42.708852],[-96.627233,42.709947],[-96.624446,42.714294],[-96.624704,42.725497],[-96.626317,42.725951],[-96.631931,42.725086],[-96.638621,42.734921],[-96.639704,42.737071],[-96.635886,42.741002],[-96.632314,42.745641],[-96.630485,42.750378],[-96.626108,42.752729],[-96.620548,42.753534],[-96.619494,42.754792],[-96.620272,42.757124],[-96.621235,42.758084],[-96.622538,42.758449],[-96.62412,42.757808],[-96.628741,42.757532],[-96.632212,42.761512],[-96.633168,42.768325],[-96.632142,42.770863],[-96.630311,42.770885],[-96.626406,42.773518],[-96.621875,42.779255],[-96.61949,42.784034],[-96.615579,42.784996],[-96.604559,42.783034],[-96.603784,42.78372],[-96.602575,42.787767],[-96.595283,42.792982],[-96.592493,42.801122],[-96.590757,42.808255],[-96.590913,42.808987],[-96.592155,42.809924],[-96.595664,42.810426],[-96.596008,42.815044],[-96.594983,42.815844],[-96.591039,42.815365],[-96.585699,42.818041],[-96.584488,42.818979],[-96.577937,42.827645],[-96.577813,42.828719],[-96.58238,42.833657],[-96.581604,42.837521],[-96.579772,42.838093],[-96.571353,42.837155],[-96.565605,42.830434],[-96.563058,42.831051],[-96.56284,42.836309],[-96.560572,42.839373],[-96.558584,42.839487],[-96.556162,42.836675],[-96.553987,42.836034],[-96.552092,42.836057],[-96.551285,42.836606],[-96.549513,42.839143],[-96.549976,42.840705],[-96.552184,42.841864],[-96.554203,42.843648],[-96.554709,42.846142],[-96.553772,42.847501],[-96.550847,42.847648],[-96.545502,42.849956],[-96.544321,42.851282],[-96.54146,42.857682],[-96.541708,42.858871],[-96.542702,42.859717],[-96.543417,42.859466],[-96.54379,42.858254],[-96.545282,42.857158],[-96.546556,42.857273],[-96.550439,42.863171],[-96.550469,42.863742],[-96.549659,42.870281],[-96.547327,42.87371],[-96.546394,42.874464],[-96.543908,42.874614],[-96.537851,42.878475],[-96.538438,42.886111],[-96.540396,42.888877],[-96.540116,42.889678],[-96.534395,42.890659],[-96.52774,42.890588],[-96.526357,42.891852],[-96.526563,42.893755],[-96.528886,42.89795],[-96.536007,42.900901],[-96.539397,42.899964],[-96.542847,42.903737],[-96.542971,42.90456],[-96.542473,42.90504],[-96.538555,42.904605],[-96.536564,42.905656],[-96.537354,42.908791],[-96.537837,42.910709],[-96.540229,42.918666],[-96.541628,42.920678],[-96.541689,42.922576],[-96.541098,42.924496],[-96.525536,42.935511],[-96.523513,42.935784],[-96.52118,42.934846],[-96.520559,42.932765],[-96.519378,42.931987],[-96.518258,42.931849],[-96.516888,42.932512],[-96.516203,42.933769],[-96.516419,42.935438],[-96.52012,42.938183],[-96.519994,42.93976],[-96.514888,42.943668],[-96.510749,42.944397],[-96.509472,42.945151],[-96.508069,42.948534],[-96.504857,42.954659],[-96.500308,42.959391],[-96.503132,42.968192],[-96.505028,42.970844],[-96.506148,42.971348],[-96.510693,42.97126],[-96.515922,42.972886],[-96.520246,42.977643],[-96.520773,42.980385],[-96.516724,42.981458],[-96.512237,42.985937],[-96.512203,42.988818],[-96.512886,42.991424],[-96.509986,42.995126],[-96.507337,42.996519],[-96.502728,42.997066],[-96.49782,42.998143],[-96.496699,42.998807],[-96.494341,43.001819],[-96.492693,43.005089],[-96.49167,43.009707],[-96.494416,43.014551],[-96.499187,43.019213],[-96.503209,43.019805],[-96.510995,43.024701],[-96.511804,43.025799],[-96.513085,43.028437],[-96.512916,43.029962],[-96.510802,43.031902],[-96.509146,43.03668],[-96.509145,43.037297],[-96.511605,43.039927],[-96.513873,43.039814],[-96.515752,43.039388],[-96.517319,43.040247],[-96.518431,43.042068],[-96.510256,43.049917],[-96.508916,43.049985],[-96.505239,43.048726],[-96.501748,43.048632],[-96.490365,43.050789],[-96.488839,43.051475],[-96.488155,43.054013],[-96.486722,43.055498],[-96.476905,43.062383],[-96.473165,43.06355],[-96.469953,43.062088],[-96.468207,43.06186],[-96.463094,43.062981],[-96.46085,43.064033],[-96.458201,43.067554],[-96.455209,43.075053],[-96.454188,43.083379],[-96.454088,43.084197],[-96.454526,43.086826],[-96.455337,43.088129],[-96.462636,43.089614],[-96.462855,43.091419],[-96.460516,43.09494],[-96.451877,43.100474],[-96.448134,43.104452],[-96.439335,43.113916],[-96.436589,43.120842],[-96.439615,43.121963],[-96.440801,43.123129],[-96.441644,43.124687],[-96.442711,43.128841],[-96.443431,43.133825],[-96.450361,43.142237],[-96.455544,43.144157],[-96.458854,43.143356],[-96.459978,43.143516],[-96.465099,43.147515],[-96.466537,43.150281],[-96.467384,43.159608],[-96.467292,43.164066],[-96.464896,43.182034],[-96.465146,43.182971],[-96.467146,43.184502],[-96.468802,43.184525],[-96.472395,43.185644],[-96.473834,43.189804],[-96.473777,43.198766],[-96.470781,43.205099],[-96.470626,43.207225],[-96.472158,43.209534],[-96.474912,43.217351],[-96.475571,43.221054],[-96.476697,43.222014],[-96.485264,43.224183],[-96.496454,43.223652],[-96.500759,43.220767],[-96.512458,43.218556],[-96.519273,43.21769],[-96.520961,43.21824],[-96.522084,43.22096],[-96.526865,43.224071],[-96.535741,43.22764],[-96.540088,43.225698],[-96.544902,43.225928],[-96.548184,43.226912],[-96.554937,43.226775],[-96.556313,43.226135],[-96.557317,43.224778],[-96.558995,43.224126],[-96.56044,43.224219],[-96.568505,43.231554],[-96.571194,43.238961],[-96.565253,43.244241],[-96.559186,43.245155],[-96.552963,43.247281],[-96.55203,43.251117],[-96.552591,43.257769],[-96.553217,43.259141],[-96.554965,43.259999],[-96.554968,43.259998],[-96.55697,43.259096],[-96.560099,43.259279],[-96.564165,43.260239],[-96.568576,43.262662],[-96.576804,43.268308],[-96.582904,43.26769],[-96.58522,43.268878],[-96.586317,43.274319],[-96.583533,43.276879],[-96.582939,43.276536],[-96.582876,43.274594],[-96.580904,43.2748],[-96.577588,43.2788],[-96.578823,43.291095],[-96.579094,43.293797],[-96.579478,43.29511],[-96.580409,43.295854],[-96.581052,43.297118],[-96.580346,43.298204],[-96.573556,43.29917],[-96.571646,43.298187],[-96.570707,43.296701],[-96.56911,43.295535],[-96.56429,43.294804],[-96.563523,43.294804],[-96.555246,43.294803],[-96.553087,43.29286],[-96.541037,43.295556],[-96.530392,43.300034],[-96.526004,43.309999],[-96.525564,43.312467],[-96.528817,43.316561],[-96.533101,43.328587],[-96.534913,43.336473],[-96.531905,43.33869],[-96.524289,43.347214],[-96.524476,43.348151],[-96.52551,43.348335],[-96.526635,43.351833],[-96.527223,43.362257],[-96.527345,43.368109],[-96.526467,43.368314],[-96.522203,43.371947],[-96.521323,43.374607],[-96.521297,43.375947],[-96.521572,43.38564],[-96.524044,43.394762],[-96.525453,43.396317],[-96.529152,43.397735],[-96.530124,43.397553],[-96.530124,43.39641],[-96.531159,43.39561],[-96.537116,43.395063],[-96.553008,43.404117],[-96.557586,43.406792],[-96.562728,43.412782],[-96.568499,43.417217],[-96.573579,43.419228],[-96.570788,43.423755],[-96.569628,43.427527],[-96.570224,43.428601],[-96.575181,43.431756],[-96.581956,43.432212],[-96.587884,43.431685],[-96.592905,43.43317],[-96.594254,43.434153],[-96.602608,43.449649],[-96.60286,43.450907],[-96.600039,43.45708],[-96.587929,43.464878],[-96.584603,43.46961],[-96.585137,43.471141],[-96.586364,43.478251],[-96.580997,43.481384],[-96.585049,43.489887],[-96.586274,43.491099],[-96.590452,43.494298],[-96.591676,43.494367],[-96.594722,43.493314],[-96.598396,43.495074],[-96.599182,43.496011],[-96.598929,43.500441],[-96.598928,43.500457],[-96.591213,43.500514],[-96.453049,43.500415],[-96.351059,43.500333],[-96.332062,43.500415],[-96.208814,43.500391],[-96.198766,43.500312],[-96.198484,43.500335],[-96.053163,43.500176],[-95.861152,43.499966],[-95.860946,43.499966],[-95.834421,43.499966],[-95.821277,43.499965],[-95.741569,43.499891],[-95.740813,43.499894],[-95.514774,43.499865],[-95.486803,43.500246],[-95.486737,43.500274],[-95.475065,43.500335],[-95.454706,43.500563],[-95.454706,43.500648],[-95.454433,43.500644],[-95.434293,43.50036],[-95.434199,43.500314],[-95.387851,43.50024],[-95.387812,43.50024],[-95.387787,43.50024],[-95.375269,43.500322],[-95.374737,43.500314],[-95.250969,43.500464],[-95.250762,43.500406],[-95.244844,43.501196],[-95.214938,43.500885],[-95.180423,43.500774],[-95.167891,43.500885],[-95.167294,43.500771],[-95.154936,43.500449],[-95.122633,43.500755],[-95.114874,43.500667],[-95.054289,43.50086],[-95.053504,43.500769],[-95.034,43.500811],[-95.014245,43.500872],[-94.99446,43.500523],[-94.974359,43.500508],[-94.954477,43.500467],[-94.934625,43.50049],[-94.914955,43.50045],[-94.914905,43.50045],[-94.914634,43.50045],[-94.914523,43.50045],[-94.887291,43.500502],[-94.874235,43.500557],[-94.872725,43.500564],[-94.860192,43.500546],[-94.857867,43.500615],[-94.854555,43.500614],[-94.615916,43.500544],[-94.565665,43.50033],[-94.560838,43.500377],[-94.47042,43.50034],[-94.447048,43.500639],[-94.442848,43.500583],[-94.442835,43.500583],[-94.390597,43.500469],[-94.377466,43.500379],[-94.247965,43.500333],[-94.10988,43.500283],[-94.108068,43.5003],[-94.094339,43.500302],[-94.092894,43.500302],[-93.970762,43.499605],[-93.97076,43.499605],[-93.795793,43.49952],[-93.794285,43.499542],[-93.716217,43.499563],[-93.708771,43.499564],[-93.704916,43.499568],[-93.699345,43.499576],[-93.648533,43.499559],[-93.617131,43.499548],[-93.576728,43.49952],[-93.558631,43.499521],[-93.532178,43.499472],[-93.528482,43.499471],[-93.497405,43.499456],[-93.49735,43.499456],[-93.488261,43.499417],[-93.482009,43.499482],[-93.472804,43.4994],[-93.468563,43.499473],[-93.428509,43.499478],[-93.399035,43.499485],[-93.2718,43.499356],[-93.228861,43.499567],[-93.049192,43.499571],[-93.024429,43.499572],[-93.024348,43.499572],[-93.007871,43.499604],[-92.870277,43.499548],[-92.790317,43.499567],[-92.752088,43.500084],[-92.707312,43.500069],[-92.692786,43.500063],[-92.689033,43.500062],[-92.67258,43.500055],[-92.653318,43.50005],[-92.649194,43.500049],[-92.553161,43.5003],[-92.553128,43.5003],[-92.464505,43.500345],[-92.448948,43.50042],[-92.408832,43.500614],[-92.40613,43.500476],[-92.388298,43.500483],[-92.368908,43.500454],[-92.279084,43.500436],[-92.277425,43.500466],[-92.198788,43.500527],[-92.178863,43.500713],[-92.103886,43.500735],[-92.08997,43.500684],[-92.079954,43.500647],[-92.079802,43.500647],[-91.949879,43.500485],[-91.941837,43.500554],[-91.824848,43.500684],[-91.807156,43.500648],[-91.804925,43.500716],[-91.77929,43.500803],[-91.777688,43.500711],[-91.761414,43.500637],[-91.738446,43.500525],[-91.736558,43.500561],[-91.73333,43.500623],[-91.730359,43.50068],[-91.730217,43.50068],[-91.700749,43.500581],[-91.670872,43.500513],[-91.658401,43.500533],[-91.651396,43.500454],[-91.644924,43.500529],[-91.639772,43.500573],[-91.635626,43.500463],[-91.634495,43.500439],[-91.634244,43.500479],[-91.625611,43.500727],[-91.620785,43.500677],[-91.617407,43.500687],[-91.616895,43.500663],[-91.615293,43.50055],[-91.610895,43.50053],[-91.610832,43.50053],[-91.591073,43.500536],[-91.551021,43.500539],[-91.54122,43.500515],[-91.533806,43.50056],[-91.491042,43.50069],[-91.465063,43.500608],[-91.461403,43.500642],[-91.445932,43.500588],[-91.441786,43.500438],[-91.397319,43.500887],[-91.37695,43.500482],[-91.371608,43.500945],[-91.369325,43.500827],[-91.261781,43.500993],[-91.246715,43.500488],[-91.217706,43.50055]]]}}]} diff --git a/Where/RegionKit/Sources/Resources/regions/us-ID.geojson b/Where/RegionKit/Sources/Resources/regions/us-ID.geojson new file mode 100644 index 00000000..44b2128e --- /dev/null +++ b/Where/RegionKit/Sources/Resources/regions/us-ID.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"region":"us-ID","name":"Idaho"},"geometry":{"type":"Polygon","coordinates":[[[-111.044156,43.020052],[-111.044129,43.018702],[-111.043924,42.975063],[-111.043957,42.969482],[-111.043959,42.96445],[-111.044135,42.874924],[-111.043564,42.722624],[-111.046017,42.582723],[-111.046719,42.513118],[-111.046801,42.504946],[-111.04708,42.34942],[-111.047074,42.280787],[-111.047097,42.194773],[-111.047058,42.182672],[-111.047107,42.148971],[-111.047109,42.142497],[-111.046689,42.001567],[-111.415873,42.000748],[-111.420898,42.000793],[-111.425535,42.00084],[-111.471381,41.999739],[-111.507264,41.999518],[-111.750778,41.99933],[-111.876491,41.998528],[-111.915622,41.998496],[-111.915837,41.998519],[-112.01218,41.99835],[-112.109532,41.997598],[-112.163956,41.996708],[-112.173352,41.996568],[-112.192976,42.001167],[-112.239107,42.001217],[-112.264936,42.000991],[-112.38617,42.001126],[-112.450567,42.001092],[-112.450814,42.000953],[-112.648019,42.000307],[-112.709375,42.000309],[-112.788542,41.999681],[-112.833084,41.999305],[-112.833125,41.999345],[-112.880619,41.998921],[-112.882367,41.998922],[-112.909587,41.998791],[-112.979218,41.998263],[-113.00082,41.998223],[-113.000821,41.998223],[-113.249159,41.996203],[-113.250829,41.99561],[-113.340072,41.994747],[-113.357611,41.993859],[-113.396497,41.99425],[-113.40223,41.994161],[-113.431563,41.993799],[-113.496548,41.993305],[-113.500837,41.992799],[-113.76453,41.989459],[-113.796082,41.989104],[-113.822163,41.988479],[-113.893261,41.988057],[-113.993903,41.992698],[-114.041723,41.99372],[-114.048246,41.993721],[-114.048257,41.993814],[-114.061774,41.993797],[-114.061763,41.993939],[-114.107259,41.993831],[-114.107428,41.993965],[-114.281855,41.994214],[-114.467581,41.995492],[-114.498243,41.994636],[-114.498259,41.994599],[-114.598267,41.994511],[-114.720715,41.998231],[-114.806384,42.001822],[-114.831077,42.002207],[-114.875877,42.001319],[-114.89921,41.999909],[-114.914187,41.999909],[-115.031783,41.996008],[-115.038256,41.996012],[-115.250795,41.996156],[-115.254333,41.996721],[-115.313877,41.996103],[-115.586849,41.996884],[-115.625914,41.997415],[-115.870181,41.996766],[-115.879596,41.997891],[-115.887612,41.998048],[-115.98688,41.998534],[-116.012212,41.998035],[-116.012219,41.998048],[-116.018945,41.997722],[-116.01896,41.997762],[-116.030758,41.997383],[-116.030754,41.997399],[-116.03857,41.997413],[-116.038602,41.99746],[-116.160833,41.997508],[-116.163931,41.997555],[-116.332763,41.997283],[-116.368478,41.996281],[-116.463528,41.996547],[-116.483094,41.996885],[-116.485823,41.996861],[-116.499777,41.99674],[-116.501741,41.997334],[-116.510452,41.997096],[-116.525319,41.997558],[-116.582217,41.997834],[-116.586937,41.99737],[-116.625947,41.997379],[-116.62677,41.99775],[-116.969156,41.998991],[-117.009255,41.998127],[-117.018294,41.999358],[-117.026222,42.000252],[-117.026098,42.117647],[-117.02659,42.133258],[-117.026195,42.166404],[-117.026129,42.357193],[-117.026551,42.378557],[-117.026665,42.624878],[-117.026331,42.807015],[-117.026303,42.80717],[-117.026253,42.807447],[-117.026683,43.024876],[-117.026652,43.025128],[-117.026746,43.577526],[-117.026774,43.578674],[-117.026922,43.593632],[-117.026889,43.596033],[-117.026824,43.600357],[-117.02676,43.601912],[-117.026789,43.610669],[-117.026937,43.617614],[-117.027001,43.621032],[-117.026905,43.62488],[-117.026705,43.631659],[-117.026661,43.664385],[-117.026717,43.675523],[-117.026623,43.680865],[-117.026586,43.683001],[-117.026825,43.706193],[-117.026725,43.714815],[-117.026841,43.732905],[-117.026651,43.733935],[-117.026634,43.808104],[-117.02678,43.829841],[-117.026871,43.832479],[-117.026143,43.83448],[-117.013954,43.859358],[-117.01077,43.862269],[-116.999061,43.864637],[-116.997391,43.864874],[-116.991415,43.863864],[-116.989598,43.864301],[-116.98294,43.86771],[-116.982347,43.86884],[-116.979711,43.879975],[-116.976024,43.895548],[-116.976429,43.901293],[-116.977332,43.905812],[-116.966256,43.918573],[-116.963666,43.921363],[-116.96247,43.928336],[-116.963666,43.952644],[-116.966256,43.955832],[-116.969245,43.957426],[-116.970241,43.958622],[-116.971237,43.960216],[-116.971835,43.962806],[-116.971436,43.964998],[-116.969842,43.967588],[-116.966314,43.968884],[-116.957527,43.972443],[-116.942944,43.987512],[-116.942346,43.989106],[-116.936765,44.010608],[-116.934485,44.021249],[-116.934727,44.023806],[-116.937342,44.029376],[-116.943361,44.035645],[-116.956246,44.042888],[-116.972504,44.048771],[-116.973185,44.049425],[-116.974016,44.053663],[-116.977351,44.085364],[-116.974253,44.088295],[-116.967203,44.090936],[-116.957009,44.091743],[-116.943132,44.09406],[-116.937835,44.096943],[-116.933704,44.100039],[-116.928306,44.107326],[-116.927688,44.109438],[-116.897175,44.152538],[-116.895931,44.154295],[-116.894309,44.158114],[-116.894083,44.160191],[-116.895757,44.171267],[-116.900103,44.176851],[-116.902752,44.179467],[-116.925392,44.191544],[-116.935443,44.193962],[-116.940534,44.19371],[-116.945256,44.191677],[-116.947591,44.191264],[-116.965498,44.194126],[-116.967259,44.194581],[-116.971675,44.197256],[-116.973701,44.208017],[-116.973945,44.225932],[-116.971958,44.235677],[-116.973542,44.23998],[-116.975905,44.242844],[-116.98687,44.245477],[-117.001,44.245386],[-117.016921,44.245391],[-117.020231,44.246063],[-117.025277,44.248505],[-117.027558,44.248881],[-117.031862,44.248635],[-117.03585,44.246805],[-117.042283,44.242775],[-117.045513,44.232005],[-117.047062,44.229742],[-117.050057,44.22883],[-117.05303,44.229076],[-117.05651,44.230874],[-117.059352,44.237244],[-117.067284,44.24401],[-117.07835,44.249885],[-117.089503,44.258234],[-117.090933,44.260311],[-117.093578,44.269383],[-117.09457,44.270978],[-117.098531,44.275533],[-117.102242,44.278799],[-117.104208,44.27994],[-117.107673,44.280763],[-117.111617,44.280667],[-117.118018,44.278945],[-117.121037,44.277585],[-117.130904,44.269453],[-117.13253,44.267045],[-117.133104,44.264236],[-117.133984,44.262972],[-117.138523,44.25937],[-117.143394,44.258262],[-117.15706,44.25749],[-117.170342,44.25889],[-117.193129,44.270963],[-117.198147,44.273828],[-117.216974,44.288357],[-117.222647,44.297578],[-117.222451,44.298963],[-117.220069,44.301382],[-117.217843,44.30718],[-117.216795,44.308236],[-117.21521,44.309116],[-117.2055,44.311789],[-117.203323,44.313024],[-117.192203,44.32863],[-117.191546,44.329621],[-117.189842,44.335007],[-117.189769,44.336585],[-117.196149,44.346362],[-117.197339,44.347406],[-117.206962,44.355206],[-117.210587,44.357703],[-117.216911,44.360163],[-117.227938,44.367975],[-117.235117,44.373853],[-117.243027,44.390974],[-117.242675,44.396548],[-117.234835,44.399669],[-117.22698,44.405583],[-117.225461,44.407729],[-117.218285,44.420664],[-117.215072,44.427162],[-117.214637,44.44803],[-117.215573,44.453746],[-117.217015,44.459042],[-117.221548,44.470146],[-117.224445,44.473884],[-117.225758,44.477223],[-117.225932,44.479389],[-117.225076,44.482346],[-117.224104,44.483734],[-117.216372,44.48616],[-117.211148,44.485359],[-117.208936,44.485661],[-117.200237,44.492027],[-117.194317,44.499884],[-117.192494,44.503272],[-117.191329,44.506784],[-117.19163,44.509886],[-117.189759,44.513385],[-117.185386,44.519261],[-117.181583,44.52296],[-117.167187,44.523431],[-117.161033,44.525166],[-117.152406,44.531802],[-117.149242,44.536151],[-117.144161,44.545647],[-117.14293,44.557236],[-117.147934,44.562143],[-117.148255,44.564371],[-117.146032,44.568603],[-117.14248,44.57143],[-117.138066,44.572996],[-117.133963,44.57524],[-117.126009,44.581553],[-117.124754,44.583834],[-117.125267,44.593818],[-117.120522,44.614658],[-117.117809,44.620139],[-117.114754,44.624883],[-117.108231,44.62711],[-117.098221,44.640689],[-117.094968,44.652011],[-117.096791,44.657385],[-117.095868,44.664737],[-117.091223,44.668807],[-117.080772,44.684161],[-117.080555,44.686714],[-117.07912,44.692175],[-117.072221,44.700517],[-117.063824,44.703623],[-117.061799,44.706654],[-117.060454,44.721668],[-117.062273,44.727143],[-117.044217,44.74514],[-117.03827,44.748179],[-117.013802,44.756841],[-117.006045,44.756024],[-116.998903,44.756382],[-116.992003,44.759182],[-116.986502,44.762381],[-116.977802,44.767981],[-116.972902,44.772581],[-116.970902,44.773881],[-116.966801,44.775181],[-116.949001,44.777981],[-116.9368,44.782881],[-116.9347,44.783881],[-116.9318,44.787181],[-116.9307,44.789881],[-116.9308,44.790981],[-116.933099,44.794481],[-116.933799,44.796781],[-116.933699,44.798781],[-116.931099,44.804781],[-116.928099,44.808381],[-116.920498,44.81438],[-116.905771,44.834794],[-116.901028,44.841536],[-116.896249,44.84833],[-116.883598,44.858268],[-116.865338,44.870599],[-116.857038,44.880769],[-116.852427,44.887577],[-116.850512,44.893523],[-116.846061,44.905249],[-116.842108,44.914922],[-116.838467,44.923601],[-116.833632,44.928976],[-116.832176,44.931373],[-116.83199,44.933007],[-116.835702,44.940633],[-116.846461,44.951521],[-116.850737,44.958113],[-116.851406,44.959841],[-116.858313,44.978761],[-116.856754,44.984298],[-116.846103,44.999878],[-116.844625,45.001435],[-116.844796,45.015312],[-116.845847,45.01847],[-116.848037,45.021728],[-116.847944,45.022602],[-116.841314,45.030907],[-116.830115,45.035317],[-116.825133,45.03784],[-116.808576,45.050652],[-116.797329,45.060267],[-116.78371,45.076972],[-116.783808,45.079026],[-116.784244,45.088128],[-116.783537,45.093605],[-116.782492,45.09579],[-116.774847,45.105536],[-116.754643,45.113972],[-116.731216,45.139934],[-116.729607,45.142091],[-116.728757,45.144381],[-116.724188,45.162924],[-116.724205,45.171501],[-116.709536,45.203015],[-116.708546,45.207356],[-116.70975,45.217243],[-116.709373,45.219463],[-116.703607,45.239757],[-116.696047,45.254679],[-116.691388,45.263739],[-116.687027,45.267857],[-116.681013,45.27072],[-116.675587,45.274867],[-116.674493,45.276349],[-116.672733,45.283183],[-116.672163,45.288938],[-116.672594,45.298023],[-116.674648,45.314342],[-116.673793,45.321511],[-116.653252,45.351084],[-116.626633,45.388037],[-116.619057,45.39821],[-116.597447,45.41277],[-116.592416,45.427356],[-116.588195,45.44292],[-116.581382,45.448984],[-116.575949,45.452522],[-116.563985,45.460169],[-116.561744,45.461213],[-116.554829,45.46293],[-116.55498,45.472801],[-116.558803,45.480076],[-116.558804,45.481188],[-116.553473,45.499107],[-116.548676,45.510385],[-116.543837,45.514193],[-116.535482,45.525079],[-116.523638,45.54661],[-116.502756,45.566608],[-116.490279,45.574499],[-116.48297,45.577008],[-116.481943,45.577898],[-116.463635,45.602785],[-116.463504,45.615785],[-116.46517,45.617986],[-116.469813,45.620604],[-116.472882,45.624884],[-116.477452,45.631267],[-116.482495,45.639916],[-116.487894,45.649769],[-116.49451,45.655679],[-116.512326,45.670224],[-116.523961,45.677639],[-116.528272,45.681473],[-116.535396,45.691734],[-116.536395,45.69665],[-116.538014,45.714929],[-116.535698,45.734231],[-116.537173,45.737288],[-116.546643,45.750972],[-116.549085,45.752735],[-116.553548,45.753388],[-116.559444,45.755189],[-116.577422,45.76753],[-116.593004,45.778541],[-116.60504,45.781018],[-116.632032,45.784979],[-116.635814,45.783642],[-116.639641,45.781274],[-116.646342,45.779815],[-116.659629,45.780016],[-116.665344,45.781998],[-116.680139,45.79359],[-116.687007,45.806319],[-116.697192,45.820135],[-116.698079,45.820852],[-116.70845,45.825117],[-116.711822,45.826267],[-116.715527,45.826773],[-116.736268,45.826179],[-116.740486,45.82446],[-116.745219,45.821394],[-116.750978,45.818537],[-116.755288,45.817061],[-116.759787,45.816167],[-116.7634,45.81658],[-116.782676,45.825376],[-116.788329,45.831928],[-116.789066,45.833471],[-116.788923,45.836741],[-116.78752,45.840204],[-116.787792,45.844267],[-116.790151,45.849851],[-116.79437,45.856017],[-116.796051,45.858473],[-116.814142,45.877551],[-116.819182,45.880938],[-116.830003,45.886405],[-116.84355,45.892273],[-116.857254,45.904159],[-116.859795,45.907264],[-116.866544,45.916958],[-116.869655,45.923799],[-116.875706,45.945008],[-116.886843,45.958617],[-116.892935,45.974396],[-116.911409,45.988912],[-116.915989,45.995413],[-116.91718,45.996575],[-116.91868,45.999875],[-116.923005,46.018293],[-116.931706,46.039651],[-116.942656,46.061],[-116.948564,46.067933],[-116.957372,46.075449],[-116.960416,46.076346],[-116.96319,46.075905],[-116.970009,46.076769],[-116.978938,46.080007],[-116.981962,46.084915],[-116.982479,46.089389],[-116.982498,46.091347],[-116.981747,46.092881],[-116.978823,46.095731],[-116.976957,46.09667],[-116.974058,46.097707],[-116.959548,46.099058],[-116.955263,46.102237],[-116.951265,46.111161],[-116.95098,46.118853],[-116.950276,46.123464],[-116.948336,46.125885],[-116.935473,46.142448],[-116.922648,46.160744],[-116.921258,46.164795],[-116.92187,46.167808],[-116.923958,46.17092],[-116.941724,46.185034],[-116.952416,46.193514],[-116.962966,46.19968],[-116.965841,46.203417],[-116.966569,46.207501],[-116.96613,46.209453],[-116.959428,46.219812],[-116.956031,46.225976],[-116.955264,46.23088],[-116.958801,46.24232],[-116.964379,46.253282],[-116.966742,46.256923],[-116.970298,46.261233],[-116.972591,46.263271],[-116.976054,46.26601],[-116.987391,46.272865],[-116.991134,46.276342],[-116.991422,46.278467],[-116.990894,46.280372],[-116.98491,46.289738],[-116.98463,46.292705],[-116.986688,46.296662],[-116.989794,46.299395],[-116.99726,46.303151],[-117.007486,46.305302],[-117.016413,46.311236],[-117.020663,46.314793],[-117.022293,46.31747],[-117.022939,46.320175],[-117.023424,46.326427],[-117.022706,46.32899],[-117.023149,46.334759],[-117.023844,46.335976],[-117.027744,46.338751],[-117.030672,46.340315],[-117.03445,46.34132],[-117.045469,46.34249],[-117.051735,46.343833],[-117.055983,46.345531],[-117.060703,46.349015],[-117.06263,46.352522],[-117.062748,46.353624],[-117.062785,46.365287],[-117.061045,46.367747],[-117.057516,46.371396],[-117.051775,46.375641],[-117.049474,46.37682],[-117.046915,46.379577],[-117.04195,46.39216],[-117.041737,46.395195],[-117.038282,46.40604],[-117.036455,46.407792],[-117.035545,46.410012],[-117.034696,46.418318],[-117.036562,46.422596],[-117.039813,46.425425],[-117.039741,46.462704],[-117.039763,46.46957],[-117.039771,46.471779],[-117.039657,46.541785],[-117.039398,46.700186],[-117.039828,46.815443],[-117.039657,46.825798],[-117.039821,47.127265],[-117.039836,47.154734],[-117.039871,47.181858],[-117.039888,47.203282],[-117.039899,47.225515],[-117.040019,47.259272],[-117.039843,47.347201],[-117.04007,47.3661],[-117.040176,47.3749],[-117.039882,47.399085],[-117.03995,47.412412],[-117.039948,47.434885],[-117.039971,47.463309],[-117.039945,47.477823],[-117.040514,47.522351],[-117.040545,47.527562],[-117.040745,47.532909],[-117.041276,47.55821],[-117.041174,47.55853],[-117.04085,47.574124],[-117.041431,47.67814],[-117.041431,47.678185],[-117.041431,47.68],[-117.041532,47.683194],[-117.041633,47.7064],[-117.041678,47.72271],[-117.041634,47.7353],[-117.042135,47.7441],[-117.042059,47.7451],[-117.042657,47.760857],[-117.042623,47.761223],[-117.042521,47.764896],[-117.042485,47.766525],[-117.042064,47.77863],[-117.041999,47.822399],[-117.04247,47.839009],[-117.04236,47.966343],[-117.042265,47.977386],[-117.041676,48.04556],[-117.041401,48.0855],[-117.041107,48.124904],[-117.039552,48.17396],[-117.039413,48.17725],[-117.039618,48.178142],[-117.039583,48.180313],[-117.039582,48.180853],[-117.039582,48.181124],[-117.039615,48.184015],[-117.039599,48.184387],[-117.038602,48.207939],[-117.035178,48.370878],[-117.035178,48.371221],[-117.035289,48.422732],[-117.035254,48.423144],[-117.035285,48.429816],[-117.035285,48.430113],[-117.035425,48.499914],[-117.034499,48.620769],[-117.034358,48.628523],[-117.033671,48.656902],[-117.033335,48.749921],[-117.032386,48.846559],[-117.032107,48.874926],[-117.032351,48.999188],[-116.757185,48.999791],[-116.757234,48.999943],[-116.417503,49.000099],[-116.376039,49.000518],[-116.369128,49.001146],[-116.049193,49.000912],[-116.049157,48.502058],[-116.049155,48.481247],[-116.050003,48.413492],[-116.048948,48.309847],[-116.049735,48.274668],[-116.049353,48.249936],[-116.049977,48.237604],[-116.049764,48.215095],[-116.048911,48.12493],[-116.049415,48.07722],[-116.04932,48.066644],[-116.048739,48.060093],[-116.049153,47.999923],[-116.04885,47.977186],[-116.04882,47.97716],[-116.048421,47.97682],[-116.03834,47.971318],[-116.030751,47.973349],[-116.007246,47.950087],[-115.998236,47.938779],[-115.995121,47.933827],[-115.993678,47.926183],[-115.982791,47.915994],[-115.969076,47.914256],[-115.965153,47.910131],[-115.959946,47.898142],[-115.939993,47.883153],[-115.919291,47.857406],[-115.906409,47.846261],[-115.900934,47.843064],[-115.881522,47.849672],[-115.875262,47.843272],[-115.870861,47.834939],[-115.852291,47.827991],[-115.845474,47.814967],[-115.848509,47.809331],[-115.847487,47.785227],[-115.84044,47.780172],[-115.837438,47.774846],[-115.835069,47.77006],[-115.835365,47.760957],[-115.831755,47.755785],[-115.824597,47.752154],[-115.803917,47.75848],[-115.797299,47.75752],[-115.780441,47.743447],[-115.783504,47.729305],[-115.776219,47.719818],[-115.77177,47.717412],[-115.763424,47.717313],[-115.758623,47.719041],[-115.752349,47.716743],[-115.730764,47.704426],[-115.72377,47.696671],[-115.726613,47.672093],[-115.73627,47.654762],[-115.72993,47.642442],[-115.715193,47.63634],[-115.708537,47.635356],[-115.694284,47.62346],[-115.689404,47.595402],[-115.706473,47.577299],[-115.721207,47.576323],[-115.734674,47.567401],[-115.746945,47.555293],[-115.748536,47.549245],[-115.747263,47.543197],[-115.741371,47.538645],[-115.717024,47.532693],[-115.71034,47.52951],[-115.708748,47.51264],[-115.694106,47.498634],[-115.686704,47.485596],[-115.655272,47.477944],[-115.653044,47.476035],[-115.654318,47.468077],[-115.663867,47.456936],[-115.671188,47.45439],[-115.69293,47.457237],[-115.718247,47.45316],[-115.728801,47.445159],[-115.731348,47.433381],[-115.728801,47.428925],[-115.72148,47.424469],[-115.718934,47.420967],[-115.71034,47.417784],[-115.69057,47.415059],[-115.657681,47.400651],[-115.648479,47.390293],[-115.644341,47.381826],[-115.639186,47.378605],[-115.617247,47.382521],[-115.609492,47.380799],[-115.578619,47.367007],[-115.570887,47.356375],[-115.564766,47.353476],[-115.556318,47.353076],[-115.551079,47.349856],[-115.548658,47.332213],[-115.531971,47.314121],[-115.526751,47.303219],[-115.51186,47.295219],[-115.487314,47.286518],[-115.470959,47.284873],[-115.457077,47.277794],[-115.443566,47.277309],[-115.428359,47.278722],[-115.423173,47.276222],[-115.421645,47.271736],[-115.410685,47.264228],[-115.371825,47.265213],[-115.36628,47.261485],[-115.3593,47.259461],[-115.339201,47.261623],[-115.326903,47.255912],[-115.324832,47.244841],[-115.317124,47.233305],[-115.311875,47.229673],[-115.307239,47.229892],[-115.298794,47.225245],[-115.294785,47.220914],[-115.29211,47.209861],[-115.295986,47.205658],[-115.300805,47.19393],[-115.300504,47.188139],[-115.286353,47.18327],[-115.261885,47.181742],[-115.255786,47.174725],[-115.255146,47.162876],[-115.243707,47.150347],[-115.223246,47.148974],[-115.200547,47.139154],[-115.189451,47.131032],[-115.172938,47.112881],[-115.170436,47.106265],[-115.140375,47.093013],[-115.139515,47.08456],[-115.136671,47.078276],[-115.120917,47.061237],[-115.107132,47.049041],[-115.102681,47.047239],[-115.098136,47.048897],[-115.087806,47.045519],[-115.071254,47.022083],[-115.066223,46.996375],[-115.057098,46.986758],[-115.049538,46.970774],[-115.047857,46.969533],[-115.031651,46.971548],[-115.028994,46.973159],[-115.028386,46.975659],[-115.001274,46.971901],[-115.00091,46.967703],[-114.986539,46.952099],[-114.963978,46.932889],[-114.960597,46.93001],[-114.929997,46.919625],[-114.927432,46.914185],[-114.927948,46.909948],[-114.935035,46.901749],[-114.936805,46.897378],[-114.931058,46.882108],[-114.931608,46.876799],[-114.938713,46.869021],[-114.943281,46.867971],[-114.947413,46.859324],[-114.940398,46.85605],[-114.928615,46.854815],[-114.92349,46.847594],[-114.92845,46.843242],[-114.927837,46.83599],[-114.920459,46.827697],[-114.904505,46.822851],[-114.897857,46.813184],[-114.888146,46.808573],[-114.880588,46.811791],[-114.864342,46.813858],[-114.861376,46.81196],[-114.860067,46.804988],[-114.856874,46.801633],[-114.844794,46.794305],[-114.835917,46.791111],[-114.829117,46.782503],[-114.818161,46.781139],[-114.808587,46.78235],[-114.79004,46.778729],[-114.765106,46.758153],[-114.765127,46.745383],[-114.76718,46.738828],[-114.773765,46.731805],[-114.779668,46.730411],[-114.788656,46.714033],[-114.787065,46.711255],[-114.76689,46.696901],[-114.751921,46.697207],[-114.749257,46.699688],[-114.747758,46.702649],[-114.740115,46.711771],[-114.727445,46.714604],[-114.713516,46.715138],[-114.710425,46.717704],[-114.699008,46.740223],[-114.696656,46.740572],[-114.674997,46.737052],[-114.649388,46.73289],[-114.632954,46.715495],[-114.626695,46.712889],[-114.620859,46.707415],[-114.623198,46.691511],[-114.631898,46.68397],[-114.641745,46.679286],[-114.642713,46.673145],[-114.635713,46.659375],[-114.621483,46.658143],[-114.614716,46.655256],[-114.611676,46.647704],[-114.616354,46.643646],[-114.615036,46.639733],[-114.595213,46.633456],[-114.593292,46.632848],[-114.583385,46.633227],[-114.561582,46.642043],[-114.547321,46.644485],[-114.498007,46.637655],[-114.486218,46.632829],[-114.466902,46.631695],[-114.45425,46.640974],[-114.453239,46.649266],[-114.424424,46.660648],[-114.410907,46.657466],[-114.403383,46.659633],[-114.394514,46.664846],[-114.360709,46.669059],[-114.332887,46.660756],[-114.32456,46.653579],[-114.320665,46.646963],[-114.322912,46.642938],[-114.322519,46.611066],[-114.333931,46.592162],[-114.334992,46.588154],[-114.333931,46.582732],[-114.331338,46.577781],[-114.33175,46.571914],[-114.339533,46.564039],[-114.34534,46.548444],[-114.348733,46.533792],[-114.349208,46.529514],[-114.342072,46.519679],[-114.351655,46.508119],[-114.35874,46.505306],[-114.375348,46.501855],[-114.385871,46.50437],[-114.395204,46.503148],[-114.400257,46.502143],[-114.403019,46.498675],[-114.400068,46.47718],[-114.394447,46.469549],[-114.383051,46.466402],[-114.379338,46.460166],[-114.376413,46.442983],[-114.384756,46.411784],[-114.408974,46.400438],[-114.422458,46.387097],[-114.411592,46.366688],[-114.410682,46.360673],[-114.413758,46.335945],[-114.431708,46.310744],[-114.433478,46.305502],[-114.425587,46.287899],[-114.427309,46.283624],[-114.43544,46.27661],[-114.441326,46.2738],[-114.453257,46.270939],[-114.465024,46.273127],[-114.470479,46.26732],[-114.468254,46.248796],[-114.451912,46.241253],[-114.449819,46.237119],[-114.445497,46.220227],[-114.443215,46.202943],[-114.445928,46.173933],[-114.457549,46.170231],[-114.472643,46.162202],[-114.478333,46.160876],[-114.489254,46.167684],[-114.514706,46.167726],[-114.527096,46.146218],[-114.5213,46.125287],[-114.488303,46.113106],[-114.474415,46.112515],[-114.460049,46.097104],[-114.461864,46.078571],[-114.468529,46.062484],[-114.492153,46.04729],[-114.494683,46.042546],[-114.493418,46.03717],[-114.490572,46.032427],[-114.485793,46.030022],[-114.480241,46.030325],[-114.473811,46.016614],[-114.477922,46.009025],[-114.47729,46.000802],[-114.470965,45.995742],[-114.441185,45.988453],[-114.425843,45.984984],[-114.419899,45.981106],[-114.411892,45.977883],[-114.409353,45.97141],[-114.403712,45.967049],[-114.402261,45.961489],[-114.404708,45.9559],[-114.411933,45.952358],[-114.415977,45.947891],[-114.423681,45.9441],[-114.427717,45.939625],[-114.431328,45.938023],[-114.431159,45.935737],[-114.413168,45.911479],[-114.404314,45.903497],[-114.395059,45.901458],[-114.387166,45.889164],[-114.388243,45.88234],[-114.409477,45.85164],[-114.422963,45.855381],[-114.44868,45.858891],[-114.455532,45.855012],[-114.470296,45.851343],[-114.498809,45.850676],[-114.509303,45.845531],[-114.514596,45.840785],[-114.517143,45.835993],[-114.51704,45.833148],[-114.512973,45.828825],[-114.544692,45.791447],[-114.555487,45.786249],[-114.562509,45.779927],[-114.566172,45.773864],[-114.535634,45.739095],[-114.504869,45.722176],[-114.497553,45.710677],[-114.495421,45.703321],[-114.499637,45.669035],[-114.507645,45.658949],[-114.522142,45.64934],[-114.529678,45.65232],[-114.53577,45.650613],[-114.561046,45.639906],[-114.563652,45.637412],[-114.563305,45.631612],[-114.553937,45.619299],[-114.544905,45.616673],[-114.538132,45.606834],[-114.553999,45.591279],[-114.558253,45.585104],[-114.559038,45.565706],[-114.549508,45.56059],[-114.526075,45.570771],[-114.517761,45.568129],[-114.506341,45.559216],[-114.498176,45.555473],[-114.473759,45.563278],[-114.460542,45.561283],[-114.456764,45.543983],[-114.450863,45.54253],[-114.438991,45.536076],[-114.415804,45.509753],[-114.388618,45.502903],[-114.36852,45.492716],[-114.36562,45.490416],[-114.360719,45.474116],[-114.345019,45.459916],[-114.333218,45.459316],[-114.279217,45.480616],[-114.270717,45.486116],[-114.261616,45.495816],[-114.247824,45.524283],[-114.248183,45.533226],[-114.251836,45.537812],[-114.248121,45.545877],[-114.227942,45.546423],[-114.203665,45.53557],[-114.192802,45.536596],[-114.18647,45.545539],[-114.180043,45.551432],[-114.154837,45.552916],[-114.135249,45.557465],[-114.129099,45.565491],[-114.128601,45.568996],[-114.132359,45.572531],[-114.131469,45.574444],[-114.122322,45.58426],[-114.100308,45.586354],[-114.086584,45.59118],[-114.0821,45.596958],[-114.083149,45.603996],[-114.08179,45.611329],[-114.067619,45.627706],[-114.033456,45.648629],[-114.018731,45.648616],[-114.014973,45.654008],[-114.013786,45.658238],[-114.02007,45.670332],[-114.020533,45.681223],[-114.019315,45.692937],[-114.015633,45.696127],[-113.986656,45.704564],[-113.971565,45.700636],[-113.9426,45.686362],[-113.93422,45.682232],[-113.930403,45.671878],[-113.919752,45.658536],[-113.903582,45.651165],[-113.900588,45.648259],[-113.898883,45.644167],[-113.902539,45.636945],[-113.904691,45.622007],[-113.886006,45.61702],[-113.861404,45.62366],[-113.823068,45.612486],[-113.806729,45.602146],[-113.802955,45.592631],[-113.803261,45.584193],[-113.804796,45.580358],[-113.819868,45.566326],[-113.834555,45.520729],[-113.809144,45.519908],[-113.802849,45.523159],[-113.796579,45.523462],[-113.778361,45.523415],[-113.766022,45.520621],[-113.759986,45.480735],[-113.78416,45.454946],[-113.783272,45.451839],[-113.764591,45.431403],[-113.763368,45.427732],[-113.768058,45.418147],[-113.765203,45.410601],[-113.760924,45.406501],[-113.750546,45.40272],[-113.734402,45.392353],[-113.733092,45.390173],[-113.73239,45.385058],[-113.73553,45.364738],[-113.7402,45.34559],[-113.738729,45.329741],[-113.735601,45.325265],[-113.689359,45.28355],[-113.688077,45.276407],[-113.691557,45.270912],[-113.692039,45.265191],[-113.684946,45.253706],[-113.678749,45.24927],[-113.674409,45.249411],[-113.665633,45.246265],[-113.657027,45.241436],[-113.650064,45.23471],[-113.647399,45.228282],[-113.636889,45.212983],[-113.599506,45.191114],[-113.589891,45.176986],[-113.594632,45.166034],[-113.57467,45.128411],[-113.554744,45.112901],[-113.546488,45.112285],[-113.538037,45.11503],[-113.513342,45.115225],[-113.506638,45.107288],[-113.510819,45.099902],[-113.520134,45.093033],[-113.485278,45.063519],[-113.47377,45.0617],[-113.465073,45.062755],[-113.460578,45.064879],[-113.45197,45.059247],[-113.44912,45.046098],[-113.449909,45.035167],[-113.437726,45.006967],[-113.446884,44.998545],[-113.447013,44.984637],[-113.444862,44.976141],[-113.443782,44.95989],[-113.448958,44.953544],[-113.467467,44.948061],[-113.474781,44.948795],[-113.480836,44.95031],[-113.494446,44.948597],[-113.498745,44.942314],[-113.491121,44.927548],[-113.474573,44.910846],[-113.455071,44.865424],[-113.422376,44.842595],[-113.383984,44.8374],[-113.377153,44.834858],[-113.356062,44.819798],[-113.3461,44.800611],[-113.346692,44.798898],[-113.354763,44.795468],[-113.354034,44.791745],[-113.341704,44.784853],[-113.301508,44.798985],[-113.29683,44.803358],[-113.278382,44.812706],[-113.247166,44.82295],[-113.238729,44.814144],[-113.209624,44.80907],[-113.19436,44.802151],[-113.183395,44.793565],[-113.179366,44.787142],[-113.163806,44.778921],[-113.158206,44.780847],[-113.140618,44.776698],[-113.131453,44.772837],[-113.131387,44.764738],[-113.137704,44.760109],[-113.134824,44.752763],[-113.116874,44.738104],[-113.102138,44.729027],[-113.101154,44.708578],[-113.098064,44.697477],[-113.081906,44.691392],[-113.06776,44.679474],[-113.067756,44.672807],[-113.07042,44.667844],[-113.068306,44.656374],[-113.065589,44.649371],[-113.051504,44.63695],[-113.049349,44.62938],[-113.053529,44.621187],[-113.05677,44.618657],[-113.065593,44.617391],[-113.07376,44.613928],[-113.083819,44.60222],[-113.061071,44.577329],[-113.042363,44.565237],[-113.04282,44.546757],[-113.032722,44.537137],[-113.019777,44.528505],[-113.018636,44.520064],[-113.020917,44.493827],[-113.003544,44.450814],[-112.981682,44.434279],[-112.951146,44.416699],[-112.915602,44.402699],[-112.886041,44.395874],[-112.881769,44.380315],[-112.855395,44.359975],[-112.844859,44.358221],[-112.820489,44.370946],[-112.814156,44.377198],[-112.81324,44.378103],[-112.812608,44.392275],[-112.821896,44.407436],[-112.836034,44.422653],[-112.828191,44.442472],[-112.797863,44.466112],[-112.781294,44.484888],[-112.749011,44.491233],[-112.735084,44.499159],[-112.71911,44.504344],[-112.707815,44.503023],[-112.671169,44.491265],[-112.664485,44.48645],[-112.660696,44.485756],[-112.601863,44.491015],[-112.584197,44.481368],[-112.573513,44.480983],[-112.550557,44.484928],[-112.541989,44.483971],[-112.518871,44.475784],[-112.512036,44.47042],[-112.511713,44.466445],[-112.50031,44.463051],[-112.473207,44.480027],[-112.460347,44.47571],[-112.435342,44.462216],[-112.387389,44.448058],[-112.368764,44.467153],[-112.358926,44.48628],[-112.3566,44.493127],[-112.358917,44.528847],[-112.35421,44.535638],[-112.348794,44.538691],[-112.319198,44.53911],[-112.315008,44.5419],[-112.315047,44.550049],[-112.312899,44.553536],[-112.307642,44.557651],[-112.286187,44.568472],[-112.258665,44.569516],[-112.242785,44.568091],[-112.230117,44.562759],[-112.226841,44.555239],[-112.229477,44.549494],[-112.221698,44.543519],[-112.183937,44.533067],[-112.179703,44.533021],[-112.164597,44.541666],[-112.136454,44.539911],[-112.129078,44.5363],[-112.125101,44.528527],[-112.106755,44.520829],[-112.101564,44.520847],[-112.096299,44.523212],[-112.093304,44.530002],[-112.069011,44.537104],[-112.053434,44.535089],[-112.036943,44.530323],[-112.034133,44.537716],[-112.035025,44.542691],[-112.032707,44.546642],[-112.01385,44.542348],[-111.995231,44.535444],[-111.980833,44.536682],[-111.951522,44.550062],[-111.947941,44.556776],[-111.903566,44.55723],[-111.887852,44.563413],[-111.870504,44.564033],[-111.849293,44.539837],[-111.842542,44.526069],[-111.821488,44.509286],[-111.807914,44.511716],[-111.806512,44.516264],[-111.761904,44.529841],[-111.758966,44.533766],[-111.746401,44.540766],[-111.737191,44.54306],[-111.715474,44.543543],[-111.709553,44.550206],[-111.704218,44.560205],[-111.681571,44.559864],[-111.617348,44.549467],[-111.614405,44.548991],[-111.601249,44.55421],[-111.591768,44.561502],[-111.585763,44.562843],[-111.562814,44.555209],[-111.556577,44.554495],[-111.546637,44.557099],[-111.524006,44.548385],[-111.518095,44.544177],[-111.500792,44.540062],[-111.471682,44.540824],[-111.467736,44.544521],[-111.469185,44.552044],[-111.492024,44.56081],[-111.519126,44.582916],[-111.524213,44.595585],[-111.525764,44.604883],[-111.521688,44.613371],[-111.50494,44.635746],[-111.473178,44.665479],[-111.468833,44.679335],[-111.47798,44.682393],[-111.484898,44.687578],[-111.490228,44.700221],[-111.489339,44.704946],[-111.486019,44.707654],[-111.480393,44.70919],[-111.438793,44.720546],[-111.429604,44.720149],[-111.424214,44.714024],[-111.414271,44.710741],[-111.398575,44.723343],[-111.394459,44.744578],[-111.397805,44.746738],[-111.393854,44.752549],[-111.385005,44.755128],[-111.377709,44.751686],[-111.37476,44.750295],[-111.36627,44.742234],[-111.366723,44.738361],[-111.355768,44.727602],[-111.348184,44.725459],[-111.341351,44.7293],[-111.323669,44.724474],[-111.29626,44.702271],[-111.26875,44.668279],[-111.276956,44.655626],[-111.262839,44.649658],[-111.25268,44.651092],[-111.224161,44.623402],[-111.231227,44.606915],[-111.23018,44.587025],[-111.225208,44.581006],[-111.201459,44.575696],[-111.189617,44.571062],[-111.182551,44.566874],[-111.175747,44.552219],[-111.166892,44.54722],[-111.15959,44.546376],[-111.143557,44.535732],[-111.139455,44.517112],[-111.131379,44.499925],[-111.122654,44.493659],[-111.062729,44.476073],[-111.048974,44.474072],[-111.049194,44.438058],[-111.049216,44.435811],[-111.049148,44.374925],[-111.049695,44.353626],[-111.049119,44.124923],[-111.048452,44.114831],[-111.048633,44.062903],[-111.048751,44.060838],[-111.048751,44.060403],[-111.049077,44.020072],[-111.047349,43.999921],[-111.047064,43.983467],[-111.046917,43.974978],[-111.046515,43.908376],[-111.046715,43.815832],[-111.04634,43.726957],[-111.046435,43.726545],[-111.046421,43.722059],[-111.04611,43.687848],[-111.046051,43.685812],[-111.046118,43.684902],[-111.04588,43.681033],[-111.045706,43.659112],[-111.045205,43.501136],[-111.044617,43.31572],[-111.044229,43.195579],[-111.044168,43.189244],[-111.044232,43.18444],[-111.044266,43.177236],[-111.044235,43.177121],[-111.044143,43.072364],[-111.044162,43.068222],[-111.04415,43.066172],[-111.044117,43.060309],[-111.044086,43.054819],[-111.044063,43.046302],[-111.044058,43.04464],[-111.043997,43.041415],[-111.044094,43.02927],[-111.044033,43.026411],[-111.044034,43.024844],[-111.044034,43.024581],[-111.044206,43.022614],[-111.044156,43.020052]]]}}]} diff --git a/Where/RegionKit/Sources/Resources/regions/us-IL.geojson b/Where/RegionKit/Sources/Resources/regions/us-IL.geojson new file mode 100644 index 00000000..363c4117 --- /dev/null +++ b/Where/RegionKit/Sources/Resources/regions/us-IL.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"region":"us-IL","name":"Illinois"},"geometry":{"type":"Polygon","coordinates":[[[-89.366031,42.500274],[-89.361561,42.500012],[-89.290896,42.498853],[-89.250759,42.497994],[-89.246972,42.49813],[-89.228279,42.498047],[-89.22627,42.497957],[-89.166728,42.497256],[-89.164905,42.497347],[-89.125111,42.496957],[-89.120365,42.496992],[-89.116949,42.49691],[-89.099012,42.496499],[-89.071141,42.496208],[-89.042898,42.496255],[-89.013804,42.496097],[-89.013667,42.496087],[-88.992977,42.496026],[-88.992659,42.496025],[-88.943264,42.495114],[-88.940391,42.495046],[-88.940388,42.495046],[-88.786681,42.491983],[-88.776493,42.492024],[-88.76536,42.492068],[-88.70738,42.493587],[-88.707378,42.493587],[-88.638653,42.495043],[-88.506912,42.494883],[-88.470597,42.494672],[-88.461397,42.494618],[-88.417396,42.494618],[-88.304692,42.494773],[-88.271691,42.494818],[-88.25009,42.495823],[-88.2169,42.495923],[-88.200172,42.496016],[-88.199531,42.496018],[-88.115285,42.496219],[-88.049782,42.495319],[-87.99018,42.494519],[-87.971279,42.494019],[-87.900242,42.49302],[-87.843594,42.492307],[-87.815872,42.49192],[-87.800561,42.49192],[-87.800477,42.49192],[-87.800317,42.490578],[-87.798971,42.479278],[-87.79823,42.473054],[-87.798071,42.471721],[-87.800752,42.445867],[-87.80337,42.420621],[-87.803529,42.417759],[-87.80375,42.413793],[-87.80537,42.384721],[-87.80613,42.383357],[-87.81557,42.366416],[-87.81657,42.364621],[-87.820858,42.361584],[-87.820871,42.361544],[-87.826717,42.343497],[-87.830646,42.331368],[-87.830986,42.330317],[-87.831221,42.32853],[-87.834769,42.301522],[-87.833468,42.294892],[-87.832738,42.291173],[-87.83253,42.290109],[-87.831286,42.283772],[-87.828569,42.269922],[-87.828034,42.268673],[-87.82772,42.267937],[-87.826944,42.266125],[-87.825313,42.262313],[-87.812461,42.232278],[-87.812422,42.232185],[-87.812315,42.231935],[-87.812267,42.231823],[-87.808395,42.224271],[-87.803873,42.215449],[-87.800066,42.208024],[-87.798589,42.206007],[-87.7983,42.205611],[-87.797497,42.204514],[-87.797444,42.204442],[-87.796937,42.203748],[-87.796779,42.203533],[-87.788313,42.191966],[-87.787241,42.190501],[-87.775295,42.174179],[-87.759327,42.152362],[-87.75639,42.14835],[-87.755826,42.147579],[-87.754767,42.146132],[-87.754444,42.145691],[-87.754358,42.145573],[-87.750396,42.14016],[-87.748486,42.13755],[-87.746421,42.134729],[-87.741662,42.128227],[-87.741318,42.127812],[-87.740787,42.127172],[-87.740718,42.127089],[-87.739735,42.125903],[-87.739529,42.125655],[-87.733929,42.118903],[-87.730463,42.114723],[-87.729387,42.113426],[-87.729378,42.113414],[-87.728335,42.112157],[-87.728191,42.111984],[-87.727248,42.110847],[-87.727005,42.110554],[-87.725196,42.108373],[-87.724661,42.107727],[-87.724603,42.107674],[-87.723723,42.106879],[-87.722306,42.105596],[-87.72222,42.105518],[-87.7215,42.104866],[-87.720407,42.103878],[-87.720303,42.103783],[-87.718065,42.101758],[-87.717504,42.10125],[-87.717276,42.101044],[-87.717169,42.100947],[-87.712206,42.096455],[-87.71096,42.095328],[-87.706415,42.092213],[-87.704594,42.090966],[-87.703882,42.090478],[-87.70237,42.089442],[-87.682359,42.075729],[-87.682179,42.075441],[-87.68075,42.07316],[-87.679843,42.071713],[-87.671462,42.058334],[-87.670512,42.05298],[-87.670699,42.052305],[-87.671119,42.050781],[-87.671184,42.050548],[-87.671894,42.047972],[-87.671094,42.042802],[-87.668982,42.029142],[-87.630953,41.933132],[-87.63087,41.932784],[-87.627038,41.916738],[-87.624763,41.907209],[-87.624134,41.904574],[-87.624052,41.904232],[-87.622944,41.90202],[-87.619852,41.901392],[-87.617433,41.898032],[-87.614163,41.893418],[-87.612291,41.893335],[-87.611659,41.892216],[-87.611659,41.890708],[-87.61268,41.889248],[-87.614188,41.888421],[-87.613556,41.88448],[-87.613654,41.884412],[-87.615734,41.882958],[-87.616537,41.882396],[-87.616251,41.868933],[-87.60945,41.845233],[-87.600549,41.826833],[-87.587123,41.811422],[-87.587054,41.811342],[-87.580948,41.804334],[-87.58092,41.804225],[-87.58055,41.80275],[-87.576347,41.786034],[-87.560646,41.766034],[-87.542845,41.752135],[-87.530745,41.748235],[-87.524141,41.72399],[-87.524044,41.708335],[-87.524944,41.702635],[-87.524844,41.691635],[-87.524642,41.634935],[-87.524742,41.632435],[-87.524642,41.622535],[-87.524641,41.563335],[-87.525041,41.559235],[-87.52494,41.529735],[-87.525669,41.470283],[-87.525671,41.470115],[-87.525623,41.453619],[-87.52535,41.380851],[-87.526404,41.355812],[-87.526768,41.298177],[-87.526768,41.298052],[-87.52657,41.166097],[-87.526567,41.163865],[-87.52666,41.16009],[-87.526719,41.159448],[-87.526693,41.153958],[-87.526696,41.149222],[-87.5267,41.139658],[-87.526711,41.121485],[-87.52652,41.024837],[-87.526346,41.010583],[-87.526307,41.010355],[-87.526305,41.010346],[-87.526084,40.911914],[-87.526014,40.895582],[-87.526437,40.894209],[-87.525962,40.880618],[-87.526113,40.879703],[-87.525783,40.854357],[-87.526129,40.73695],[-87.526129,40.736885],[-87.526292,40.535409],[-87.526352,40.535111],[-87.526376,40.491574],[-87.526379,40.491237],[-87.526502,40.477158],[-87.526511,40.476879],[-87.526549,40.475659],[-87.526809,40.46217],[-87.530054,40.250671],[-87.529992,40.250036],[-87.530828,40.191812],[-87.531133,40.17003],[-87.531438,40.148123],[-87.531439,40.148027],[-87.531759,40.144273],[-87.531561,40.133005],[-87.532308,40.011587],[-87.532308,40.011492],[-87.532287,40.000037],[-87.532331,39.997776],[-87.532542,39.987462],[-87.532683,39.977691],[-87.53279,39.97501],[-87.532776,39.971077],[-87.533227,39.883127],[-87.533227,39.883],[-87.533142,39.810947],[-87.533056,39.803922],[-87.533058,39.796243],[-87.533066,39.781743],[-87.532703,39.664868],[-87.532444,39.646102],[-87.532365,39.646126],[-87.532196,39.607306],[-87.532008,39.564013],[-87.531939,39.545853],[-87.531965,39.526937],[-87.531692,39.495516],[-87.531627,39.491698],[-87.531663,39.47712],[-87.531663,39.47711],[-87.531624,39.469378],[-87.531608,39.466225],[-87.531489,39.449474],[-87.531355,39.437732],[-87.531355,39.436656],[-87.531646,39.347888],[-87.544013,39.352907],[-87.5544,39.340488],[-87.578331,39.340343],[-87.589084,39.333831],[-87.600397,39.312904],[-87.597946,39.299479],[-87.597545,39.296388],[-87.61005,39.282232],[-87.605543,39.261122],[-87.604076,39.259459],[-87.593486,39.247452],[-87.583535,39.243579],[-87.579163,39.232962],[-87.574558,39.218404],[-87.577029,39.211123],[-87.588614,39.197824],[-87.620796,39.17479],[-87.640435,39.166727],[-87.642777,39.157525],[-87.64599,39.1449],[-87.643145,39.128562],[-87.632245,39.118702],[-87.632874,39.114297],[-87.632874,39.11055],[-87.632249,39.106803],[-87.630376,39.104305],[-87.625379,39.101806],[-87.619134,39.100557],[-87.61726,39.096186],[-87.616636,39.08994],[-87.613513,39.085568],[-87.608517,39.082445],[-87.596373,39.079639],[-87.572588,39.057286],[-87.575027,39.034062],[-87.569696,39.019413],[-87.579117,39.001607],[-87.578319,38.988786],[-87.529496,38.971925],[-87.512187,38.954417],[-87.518826,38.923205],[-87.527645,38.907688],[-87.544089,38.895093],[-87.54737,38.875614],[-87.553384,38.863344],[-87.550515,38.85956],[-87.534355,38.852495],[-87.525893,38.848795],[-87.521681,38.826576],[-87.527342,38.818121],[-87.496537,38.778571],[-87.498948,38.757774],[-87.496494,38.742728],[-87.516707,38.716333],[-87.519609,38.697198],[-87.531231,38.684036],[-87.545538,38.677613],[-87.593678,38.667402],[-87.62012,38.639489],[-87.622375,38.618873],[-87.627348,38.60544],[-87.624143,38.596955],[-87.62389,38.593984],[-87.626444,38.591066],[-87.629362,38.589971],[-87.637752,38.588512],[-87.651529,38.568166],[-87.650704,38.55624],[-87.660732,38.541092],[-87.65578,38.521206],[-87.653802,38.517382],[-87.654166,38.511911],[-87.657084,38.507169],[-87.663701,38.502931],[-87.678374,38.498438],[-87.693188,38.488038],[-87.714047,38.47988],[-87.730768,38.478717],[-87.739522,38.475069],[-87.743535,38.467774],[-87.74317,38.459019],[-87.735729,38.452986],[-87.730134,38.446518],[-87.730699,38.442908],[-87.74104,38.435576],[-87.744382,38.414497],[-87.745254,38.408996],[-87.779996,38.370842],[-87.806075,38.363143],[-87.822721,38.346912],[-87.832723,38.324853],[-87.831972,38.307241],[-87.833757,38.299133],[-87.838243,38.29375],[-87.844972,38.29061],[-87.853046,38.289264],[-87.860224,38.291507],[-87.868747,38.299133],[-87.875476,38.301376],[-87.88041,38.299581],[-87.883102,38.293301],[-87.887849,38.285299],[-87.898802,38.276255],[-87.908223,38.274012],[-87.913606,38.276703],[-87.916746,38.284778],[-87.92168,38.289712],[-87.928858,38.292404],[-87.938727,38.289264],[-87.952125,38.273763],[-87.951277,38.26875],[-87.945904,38.256966],[-87.950838,38.247097],[-87.960225,38.237118],[-87.968968,38.237389],[-87.972321,38.235008],[-87.975511,38.232742],[-87.977746,38.230258],[-87.979548,38.228256],[-87.982688,38.221527],[-87.984234,38.20996],[-87.975819,38.197834],[-87.9595,38.184376],[-87.937162,38.172189],[-87.928858,38.168594],[-87.922577,38.160071],[-87.92168,38.148407],[-87.945472,38.126616],[-87.974272,38.121981],[-87.990763,38.110726],[-87.999734,38.100857],[-87.998389,38.090091],[-87.9948,38.083362],[-87.986725,38.076185],[-87.984931,38.069008],[-87.990314,38.056447],[-88.009603,38.04927],[-88.020369,38.046578],[-88.025304,38.038055],[-88.02979,38.025046],[-88.025831,38.007245],[-88.012574,37.977062],[-88.012929,37.966544],[-88.036124,37.942746],[-88.044145,37.926805],[-88.037416,37.913348],[-88.031584,37.901685],[-88.033378,37.894059],[-88.043247,37.88733],[-88.050425,37.882844],[-88.054462,37.877461],[-88.055251,37.875569],[-88.056705,37.872078],[-88.058499,37.865349],[-88.056705,37.85548],[-88.053116,37.847854],[-88.04863,37.843817],[-88.044593,37.840677],[-88.043247,37.836639],[-88.044145,37.830808],[-88.049079,37.826322],[-88.050425,37.822285],[-88.051771,37.817799],[-88.051771,37.813761],[-88.049528,37.81107],[-88.045939,37.807481],[-88.039105,37.805789],[-88.029382,37.803601],[-88.02803,37.799224],[-88.032438,37.796361],[-88.035827,37.791917],[-88.038769,37.784307],[-88.040206,37.775957],[-88.040873,37.772082],[-88.042602,37.76712],[-88.049942,37.754078],[-88.059588,37.742608],[-88.063802,37.738645],[-88.072538,37.733286],[-88.081925,37.730389],[-88.085901,37.728587],[-88.095759,37.723205],[-88.101844,37.718036],[-88.107088,37.715915],[-88.117803,37.712583],[-88.122412,37.709685],[-88.125033,37.707094],[-88.132341,37.697142],[-88.134282,37.691498],[-88.145434,37.68259],[-88.151646,37.675098],[-88.158207,37.664542],[-88.159372,37.661847],[-88.160187,37.657592],[-88.160062,37.654332],[-88.15864,37.649097],[-88.158374,37.639948],[-88.156827,37.632801],[-88.152691,37.622827],[-88.142225,37.603737],[-88.140752,37.599158],[-88.140226,37.595263],[-88.14094,37.590865],[-88.139973,37.586451],[-88.136164,37.580285],[-88.13341,37.574273],[-88.133393,37.574235],[-88.131622,37.572968],[-88.121517,37.568166],[-88.11433,37.562189],[-88.105585,37.55618],[-88.101174,37.55133],[-88.092814,37.539637],[-88.088049,37.535124],[-88.086194,37.534186],[-88.078046,37.532029],[-88.072242,37.528826],[-88.069018,37.525297],[-88.063311,37.515755],[-88.062568,37.513563],[-88.062828,37.508123],[-88.061342,37.505327],[-88.061292,37.505232],[-88.062563,37.495951],[-88.064115,37.492013],[-88.06295,37.489385],[-88.062174,37.489057],[-88.062294,37.487837],[-88.064234,37.484548],[-88.067728,37.481593],[-88.068504,37.481921],[-88.072386,37.483563],[-88.077987,37.480146],[-88.084171,37.472699],[-88.087664,37.471059],[-88.09038,37.471059],[-88.091156,37.471715],[-88.091156,37.472699],[-88.095818,37.473025],[-88.109417,37.472369],[-88.12801,37.470507],[-88.132628,37.471555],[-88.135142,37.471626],[-88.157061,37.466937],[-88.171764,37.465612],[-88.175283,37.46379],[-88.188615,37.461896],[-88.206923,37.460188],[-88.225012,37.45739],[-88.237784,37.456811],[-88.255193,37.456748],[-88.281667,37.452596],[-88.297821,37.446816],[-88.312585,37.440591],[-88.317525,37.436178],[-88.321199,37.434705],[-88.330622,37.429316],[-88.333183,37.42721],[-88.348405,37.410726],[-88.358436,37.40486],[-88.358506,37.404817],[-88.361557,37.402931],[-88.365471,37.401663],[-88.371214,37.40273],[-88.373445,37.404342],[-88.377507,37.409825],[-88.387669,37.416482],[-88.39734,37.421644],[-88.404127,37.424146],[-88.408808,37.425216],[-88.413108,37.424468],[-88.414882,37.423666],[-88.418594,37.421987],[-88.425981,37.419441],[-88.433182,37.418169],[-88.439333,37.416416],[-88.450127,37.411717],[-88.456,37.408482],[-88.465861,37.400547],[-88.470224,37.396255],[-88.476592,37.386875],[-88.478523,37.375052],[-88.482113,37.364615],[-88.482612,37.354915],[-88.484462,37.345609],[-88.486947,37.339596],[-88.49031,37.335042],[-88.494137,37.327689],[-88.500566,37.317822],[-88.505087,37.307858],[-88.508657,37.303353],[-88.511497,37.298527],[-88.514661,37.290948],[-88.515939,37.284043],[-88.509587,37.273398],[-88.506942,37.266656],[-88.509328,37.26213],[-88.508031,37.260261],[-88.500777,37.253579],[-88.492383,37.248445],[-88.487277,37.244077],[-88.484982,37.240774],[-88.47973,37.229606],[-88.478179,37.227251],[-88.471753,37.220155],[-88.466981,37.217026],[-88.458763,37.213536],[-88.450653,37.207046],[-88.447764,37.203527],[-88.441956,37.189036],[-88.439527,37.18174],[-88.437781,37.180007],[-88.433454,37.165871],[-88.433782,37.16407],[-88.431488,37.160298],[-88.429906,37.158668],[-88.428097,37.157758],[-88.424403,37.152428],[-88.424776,37.149901],[-88.434701,37.126424],[-88.435829,37.125055],[-88.443538,37.109192],[-88.443538,37.108517],[-88.442743,37.107842],[-88.444605,37.098601],[-88.458948,37.073796],[-88.476127,37.068223],[-88.482856,37.067114],[-88.490068,37.067874],[-88.490276,37.067836],[-88.504437,37.065265],[-88.514356,37.065231],[-88.521436,37.065584],[-88.531576,37.067192],[-88.545403,37.070003],[-88.560032,37.07601],[-88.563845,37.078542],[-88.569375,37.082213],[-88.576718,37.085852],[-88.581635,37.090567],[-88.589207,37.099655],[-88.593922,37.101761],[-88.601144,37.107081],[-88.61144,37.112745],[-88.625889,37.119458],[-88.630605,37.121003],[-88.637977,37.121309],[-88.644872,37.122844],[-88.687767,37.139378],[-88.693983,37.141155],[-88.702553,37.142646],[-88.720224,37.140641],[-88.72344,37.141194],[-88.732105,37.143956],[-88.737937,37.146513],[-88.746065,37.151564],[-88.753068,37.154701],[-88.765357,37.162662],[-88.77595,37.16878],[-88.779466,37.172495],[-88.786947,37.178584],[-88.797373,37.184854],[-88.80572,37.188595],[-88.820935,37.192203],[-88.835051,37.196486],[-88.86953,37.209711],[-88.902841,37.219299],[-88.916934,37.224291],[-88.920878,37.224769],[-88.928019,37.226625],[-88.931745,37.227593],[-88.933077,37.227749],[-88.942111,37.228811],[-88.966831,37.229891],[-88.98326,37.228685],[-89.000968,37.224401],[-89.008532,37.220583],[-89.00592,37.221198],[-89.014003,37.21609],[-89.029981,37.211144],[-89.037568,37.203932],[-89.041263,37.202881],[-89.058036,37.188767],[-89.076221,37.175125],[-89.086526,37.165602],[-89.092934,37.156439],[-89.095753,37.150391],[-89.096669,37.1462],[-89.099047,37.140967],[-89.111189,37.119052],[-89.115579,37.115781],[-89.120465,37.113487],[-89.12202,37.111342],[-89.125072,37.108813],[-89.134931,37.103278],[-89.135847,37.102197],[-89.138231,37.096906],[-89.14132,37.093865],[-89.146596,37.090714],[-89.149797,37.089828],[-89.151294,37.090487],[-89.154504,37.088907],[-89.168087,37.074218],[-89.171881,37.068184],[-89.175725,37.062069],[-89.179384,37.053012],[-89.181369,37.046305],[-89.182509,37.037275],[-89.180849,37.026843],[-89.178975,37.020928],[-89.173595,37.011409],[-89.17112,37.008072],[-89.166447,37.003337],[-89.160667,37.000051],[-89.138437,36.985089],[-89.132685,36.9822],[-89.140814,36.979416],[-89.14411,36.979133],[-89.149882,36.977636],[-89.161767,36.972768],[-89.170008,36.970298],[-89.177235,36.970885],[-89.185491,36.973518],[-89.192097,36.979995],[-89.195039,36.989768],[-89.195029,37.000051],[-89.198488,37.011723],[-89.200793,37.016164],[-89.205038,37.020047],[-89.225482,37.031077],[-89.234053,37.037277],[-89.238253,37.042853],[-89.245648,37.057783],[-89.25493,37.072014],[-89.259936,37.064071],[-89.264484,37.064814],[-89.280375,37.065224],[-89.283488,37.065811],[-89.283685,37.066736],[-89.294036,37.067345],[-89.307726,37.069654],[-89.30829,37.068371],[-89.310819,37.057897],[-89.309401,37.053769],[-89.307397,37.050432],[-89.304752,37.047565],[-89.301368,37.044982],[-89.291185,37.040408],[-89.277715,37.03614],[-89.266286,37.028683],[-89.260003,37.023288],[-89.257608,37.015496],[-89.263527,37.00005],[-89.266242,36.996302],[-89.269564,36.993401],[-89.274198,36.990495],[-89.278628,36.98867],[-89.29213,36.992189],[-89.312642,37.009047],[-89.317168,37.012767],[-89.322982,37.01609],[-89.331164,37.019936],[-89.345996,37.025521],[-89.362397,37.030156],[-89.378277,37.039605],[-89.381644,37.04301],[-89.383937,37.046441],[-89.384681,37.048251],[-89.385434,37.05513],[-89.385186,37.057748],[-89.378889,37.070499],[-89.375712,37.080505],[-89.375615,37.085936],[-89.37871,37.094586],[-89.384175,37.103267],[-89.38805,37.107481],[-89.393427,37.111197],[-89.407451,37.119307],[-89.41173,37.122507],[-89.414471,37.12505],[-89.42558,37.138235],[-89.435202,37.15209],[-89.438275,37.161287],[-89.456105,37.18812],[-89.461862,37.199517],[-89.462676,37.203351],[-89.467631,37.2182],[-89.4675,37.221844],[-89.458302,37.240368],[-89.457832,37.242594],[-89.458246,37.247066],[-89.458827,37.248661],[-89.460692,37.250577],[-89.46266,37.25152],[-89.470525,37.253357],[-89.479205,37.253052],[-89.488728,37.251507],[-89.489915,37.251315],[-89.496386,37.258474],[-89.502303,37.263738],[-89.506773,37.268537],[-89.513905,37.277164],[-89.517032,37.28192],[-89.51834,37.285497],[-89.518393,37.289354],[-89.517692,37.29204],[-89.515741,37.295362],[-89.514605,37.299323],[-89.514042,37.303776],[-89.511842,37.310825],[-89.509699,37.31426],[-89.508174,37.315662],[-89.49909,37.32149],[-89.49516,37.324795],[-89.491194,37.331361],[-89.489005,37.333368],[-89.48593,37.334829],[-89.484211,37.335646],[-89.474569,37.338165],[-89.454723,37.339283],[-89.447556,37.340475],[-89.43604,37.344441],[-89.432836,37.347056],[-89.429738,37.351956],[-89.428185,37.356158],[-89.422037,37.38053],[-89.421054,37.387668],[-89.42132,37.392077],[-89.422465,37.397132],[-89.42594,37.407471],[-89.43413,37.426847],[-89.439769,37.4372],[-89.443493,37.442129],[-89.450969,37.450069],[-89.471201,37.466473],[-89.475525,37.471388],[-89.492051,37.494008],[-89.497689,37.504948],[-89.500231,37.512954],[-89.502917,37.51787],[-89.507459,37.524322],[-89.5124,37.52981],[-89.516447,37.535558],[-89.517051,37.537278],[-89.521093,37.553805],[-89.521925,37.560735],[-89.52173,37.56621],[-89.521517,37.572152],[-89.521274,37.578971],[-89.520804,37.581155],[-89.519808,37.582748],[-89.516538,37.584504],[-89.513943,37.584815],[-89.509542,37.584147],[-89.494051,37.580116],[-89.486062,37.580853],[-89.481118,37.582973],[-89.477548,37.585885],[-89.47603,37.590226],[-89.475932,37.592998],[-89.476514,37.595554],[-89.478399,37.598869],[-89.485792,37.607157],[-89.506563,37.62505],[-89.510526,37.631755],[-89.515649,37.636446],[-89.517718,37.641217],[-89.517136,37.643789],[-89.51586,37.645555],[-89.515903,37.650803],[-89.516827,37.656089],[-89.516146,37.667975],[-89.513927,37.676575],[-89.51204,37.680985],[-89.512009,37.685525],[-89.514255,37.689923],[-89.516685,37.692762],[-89.521948,37.696475],[-89.52573,37.698441],[-89.531427,37.700334],[-89.538652,37.701054],[-89.566704,37.707189],[-89.573516,37.709065],[-89.583316,37.713261],[-89.587213,37.71751],[-89.591289,37.723599],[-89.596566,37.732886],[-89.602406,37.736492],[-89.608757,37.739684],[-89.612478,37.740036],[-89.615586,37.74235],[-89.616194,37.744283],[-89.615933,37.748184],[-89.616389,37.749167],[-89.617278,37.74972],[-89.624023,37.74912],[-89.62801,37.748135],[-89.63337,37.745782],[-89.645429,37.746108],[-89.64953,37.745498],[-89.658455,37.74771],[-89.663352,37.750052],[-89.665546,37.752095],[-89.667993,37.759484],[-89.666474,37.764195],[-89.66413,37.76851],[-89.66119,37.775732],[-89.660227,37.781032],[-89.66038,37.786296],[-89.66132,37.788204],[-89.663982,37.790801],[-89.669644,37.799922],[-89.67439,37.802989],[-89.677605,37.805066],[-89.68285,37.807789],[-89.696559,37.814337],[-89.702844,37.816812],[-89.71748,37.825724],[-89.729426,37.835081],[-89.732737,37.838507],[-89.736439,37.843494],[-89.739873,37.84693],[-89.749961,37.846984],[-89.754104,37.846358],[-89.757363,37.847613],[-89.761992,37.850657],[-89.765222,37.851782],[-89.774306,37.852123],[-89.779828,37.853896],[-89.782035,37.855092],[-89.786369,37.851734],[-89.793718,37.857054],[-89.796087,37.859505],[-89.80036,37.868625],[-89.799835,37.871367],[-89.797678,37.874202],[-89.798041,37.879655],[-89.799333,37.881517],[-89.803913,37.882985],[-89.813647,37.88771],[-89.836254,37.901802],[-89.842649,37.905196],[-89.844786,37.905572],[-89.851048,37.90398],[-89.862949,37.896906],[-89.866988,37.893519],[-89.876594,37.883294],[-89.881475,37.879591],[-89.897301,37.871605],[-89.901832,37.869822],[-89.913317,37.869641],[-89.923185,37.870672],[-89.937383,37.874693],[-89.938191,37.875111],[-89.950594,37.881526],[-89.952499,37.883218],[-89.971649,37.91526],[-89.973642,37.917661],[-89.974221,37.919217],[-89.974918,37.926719],[-89.968365,37.931456],[-89.962273,37.934363],[-89.959646,37.940196],[-89.947429,37.940336],[-89.937927,37.946193],[-89.932467,37.947497],[-89.925389,37.95413],[-89.924811,37.955823],[-89.925085,37.960021],[-89.933797,37.959143],[-89.935886,37.959581],[-89.93693,37.961042],[-89.93774,37.964994],[-89.942099,37.970121],[-89.95491,37.966647],[-89.978919,37.962791],[-89.986296,37.962198],[-89.997103,37.963225],[-90.00011,37.964563],[-90.008353,37.970179],[-90.03241,37.995258],[-90.045908,38.000052],[-90.049106,38.001715],[-90.051357,38.003584],[-90.052883,38.005907],[-90.053541,38.00844],[-90.055399,38.011953],[-90.057269,38.014362],[-90.059367,38.015543],[-90.065045,38.016875],[-90.072283,38.017001],[-90.080959,38.015428],[-90.08826,38.015772],[-90.093774,38.017833],[-90.11052,38.026547],[-90.117423,38.031708],[-90.126194,38.040702],[-90.126612,38.043981],[-90.126006,38.05057],[-90.126396,38.054897],[-90.128159,38.059644],[-90.130788,38.062341],[-90.144553,38.069023],[-90.158533,38.074735],[-90.161562,38.07489],[-90.163411,38.074347],[-90.17222,38.069636],[-90.206684,38.087969],[-90.218708,38.094365],[-90.243116,38.112669],[-90.250118,38.125054],[-90.252484,38.127571],[-90.252665,38.127813],[-90.274928,38.157615],[-90.283091,38.164447],[-90.290765,38.170453],[-90.30049,38.175246],[-90.31063,38.178572],[-90.316839,38.179456],[-90.322353,38.181593],[-90.331554,38.18758],[-90.334258,38.189932],[-90.353902,38.213855],[-90.356176,38.217501],[-90.359559,38.224525],[-90.363926,38.236355],[-90.367013,38.250054],[-90.367764,38.255807],[-90.370892,38.267441],[-90.371869,38.273926],[-90.373929,38.281853],[-90.373819,38.294454],[-90.371719,38.304354],[-90.372519,38.323354],[-90.370819,38.333554],[-90.368219,38.340254],[-90.356318,38.360354],[-90.349743,38.377609],[-90.346118,38.381853],[-90.343118,38.385453],[-90.340757,38.387506],[-90.328517,38.398153],[-90.322317,38.401753],[-90.295316,38.426753],[-90.288815,38.438453],[-90.285215,38.443453],[-90.284015,38.451053],[-90.279215,38.472453],[-90.275915,38.479553],[-90.274914,38.486253],[-90.271314,38.496052],[-90.268814,38.506152],[-90.263814,38.520552],[-90.263723,38.520755],[-90.260314,38.528352],[-90.257773,38.532008],[-90.248913,38.544752],[-90.224212,38.575051],[-90.222112,38.576451],[-90.216712,38.578751],[-90.210111,38.583951],[-90.202511,38.588651],[-90.196011,38.594451],[-90.191811,38.598951],[-90.18451,38.611551],[-90.182443,38.617932],[-90.17881,38.62915],[-90.17801,38.63375],[-90.17771,38.64275],[-90.18111,38.65955],[-90.181325,38.660381],[-90.18261,38.66535],[-90.18641,38.67475],[-90.19521,38.68755],[-90.20221,38.69345],[-90.20921,38.70275],[-90.21201,38.71175],[-90.21191,38.71795],[-90.21141,38.72135],[-90.20991,38.72605],[-90.20521,38.73215],[-90.191309,38.742949],[-90.183409,38.746849],[-90.176309,38.754449],[-90.175109,38.760249],[-90.171309,38.766549],[-90.166409,38.772649],[-90.146708,38.783049],[-90.123107,38.798048],[-90.117707,38.805748],[-90.114707,38.815048],[-90.109107,38.837448],[-90.109407,38.843548],[-90.113327,38.849306],[-90.151508,38.867148],[-90.166409,38.876348],[-90.186909,38.885048],[-90.190309,38.886248],[-90.19521,38.886748],[-90.19761,38.887648],[-90.209221,38.896994],[-90.213519,38.900454],[-90.223041,38.907389],[-90.230336,38.91086],[-90.241703,38.914828],[-90.250248,38.919344],[-90.254033,38.920489],[-90.256993,38.920763],[-90.262792,38.920344],[-90.269872,38.922556],[-90.275825,38.923465],[-90.277471,38.923716],[-90.283712,38.924048],[-90.298711,38.923395],[-90.306113,38.923525],[-90.309454,38.92412],[-90.317572,38.927912],[-90.324179,38.929827],[-90.333533,38.933489],[-90.346442,38.94079],[-90.383126,38.955453],[-90.385768,38.956408],[-90.395816,38.960037],[-90.406367,38.962554],[-90.413108,38.96333],[-90.424726,38.963785],[-90.433745,38.965526],[-90.440078,38.967364],[-90.450792,38.967764],[-90.45081,38.967759],[-90.462411,38.964322],[-90.467784,38.961809],[-90.472122,38.958838],[-90.482419,38.94446],[-90.483339,38.942133],[-90.483452,38.940436],[-90.482725,38.934712],[-90.486974,38.925982],[-90.500117,38.910408],[-90.507451,38.902767],[-90.516963,38.898818],[-90.531118,38.887078],[-90.54403,38.87505],[-90.545872,38.874008],[-90.555693,38.870785],[-90.566557,38.868847],[-90.576719,38.868336],[-90.583388,38.86903],[-90.595354,38.87505],[-90.625122,38.888654],[-90.628485,38.891617],[-90.635896,38.903941],[-90.639917,38.908272],[-90.647988,38.912106],[-90.653164,38.916141],[-90.657254,38.92027],[-90.6614,38.924989],[-90.663372,38.928042],[-90.665565,38.934179],[-90.66557,38.934198],[-90.669229,38.948176],[-90.671844,38.952296],[-90.675949,38.96214],[-90.676417,38.965812],[-90.676397,38.984096],[-90.678193,38.991851],[-90.682068,38.998778],[-90.683683,39.000049],[-90.687719,39.005374],[-90.688813,39.007342],[-90.69,39.012169],[-90.692403,39.016656],[-90.700595,39.029074],[-90.707885,39.042262],[-90.71158,39.046798],[-90.713629,39.053977],[-90.713585,39.055567],[-90.712541,39.057064],[-90.702136,39.065568],[-90.701187,39.070408],[-90.700424,39.071787],[-90.682744,39.088348],[-90.681994,39.090066],[-90.681086,39.10059],[-90.684518,39.113567],[-90.686051,39.117785],[-90.694945,39.12968],[-90.700464,39.135439],[-90.702923,39.138749],[-90.705168,39.143152],[-90.707902,39.15086],[-90.709146,39.155111],[-90.709953,39.172924],[-90.71048,39.176366],[-90.71437,39.185308],[-90.717404,39.197414],[-90.717427,39.202791],[-90.716677,39.206723],[-90.716597,39.210414],[-90.717113,39.213912],[-90.721835,39.224108],[-90.721188,39.230176],[-90.721593,39.23273],[-90.726981,39.251173],[-90.72996,39.255894],[-90.733976,39.259098],[-90.739087,39.261893],[-90.748877,39.264126],[-90.751599,39.265432],[-90.767648,39.280025],[-90.773887,39.290544],[-90.775673,39.292811],[-90.783789,39.297164],[-90.790675,39.302908],[-90.791689,39.306957],[-90.793461,39.309498],[-90.799346,39.313087],[-90.816851,39.320496],[-90.821306,39.323659],[-90.840106,39.340438],[-90.8475,39.345272],[-90.859113,39.35137],[-90.893777,39.367343],[-90.900095,39.372354],[-90.902656,39.375366],[-90.902905,39.377534],[-90.904862,39.379403],[-90.907999,39.380812],[-90.914658,39.381956],[-90.920976,39.383687],[-90.924601,39.385136],[-90.928745,39.387544],[-90.934007,39.392127],[-90.935729,39.397331],[-90.936778,39.399487],[-90.937419,39.400803],[-90.939025,39.402744],[-90.940766,39.403984],[-90.948299,39.407502],[-90.957459,39.408996],[-90.96748,39.411948],[-90.972465,39.414144],[-90.977618,39.41829],[-90.98302,39.420462],[-90.993789,39.422959],[-91.003692,39.427603],[-91.011954,39.432661],[-91.02361,39.438694],[-91.03827,39.448436],[-91.053058,39.462122],[-91.059439,39.46886],[-91.062414,39.474122],[-91.064305,39.494643],[-91.075309,39.502845],[-91.079769,39.507728],[-91.086292,39.517141],[-91.092869,39.529275],[-91.100307,39.538695],[-91.114305,39.541098],[-91.126638,39.542227],[-91.148275,39.545798],[-91.153628,39.548248],[-91.158606,39.553048],[-91.163634,39.558566],[-91.168419,39.564928],[-91.16982,39.569555],[-91.171641,39.581899],[-91.174232,39.591975],[-91.174651,39.593313],[-91.178012,39.598196],[-91.181936,39.602677],[-91.185921,39.605119],[-91.21664,39.615124],[-91.223328,39.617603],[-91.229317,39.620853],[-91.241225,39.630067],[-91.24356,39.633064],[-91.245914,39.637311],[-91.248779,39.64088],[-91.260475,39.649024],[-91.266765,39.656993],[-91.27614,39.665759],[-91.283329,39.670134],[-91.293788,39.674766],[-91.302485,39.679631],[-91.305348,39.683957],[-91.306682,39.684881],[-91.317814,39.692591],[-91.331603,39.700433],[-91.3453,39.709402],[-91.352749,39.715279],[-91.367753,39.729029],[-91.370009,39.732524],[-91.369953,39.745042],[-91.367406,39.75388],[-91.366047,39.755955],[-91.365125,39.758723],[-91.365906,39.764956],[-91.365694,39.77491],[-91.364848,39.779388],[-91.361744,39.785079],[-91.361571,39.787548],[-91.363444,39.792804],[-91.367966,39.800403],[-91.375148,39.80886],[-91.377971,39.811273],[-91.385773,39.815553],[-91.397853,39.821122],[-91.406223,39.826472],[-91.414513,39.829984],[-91.429519,39.837801],[-91.432919,39.840554],[-91.436051,39.84551],[-91.446385,39.870394],[-91.447844,39.877951],[-91.446922,39.883034],[-91.443513,39.893583],[-91.428956,39.907729],[-91.420878,39.914865],[-91.41988,39.916533],[-91.418807,39.922126],[-91.41936,39.927717],[-91.421832,39.932973],[-91.425782,39.937765],[-91.429055,39.940741],[-91.435478,39.945278],[-91.43709,39.946417],[-91.44156,39.951299],[-91.447236,39.959502],[-91.449806,39.965278],[-91.454647,39.971306],[-91.458852,39.979015],[-91.459533,39.979892],[-91.463683,39.981845],[-91.465315,39.983995],[-91.466682,39.987253],[-91.467294,39.990631],[-91.469247,39.995327],[-91.477298,40.008993],[-91.484064,40.019332],[-91.487351,40.023201],[-91.494878,40.036453],[-91.489606,40.057435],[-91.495365,40.070951],[-91.497663,40.078257],[-91.500823,40.090956],[-91.506006,40.108126],[-91.509245,40.121876],[-91.510322,40.127994],[-91.511749,40.147091],[-91.51159,40.149269],[-91.508324,40.156326],[-91.508224,40.157665],[-91.511956,40.170441],[-91.513079,40.178537],[-91.512974,40.181062],[-91.511073,40.188794],[-91.509551,40.191338],[-91.505495,40.195606],[-91.504477,40.198262],[-91.505225,40.200485],[-91.506664,40.204758],[-91.507269,40.209338],[-91.506947,40.21555],[-91.504282,40.224299],[-91.504289,40.231712],[-91.505968,40.234305],[-91.506501,40.236304],[-91.505828,40.238839],[-91.503231,40.243474],[-91.500855,40.245722],[-91.498104,40.247422],[-91.497263,40.248761],[-91.490524,40.259498],[-91.489969,40.26234],[-91.490525,40.264814],[-91.492891,40.269923],[-91.493061,40.275262],[-91.492727,40.278217],[-91.489868,40.286048],[-91.486078,40.293426],[-91.471826,40.31734],[-91.469656,40.322409],[-91.466603,40.334461],[-91.46214,40.342414],[-91.452237,40.35367],[-91.447835,40.359129],[-91.446308,40.361823],[-91.444833,40.36317],[-91.439342,40.366569],[-91.429442,40.370386],[-91.426632,40.371988],[-91.419422,40.378264],[-91.415695,40.381381],[-91.413011,40.382277],[-91.396996,40.383127],[-91.38836,40.384929],[-91.381958,40.387632],[-91.378422,40.38967],[-91.375746,40.391879],[-91.372921,40.399108],[-91.372554,40.4012],[-91.37245,40.411475],[-91.373721,40.417891],[-91.377625,40.426335],[-91.380965,40.435395],[-91.381769,40.442555],[-91.381468,40.44604],[-91.379907,40.45211],[-91.378144,40.456394],[-91.368074,40.474642],[-91.364915,40.484168],[-91.36391,40.490122],[-91.363683,40.494211],[-91.364211,40.500043],[-91.367876,40.510479],[-91.369059,40.512532],[-91.381857,40.528247],[-91.384531,40.530948],[-91.388067,40.533069],[-91.394475,40.534543],[-91.400725,40.536789],[-91.404125,40.539127],[-91.406202,40.542698],[-91.406851,40.547557],[-91.406373,40.551831],[-91.405241,40.554641],[-91.401482,40.559458],[-91.379752,40.57445],[-91.374252,40.58259],[-91.359873,40.601805],[-91.353989,40.606553],[-91.348733,40.609695],[-91.339719,40.613488],[-91.306524,40.626231],[-91.276175,40.63224],[-91.264953,40.633893],[-91.258249,40.636672],[-91.253074,40.637962],[-91.247851,40.63839],[-91.218437,40.638437],[-91.197906,40.636107],[-91.18698,40.637297],[-91.185428,40.638071],[-91.154293,40.653596],[-91.138055,40.660893],[-91.123928,40.669152],[-91.122421,40.670675],[-91.12082,40.672777],[-91.119632,40.675892],[-91.115407,40.691825],[-91.112434,40.696279],[-91.11194,40.697018],[-91.110927,40.703262],[-91.111095,40.708282],[-91.113885,40.719532],[-91.115158,40.721895],[-91.115735,40.725168],[-91.110424,40.745528],[-91.1082,40.750935],[-91.102486,40.757076],[-91.098105,40.763233],[-91.096133,40.767134],[-91.091703,40.779708],[-91.091246,40.786724],[-91.092256,40.792909],[-91.097031,40.802471],[-91.097649,40.805575],[-91.096846,40.811617],[-91.092993,40.821079],[-91.090072,40.824638],[-91.077521,40.833405],[-91.067159,40.841997],[-91.058749,40.846309],[-91.05643,40.848387],[-91.050241,40.858514],[-91.047344,40.864654],[-91.044653,40.868356],[-91.039097,40.873565],[-91.036789,40.875038],[-91.027489,40.879173],[-91.021562,40.884021],[-91.01324,40.896622],[-91.009536,40.900565],[-91.003536,40.905146],[-90.9985,40.90812],[-90.985462,40.912141],[-90.97919,40.915522],[-90.968995,40.919127],[-90.965344,40.921633],[-90.962916,40.924957],[-90.960462,40.936356],[-90.952233,40.954047],[-90.951967,40.958238],[-90.952715,40.962087],[-90.955111,40.969858],[-90.958089,40.976643],[-90.958142,40.979767],[-90.955201,40.986805],[-90.949634,40.995248],[-90.945949,41.006495],[-90.945054,41.011917],[-90.945324,41.019279],[-90.942253,41.034702],[-90.94232,41.038472],[-90.943652,41.048637],[-90.944577,41.052255],[-90.945549,41.06173],[-90.94899,41.07025],[-90.949136,41.070611],[-90.949383,41.07271],[-90.949383,41.072711],[-90.948207,41.084413],[-90.946259,41.094734],[-90.946627,41.096632],[-90.957246,41.111085],[-90.965905,41.119559],[-90.970851,41.130107],[-90.981311,41.142659],[-90.989663,41.155716],[-90.99496,41.160624],[-90.997906,41.162564],[-91.007586,41.166183],[-91.012557,41.165922],[-91.027214,41.163373],[-91.030029,41.16354],[-91.041536,41.166138],[-91.055069,41.185766],[-91.065899,41.199517],[-91.07298,41.207151],[-91.081445,41.214429],[-91.093018,41.222635],[-91.100829,41.230532],[-91.109562,41.236567],[-91.112333,41.239003],[-91.113648,41.241401],[-91.114186,41.250029],[-91.110304,41.256088],[-91.104462,41.262104],[-91.101142,41.267169],[-91.092034,41.286911],[-91.08688,41.294371],[-91.077505,41.301828],[-91.074841,41.305578],[-91.073233,41.31344],[-91.071956,41.333358],[-91.071941,41.333592],[-91.071552,41.339651],[-91.06652,41.365246],[-91.065058,41.369101],[-91.05158,41.385283],[-91.05101,41.387556],[-91.050328,41.400049],[-91.047819,41.4109],[-91.04589,41.414085],[-91.043988,41.415897],[-91.039872,41.418523],[-91.037131,41.420017],[-91.027787,41.423603],[-91.01198,41.425024],[-91.005846,41.426135],[-90.984898,41.433869],[-90.979815,41.434321],[-90.975168,41.433985],[-90.966662,41.430051],[-90.953198,41.425075],[-90.949791,41.424163],[-90.930016,41.421404],[-90.924343,41.42286],[-90.919351,41.425589],[-90.900471,41.431154],[-90.890787,41.435432],[-90.879778,41.441065],[-90.867282,41.448215],[-90.857554,41.452751],[-90.853604,41.453909],[-90.846558,41.455141],[-90.837414,41.455623],[-90.824736,41.454467],[-90.807283,41.454466],[-90.786282,41.452888],[-90.777583,41.451261],[-90.771672,41.450761],[-90.750142,41.449632],[-90.737537,41.450127],[-90.723545,41.452248],[-90.701159,41.454743],[-90.690951,41.456643],[-90.676439,41.460832],[-90.666239,41.460632],[-90.655839,41.462132],[-90.650238,41.465032],[-90.640238,41.473332],[-90.632538,41.478732],[-90.618537,41.485032],[-90.605937,41.494232],[-90.604237,41.497032],[-90.602137,41.506032],[-90.595237,41.511032],[-90.591037,41.512832],[-90.582036,41.515132],[-90.571136,41.516332],[-90.567236,41.517532],[-90.556235,41.524232],[-90.540935,41.526133],[-90.533035,41.524933],[-90.513134,41.519533],[-90.500633,41.518033],[-90.489933,41.518233],[-90.474332,41.519733],[-90.461432,41.523533],[-90.445231,41.536133],[-90.438431,41.544133],[-90.432731,41.549533],[-90.427231,41.551533],[-90.42223,41.554233],[-90.41583,41.562933],[-90.41283,41.565333],[-90.39793,41.572233],[-90.381329,41.576633],[-90.364128,41.579633],[-90.343228,41.587833],[-90.341528,41.590633],[-90.339528,41.598633],[-90.34333,41.640855],[-90.343452,41.646959],[-90.336729,41.664532],[-90.334525,41.679559],[-90.332481,41.682146],[-90.330222,41.683954],[-90.319924,41.689721],[-90.317315,41.69167],[-90.314687,41.69483],[-90.313435,41.698082],[-90.31277,41.702426],[-90.312893,41.707528],[-90.31332,41.709494],[-90.317421,41.718333],[-90.317668,41.72269],[-90.316358,41.728885],[-90.31522,41.734264],[-90.310708,41.742214],[-90.302782,41.750031],[-90.278633,41.767358],[-90.263286,41.772112],[-90.258622,41.775295],[-90.248631,41.779805],[-90.24238,41.782965],[-90.222263,41.793133],[-90.216889,41.795335],[-90.208467,41.797615],[-90.187969,41.803163],[-90.181973,41.80707],[-90.180954,41.809354],[-90.180643,41.811979],[-90.18172,41.822599],[-90.183973,41.83307],[-90.183765,41.83624],[-90.181901,41.843216],[-90.181401,41.844647],[-90.175051,41.853629],[-90.173006,41.857402],[-90.172765,41.866149],[-90.170041,41.876439],[-90.165065,41.883777],[-90.157019,41.898019],[-90.153584,41.906614],[-90.153362,41.915593],[-90.151838,41.928917],[-90.1516,41.931002],[-90.152659,41.933058],[-90.156902,41.938181],[-90.160648,41.940845],[-90.163847,41.944934],[-90.164939,41.948861],[-90.164135,41.956178],[-90.162141,41.961293],[-90.153834,41.974116],[-90.148599,41.978269],[-90.146225,41.981329],[-90.146033,41.988139],[-90.140613,41.995999],[-90.140061,42.003252],[-90.141167,42.008931],[-90.143776,42.014881],[-90.148096,42.020014],[-90.149112,42.022679],[-90.149733,42.026564],[-90.150916,42.02944],[-90.151579,42.030633],[-90.154221,42.033073],[-90.158829,42.037769],[-90.163446,42.040407],[-90.164485,42.042105],[-90.165294,42.050973],[-90.165555,42.062638],[-90.168358,42.075779],[-90.163405,42.087613],[-90.161504,42.098912],[-90.161159,42.106372],[-90.161884,42.11378],[-90.162895,42.116718],[-90.167533,42.122475],[-90.17097,42.125198],[-90.187474,42.125423],[-90.190452,42.125779],[-90.197342,42.128163],[-90.201404,42.130937],[-90.20536,42.139079],[-90.206369,42.1455],[-90.207421,42.149109],[-90.209479,42.15268],[-90.216107,42.15673],[-90.224244,42.160028],[-90.234919,42.165431],[-90.250129,42.171469],[-90.255456,42.171821],[-90.26908,42.1745],[-90.282173,42.178846],[-90.298442,42.187576],[-90.317108,42.193575],[-90.317774,42.193789],[-90.328273,42.201047],[-90.338169,42.203321],[-90.356964,42.205445],[-90.365138,42.210526],[-90.375129,42.214811],[-90.391108,42.225473],[-90.394749,42.229059],[-90.395883,42.233133],[-90.400653,42.239293],[-90.410471,42.247749],[-90.416315,42.251679],[-90.419326,42.254467],[-90.422181,42.259899],[-90.424098,42.266364],[-90.430884,42.27823],[-90.430735,42.284211],[-90.426909,42.290719],[-90.424326,42.293326],[-90.420454,42.305374],[-90.4203,42.31169],[-90.421047,42.316109],[-90.420075,42.317681],[-90.417125,42.319943],[-90.4162,42.321314],[-90.415937,42.322699],[-90.416535,42.325109],[-90.419027,42.328505],[-90.42135,42.330472],[-90.425363,42.332615],[-90.430546,42.33686],[-90.443874,42.355218],[-90.44632,42.357041],[-90.452724,42.359303],[-90.462619,42.367253],[-90.464788,42.369452],[-90.470273,42.378355],[-90.473812,42.381458],[-90.474121,42.381729],[-90.477279,42.383794],[-90.480148,42.384616],[-90.484621,42.38453],[-90.487154,42.385141],[-90.490334,42.387093],[-90.495766,42.392406],[-90.500128,42.395539],[-90.506829,42.398792],[-90.517516,42.403019],[-90.548068,42.413115],[-90.555018,42.416138],[-90.55755,42.419258],[-90.558168,42.420984],[-90.558801,42.428517],[-90.560439,42.432897],[-90.565248,42.438742],[-90.567968,42.440389],[-90.570736,42.441701],[-90.582128,42.444437],[-90.590416,42.447493],[-90.606328,42.451505],[-90.624328,42.458904],[-90.646727,42.471904],[-90.654027,42.478503],[-90.656327,42.483603],[-90.656527,42.489203],[-90.655927,42.491703],[-90.648627,42.498102],[-90.640927,42.508302],[-90.617731,42.508077],[-90.614589,42.508053],[-90.565441,42.5076],[-90.555862,42.507509],[-90.551165,42.507691],[-90.544799,42.507713],[-90.544347,42.507707],[-90.532254,42.507573],[-90.491716,42.507624],[-90.479446,42.507416],[-90.474955,42.507484],[-90.437011,42.507147],[-90.426378,42.507059],[-90.405927,42.506891],[-90.370673,42.507111],[-90.367874,42.507114],[-90.362652,42.507048],[-90.303823,42.507469],[-90.272864,42.507531],[-90.269335,42.507726],[-90.267143,42.507642],[-90.253121,42.50734],[-90.250622,42.507521],[-90.22319,42.507765],[-90.206073,42.507747],[-90.181572,42.508068],[-90.164363,42.508272],[-90.142922,42.508151],[-90.095004,42.507885],[-90.093026,42.50816],[-90.07367,42.508275],[-90.018665,42.507288],[-90.017028,42.507127],[-89.999314,42.506914],[-89.997213,42.506755],[-89.985645,42.506431],[-89.985072,42.506464],[-89.955291,42.505626],[-89.926484,42.505787],[-89.926374,42.505788],[-89.926224,42.505788],[-89.837587,42.505543],[-89.801897,42.505444],[-89.799704,42.505421],[-89.793957,42.505466],[-89.780302,42.505349],[-89.769643,42.505322],[-89.742395,42.505382],[-89.693487,42.505099],[-89.690088,42.505191],[-89.667596,42.50496],[-89.650324,42.504613],[-89.644176,42.50452],[-89.61341,42.503942],[-89.603523,42.503557],[-89.600001,42.503672],[-89.594779,42.503468],[-89.564407,42.502628],[-89.522542,42.501889],[-89.493216,42.501514],[-89.492612,42.501514],[-89.4843,42.501426],[-89.425162,42.500726],[-89.423926,42.500818],[-89.422567,42.50068],[-89.420991,42.500589],[-89.401432,42.500433],[-89.401416,42.500433],[-89.366031,42.500274]]]}}]} diff --git a/Where/RegionKit/Sources/Resources/regions/us-IN.geojson b/Where/RegionKit/Sources/Resources/regions/us-IN.geojson new file mode 100644 index 00000000..629e24aa --- /dev/null +++ b/Where/RegionKit/Sources/Resources/regions/us-IN.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"region":"us-IN","name":"Indiana"},"geometry":{"type":"Polygon","coordinates":[[[-84.802483,40.528046],[-84.802547,40.50181],[-84.803828,40.465403],[-84.803928,40.462564],[-84.804504,40.411555],[-84.804119,40.352844],[-84.804119,40.352757],[-84.803917,40.310115],[-84.803918,40.310094],[-84.804098,40.302498],[-84.805627,40.223659],[-84.806175,40.197995],[-84.80634,40.192327],[-84.806347,40.192252],[-84.806766,40.180128],[-84.808291,40.129027],[-84.808305,40.127018],[-84.808706,40.107216],[-84.809737,40.048929],[-84.810099,40.034214],[-84.810933,40.005079],[-84.811212,39.995331],[-84.812193,39.92734],[-84.812357,39.921764],[-84.812411,39.916916],[-84.812411,39.916915],[-84.812698,39.891585],[-84.812787,39.89083],[-84.81305,39.872958],[-84.813464,39.853261],[-84.813549,39.850773],[-84.813674,39.843173],[-84.813703,39.843059],[-84.813793,39.826771],[-84.813852,39.824621],[-84.814179,39.814212],[-84.81412,39.811398],[-84.814209,39.799755],[-84.814179,39.786853],[-84.814189,39.785569],[-84.814129,39.72662],[-84.814129,39.726556],[-84.81453,39.680429],[-84.814619,39.669174],[-84.814323,39.655814],[-84.814705,39.628854],[-84.815156,39.568351],[-84.815036,39.567695],[-84.814955,39.567251],[-84.814955,39.566251],[-84.815155,39.548051],[-84.815355,39.521951],[-84.815355,39.52195],[-84.815555,39.511052],[-84.815555,39.510952],[-84.815754,39.477358],[-84.815754,39.477352],[-84.817453,39.391753],[-84.819352,39.309454],[-84.819451,39.305153],[-84.819451,39.305152],[-84.819622,39.27159],[-84.819633,39.261855],[-84.819859,39.251018],[-84.819801,39.247806],[-84.819813,39.244334],[-84.820159,39.227225],[-84.819802,39.157613],[-84.819826,39.156504],[-84.819985,39.149081],[-84.820157,39.10548],[-84.826246,39.10417],[-84.831197,39.10192],[-84.839515,39.095292],[-84.849574,39.088264],[-84.860689,39.07814],[-84.888873,39.066376],[-84.893873,39.062466],[-84.897364,39.057378],[-84.897171,39.052407],[-84.894281,39.049572],[-84.889065,39.04082],[-84.882856,39.034031],[-84.87805,39.030819],[-84.870168,39.025551],[-84.856959,39.011528],[-84.850354,39.00325],[-84.849445,39.000923],[-84.847094,38.997309],[-84.83983,38.99129],[-84.83712,38.988059],[-84.833473,38.981522],[-84.830619,38.974898],[-84.829857,38.969385],[-84.832617,38.96146],[-84.83516,38.957961],[-84.864731,38.934893],[-84.870759,38.929231],[-84.877762,38.920357],[-84.879268,38.916116],[-84.878817,38.913405],[-84.877029,38.909016],[-84.87062,38.901008],[-84.870124,38.900389],[-84.867778,38.899133],[-84.860759,38.897654],[-84.830472,38.897256],[-84.819073,38.895469],[-84.812746,38.895132],[-84.800247,38.89107],[-84.788143,38.883728],[-84.786406,38.88222],[-84.785234,38.880439],[-84.784579,38.87532],[-84.785799,38.869496],[-84.788302,38.864325],[-84.791002,38.860572],[-84.793714,38.857788],[-84.794617,38.857119],[-84.803247,38.850723],[-84.817169,38.84342],[-84.823363,38.839196],[-84.827488,38.834909],[-84.829958,38.830632],[-84.829886,38.825405],[-84.827098,38.818634],[-84.816506,38.80532],[-84.813939,38.800209],[-84.811645,38.792766],[-84.811752,38.789169],[-84.812877,38.786087],[-84.814641,38.784488],[-84.821378,38.783111],[-84.828714,38.783208],[-84.835672,38.784289],[-84.847918,38.788106],[-84.856904,38.790224],[-84.887919,38.794652],[-84.89393,38.793704],[-84.901874,38.790604],[-84.915234,38.784086],[-84.932977,38.777519],[-84.941071,38.775627],[-84.947644,38.775273],[-84.962535,38.778035],[-84.978723,38.77928],[-84.990006,38.778383],[-84.995939,38.776756],[-84.999949,38.774715],[-85.011772,38.766712],[-85.023584,38.762035],[-85.040938,38.755163],[-85.047967,38.750849],[-85.060264,38.744948],[-85.071928,38.741567],[-85.076369,38.739496],[-85.08218,38.735439],[-85.100963,38.7268],[-85.103313,38.725323],[-85.106979,38.72163],[-85.106902,38.720789],[-85.121357,38.711232],[-85.133049,38.702375],[-85.13868,38.699168],[-85.146861,38.695427],[-85.156158,38.692251],[-85.172528,38.688082],[-85.177112,38.688405],[-85.187278,38.687609],[-85.190507,38.68795],[-85.201583,38.690912],[-85.2045,38.691692],[-85.213257,38.695446],[-85.221124,38.700957],[-85.226062,38.705456],[-85.238665,38.722494],[-85.242434,38.726235],[-85.246505,38.731821],[-85.258846,38.737754],[-85.267639,38.739899],[-85.275454,38.741172],[-85.289226,38.74241],[-85.306049,38.741649],[-85.330807,38.736705],[-85.333052,38.736083],[-85.340953,38.733893],[-85.351776,38.731638],[-85.363827,38.730477],[-85.372284,38.730576],[-85.400481,38.73598],[-85.410925,38.73708],[-85.416631,38.736272],[-85.422021,38.734834],[-85.434065,38.729455],[-85.437766,38.726405],[-85.442271,38.71985],[-85.448862,38.713368],[-85.452114,38.709348],[-85.455967,38.695655],[-85.456978,38.689135],[-85.456481,38.685069],[-85.455486,38.68209],[-85.444815,38.670083],[-85.438742,38.659319],[-85.437738,38.648898],[-85.439458,38.632366],[-85.439351,38.610388],[-85.438594,38.605405],[-85.437446,38.601724],[-85.43617,38.598292],[-85.42829,38.586326],[-85.419883,38.573558],[-85.415821,38.563558],[-85.415272,38.555416],[-85.4156,38.546341],[-85.417322,38.540763],[-85.423077,38.531581],[-85.425787,38.52873],[-85.432916,38.524058],[-85.433136,38.523914],[-85.441725,38.520191],[-85.458496,38.5144],[-85.462518,38.512602],[-85.466691,38.51028],[-85.472221,38.506279],[-85.474354,38.504074],[-85.47767,38.49832],[-85.479472,38.494533],[-85.481246,38.488374],[-85.482897,38.485701],[-85.491422,38.474702],[-85.498866,38.468242],[-85.516939,38.461357],[-85.527164,38.45829],[-85.536542,38.456083],[-85.553304,38.45388],[-85.575254,38.453292],[-85.587758,38.450495],[-85.603833,38.442094],[-85.607629,38.439295],[-85.620521,38.423105],[-85.620329,38.421697],[-85.621625,38.417089],[-85.629961,38.402306],[-85.632937,38.395666],[-85.638041,38.380338],[-85.638048,38.380288],[-85.638521,38.376802],[-85.638009,38.366115],[-85.638777,38.361443],[-85.646201,38.342916],[-85.653641,38.327108],[-85.659897,38.319396],[-85.668698,38.310517],[-85.675017,38.301317],[-85.683561,38.295469],[-85.738746,38.269366],[-85.744862,38.26717],[-85.750962,38.26787],[-85.761062,38.27257],[-85.766563,38.27767],[-85.765763,38.279669],[-85.765963,38.280469],[-85.773363,38.286169],[-85.780963,38.288469],[-85.791563,38.288569],[-85.791576,38.288565],[-85.794063,38.287869],[-85.796063,38.286669],[-85.802563,38.284969],[-85.816164,38.282969],[-85.823764,38.280569],[-85.829364,38.276769],[-85.834864,38.268069],[-85.838064,38.257369],[-85.837964,38.25117],[-85.839664,38.23977],[-85.845464,38.23027],[-85.851436,38.223189],[-85.868564,38.211969],[-85.880264,38.203369],[-85.894764,38.188469],[-85.897664,38.184269],[-85.89955,38.180343],[-85.908764,38.161169],[-85.909464,38.14007],[-85.905164,38.11107],[-85.904564,38.10027],[-85.906163,38.08617],[-85.913163,38.07337],[-85.915214,38.067664],[-85.915643,38.06647],[-85.916987,38.061846],[-85.918379,38.054214],[-85.919563,38.041079],[-85.921371,38.032135],[-85.922395,38.028679],[-85.925418,38.023456],[-85.930235,38.018311],[-85.934635,38.014423],[-85.939483,38.010951],[-85.94803,38.00714],[-85.951467,38.005608],[-85.958299,38.004616],[-85.976028,38.00356],[-85.996582,38.000073],[-85.998967,37.999779],[-86.009127,37.998529],[-86.020655,37.996116],[-86.029509,37.99264],[-86.032468,37.9901],[-86.035012,37.984814],[-86.035279,37.981228],[-86.033386,37.970382],[-86.034355,37.964621],[-86.036013,37.961703],[-86.038188,37.95935],[-86.042354,37.958018],[-86.045208,37.958258],[-86.048458,37.959369],[-86.053912,37.963571],[-86.061731,37.971326],[-86.064859,37.975618],[-86.071644,37.9872],[-86.074915,37.993345],[-86.07398,37.995449],[-86.075393,37.996948],[-86.080034,38.000848],[-86.087525,38.005127],[-86.095766,38.00893],[-86.108156,38.013416],[-86.118208,38.015279],[-86.12757,38.016011],[-86.141063,38.01547],[-86.16731,38.009879],[-86.172186,38.00992],[-86.178983,38.011308],[-86.190927,38.016438],[-86.206439,38.021876],[-86.220371,38.027922],[-86.225519,38.03328],[-86.233057,38.039305],[-86.249972,38.04583],[-86.261273,38.052721],[-86.266891,38.057125],[-86.26731,38.057655],[-86.273584,38.067443],[-86.27872,38.089303],[-86.278656,38.098509],[-86.271223,38.130112],[-86.271802,38.137874],[-86.287773,38.15805],[-86.304155,38.167872],[-86.317139,38.172907],[-86.330018,38.181151],[-86.33281,38.182938],[-86.347736,38.195363],[-86.360377,38.198796],[-86.373801,38.193352],[-86.378151,38.185845],[-86.377434,38.171379],[-86.37174,38.164183],[-86.353625,38.159579],[-86.325941,38.154317],[-86.321274,38.147418],[-86.323453,38.139032],[-86.328398,38.132877],[-86.335145,38.129242],[-86.352466,38.128459],[-86.375324,38.130629],[-86.379775,38.129274],[-86.387216,38.124632],[-86.396215,38.107789],[-86.401653,38.105396],[-86.405068,38.105801],[-86.41876,38.117693],[-86.431749,38.126121],[-86.449793,38.127223],[-86.457115,38.124531],[-86.461034,38.121174],[-86.463248,38.119278],[-86.466081,38.114437],[-86.466217,38.106781],[-86.463858,38.101177],[-86.458795,38.096404],[-86.434046,38.086763],[-86.430091,38.078638],[-86.432789,38.067171],[-86.438236,38.060426],[-86.452192,38.05049],[-86.471903,38.046218],[-86.480393,38.045578],[-86.490769,38.045672],[-86.500051,38.045757],[-86.51176,38.044448],[-86.517289,38.042634],[-86.519404,38.041241],[-86.521825,38.038327],[-86.524969,38.027879],[-86.524385,38.018609],[-86.524656,38.012894],[-86.525671,38.007145],[-86.525844,37.998385],[-86.524888,37.981834],[-86.525174,37.968228],[-86.523831,37.962169],[-86.520503,37.954438],[-86.518575,37.951798],[-86.512588,37.94695],[-86.50939,37.942492],[-86.507043,37.936439],[-86.50662,37.930719],[-86.507831,37.928829],[-86.511005,37.92612],[-86.51924,37.922163],[-86.528279,37.918618],[-86.534156,37.917007],[-86.540722,37.916871],[-86.548507,37.917842],[-86.566256,37.922164],[-86.580322,37.923145],[-86.586542,37.922285],[-86.588581,37.921159],[-86.596125,37.914289],[-86.598452,37.910965],[-86.599848,37.906754],[-86.600096,37.901218],[-86.598151,37.884553],[-86.598317,37.88042],[-86.59939,37.874753],[-86.597476,37.871478],[-86.59732,37.870162],[-86.598108,37.867382],[-86.604624,37.858272],[-86.609163,37.855408],[-86.615215,37.852857],[-86.625763,37.847266],[-86.634271,37.843845],[-86.638265,37.842718],[-86.648028,37.841425],[-86.652516,37.841636],[-86.655286,37.842505],[-86.655296,37.842508],[-86.658268,37.844144],[-86.661637,37.849714],[-86.662495,37.856951],[-86.661233,37.862761],[-86.658374,37.869376],[-86.648727,37.886036],[-86.644754,37.894806],[-86.644039,37.898202],[-86.644143,37.902366],[-86.645513,37.906529],[-86.647081,37.908621],[-86.650087,37.910616],[-86.660888,37.913059],[-86.673038,37.914903],[-86.680929,37.91501],[-86.686015,37.913084],[-86.691994,37.908529],[-86.707816,37.898367],[-86.716138,37.894073],[-86.718462,37.893123],[-86.722247,37.892648],[-86.73146,37.89434],[-86.734718,37.896587],[-86.75099,37.912893],[-86.765054,37.93251],[-86.779993,37.956522],[-86.788044,37.97284],[-86.790597,37.980062],[-86.794985,37.988982],[-86.810913,37.99715],[-86.814756,37.998674],[-86.815267,37.998877],[-86.820071,37.999392],[-86.823491,37.998939],[-86.835161,37.99375],[-86.849027,37.99002],[-86.85595,37.987292],[-86.863224,37.982495],[-86.866936,37.979294],[-86.870388,37.975276],[-86.875874,37.97077],[-86.881338,37.967523],[-86.884961,37.964373],[-86.892084,37.955929],[-86.902413,37.946161],[-86.907131,37.943023],[-86.919329,37.936664],[-86.927747,37.934956],[-86.933357,37.934939],[-86.944633,37.933534],[-86.964785,37.932384],[-86.969044,37.932858],[-86.978834,37.930233],[-86.978957,37.9302],[-87.003301,37.922395],[-87.010315,37.919668],[-87.033444,37.906593],[-87.042249,37.898291],[-87.045101,37.893775],[-87.046237,37.889866],[-87.045894,37.887574],[-87.044144,37.884025],[-87.043407,37.87994],[-87.043049,37.875049],[-87.043854,37.870796],[-87.04926,37.859745],[-87.051452,37.853681],[-87.055404,37.835297],[-87.057836,37.827457],[-87.065388,37.810481],[-87.067836,37.806065],[-87.070732,37.801937],[-87.077404,37.796209],[-87.090636,37.787808],[-87.0999,37.78464],[-87.111133,37.782512],[-87.119229,37.782848],[-87.127533,37.78504],[-87.129629,37.786608],[-87.133149,37.792208],[-87.137502,37.807264],[-87.14195,37.816176],[-87.153486,37.832384],[-87.158878,37.837871],[-87.162319,37.840159],[-87.164863,37.841215],[-87.170831,37.842319],[-87.180063,37.841375],[-87.20224,37.843791],[-87.212416,37.846223],[-87.220944,37.849134],[-87.25525,37.867326],[-87.26293,37.872846],[-87.268694,37.878649],[-87.26989,37.879854],[-87.27437,37.882942],[-87.302324,37.898445],[-87.302599,37.898558],[-87.320036,37.905741],[-87.331765,37.908253],[-87.334165,37.908205],[-87.335397,37.907565],[-87.344933,37.911164],[-87.352614,37.916124],[-87.35471,37.918252],[-87.358294,37.92054],[-87.361638,37.921004],[-87.363622,37.922348],[-87.372327,37.930028],[-87.372711,37.930556],[-87.372039,37.931708],[-87.372439,37.932044],[-87.380247,37.935596],[-87.40116,37.941227],[-87.402632,37.942267],[-87.418585,37.944763],[-87.428521,37.944811],[-87.436859,37.944192],[-87.447786,37.942427],[-87.450458,37.941451],[-87.451176,37.941081],[-87.465514,37.93369],[-87.486347,37.920218],[-87.490411,37.916682],[-87.501131,37.909162],[-87.507483,37.90673],[-87.511499,37.906426],[-87.520284,37.912618],[-87.531532,37.916298],[-87.545901,37.922666],[-87.551277,37.925418],[-87.559342,37.931146],[-87.56587,37.93793],[-87.568398,37.941226],[-87.57203,37.947466],[-87.574287,37.954842],[-87.573415,37.962642],[-87.574715,37.967742],[-87.577915,37.971542],[-87.581115,37.973442],[-87.585916,37.975442],[-87.589816,37.976042],[-87.592916,37.975842],[-87.596716,37.974842],[-87.601416,37.972542],[-87.603816,37.968942],[-87.605216,37.965142],[-87.605216,37.961442],[-87.603516,37.958942],[-87.606216,37.949642],[-87.610816,37.944602],[-87.619488,37.938538],[-87.625616,37.933442],[-87.62896,37.926714],[-87.628416,37.92145],[-87.626256,37.916138],[-87.623296,37.910746],[-87.620272,37.906922],[-87.608479,37.898794],[-87.601967,37.895722],[-87.597118,37.892394],[-87.591582,37.887194],[-87.588426,37.868791],[-87.588729,37.860984],[-87.591504,37.856642],[-87.606599,37.838669],[-87.612426,37.83384],[-87.615399,37.831974],[-87.625014,37.829077],[-87.635806,37.827015],[-87.645858,37.825899],[-87.655171,37.826037],[-87.666522,37.827455],[-87.672397,37.829127],[-87.675538,37.831732],[-87.679188,37.836321],[-87.680689,37.84062],[-87.6819,37.84641],[-87.681633,37.855917],[-87.6754,37.865946],[-87.673186,37.868412],[-87.668879,37.871497],[-87.666175,37.874146],[-87.664101,37.877176],[-87.66282,37.881449],[-87.662865,37.885578],[-87.665025,37.893514],[-87.666481,37.895786],[-87.671457,37.899498],[-87.67573,37.90193],[-87.680338,37.903274],[-87.684018,37.903498],[-87.688338,37.902474],[-87.700685,37.897369],[-87.700915,37.897274],[-87.710675,37.893898],[-87.717971,37.89257],[-87.723635,37.892058],[-87.7333,37.894346],[-87.740148,37.89465],[-87.76226,37.890906],[-87.771004,37.886261],[-87.773015,37.884544],[-87.783643,37.877759],[-87.786407,37.876556],[-87.7909,37.875714],[-87.795185,37.875273],[-87.808013,37.875191],[-87.830578,37.876516],[-87.833883,37.877324],[-87.838102,37.879769],[-87.841193,37.882325],[-87.841615,37.883393],[-87.841693,37.887685],[-87.844691,37.892048],[-87.84559,37.893151],[-87.857243,37.900649],[-87.858738,37.902779],[-87.863097,37.911858],[-87.865558,37.915056],[-87.87254,37.920999],[-87.877325,37.924034],[-87.883321,37.926238],[-87.892471,37.92793],[-87.898062,37.927514],[-87.904789,37.924892],[-87.921744,37.907885],[-87.927092,37.901706],[-87.927769,37.900924],[-87.932129,37.89732],[-87.936784,37.892587],[-87.938365,37.890802],[-87.940069,37.88767],[-87.940839,37.883338],[-87.941021,37.879168],[-87.940005,37.875044],[-87.938128,37.870651],[-87.936228,37.867937],[-87.927303,37.858709],[-87.914892,37.849618],[-87.910276,37.843416],[-87.907773,37.837611],[-87.903804,37.817762],[-87.904595,37.812526],[-87.90681,37.807624],[-87.911087,37.805158],[-87.919138,37.802128],[-87.927543,37.799851],[-87.932554,37.797672],[-87.934936,37.79522],[-87.934698,37.791827],[-87.935861,37.789703],[-87.938598,37.787914],[-87.944506,37.775256],[-87.946463,37.773477],[-87.948594,37.772344],[-87.95259,37.771742],[-87.96003,37.773223],[-87.970262,37.781856],[-87.971805,37.784648],[-87.976389,37.788004],[-87.984358,37.7918],[-87.987157,37.792202],[-87.991168,37.794049],[-87.993099,37.795756],[-87.997102,37.797672],[-88.004706,37.800145],[-88.015144,37.80193],[-88.021021,37.801409],[-88.02803,37.799224],[-88.029382,37.803601],[-88.039105,37.805789],[-88.045939,37.807481],[-88.049528,37.81107],[-88.051771,37.813761],[-88.051771,37.817799],[-88.050425,37.822285],[-88.049079,37.826322],[-88.044145,37.830808],[-88.043247,37.836639],[-88.044593,37.840677],[-88.04863,37.843817],[-88.053116,37.847854],[-88.056705,37.85548],[-88.058499,37.865349],[-88.056705,37.872078],[-88.055251,37.875569],[-88.054462,37.877461],[-88.050425,37.882844],[-88.043247,37.88733],[-88.033378,37.894059],[-88.031584,37.901685],[-88.037416,37.913348],[-88.044145,37.926805],[-88.036124,37.942746],[-88.012929,37.966544],[-88.012574,37.977062],[-88.025831,38.007245],[-88.02979,38.025046],[-88.025304,38.038055],[-88.020369,38.046578],[-88.009603,38.04927],[-87.990314,38.056447],[-87.984931,38.069008],[-87.986725,38.076185],[-87.9948,38.083362],[-87.998389,38.090091],[-87.999734,38.100857],[-87.990763,38.110726],[-87.974272,38.121981],[-87.945472,38.126616],[-87.92168,38.148407],[-87.922577,38.160071],[-87.928858,38.168594],[-87.937162,38.172189],[-87.9595,38.184376],[-87.975819,38.197834],[-87.984234,38.20996],[-87.982688,38.221527],[-87.979548,38.228256],[-87.977746,38.230258],[-87.975511,38.232742],[-87.972321,38.235008],[-87.968968,38.237389],[-87.960225,38.237118],[-87.950838,38.247097],[-87.945904,38.256966],[-87.951277,38.26875],[-87.952125,38.273763],[-87.938727,38.289264],[-87.928858,38.292404],[-87.92168,38.289712],[-87.916746,38.284778],[-87.913606,38.276703],[-87.908223,38.274012],[-87.898802,38.276255],[-87.887849,38.285299],[-87.883102,38.293301],[-87.88041,38.299581],[-87.875476,38.301376],[-87.868747,38.299133],[-87.860224,38.291507],[-87.853046,38.289264],[-87.844972,38.29061],[-87.838243,38.29375],[-87.833757,38.299133],[-87.831972,38.307241],[-87.832723,38.324853],[-87.822721,38.346912],[-87.806075,38.363143],[-87.779996,38.370842],[-87.745254,38.408996],[-87.744382,38.414497],[-87.74104,38.435576],[-87.730699,38.442908],[-87.730134,38.446518],[-87.735729,38.452986],[-87.74317,38.459019],[-87.743535,38.467774],[-87.739522,38.475069],[-87.730768,38.478717],[-87.714047,38.47988],[-87.693188,38.488038],[-87.678374,38.498438],[-87.663701,38.502931],[-87.657084,38.507169],[-87.654166,38.511911],[-87.653802,38.517382],[-87.65578,38.521206],[-87.660732,38.541092],[-87.650704,38.55624],[-87.651529,38.568166],[-87.637752,38.588512],[-87.629362,38.589971],[-87.626444,38.591066],[-87.62389,38.593984],[-87.624143,38.596955],[-87.627348,38.60544],[-87.622375,38.618873],[-87.62012,38.639489],[-87.593678,38.667402],[-87.545538,38.677613],[-87.531231,38.684036],[-87.519609,38.697198],[-87.516707,38.716333],[-87.496494,38.742728],[-87.498948,38.757774],[-87.496537,38.778571],[-87.527342,38.818121],[-87.521681,38.826576],[-87.525893,38.848795],[-87.534355,38.852495],[-87.550515,38.85956],[-87.553384,38.863344],[-87.54737,38.875614],[-87.544089,38.895093],[-87.527645,38.907688],[-87.518826,38.923205],[-87.512187,38.954417],[-87.529496,38.971925],[-87.578319,38.988786],[-87.579117,39.001607],[-87.569696,39.019413],[-87.575027,39.034062],[-87.572588,39.057286],[-87.596373,39.079639],[-87.608517,39.082445],[-87.613513,39.085568],[-87.616636,39.08994],[-87.61726,39.096186],[-87.619134,39.100557],[-87.625379,39.101806],[-87.630376,39.104305],[-87.632249,39.106803],[-87.632874,39.11055],[-87.632874,39.114297],[-87.632245,39.118702],[-87.643145,39.128562],[-87.64599,39.1449],[-87.642777,39.157525],[-87.640435,39.166727],[-87.620796,39.17479],[-87.588614,39.197824],[-87.577029,39.211123],[-87.574558,39.218404],[-87.579163,39.232962],[-87.583535,39.243579],[-87.593486,39.247452],[-87.604076,39.259459],[-87.605543,39.261122],[-87.61005,39.282232],[-87.597545,39.296388],[-87.597946,39.299479],[-87.600397,39.312904],[-87.589084,39.333831],[-87.578331,39.340343],[-87.5544,39.340488],[-87.544013,39.352907],[-87.531646,39.347888],[-87.531355,39.436656],[-87.531355,39.437732],[-87.531489,39.449474],[-87.531608,39.466225],[-87.531624,39.469378],[-87.531663,39.47711],[-87.531663,39.47712],[-87.531627,39.491698],[-87.531692,39.495516],[-87.531965,39.526937],[-87.531939,39.545853],[-87.532008,39.564013],[-87.532196,39.607306],[-87.532365,39.646126],[-87.532444,39.646102],[-87.532703,39.664868],[-87.533066,39.781743],[-87.533058,39.796243],[-87.533056,39.803922],[-87.533142,39.810947],[-87.533227,39.883],[-87.533227,39.883127],[-87.532776,39.971077],[-87.53279,39.97501],[-87.532683,39.977691],[-87.532542,39.987462],[-87.532331,39.997776],[-87.532287,40.000037],[-87.532308,40.011492],[-87.532308,40.011587],[-87.531561,40.133005],[-87.531759,40.144273],[-87.531439,40.148027],[-87.531438,40.148123],[-87.531133,40.17003],[-87.530828,40.191812],[-87.529992,40.250036],[-87.530054,40.250671],[-87.526809,40.46217],[-87.526549,40.475659],[-87.526511,40.476879],[-87.526502,40.477158],[-87.526379,40.491237],[-87.526376,40.491574],[-87.526352,40.535111],[-87.526292,40.535409],[-87.526129,40.736885],[-87.526129,40.73695],[-87.525783,40.854357],[-87.526113,40.879703],[-87.525962,40.880618],[-87.526437,40.894209],[-87.526014,40.895582],[-87.526084,40.911914],[-87.526305,41.010346],[-87.526307,41.010355],[-87.526346,41.010583],[-87.52652,41.024837],[-87.526711,41.121485],[-87.5267,41.139658],[-87.526696,41.149222],[-87.526693,41.153958],[-87.526719,41.159448],[-87.52666,41.16009],[-87.526567,41.163865],[-87.52657,41.166097],[-87.526768,41.298052],[-87.526768,41.298177],[-87.526404,41.355812],[-87.52535,41.380851],[-87.525623,41.453619],[-87.525671,41.470115],[-87.525669,41.470283],[-87.52494,41.529735],[-87.525041,41.559235],[-87.524641,41.563335],[-87.524642,41.622535],[-87.524742,41.632435],[-87.524642,41.634935],[-87.524844,41.691635],[-87.524944,41.702635],[-87.524044,41.708335],[-87.520544,41.709935],[-87.515243,41.704235],[-87.511043,41.696535],[-87.505343,41.691535],[-87.470742,41.672835],[-87.463142,41.675535],[-87.453041,41.673035],[-87.446113,41.66934],[-87.441987,41.671905],[-87.43853,41.670679],[-87.437191,41.669006],[-87.434849,41.666887],[-87.432953,41.665102],[-87.432396,41.66053],[-87.438941,41.654335],[-87.42984,41.646035],[-87.42344,41.642835],[-87.394539,41.637235],[-87.365439,41.629536],[-87.324338,41.623036],[-87.287637,41.622236],[-87.278437,41.619736],[-87.261536,41.620336],[-87.222644,41.624161],[-87.22066,41.624356],[-87.187651,41.629653],[-87.160625,41.637266],[-87.160784,41.645385],[-87.125835,41.650302],[-87.120322,41.645701],[-87.066033,41.661845],[-87.027888,41.674661],[-87.00964,41.68152],[-86.93483,41.709638],[-86.932747,41.71104],[-86.90913,41.726938],[-86.875429,41.737939],[-86.824828,41.76024],[-86.823628,41.76024],[-86.804427,41.76024],[-86.801578,41.76024],[-86.800707,41.76024],[-86.800611,41.760251],[-86.748096,41.759967],[-86.746521,41.759982],[-86.641186,41.759633],[-86.640044,41.759671],[-86.524223,41.759456],[-86.519318,41.759447],[-86.501773,41.759553],[-86.265496,41.760207],[-86.226097,41.760016],[-86.22607,41.760016],[-86.21759,41.760016],[-86.127844,41.760592],[-86.12546,41.76056],[-86.12506,41.760576],[-86.062575,41.760528],[-86.041027,41.760512],[-86.003678,41.760089],[-85.991302,41.759949],[-85.97498,41.759849],[-85.974901,41.759849],[-85.888825,41.759422],[-85.874997,41.759341],[-85.872041,41.759365],[-85.791363,41.759051],[-85.791335,41.759051],[-85.775039,41.759147],[-85.750469,41.75909],[-85.749992,41.759091],[-85.724534,41.759085],[-85.65975,41.759101],[-85.650738,41.759103],[-85.647683,41.759125],[-85.632714,41.759164],[-85.624987,41.759093],[-85.622608,41.759049],[-85.608312,41.759193],[-85.607548,41.759079],[-85.518251,41.759513],[-85.515959,41.759352],[-85.432471,41.759684],[-85.427553,41.759706],[-85.379133,41.759875],[-85.350174,41.759908],[-85.330623,41.759982],[-85.318129,41.759983],[-85.30814,41.760097],[-85.298365,41.760028],[-85.292178,41.759963],[-85.292099,41.759962],[-85.273713,41.75977],[-85.272951,41.759911],[-85.272216,41.759999],[-85.232835,41.759839],[-85.196774,41.759735],[-85.196637,41.759735],[-85.17223,41.759618],[-85.123102,41.759743],[-85.117267,41.7597],[-85.039436,41.759985],[-85.037817,41.759801],[-84.972803,41.759366],[-84.971551,41.759527],[-84.961562,41.759552],[-84.96086,41.759438],[-84.932484,41.759691],[-84.825196,41.75999],[-84.82513,41.759991],[-84.818873,41.760059],[-84.805883,41.760216],[-84.806134,41.743115],[-84.806074,41.737603],[-84.806065,41.732909],[-84.806042,41.720544],[-84.806018,41.707485],[-84.806082,41.696089],[-84.80621,41.67455],[-84.805673,41.632342],[-84.805696,41.631398],[-84.805812,41.61304],[-84.804729,41.530231],[-84.804729,41.530135],[-84.804729,41.530092],[-84.804551,41.500364],[-84.804457,41.488224],[-84.803919,41.435531],[-84.803956,41.426128],[-84.803956,41.426044],[-84.804015,41.411655],[-84.804046,41.408361],[-84.804133,41.408292],[-84.803926,41.367959],[-84.803582,41.271273],[-84.803581,41.271079],[-84.80358,41.270942],[-84.803492,41.252562],[-84.803492,41.252531],[-84.803472,41.173889],[-84.803594,41.173203],[-84.803413,41.164649],[-84.80378,41.14052],[-84.803234,41.121414],[-84.803341,41.096867],[-84.803374,41.089302],[-84.803313,40.989394],[-84.803313,40.989209],[-84.802936,40.922568],[-84.802935,40.922377],[-84.80217,40.800601],[-84.802538,40.765515],[-84.802266,40.742298],[-84.802119,40.728163],[-84.802119,40.728146],[-84.802181,40.718602],[-84.802094,40.702476],[-84.802127,40.691405],[-84.802157,40.689324],[-84.80222,40.674776],[-84.802193,40.660298],[-84.802135,40.644859],[-84.802265,40.572215],[-84.802265,40.572212],[-84.802483,40.528046]]]}}]} diff --git a/Where/RegionKit/Sources/Resources/regions/us-KS.geojson b/Where/RegionKit/Sources/Resources/regions/us-KS.geojson new file mode 100644 index 00000000..d2aa418d --- /dev/null +++ b/Where/RegionKit/Sources/Resources/regions/us-KS.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"region":"us-KS","name":"Kansas"},"geometry":{"type":"Polygon","coordinates":[[[-99.541116,36.999573],[-99.558068,36.999528],[-99.625399,36.999671],[-99.648652,36.999604],[-99.657658,37.000197],[-99.774255,37.000837],[-99.774816,37.000841],[-99.786016,37.000931],[-99.875409,37.001659],[-99.995201,37.001631],[-100.001286,37.001699],[-100.002563,37.001706],[-100.005706,37.001726],[-100.089484,37.002092],[-100.115722,37.002206],[-100.187547,37.002082],[-100.192371,37.002036],[-100.193754,37.002133],[-100.201676,37.002081],[-100.551598,37.00062],[-100.552683,37.000735],[-100.591328,37.000376],[-100.591413,37.000399],[-100.62977,37.000025],[-100.633323,36.999936],[-100.633327,36.999936],[-100.675552,36.999688],[-100.734517,36.999059],[-100.756894,36.999357],[-100.765484,36.999177],[-100.806116,36.999091],[-100.814277,36.999085],[-100.855634,36.998626],[-100.89166,36.998604],[-100.904274,36.998745],[-100.904588,36.998561],[-100.945469,36.998153],[-100.945566,36.998152],[-100.996502,36.998044],[-101.012641,36.998176],[-101.053589,36.997967],[-101.066742,36.997921],[-101.211486,36.997124],[-101.212909,36.997044],[-101.357797,36.996271],[-101.359674,36.996232],[-101.37818,36.996164],[-101.413868,36.996008],[-101.415005,36.995966],[-101.485326,36.995611],[-101.519066,36.995546],[-101.555239,36.995414],[-101.55526,36.995414],[-101.600396,36.995153],[-101.601593,36.995095],[-101.90244,36.993702],[-102.000447,36.993249],[-102.000447,36.993272],[-102.028204,36.993125],[-102.028207,36.993125],[-102.04224,36.993083],[-102.041952,37.024742],[-102.04195,37.030805],[-102.041921,37.032178],[-102.041749,37.034397],[-102.04192,37.035083],[-102.041983,37.106551],[-102.041809,37.111973],[-102.042092,37.125021],[-102.042135,37.125021],[-102.042002,37.141744],[-102.041963,37.258164],[-102.041664,37.29765],[-102.041817,37.30949],[-102.041974,37.352613],[-102.042089,37.352819],[-102.041524,37.375018],[-102.041586,37.38919],[-102.041676,37.409898],[-102.041669,37.43474],[-102.041755,37.434855],[-102.041801,37.469488],[-102.041786,37.506066],[-102.042016,37.535261],[-102.041899,37.541186],[-102.041894,37.557977],[-102.041618,37.607868],[-102.041585,37.644282],[-102.041582,37.654495],[-102.041694,37.665681],[-102.041574,37.680436],[-102.041876,37.723875],[-102.04199,37.738541],[-102.042158,37.760164],[-102.042668,37.788758],[-102.042953,37.803535],[-102.043033,37.824146],[-102.043219,37.867929],[-102.043845,37.926135],[-102.043844,37.928102],[-102.044644,38.045532],[-102.044255,38.113011],[-102.044589,38.125013],[-102.044251,38.141778],[-102.044398,38.250015],[-102.04451,38.262412],[-102.044567,38.268749],[-102.044568,38.268819],[-102.044613,38.312324],[-102.044944,38.384419],[-102.044442,38.415802],[-102.044936,38.41968],[-102.045324,38.453647],[-102.045263,38.505395],[-102.045262,38.505532],[-102.045112,38.523784],[-102.045223,38.543797],[-102.045189,38.558732],[-102.045211,38.581609],[-102.045288,38.615168],[-102.045288,38.615249],[-102.045074,38.669617],[-102.045102,38.674946],[-102.04516,38.675221],[-102.045127,38.686725],[-102.045156,38.688555],[-102.045212,38.697567],[-102.045375,38.754339],[-102.045287,38.755528],[-102.045371,38.770064],[-102.045448,38.783453],[-102.045334,38.799463],[-102.045388,38.813392],[-102.046571,39.047038],[-102.047134,39.129701],[-102.047189,39.133147],[-102.04725,39.13702],[-102.048449,39.303138],[-102.04896,39.373712],[-102.049167,39.403597],[-102.04937,39.41821],[-102.049369,39.423333],[-102.049679,39.506183],[-102.049673,39.536691],[-102.049554,39.538932],[-102.049764,39.56818],[-102.049806,39.574058],[-102.049954,39.592331],[-102.050422,39.646048],[-102.050099,39.653812],[-102.050594,39.675594],[-102.051254,39.818992],[-102.051318,39.833311],[-102.051363,39.843471],[-102.051569,39.849805],[-102.051744,40.003078],[-101.916696,40.003142],[-101.904176,40.003162],[-101.841025,40.002784],[-101.832161,40.002933],[-101.807687,40.002798],[-101.804862,40.002752],[-101.627071,40.00262],[-101.625809,40.002711],[-101.542273,40.002609],[-101.417209,40.002424],[-101.411043,40.002365],[-101.409953,40.002354],[-101.374326,40.002521],[-101.342859,40.00258],[-101.325514,40.002687],[-101.324036,40.002696],[-101.293991,40.002559],[-101.286555,40.002559],[-101.248673,40.002543],[-101.215033,40.002555],[-101.192219,40.002491],[-101.178805,40.002468],[-101.168704,40.002547],[-101.130907,40.002427],[-101.060317,40.002307],[-101.027686,40.002256],[-100.937427,40.002145],[-100.75883,40.002302],[-100.752183,40.002128],[-100.738826,40.002228],[-100.733296,40.00227],[-100.729904,40.002111],[-100.721128,40.002069],[-100.683435,40.002234],[-100.66023,40.002162],[-100.645445,40.001883],[-100.600945,40.001906],[-100.594757,40.001977],[-100.567238,40.001889],[-100.551886,40.001889],[-100.511065,40.00184],[-100.487159,40.001767],[-100.477018,40.001752],[-100.475854,40.001768],[-100.468773,40.001724],[-100.447072,40.001795],[-100.439081,40.001774],[-100.39008,40.001809],[-100.231652,40.001623],[-100.229479,40.001693],[-100.215406,40.001629],[-100.196959,40.001494],[-100.193597,40.001573],[-100.19359,40.001573],[-100.190323,40.001586],[-100.188181,40.001541],[-100.177823,40.001593],[-100.177795,40.001593],[-99.990926,40.001503],[-99.986611,40.00155],[-99.948167,40.001813],[-99.944417,40.001584],[-99.930433,40.001516],[-99.906658,40.001512],[-99.813401,40.0014],[-99.77564,40.001647],[-99.772121,40.001804],[-99.764214,40.001551],[-99.756835,40.001342],[-99.746628,40.00182],[-99.731959,40.001827],[-99.719639,40.001808],[-99.628346,40.001866],[-99.628255,40.001866],[-99.62598,40.001865],[-99.625324,40.001866],[-99.501792,40.002026],[-99.498999,40.001957],[-99.49766,40.001912],[-99.493465,40.001937],[-99.480728,40.001942],[-99.423565,40.00227],[-99.412645,40.001868],[-99.403389,40.001969],[-99.290703,40.001949],[-99.286656,40.002017],[-99.282967,40.001879],[-99.254012,40.002074],[-99.25037,40.001957],[-99.216376,40.002016],[-99.197592,40.002033],[-99.188905,40.002023],[-99.186962,40.001977],[-99.179133,40.001977],[-99.178965,40.001977],[-99.169816,40.001925],[-99.123033,40.002165],[-99.11351,40.002193],[-99.085597,40.002133],[-99.067022,40.00217],[-99.020338,40.002264],[-99.018701,40.002333],[-98.992135,40.002192],[-98.972287,40.002245],[-98.971721,40.002268],[-98.961009,40.002317],[-98.960919,40.002271],[-98.934792,40.002205],[-98.834456,40.002363],[-98.82059,40.002319],[-98.777203,40.002359],[-98.774941,40.002336],[-98.726373,40.002222],[-98.726295,40.002222],[-98.710404,40.00218],[-98.693096,40.002373],[-98.691443,40.002505],[-98.690287,40.002548],[-98.672819,40.002364],[-98.669724,40.00241],[-98.653833,40.002269],[-98.652494,40.002245],[-98.64071,40.002493],[-98.613755,40.0024],[-98.593342,40.002476],[-98.575219,40.00248],[-98.560578,40.002274],[-98.543186,40.002285],[-98.523053,40.002336],[-98.504455,40.002329],[-98.490533,40.002323],[-98.274017,40.002516],[-98.274015,40.002516],[-98.268218,40.00249],[-98.250008,40.002307],[-98.193483,40.002614],[-98.179315,40.002483],[-98.172269,40.002438],[-98.142031,40.002452],[-98.099659,40.002227],[-98.076034,40.002301],[-98.068701,40.002355],[-98.050057,40.002278],[-98.047469,40.002186],[-98.014412,40.002223],[-98.010157,40.002153],[-97.972186,40.002114],[-97.931826,40.00205],[-97.931811,40.00205],[-97.876261,40.002102],[-97.85745,40.002065],[-97.838379,40.00191],[-97.821598,40.002004],[-97.821496,40.002002],[-97.819426,40.001958],[-97.777155,40.002167],[-97.770776,40.001977],[-97.769204,40.001995],[-97.767746,40.001994],[-97.515308,40.001901],[-97.511381,40.001899],[-97.510264,40.001835],[-97.463285,40.002047],[-97.444662,40.001958],[-97.425443,40.002048],[-97.417826,40.002024],[-97.415833,40.002001],[-97.369199,40.00206],[-97.369199,40.00206],[-97.369103,40.00206],[-97.350896,40.00193],[-97.350272,40.001976],[-97.245169,40.001513],[-97.24508,40.001467],[-97.20231,40.001442],[-97.20019,40.001549],[-97.181775,40.00155],[-97.142448,40.001495],[-97.137866,40.001814],[-97.049663,40.001323],[-97.030803,40.001342],[-97.009165,40.001463],[-96.916407,40.001506],[-96.916093,40.001506],[-96.880459,40.001448],[-96.878253,40.001466],[-96.875057,40.001448],[-96.873812,40.00145],[-96.805768,40.001371],[-96.622401,40.001158],[-96.610349,40.000881],[-96.604884,40.000891],[-96.580852,40.000966],[-96.570854,40.001091],[-96.557863,40.000968],[-96.538977,40.000851],[-96.527111,40.001031],[-96.469945,40.000966],[-96.467536,40.001035],[-96.463713,40.000968],[-96.46364,40.000967],[-96.304555,40.000629],[-96.301066,40.000632],[-96.239208,40.000691],[-96.239172,40.000691],[-96.223839,40.000729],[-96.220171,40.00072],[-96.154365,40.000495],[-96.154246,40.00045],[-96.147167,40.000479],[-96.125937,40.000432],[-96.125788,40.000467],[-96.089781,40.000519],[-96.081395,40.000603],[-96.051691,40.000727],[-96.02409,40.000719],[-96.01068,40.000638],[-96.010678,40.000638],[-95.958139,40.000521],[-95.882524,40.00047],[-95.788111,40.000452],[-95.788024,40.000452],[-95.784575,40.000463],[-95.375257,40.0],[-95.339896,39.999999],[-95.30829,39.999998],[-95.308404,39.993758],[-95.30778,39.990618],[-95.307111,39.989114],[-95.302507,39.984357],[-95.289715,39.977706],[-95.274757,39.972115],[-95.269886,39.969396],[-95.261854,39.960618],[-95.257652,39.954886],[-95.250254,39.948644],[-95.241383,39.944949],[-95.236761,39.943931],[-95.231114,39.943784],[-95.220212,39.944433],[-95.21644,39.943953],[-95.213737,39.943206],[-95.204428,39.938949],[-95.201277,39.934194],[-95.20069,39.928155],[-95.20201,39.922438],[-95.205745,39.915169],[-95.206326,39.912121],[-95.206196,39.909557],[-95.205733,39.908275],[-95.201935,39.904053],[-95.199347,39.902709],[-95.193816,39.90069],[-95.189565,39.899959],[-95.179453,39.900062],[-95.172296,39.902026],[-95.159834,39.906984],[-95.156024,39.907243],[-95.149657,39.905948],[-95.146055,39.904183],[-95.143802,39.901918],[-95.142563,39.897992],[-95.142445,39.89542],[-95.143403,39.889356],[-95.142718,39.885889],[-95.140601,39.881688],[-95.137092,39.878351],[-95.134747,39.876852],[-95.128166,39.874165],[-95.105912,39.869164],[-95.090158,39.86314],[-95.085003,39.861883],[-95.081534,39.861718],[-95.052535,39.864374],[-95.042142,39.864805],[-95.037767,39.865542],[-95.032053,39.868337],[-95.027931,39.871522],[-95.025422,39.876711],[-95.025119,39.878833],[-95.025947,39.886747],[-95.02524,39.8897],[-95.024389,39.891202],[-95.018743,39.897372],[-95.013152,39.899953],[-95.00844,39.900596],[-95.003819,39.900401],[-94.99341,39.897793],[-94.990284,39.89701],[-94.986975,39.89667],[-94.977749,39.897472],[-94.963345,39.901136],[-94.959276,39.901671],[-94.95154,39.900533],[-94.943867,39.89813],[-94.934493,39.893366],[-94.929574,39.888754],[-94.927897,39.886112],[-94.927359,39.883966],[-94.927252,39.880258],[-94.928466,39.876344],[-94.931463,39.872602],[-94.938791,39.866954],[-94.940743,39.86441],[-94.942407,39.861066],[-94.942567,39.856602],[-94.939767,39.85193],[-94.937655,39.849786],[-94.92615,39.841322],[-94.916918,39.836138],[-94.909942,39.834426],[-94.903157,39.83385],[-94.892677,39.834378],[-94.889493,39.834026],[-94.886933,39.833098],[-94.881013,39.828922],[-94.878677,39.826522],[-94.877044,39.823754],[-94.876544,39.820594],[-94.875944,39.813294],[-94.876344,39.806894],[-94.880932,39.797338],[-94.884084,39.794234],[-94.890292,39.791626],[-94.892965,39.791098],[-94.925605,39.789754],[-94.929654,39.788282],[-94.932726,39.786282],[-94.935206,39.78313],[-94.935782,39.778906],[-94.935302,39.77561],[-94.934262,39.773642],[-94.929653,39.769098],[-94.926229,39.76649],[-94.916789,39.760938],[-94.912293,39.759338],[-94.906244,39.759418],[-94.899156,39.761258],[-94.895268,39.76321],[-94.895041,39.76335],[-94.894071,39.763946],[-94.893919,39.76404],[-94.893724,39.76416],[-94.893646,39.764208],[-94.883924,39.770186],[-94.88146,39.771258],[-94.881422,39.771258],[-94.871144,39.772994],[-94.869644,39.772894],[-94.867143,39.771694],[-94.865243,39.770094],[-94.863143,39.767294],[-94.860743,39.763094],[-94.859443,39.753694],[-94.860371,39.74953],[-94.862943,39.742994],[-94.870143,39.734594],[-94.875643,39.730494],[-94.884143,39.726794],[-94.891744,39.724894],[-94.899316,39.724042],[-94.902612,39.724202],[-94.910068,39.725786],[-94.918324,39.728794],[-94.930005,39.73537],[-94.939221,39.741578],[-94.944741,39.744377],[-94.948726,39.745593],[-94.95263,39.745961],[-94.955286,39.745689],[-94.960086,39.743065],[-94.965318,39.739065],[-94.970422,39.732121],[-94.971206,39.729305],[-94.971078,39.723146],[-94.968453,39.707402],[-94.968981,39.692954],[-94.969909,39.68905],[-94.971317,39.68641],[-94.976325,39.68137],[-94.981557,39.678634],[-94.984149,39.67785],[-94.993557,39.67657],[-95.001379,39.676479],[-95.009023,39.675765],[-95.01531,39.674262],[-95.018318,39.672869],[-95.024595,39.668485],[-95.027644,39.665454],[-95.037464,39.652905],[-95.039049,39.649639],[-95.044554,39.64437],[-95.049518,39.637876],[-95.053367,39.630347],[-95.054925,39.624995],[-95.055152,39.621657],[-95.05339,39.615324],[-95.053012,39.613965],[-95.047911,39.606288],[-95.046445,39.601606],[-95.046361,39.599557],[-95.047165,39.595117],[-95.049277,39.589583],[-95.054804,39.582488],[-95.056897,39.580567],[-95.059519,39.579132],[-95.064519,39.577115],[-95.069315,39.576218],[-95.07216,39.576122],[-95.076688,39.576764],[-95.089515,39.581028],[-95.095736,39.580618],[-95.099095,39.579691],[-95.103228,39.577783],[-95.106406,39.575252],[-95.107454,39.573843],[-95.113077,39.559133],[-95.113557,39.553941],[-95.109304,39.542285],[-95.106596,39.537657],[-95.102888,39.533347],[-95.092704,39.524241],[-95.082714,39.516712],[-95.077441,39.513552],[-95.059461,39.506143],[-95.05638,39.503972],[-95.052177,39.499996],[-95.050552,39.497514],[-95.049845,39.494415],[-95.04837,39.48042],[-95.047133,39.474971],[-95.045716,39.472459],[-95.04078,39.466387],[-95.0375,39.463689],[-95.033408,39.460876],[-95.028498,39.458287],[-95.015825,39.452809],[-94.995768,39.448174],[-94.990172,39.446192],[-94.982144,39.440552],[-94.978798,39.436241],[-94.976606,39.426701],[-94.972952,39.421705],[-94.968849,39.419073],[-94.966066,39.417288],[-94.954817,39.413844],[-94.951209,39.411707],[-94.947864,39.408604],[-94.946293,39.405646],[-94.946662,39.399717],[-94.946227,39.395648],[-94.945577,39.393851],[-94.942039,39.389499],[-94.939697,39.38795],[-94.937158,39.386531],[-94.933652,39.385546],[-94.92311,39.384492],[-94.919225,39.385174],[-94.915859,39.386348],[-94.909581,39.388865],[-94.901823,39.392798],[-94.894979,39.393565],[-94.891845,39.393313],[-94.888972,39.392432],[-94.885026,39.389801],[-94.880979,39.383899],[-94.879281,39.37978],[-94.879088,39.375703],[-94.88136,39.370383],[-94.885216,39.366911],[-94.890928,39.364031],[-94.896832,39.363135],[-94.899024,39.362431],[-94.902497,39.360383],[-94.907297,39.356735],[-94.909409,39.354255],[-94.910017,39.352543],[-94.910641,39.348335],[-94.908065,39.323663],[-94.905329,39.311952],[-94.903137,39.306272],[-94.900049,39.300192],[-94.895217,39.294208],[-94.887056,39.28648],[-94.882576,39.283328],[-94.87832,39.281136],[-94.867568,39.277841],[-94.857072,39.273825],[-94.84632,39.268481],[-94.837855,39.262417],[-94.831471,39.256273],[-94.827487,39.249889],[-94.825663,39.241729],[-94.826111,39.238289],[-94.827791,39.234001],[-94.834896,39.223842],[-94.835056,39.220658],[-94.833552,39.217794],[-94.831679,39.215938],[-94.823791,39.209874],[-94.820687,39.208626],[-94.811663,39.206594],[-94.799663,39.206018],[-94.787343,39.207666],[-94.783838,39.207154],[-94.781518,39.206146],[-94.777838,39.203522],[-94.775543,39.200609],[-94.775538,39.200602],[-94.770338,39.190002],[-94.763138,39.179903],[-94.752338,39.173203],[-94.741938,39.170203],[-94.736537,39.169203],[-94.723637,39.169003],[-94.714137,39.170403],[-94.696332,39.178563],[-94.687236,39.183503],[-94.680336,39.184303],[-94.669135,39.182003],[-94.663835,39.179103],[-94.660315,39.168051],[-94.662435,39.157603],[-94.650735,39.154103],[-94.640035,39.153103],[-94.623934,39.156603],[-94.615834,39.160003],[-94.608834,39.160503],[-94.601733,39.159603],[-94.596033,39.157703],[-94.591933,39.155003],[-94.589933,39.140403],[-94.592533,39.135903],[-94.600434,39.128503],[-94.605734,39.122204],[-94.607034,39.119404],[-94.607354,39.113444],[-94.607234,39.089604],[-94.607334,39.081704],[-94.607234,39.065704],[-94.607517,39.044086],[-94.608334,38.981806],[-94.608134,38.942006],[-94.608134,38.940006],[-94.607866,38.937398],[-94.607978,38.93687],[-94.608033,38.883807],[-94.608033,38.869207],[-94.608033,38.868107],[-94.607993,38.867271],[-94.608033,38.861207],[-94.608033,38.855007],[-94.608033,38.847207],[-94.607625,38.82756],[-94.608041,38.811064],[-94.609039,38.760611],[-94.609399,38.74244],[-94.609456,38.7407],[-94.609509,38.738102],[-94.611602,38.635384],[-94.611465,38.625011],[-94.611858,38.620485],[-94.611908,38.609272],[-94.611887,38.580139],[-94.611902,38.58011],[-94.612176,38.576546],[-94.612157,38.549817],[-94.612272,38.547917],[-94.612644,38.491644],[-94.612726,38.484367],[-94.612696,38.483154],[-94.612865,38.477602],[-94.612866,38.477571],[-94.613365,38.403422],[-94.613265,38.392426],[-94.613275,38.388718],[-94.613329,38.369618],[-94.613312,38.364407],[-94.613,38.335801],[-94.612825,38.324387],[-94.612788,38.320142],[-94.612673,38.314832],[-94.612673,38.302527],[-94.612844,38.291423],[-94.612849,38.289914],[-94.612692,38.270394],[-94.612614,38.237766],[-94.612635,38.226987],[-94.612659,38.219251],[-94.612658,38.217649],[-94.612822,38.203918],[-94.612848,38.200714],[-94.613073,38.190552],[-94.613422,38.167908],[-94.613748,38.160633],[-94.613856,38.149769],[-94.614061,38.067343],[-94.614089,38.065901],[-94.614055,38.060088],[-94.614055,38.060056],[-94.613981,38.037057],[-94.613981,38.036949],[-94.614212,37.992462],[-94.614465,37.987799],[-94.614557,37.971037],[-94.614562,37.951517],[-94.614594,37.949978],[-94.614612,37.944362],[-94.614754,37.940769],[-94.614835,37.9367],[-94.614778,37.9342],[-94.615181,37.915944],[-94.615393,37.906392],[-94.615469,37.901775],[-94.615706,37.886843],[-94.615921,37.878331],[-94.615834,37.87251],[-94.616,37.863126],[-94.616426,37.845282],[-94.61645,37.83756],[-94.616862,37.819456],[-94.617721,37.77297],[-94.617808,37.729707],[-94.617975,37.722176],[-94.617805,37.690178],[-94.617651,37.687671],[-94.617687,37.686653],[-94.617885,37.682214],[-94.617734,37.673127],[-94.617734,37.673105],[-94.617576,37.653671],[-94.617575,37.653577],[-94.617477,37.63717],[-94.6173,37.610495],[-94.617428,37.609522],[-94.617283,37.571896],[-94.617315,37.571499],[-94.617081,37.567013],[-94.61716,37.557308],[-94.617186,37.553485],[-94.616908,37.527804],[-94.616789,37.52151],[-94.617023,37.483765],[-94.617183,37.469665],[-94.61718,37.465203],[-94.617222,37.460476],[-94.617205,37.460373],[-94.617201,37.454788],[-94.617132,37.439818],[-94.617265,37.425536],[-94.617511,37.410909],[-94.617557,37.396375],[-94.617625,37.367576],[-94.617626,37.367445],[-94.617537,37.364355],[-94.617538,37.364167],[-94.617636,37.338417],[-94.617636,37.338415],[-94.617695,37.336842],[-94.617648,37.323589],[-94.618075,37.240436],[-94.618158,37.237597],[-94.618123,37.229334],[-94.61815,37.228121],[-94.618219,37.207772],[-94.618305,37.207337],[-94.618319,37.188774],[-94.618505,37.181184],[-94.618473,37.174782],[-94.618351,37.160211],[-94.618072,37.132345],[-94.618075,37.129755],[-94.618212,37.113169],[-94.618151,37.103968],[-94.618059,37.096676],[-94.618088,37.093671],[-94.61809,37.093494],[-94.618082,37.086432],[-94.61812,37.085934],[-94.617982,37.075077],[-94.617875,37.056798],[-94.617875,37.056797],[-94.617965,37.040537],[-94.617995,37.009016],[-94.61808,36.998135],[-94.625224,36.998672],[-94.699735,36.998805],[-94.701797,36.998814],[-94.71277,36.998794],[-94.737183,36.998665],[-94.739324,36.998687],[-94.777257,36.998764],[-94.83128,36.998812],[-94.840926,36.998833],[-94.849801,36.998876],[-94.853197,36.998874],[-94.995293,36.999529],[-95.00762,36.999514],[-95.011433,36.999535],[-95.030324,36.999517],[-95.037857,36.999497],[-95.049499,36.99958],[-95.073504,36.999509],[-95.073509,36.999509],[-95.155187,36.999539],[-95.155372,36.99954],[-95.177301,36.99952],[-95.195307,36.999565],[-95.322565,36.999358],[-95.328058,36.999365],[-95.328327,36.999366],[-95.33121,36.99938],[-95.407572,36.999241],[-95.407683,36.999241],[-95.511578,36.999235],[-95.522415,36.999281],[-95.534401,36.999332],[-95.573598,36.99931],[-95.61214,36.999321],[-95.615934,36.999365],[-95.62435,36.99936],[-95.630079,36.99932],[-95.664301,36.999322],[-95.686452,36.999349],[-95.696659,36.999215],[-95.71038,36.999371],[-95.714887,36.999279],[-95.718054,36.999255],[-95.741908,36.999244],[-95.759905,36.999271],[-95.768719,36.999205],[-95.786762,36.99931],[-95.80798,36.999124],[-95.866899,36.999261],[-95.873944,36.9993],[-95.875257,36.999302],[-95.877151,36.999304],[-95.91018,36.999336],[-95.928122,36.999245],[-95.936992,36.999268],[-95.96427,36.999094],[-96.00081,36.99886],[-96.14121,36.998973],[-96.143207,36.999134],[-96.147143,36.999022],[-96.149709,36.99904],[-96.152384,36.999051],[-96.154017,36.999161],[-96.184768,36.999211],[-96.200028,36.999028],[-96.217571,36.99907],[-96.276368,36.999271],[-96.279079,36.999272],[-96.394272,36.999221],[-96.415412,36.999113],[-96.500288,36.998643],[-96.525578,36.998712],[-96.705431,36.999203],[-96.710482,36.999271],[-96.73659,36.999286],[-96.74127,36.999239],[-96.749838,36.998988],[-96.79206,36.99918],[-96.795199,36.99886],[-96.822791,36.999182],[-96.867517,36.999217],[-96.87629,36.999233],[-96.902083,36.999155],[-96.90351,36.999132],[-96.917093,36.999182],[-96.921915,36.999151],[-96.934642,36.99907],[-96.967371,36.999067],[-96.975562,36.999019],[-97.030082,36.998929],[-97.039784,36.999],[-97.100652,36.998998],[-97.104276,36.99902],[-97.120285,36.999014],[-97.122597,36.999036],[-97.147721,36.999111],[-97.372421,36.998861],[-97.384925,36.998843],[-97.46228,36.998685],[-97.462346,36.998685],[-97.472861,36.998721],[-97.527292,36.99875],[-97.5459,36.998709],[-97.546498,36.998747],[-97.564536,36.998711],[-97.606549,36.998682],[-97.637137,36.99909],[-97.650466,36.999004],[-97.697104,36.998826],[-97.768704,36.99875],[-97.783432,36.998961],[-97.783489,36.998847],[-97.802298,36.998713],[-97.802313,36.998713],[-98.033955,36.998366],[-98.03989,36.998349],[-98.045342,36.998327],[-98.111985,36.998133],[-98.147452,36.998162],[-98.177596,36.998009],[-98.208218,36.997997],[-98.219499,36.997824],[-98.237712,36.997972],[-98.346188,36.997962],[-98.347149,36.997962],[-98.354073,36.997961],[-98.408991,36.998513],[-98.418268,36.998538],[-98.420209,36.998516],[-98.54466,36.998996],[-98.544872,36.998997],[-98.714512,36.99906],[-98.718465,36.99918],[-98.761597,36.999425],[-98.791936,36.999255],[-98.793711,36.999227],[-98.797452,36.999229],[-98.869449,36.999286],[-98.880009,36.999263],[-98.88058,36.999309],[-98.994371,36.999493],[-99.000303,36.99951],[-99.029337,36.999595],[-99.049695,36.999221],[-99.124883,36.99942],[-99.129449,36.999422],[-99.24812,36.999565],[-99.277506,36.999579],[-99.375391,37.000177],[-99.407015,36.999579],[-99.456203,36.999471],[-99.484333,36.999626],[-99.500395,36.999576],[-99.500395,36.999637],[-99.502665,36.999645],[-99.504093,36.999648],[-99.508574,36.999658],[-99.541116,36.999573]]]}}]} diff --git a/Where/RegionKit/Sources/Resources/regions/us-KY.geojson b/Where/RegionKit/Sources/Resources/regions/us-KY.geojson new file mode 100644 index 00000000..5a694fc8 --- /dev/null +++ b/Where/RegionKit/Sources/Resources/regions/us-KY.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"region":"us-KY","name":"Kentucky"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-89.485106,36.497692],[-89.492537,36.497775],[-89.498036,36.497887],[-89.5391,36.498201],[-89.542955,36.504957],[-89.554321,36.517022],[-89.558349,36.522099],[-89.560344,36.525436],[-89.565804,36.536988],[-89.570071,36.544387],[-89.571241,36.547343],[-89.571509,36.552569],[-89.569807,36.558119],[-89.566817,36.564216],[-89.563185,36.568749],[-89.558089,36.573514],[-89.55264,36.577178],[-89.546113,36.579989],[-89.542459,36.580566],[-89.527583,36.581147],[-89.522338,36.58018],[-89.518702,36.578698],[-89.514468,36.577803],[-89.500076,36.576305],[-89.484836,36.571821],[-89.480893,36.569771],[-89.479093,36.568206],[-89.473341,36.559918],[-89.467761,36.546847],[-89.465445,36.536163],[-89.465888,36.529946],[-89.468668,36.521291],[-89.47246,36.513741],[-89.477186,36.50707],[-89.482474,36.502131],[-89.485106,36.497692]]],[[[-82.333044,37.740969],[-82.326834,37.736257],[-82.319686,37.734404],[-82.318879,37.733763],[-82.318302,37.733053],[-82.317869,37.72772],[-82.316197,37.721541],[-82.311702,37.718771],[-82.311097,37.717329],[-82.310665,37.7133],[-82.307235,37.707669],[-82.305679,37.706708],[-82.300954,37.706135],[-82.298074,37.704143],[-82.296634,37.702403],[-82.297325,37.699817],[-82.301964,37.696223],[-82.302886,37.693683],[-82.301504,37.690775],[-82.297788,37.687753],[-82.296262,37.687067],[-82.296118,37.686174],[-82.297126,37.684228],[-82.303867,37.678392],[-82.304501,37.677157],[-82.303953,37.67576],[-82.302312,37.675554],[-82.296724,37.678071],[-82.294737,37.678277],[-82.294392,37.677957],[-82.294134,37.673378],[-82.29471,37.672257],[-82.294393,37.670448],[-82.291773,37.669143],[-82.288174,37.668227],[-82.286446,37.670127],[-82.284687,37.675277],[-82.283506,37.676078],[-82.282297,37.675826],[-82.277876,37.669998],[-82.272021,37.663782],[-82.267962,37.662407],[-82.257111,37.656749],[-82.252273,37.656907],[-82.243911,37.660959],[-82.240773,37.661785],[-82.23939,37.661465],[-82.226111,37.653092],[-82.225535,37.651947],[-82.224956,37.647003],[-82.223602,37.644554],[-82.21934,37.642931],[-82.216691,37.641329],[-82.21669,37.639956],[-82.219078,37.635903],[-82.220257,37.634781],[-82.2202,37.633912],[-82.214815,37.627572],[-82.215649,37.626244],[-82.21349,37.625408],[-82.209691,37.625103],[-82.204337,37.625811],[-82.203388,37.626132],[-82.202467,37.627483],[-82.201201,37.627895],[-82.192394,37.625606],[-82.187298,37.626935],[-82.186694,37.627576],[-82.18632,37.629292],[-82.187471,37.637029],[-82.187845,37.63854],[-82.189688,37.640394],[-82.191242,37.642867],[-82.191444,37.644378],[-82.187989,37.647582],[-82.185456,37.648933],[-82.177625,37.648956],[-82.175264,37.647971],[-82.174631,37.647422],[-82.174688,37.646529],[-82.177338,37.641722],[-82.177511,37.640417],[-82.175956,37.637396],[-82.172762,37.634008],[-82.172446,37.632589],[-82.173482,37.631055],[-82.181398,37.626798],[-82.182438,37.623971],[-82.18143,37.621842],[-82.176682,37.618202],[-82.17271,37.61985],[-82.169515,37.621978],[-82.167126,37.621818],[-82.164191,37.620192],[-82.164767,37.618292],[-82.1692,37.613028],[-82.169057,37.609869],[-82.168137,37.608495],[-82.164454,37.608014],[-82.158554,37.609546],[-82.156741,37.609202],[-82.15611,37.604945],[-82.157609,37.596773],[-82.156718,37.59279],[-82.148434,37.59091],[-82.146419,37.59265],[-82.141555,37.595166],[-82.131977,37.593537],[-82.130165,37.591544],[-82.127321,37.586667],[-82.125601,37.579021],[-82.124307,37.577806],[-82.124372,37.57641],[-82.127303,37.572681],[-82.129604,37.571972],[-82.141828,37.570946],[-82.143468,37.570375],[-82.144648,37.568315],[-82.144563,37.566941],[-82.143183,37.565773],[-82.1368,37.564421],[-82.133954,37.562245],[-82.133495,37.560711],[-82.134705,37.557278],[-82.134506,37.554439],[-82.133299,37.552996],[-82.131776,37.552423],[-82.127089,37.551345],[-82.123824,37.551389],[-82.121985,37.552763],[-82.120609,37.556999],[-82.116584,37.559588],[-82.103127,37.560097],[-82.102263,37.559456],[-82.101946,37.558106],[-82.104303,37.555655],[-82.105136,37.554007],[-82.104532,37.553275],[-82.102893,37.553046],[-82.098924,37.5533],[-82.089178,37.556004],[-82.084605,37.55541],[-82.07503,37.555824],[-82.073246,37.555023],[-82.064418,37.544516],[-82.063671,37.541929],[-82.064792,37.539021],[-82.064418,37.53687],[-82.063326,37.536206],[-82.061256,37.536001],[-82.05746,37.536893],[-82.054787,37.536756],[-82.049584,37.535222],[-82.048463,37.533962],[-82.048205,37.528972],[-82.046653,37.528193],[-82.044382,37.529017],[-82.042397,37.533916],[-82.042396,37.53577],[-82.04481,37.541814],[-82.045155,37.544516],[-82.04478,37.546713],[-82.042825,37.548361],[-82.038972,37.547926],[-82.038024,37.546918],[-82.036932,37.542729],[-82.028826,37.537667],[-82.025261,37.538261],[-82.021006,37.540526],[-82.018878,37.540572],[-82.016925,37.538556],[-82.01592,37.534321],[-82.013966,37.533564],[-82.009194,37.533243],[-82.007412,37.533677],[-81.999844,37.542579],[-81.998177,37.543082],[-81.996912,37.542808],[-81.996909,37.538572],[-81.994033,37.537612],[-81.992597,37.538323],[-81.989092,37.542514],[-81.987511,37.542835],[-81.982479,37.541807],[-81.980841,37.542357],[-81.976386,37.545426],[-81.970147,37.546504],[-81.964971,37.543026],[-81.965401,37.541171],[-81.968297,37.537798],[-82.050888,37.480527],[-82.062809,37.470911],[-82.124854,37.427272],[-82.201745,37.375108],[-82.202688,37.374041],[-82.254352,37.337745],[-82.291908,37.311642],[-82.309415,37.300066],[-82.314718,37.295907],[-82.316028,37.294879],[-82.317083,37.293635],[-82.317395,37.290975],[-82.318957,37.287524],[-82.324619,37.28318],[-82.33157,37.282211],[-82.336942,37.279737],[-82.341849,37.280886],[-82.342068,37.274109],[-82.350948,37.267077],[-82.355343,37.26522],[-82.364535,37.264415],[-82.376595,37.2599],[-82.383285,37.260154],[-82.385663,37.259631],[-82.418085,37.251331],[-82.431022,37.246773],[-82.435728,37.246491],[-82.449164,37.243908],[-82.451998,37.242559],[-82.457016,37.238288],[-82.463073,37.238292],[-82.473275,37.235569],[-82.486439,37.231204],[-82.487317,37.230578],[-82.487219,37.227799],[-82.491486,37.225086],[-82.495243,37.225606],[-82.496308,37.227562],[-82.498858,37.227044],[-82.507895,37.222727],[-82.508342,37.222385],[-82.508062,37.220964],[-82.509431,37.218924],[-82.520117,37.212906],[-82.524464,37.214957],[-82.528746,37.213742],[-82.531787,37.212097],[-82.532051,37.210808],[-82.531576,37.209163],[-82.536627,37.20692],[-82.541302,37.20653],[-82.545804,37.20307],[-82.550372,37.204458],[-82.553835,37.202841],[-82.553841,37.202836],[-82.558178,37.199606],[-82.565329,37.196118],[-82.565375,37.196092],[-82.578988,37.188498],[-82.586718,37.185623],[-82.592451,37.182847],[-82.593232,37.18206],[-82.592766,37.180391],[-82.597447,37.177088],[-82.60829,37.173047],[-82.617423,37.168129],[-82.624878,37.162932],[-82.633493,37.154264],[-82.651646,37.151908],[-82.653268,37.151314],[-82.65476,37.150601],[-82.657468,37.145024],[-82.662449,37.143865],[-82.667717,37.141949],[-82.67153,37.138444],[-82.676765,37.134965],[-82.679428,37.135575],[-82.684601,37.135835],[-82.695667,37.131514],[-82.70787,37.125488],[-82.716334,37.122093],[-82.718334,37.122267],[-82.722097,37.120168],[-82.726201,37.115882],[-82.726449,37.114985],[-82.726294,37.111852],[-82.721941,37.105689],[-82.721617,37.101276],[-82.722179,37.094309],[-82.724358,37.09299],[-82.724954,37.091905],[-82.72304,37.084992],[-82.720597,37.081833],[-82.718183,37.080679],[-82.717204,37.079544],[-82.71674,37.07722],[-82.718353,37.075706],[-82.721676,37.07519],[-82.723747,37.075525],[-82.727022,37.073019],[-82.726312,37.06687],[-82.723904,37.062542],[-82.722254,37.057948],[-82.723128,37.052436],[-82.723279,37.047616],[-82.722472,37.045101],[-82.724714,37.042758],[-82.726279,37.042098],[-82.731722,37.043447],[-82.733603,37.044525],[-82.742454,37.04298],[-82.743684,37.041397],[-82.745562,37.029839],[-82.747981,37.025214],[-82.750715,37.024107],[-82.751852,37.025624],[-82.754051,37.026587],[-82.759175,37.027333],[-82.766408,37.023106],[-82.767083,37.020935],[-82.771795,37.015716],[-82.777368,37.015279],[-82.778386,37.012521],[-82.782144,37.008242],[-82.788897,37.00816],[-82.789092,37.007995],[-82.790462,37.007263],[-82.79089,37.00676],[-82.793441,37.005491],[-82.794824,37.005899],[-82.795695,37.006702],[-82.796187,37.008502],[-82.797487,37.009654],[-82.800531,37.007944],[-82.813579,37.00532],[-82.815748,37.007196],[-82.818006,37.006161],[-82.819715,37.006212],[-82.821798,37.00438],[-82.822684,37.004128],[-82.825224,37.006279],[-82.828592,37.005707],[-82.829961,37.003555],[-82.830588,37.000945],[-82.829125,36.997541],[-82.830802,36.993445],[-82.833843,36.991973],[-82.836008,36.988837],[-82.838549,36.987027],[-82.840051,36.987113],[-82.841252,36.986858],[-82.845002,36.983812],[-82.849429,36.983479],[-82.851397,36.984497],[-82.852614,36.984963],[-82.853729,36.985178],[-82.856417,36.982216],[-82.856768,36.979095],[-82.857936,36.978276],[-82.860561,36.978265],[-82.862926,36.979975],[-82.864909,36.97901],[-82.866019,36.978272],[-82.866689,36.978052],[-82.867535,36.977518],[-82.868455,36.976481],[-82.869183,36.974183],[-82.869183,36.974182],[-82.870274,36.965993],[-82.87023,36.965498],[-82.867358,36.963182],[-82.865404,36.958084],[-82.864211,36.957983],[-82.862866,36.957765],[-82.860534,36.956015],[-82.858443,36.954036],[-82.855705,36.953808],[-82.856099,36.952471],[-82.859969,36.949074],[-82.860633,36.94584],[-82.861282,36.944848],[-82.861684,36.939316],[-82.860537,36.937439],[-82.858784,36.933065],[-82.858461,36.932717],[-82.857965,36.929529],[-82.858635,36.927785],[-82.860032,36.925241],[-82.861943,36.924236],[-82.863468,36.922308],[-82.865192,36.920923],[-82.867116,36.917965],[-82.872136,36.913456],[-82.873777,36.912299],[-82.876215,36.910218],[-82.877473,36.90796],[-82.872561,36.903376],[-82.870068,36.901735],[-82.873213,36.897263],[-82.876438,36.896238],[-82.878639,36.893981],[-82.878362,36.893218],[-82.877862,36.891843],[-82.878569,36.889585],[-82.879492,36.889085],[-82.884626,36.888477],[-82.887627,36.88689],[-82.890028,36.884287],[-82.895445,36.882145],[-82.906325,36.87974],[-82.907981,36.878749],[-82.908004,36.877233],[-82.907276,36.875643],[-82.907774,36.874706],[-82.910315,36.874055],[-82.91169,36.874248],[-82.911824,36.874243],[-82.92241,36.873925],[-82.937573,36.867275],[-82.951685,36.866152],[-82.960955,36.862536],[-82.970253,36.857686],[-82.971934,36.857767],[-82.973395,36.859097],[-82.979227,36.859693],[-82.988707,36.859137],[-82.998376,36.85663],[-83.003786,36.851789],[-83.006086,36.847889],[-83.009222,36.847295],[-83.012587,36.847289],[-83.021887,36.849989],[-83.024387,36.851689],[-83.025887,36.855289],[-83.026887,36.855489],[-83.042188,36.854389],[-83.044288,36.852989],[-83.047589,36.851789],[-83.052489,36.851989],[-83.060489,36.853789],[-83.063989,36.851689],[-83.066189,36.851889],[-83.06929,36.853589],[-83.07259,36.854589],[-83.07559,36.850589],[-83.07379,36.844889],[-83.07519,36.840889],[-83.07969,36.840589],[-83.086991,36.838189],[-83.088991,36.835989],[-83.091291,36.834389],[-83.098892,36.831789],[-83.101792,36.829089],[-83.102092,36.828189],[-83.101692,36.826689],[-83.099792,36.824889],[-83.098892,36.822989],[-83.098492,36.814289],[-83.103092,36.806689],[-83.108029,36.802181],[-83.110793,36.800388],[-83.114693,36.796088],[-83.119144,36.789531],[-83.123341,36.786654],[-83.128794,36.785388],[-83.131694,36.781488],[-83.128494,36.775588],[-83.128894,36.769888],[-83.131245,36.767105],[-83.132286,36.76561],[-83.132477,36.764398],[-83.125655,36.761407],[-83.125728,36.761276],[-83.126719,36.761],[-83.128813,36.757864],[-83.128272,36.75637],[-83.127833,36.750828],[-83.130994,36.749788],[-83.134294,36.746588],[-83.136395,36.743088],[-83.146095,36.741788],[-83.156696,36.742187],[-83.161496,36.739887],[-83.167396,36.739187],[-83.175696,36.739587],[-83.194597,36.739487],[-83.199698,36.737487],[-83.219999,36.731287],[-83.236399,36.726887],[-83.238499,36.727087],[-83.2463,36.725287],[-83.2555,36.721787],[-83.263601,36.720987],[-83.269301,36.718487],[-83.272501,36.717787],[-83.275501,36.717987],[-83.285702,36.715187],[-83.286902,36.713987],[-83.287802,36.713787],[-83.307103,36.711387],[-83.311403,36.710287],[-83.313003,36.709087],[-83.315703,36.708187],[-83.342804,36.701286],[-83.349705,36.698386],[-83.350805,36.697386],[-83.353613,36.696699],[-83.354606,36.696153],[-83.356405,36.694686],[-83.359205,36.693586],[-83.360205,36.693586],[-83.362105,36.694786],[-83.364005,36.694586],[-83.367505,36.692686],[-83.386099,36.686589],[-83.389306,36.684986],[-83.395306,36.679486],[-83.395607,36.678987],[-83.394906,36.677586],[-83.395806,36.676786],[-83.411807,36.670786],[-83.419507,36.668486],[-83.423707,36.667385],[-83.431708,36.666485],[-83.436508,36.666185],[-83.440808,36.666885],[-83.448108,36.665285],[-83.454709,36.664785],[-83.458009,36.665785],[-83.460808,36.664885],[-83.461015,36.664878],[-83.466483,36.6647],[-83.48261,36.666185],[-83.48891,36.667685],[-83.493911,36.670085],[-83.498011,36.670485],[-83.499911,36.670185],[-83.501411,36.669085],[-83.506911,36.668685],[-83.511711,36.669085],[-83.516011,36.667585],[-83.527112,36.665985],[-83.529612,36.666184],[-83.531912,36.664984],[-83.533012,36.663284],[-83.533112,36.661884],[-83.541812,36.656584],[-83.547312,36.654484],[-83.554112,36.653784],[-83.562612,36.651284],[-83.565712,36.648384],[-83.569812,36.645684],[-83.577312,36.641784],[-83.584512,36.641384],[-83.600713,36.637084],[-83.603013,36.636883],[-83.604313,36.637683],[-83.605613,36.637783],[-83.607913,36.637083],[-83.614513,36.633983],[-83.616413,36.631383],[-83.619913,36.627983],[-83.625013,36.625183],[-83.628913,36.624083],[-83.635013,36.622883],[-83.639813,36.624783],[-83.645213,36.624183],[-83.648314,36.622683],[-83.649513,36.616683],[-83.657714,36.611782],[-83.663614,36.606782],[-83.665614,36.605782],[-83.673114,36.604682],[-83.674614,36.603082],[-83.675413,36.600814],[-83.675614,36.598582],[-83.677114,36.596582],[-83.679514,36.594082],[-83.683014,36.592182],[-83.687514,36.587182],[-83.688814,36.584382],[-83.690714,36.582581],[-83.789017,36.583881],[-83.894421,36.586481],[-83.930761,36.587694],[-83.987611,36.589592],[-83.987842,36.5896],[-84.127503,36.591413],[-84.227194,36.59218],[-84.227332,36.592181],[-84.261333,36.591981],[-84.261339,36.591981],[-84.271176,36.591882],[-84.442837,36.596079],[-84.499938,36.596678],[-84.543138,36.596277],[-84.624939,36.599575],[-84.778456,36.603209],[-84.785341,36.603372],[-84.7854,36.603375],[-84.803744,36.604265],[-84.843091,36.605127],[-84.859759,36.606428],[-84.859738,36.606495],[-84.943948,36.612569],[-84.974875,36.615552],[-84.986448,36.616668],[-85.024627,36.619354],[-85.086415,36.621913],[-85.096128,36.622483],[-85.195372,36.625498],[-85.276284,36.626511],[-85.276289,36.626511],[-85.290627,36.62645],[-85.295949,36.625838],[-85.296073,36.625824],[-85.300402,36.624437],[-85.324654,36.62455],[-85.334124,36.622951],[-85.430123,36.618952],[-85.436433,36.618523],[-85.488353,36.614994],[-85.551483,36.615727],[-85.552017,36.615782],[-85.677789,36.618157],[-85.731862,36.620429],[-85.788613,36.621845],[-85.788645,36.621846],[-85.80149,36.622418],[-85.832172,36.622046],[-85.873857,36.623642],[-85.959981,36.628121],[-85.975846,36.628611],[-86.03277,36.630367],[-86.033139,36.630413],[-86.038366,36.630804],[-86.080666,36.63394],[-86.081944,36.633848],[-86.197573,36.639363],[-86.204859,36.639741],[-86.205468,36.639783],[-86.216183,36.640527],[-86.21641,36.640595],[-86.219081,36.640824],[-86.222151,36.640891],[-86.293357,36.645356],[-86.333051,36.648778],[-86.359073,36.649845],[-86.373784,36.650126],[-86.374991,36.649803],[-86.411386,36.650596],[-86.468497,36.651841],[-86.47219,36.651763],[-86.473413,36.651676],[-86.473497,36.651671],[-86.507771,36.652445],[-86.543777,36.640536],[-86.543388,36.64389],[-86.550054,36.644817],[-86.551292,36.637985],[-86.564143,36.633472],[-86.564254,36.633554],[-86.589906,36.652486],[-86.605042,36.652125],[-86.606394,36.652107],[-86.713786,36.649341],[-86.75892,36.649018],[-86.763295,36.648907],[-86.813037,36.647647],[-86.816186,36.647722],[-86.818405,36.647639],[-86.833155,36.64721],[-86.854268,36.646884],[-86.906023,36.646302],[-86.906583,36.646255],[-87.011522,36.643949],[-87.060846,36.643217],[-87.114976,36.642414],[-87.114983,36.642414],[-87.23053,36.641895],[-87.231037,36.641888],[-87.247655,36.641841],[-87.278398,36.641718],[-87.281506,36.641761],[-87.33598,36.641543],[-87.344131,36.64151],[-87.347796,36.64144],[-87.414309,36.641047],[-87.425009,36.641047],[-87.436509,36.640747],[-87.563052,36.639113],[-87.564928,36.639113],[-87.641146,36.638036],[-87.64115,36.638036],[-87.694191,36.637071],[-87.744768,36.636151],[-87.853204,36.633247],[-87.849567,36.663701],[-87.872062,36.665089],[-88.011792,36.677025],[-88.044772,36.677983],[-88.070532,36.678118],[-88.068208,36.659747],[-88.064401,36.650854],[-88.05858,36.643315],[-88.057042,36.64054],[-88.055604,36.63571],[-88.055738,36.630475],[-88.045127,36.602939],[-88.041196,36.584123],[-88.039625,36.572783],[-88.035625,36.561736],[-88.033802,36.551733],[-88.032489,36.540662],[-88.034132,36.53112],[-88.035854,36.525912],[-88.03727,36.523783],[-88.03783,36.521015],[-88.037329,36.51783],[-88.037822,36.51385],[-88.039481,36.510408],[-88.045304,36.504081],[-88.050466,36.500053],[-88.053205,36.497129],[-88.053292,36.497131],[-88.127378,36.49854],[-88.320794,36.500432],[-88.325895,36.500483],[-88.330799,36.500531],[-88.41636,36.500756],[-88.450161,36.501101],[-88.452543,36.500872],[-88.472564,36.501028],[-88.489075,36.501068],[-88.48921,36.501068],[-88.51192,36.501457],[-88.51227,36.501506],[-88.516346,36.501431],[-88.516427,36.50143],[-88.545192,36.501814],[-88.577283,36.50194],[-88.661133,36.502243],[-88.715255,36.502662],[-88.747523,36.502834],[-88.799594,36.502757],[-88.816765,36.502815],[-88.827012,36.50285],[-88.827301,36.502852],[-88.834626,36.502914],[-88.834866,36.502911],[-88.874725,36.502446],[-88.884557,36.501704],[-88.89951,36.502218],[-88.964471,36.502191],[-89.000063,36.502633],[-89.006825,36.502684],[-89.010439,36.50271],[-89.034649,36.502964],[-89.058871,36.503157],[-89.072118,36.503249],[-89.090146,36.503392],[-89.117537,36.503603],[-89.119805,36.503647],[-89.163224,36.504522],[-89.163429,36.504526],[-89.211409,36.50563],[-89.279091,36.506511],[-89.282298,36.506782],[-89.300284,36.507147],[-89.346053,36.50321],[-89.346056,36.50321],[-89.356593,36.502195],[-89.380085,36.500416],[-89.381792,36.500062],[-89.391044,36.499079],[-89.403913,36.499141],[-89.417293,36.499033],[-89.405654,36.528165],[-89.398685,36.542329],[-89.396811,36.551975],[-89.396627,36.556429],[-89.395909,36.559649],[-89.382762,36.583603],[-89.380643,36.59113],[-89.378012,36.608096],[-89.376367,36.613868],[-89.375453,36.615719],[-89.371002,36.62084],[-89.365548,36.625059],[-89.35651,36.628439],[-89.343753,36.630991],[-89.334046,36.63225],[-89.327589,36.632194],[-89.326731,36.632186],[-89.318154,36.625059],[-89.313405,36.62012],[-89.301502,36.604138],[-89.294637,36.593729],[-89.278935,36.577699],[-89.27171,36.571387],[-89.268057,36.568908],[-89.259994,36.565149],[-89.258318,36.564948],[-89.236542,36.566824],[-89.227319,36.569375],[-89.217447,36.576159],[-89.213563,36.580119],[-89.202607,36.601576],[-89.200902,36.618177],[-89.199136,36.625649],[-89.197654,36.628936],[-89.192542,36.635997],[-89.187749,36.641115],[-89.183321,36.644694],[-89.174741,36.650416],[-89.174682,36.650473],[-89.164601,36.660132],[-89.15908,36.666352],[-89.168723,36.671892],[-89.171882,36.672526],[-89.169467,36.674596],[-89.167961,36.678189],[-89.168016,36.685514],[-89.169522,36.688878],[-89.174836,36.69396],[-89.184356,36.701238],[-89.19604,36.712017],[-89.19948,36.716045],[-89.200732,36.720141],[-89.201047,36.725772],[-89.199798,36.734217],[-89.197808,36.739412],[-89.191553,36.747217],[-89.184523,36.753638],[-89.179545,36.756132],[-89.169106,36.759473],[-89.166888,36.759633],[-89.15699,36.755968],[-89.151756,36.756264],[-89.142313,36.755369],[-89.135518,36.751956],[-89.130399,36.751702],[-89.126134,36.751735],[-89.12243,36.754844],[-89.119198,36.759802],[-89.116563,36.767557],[-89.116067,36.772423],[-89.116847,36.775607],[-89.120437,36.782071],[-89.123481,36.785258],[-89.12353,36.785309],[-89.128923,36.787677],[-89.13321,36.788228],[-89.144208,36.788353],[-89.155891,36.789126],[-89.160877,36.790914],[-89.168458,36.795571],[-89.171069,36.798119],[-89.177417,36.807269],[-89.178749,36.809928],[-89.179229,36.812915],[-89.178574,36.816554],[-89.178888,36.831368],[-89.178153,36.834586],[-89.177177,36.835779],[-89.173419,36.839806],[-89.1704,36.841522],[-89.166841,36.842529],[-89.159466,36.842505],[-89.15733,36.843305],[-89.153513,36.8466],[-89.147674,36.847148],[-89.137969,36.847349],[-89.131944,36.857437],[-89.126702,36.872073],[-89.119813,36.882792],[-89.117567,36.887356],[-89.109377,36.920066],[-89.102137,36.939154],[-89.100766,36.943973],[-89.100762,36.944002],[-89.098843,36.95785],[-89.099007,36.961389],[-89.099594,36.964543],[-89.102879,36.9697],[-89.109498,36.976563],[-89.11503,36.980335],[-89.1183,36.981879],[-89.125069,36.983499],[-89.128868,36.983265],[-89.132685,36.9822],[-89.138437,36.985089],[-89.160667,37.000051],[-89.166447,37.003337],[-89.17112,37.008072],[-89.173595,37.011409],[-89.178975,37.020928],[-89.180849,37.026843],[-89.182509,37.037275],[-89.181369,37.046305],[-89.179384,37.053012],[-89.175725,37.062069],[-89.171881,37.068184],[-89.168087,37.074218],[-89.154504,37.088907],[-89.151294,37.090487],[-89.149797,37.089828],[-89.146596,37.090714],[-89.14132,37.093865],[-89.138231,37.096906],[-89.135847,37.102197],[-89.134931,37.103278],[-89.125072,37.108813],[-89.12202,37.111342],[-89.120465,37.113487],[-89.115579,37.115781],[-89.111189,37.119052],[-89.099047,37.140967],[-89.096669,37.1462],[-89.095753,37.150391],[-89.092934,37.156439],[-89.086526,37.165602],[-89.076221,37.175125],[-89.058036,37.188767],[-89.041263,37.202881],[-89.037568,37.203932],[-89.029981,37.211144],[-89.014003,37.21609],[-89.00592,37.221198],[-89.008532,37.220583],[-89.000968,37.224401],[-88.98326,37.228685],[-88.966831,37.229891],[-88.942111,37.228811],[-88.933077,37.227749],[-88.931745,37.227593],[-88.928019,37.226625],[-88.920878,37.224769],[-88.916934,37.224291],[-88.902841,37.219299],[-88.86953,37.209711],[-88.835051,37.196486],[-88.820935,37.192203],[-88.80572,37.188595],[-88.797373,37.184854],[-88.786947,37.178584],[-88.779466,37.172495],[-88.77595,37.16878],[-88.765357,37.162662],[-88.753068,37.154701],[-88.746065,37.151564],[-88.737937,37.146513],[-88.732105,37.143956],[-88.72344,37.141194],[-88.720224,37.140641],[-88.702553,37.142646],[-88.693983,37.141155],[-88.687767,37.139378],[-88.644872,37.122844],[-88.637977,37.121309],[-88.630605,37.121003],[-88.625889,37.119458],[-88.61144,37.112745],[-88.601144,37.107081],[-88.593922,37.101761],[-88.589207,37.099655],[-88.581635,37.090567],[-88.576718,37.085852],[-88.569375,37.082213],[-88.563845,37.078542],[-88.560032,37.07601],[-88.545403,37.070003],[-88.531576,37.067192],[-88.521436,37.065584],[-88.514356,37.065231],[-88.504437,37.065265],[-88.490276,37.067836],[-88.490068,37.067874],[-88.482856,37.067114],[-88.476127,37.068223],[-88.458948,37.073796],[-88.444605,37.098601],[-88.442743,37.107842],[-88.443538,37.108517],[-88.443538,37.109192],[-88.435829,37.125055],[-88.434701,37.126424],[-88.424776,37.149901],[-88.424403,37.152428],[-88.428097,37.157758],[-88.429906,37.158668],[-88.431488,37.160298],[-88.433782,37.16407],[-88.433454,37.165871],[-88.437781,37.180007],[-88.439527,37.18174],[-88.441956,37.189036],[-88.447764,37.203527],[-88.450653,37.207046],[-88.458763,37.213536],[-88.466981,37.217026],[-88.471753,37.220155],[-88.478179,37.227251],[-88.47973,37.229606],[-88.484982,37.240774],[-88.487277,37.244077],[-88.492383,37.248445],[-88.500777,37.253579],[-88.508031,37.260261],[-88.509328,37.26213],[-88.506942,37.266656],[-88.509587,37.273398],[-88.515939,37.284043],[-88.514661,37.290948],[-88.511497,37.298527],[-88.508657,37.303353],[-88.505087,37.307858],[-88.500566,37.317822],[-88.494137,37.327689],[-88.49031,37.335042],[-88.486947,37.339596],[-88.484462,37.345609],[-88.482612,37.354915],[-88.482113,37.364615],[-88.478523,37.375052],[-88.476592,37.386875],[-88.470224,37.396255],[-88.465861,37.400547],[-88.456,37.408482],[-88.450127,37.411717],[-88.439333,37.416416],[-88.433182,37.418169],[-88.425981,37.419441],[-88.418594,37.421987],[-88.414882,37.423666],[-88.413108,37.424468],[-88.408808,37.425216],[-88.404127,37.424146],[-88.39734,37.421644],[-88.387669,37.416482],[-88.377507,37.409825],[-88.373445,37.404342],[-88.371214,37.40273],[-88.365471,37.401663],[-88.361557,37.402931],[-88.358506,37.404817],[-88.358436,37.40486],[-88.348405,37.410726],[-88.333183,37.42721],[-88.330622,37.429316],[-88.321199,37.434705],[-88.317525,37.436178],[-88.312585,37.440591],[-88.297821,37.446816],[-88.281667,37.452596],[-88.255193,37.456748],[-88.237784,37.456811],[-88.225012,37.45739],[-88.206923,37.460188],[-88.188615,37.461896],[-88.175283,37.46379],[-88.171764,37.465612],[-88.157061,37.466937],[-88.135142,37.471626],[-88.132628,37.471555],[-88.12801,37.470507],[-88.109417,37.472369],[-88.095818,37.473025],[-88.091156,37.472699],[-88.091156,37.471715],[-88.09038,37.471059],[-88.087664,37.471059],[-88.084171,37.472699],[-88.077987,37.480146],[-88.072386,37.483563],[-88.068504,37.481921],[-88.067728,37.481593],[-88.064234,37.484548],[-88.062294,37.487837],[-88.062174,37.489057],[-88.06295,37.489385],[-88.064115,37.492013],[-88.062563,37.495951],[-88.061292,37.505232],[-88.061342,37.505327],[-88.062828,37.508123],[-88.062568,37.513563],[-88.063311,37.515755],[-88.069018,37.525297],[-88.072242,37.528826],[-88.078046,37.532029],[-88.086194,37.534186],[-88.088049,37.535124],[-88.092814,37.539637],[-88.101174,37.55133],[-88.105585,37.55618],[-88.11433,37.562189],[-88.121517,37.568166],[-88.131622,37.572968],[-88.133393,37.574235],[-88.13341,37.574273],[-88.136164,37.580285],[-88.139973,37.586451],[-88.14094,37.590865],[-88.140226,37.595263],[-88.140752,37.599158],[-88.142225,37.603737],[-88.152691,37.622827],[-88.156827,37.632801],[-88.158374,37.639948],[-88.15864,37.649097],[-88.160062,37.654332],[-88.160187,37.657592],[-88.159372,37.661847],[-88.158207,37.664542],[-88.151646,37.675098],[-88.145434,37.68259],[-88.134282,37.691498],[-88.132341,37.697142],[-88.125033,37.707094],[-88.122412,37.709685],[-88.117803,37.712583],[-88.107088,37.715915],[-88.101844,37.718036],[-88.095759,37.723205],[-88.085901,37.728587],[-88.081925,37.730389],[-88.072538,37.733286],[-88.063802,37.738645],[-88.059588,37.742608],[-88.049942,37.754078],[-88.042602,37.76712],[-88.040873,37.772082],[-88.040206,37.775957],[-88.038769,37.784307],[-88.035827,37.791917],[-88.032438,37.796361],[-88.02803,37.799224],[-88.021021,37.801409],[-88.015144,37.80193],[-88.004706,37.800145],[-87.997102,37.797672],[-87.993099,37.795756],[-87.991168,37.794049],[-87.987157,37.792202],[-87.984358,37.7918],[-87.976389,37.788004],[-87.971805,37.784648],[-87.970262,37.781856],[-87.96003,37.773223],[-87.95259,37.771742],[-87.948594,37.772344],[-87.946463,37.773477],[-87.944506,37.775256],[-87.938598,37.787914],[-87.935861,37.789703],[-87.934698,37.791827],[-87.934936,37.79522],[-87.932554,37.797672],[-87.927543,37.799851],[-87.919138,37.802128],[-87.911087,37.805158],[-87.90681,37.807624],[-87.904595,37.812526],[-87.903804,37.817762],[-87.907773,37.837611],[-87.910276,37.843416],[-87.914892,37.849618],[-87.927303,37.858709],[-87.936228,37.867937],[-87.938128,37.870651],[-87.940005,37.875044],[-87.941021,37.879168],[-87.940839,37.883338],[-87.940069,37.88767],[-87.938365,37.890802],[-87.936784,37.892587],[-87.932129,37.89732],[-87.927769,37.900924],[-87.927092,37.901706],[-87.921744,37.907885],[-87.904789,37.924892],[-87.898062,37.927514],[-87.892471,37.92793],[-87.883321,37.926238],[-87.877325,37.924034],[-87.87254,37.920999],[-87.865558,37.915056],[-87.863097,37.911858],[-87.858738,37.902779],[-87.857243,37.900649],[-87.84559,37.893151],[-87.844691,37.892048],[-87.841693,37.887685],[-87.841615,37.883393],[-87.841193,37.882325],[-87.838102,37.879769],[-87.833883,37.877324],[-87.830578,37.876516],[-87.808013,37.875191],[-87.795185,37.875273],[-87.7909,37.875714],[-87.786407,37.876556],[-87.783643,37.877759],[-87.773015,37.884544],[-87.771004,37.886261],[-87.76226,37.890906],[-87.740148,37.89465],[-87.7333,37.894346],[-87.723635,37.892058],[-87.717971,37.89257],[-87.710675,37.893898],[-87.700915,37.897274],[-87.700685,37.897369],[-87.688338,37.902474],[-87.684018,37.903498],[-87.680338,37.903274],[-87.67573,37.90193],[-87.671457,37.899498],[-87.666481,37.895786],[-87.665025,37.893514],[-87.662865,37.885578],[-87.66282,37.881449],[-87.664101,37.877176],[-87.666175,37.874146],[-87.668879,37.871497],[-87.673186,37.868412],[-87.6754,37.865946],[-87.681633,37.855917],[-87.6819,37.84641],[-87.680689,37.84062],[-87.679188,37.836321],[-87.675538,37.831732],[-87.672397,37.829127],[-87.666522,37.827455],[-87.655171,37.826037],[-87.645858,37.825899],[-87.635806,37.827015],[-87.625014,37.829077],[-87.615399,37.831974],[-87.612426,37.83384],[-87.606599,37.838669],[-87.591504,37.856642],[-87.588729,37.860984],[-87.588426,37.868791],[-87.591582,37.887194],[-87.597118,37.892394],[-87.601967,37.895722],[-87.608479,37.898794],[-87.620272,37.906922],[-87.623296,37.910746],[-87.626256,37.916138],[-87.628416,37.92145],[-87.62896,37.926714],[-87.625616,37.933442],[-87.619488,37.938538],[-87.610816,37.944602],[-87.606216,37.949642],[-87.603516,37.958942],[-87.605216,37.961442],[-87.605216,37.965142],[-87.603816,37.968942],[-87.601416,37.972542],[-87.596716,37.974842],[-87.592916,37.975842],[-87.589816,37.976042],[-87.585916,37.975442],[-87.581115,37.973442],[-87.577915,37.971542],[-87.574715,37.967742],[-87.573415,37.962642],[-87.574287,37.954842],[-87.57203,37.947466],[-87.568398,37.941226],[-87.56587,37.93793],[-87.559342,37.931146],[-87.551277,37.925418],[-87.545901,37.922666],[-87.531532,37.916298],[-87.520284,37.912618],[-87.511499,37.906426],[-87.507483,37.90673],[-87.501131,37.909162],[-87.490411,37.916682],[-87.486347,37.920218],[-87.465514,37.93369],[-87.451176,37.941081],[-87.450458,37.941451],[-87.447786,37.942427],[-87.436859,37.944192],[-87.428521,37.944811],[-87.418585,37.944763],[-87.402632,37.942267],[-87.40116,37.941227],[-87.380247,37.935596],[-87.372439,37.932044],[-87.372039,37.931708],[-87.372711,37.930556],[-87.372327,37.930028],[-87.363622,37.922348],[-87.361638,37.921004],[-87.358294,37.92054],[-87.35471,37.918252],[-87.352614,37.916124],[-87.344933,37.911164],[-87.335397,37.907565],[-87.334165,37.908205],[-87.331765,37.908253],[-87.320036,37.905741],[-87.302599,37.898558],[-87.302324,37.898445],[-87.27437,37.882942],[-87.26989,37.879854],[-87.268694,37.878649],[-87.26293,37.872846],[-87.25525,37.867326],[-87.220944,37.849134],[-87.212416,37.846223],[-87.20224,37.843791],[-87.180063,37.841375],[-87.170831,37.842319],[-87.164863,37.841215],[-87.162319,37.840159],[-87.158878,37.837871],[-87.153486,37.832384],[-87.14195,37.816176],[-87.137502,37.807264],[-87.133149,37.792208],[-87.129629,37.786608],[-87.127533,37.78504],[-87.119229,37.782848],[-87.111133,37.782512],[-87.0999,37.78464],[-87.090636,37.787808],[-87.077404,37.796209],[-87.070732,37.801937],[-87.067836,37.806065],[-87.065388,37.810481],[-87.057836,37.827457],[-87.055404,37.835297],[-87.051452,37.853681],[-87.04926,37.859745],[-87.043854,37.870796],[-87.043049,37.875049],[-87.043407,37.87994],[-87.044144,37.884025],[-87.045894,37.887574],[-87.046237,37.889866],[-87.045101,37.893775],[-87.042249,37.898291],[-87.033444,37.906593],[-87.010315,37.919668],[-87.003301,37.922395],[-86.978957,37.9302],[-86.978834,37.930233],[-86.969044,37.932858],[-86.964785,37.932384],[-86.944633,37.933534],[-86.933357,37.934939],[-86.927747,37.934956],[-86.919329,37.936664],[-86.907131,37.943023],[-86.902413,37.946161],[-86.892084,37.955929],[-86.884961,37.964373],[-86.881338,37.967523],[-86.875874,37.97077],[-86.870388,37.975276],[-86.866936,37.979294],[-86.863224,37.982495],[-86.85595,37.987292],[-86.849027,37.99002],[-86.835161,37.99375],[-86.823491,37.998939],[-86.820071,37.999392],[-86.815267,37.998877],[-86.814756,37.998674],[-86.810913,37.99715],[-86.794985,37.988982],[-86.790597,37.980062],[-86.788044,37.97284],[-86.779993,37.956522],[-86.765054,37.93251],[-86.75099,37.912893],[-86.734718,37.896587],[-86.73146,37.89434],[-86.722247,37.892648],[-86.718462,37.893123],[-86.716138,37.894073],[-86.707816,37.898367],[-86.691994,37.908529],[-86.686015,37.913084],[-86.680929,37.91501],[-86.673038,37.914903],[-86.660888,37.913059],[-86.650087,37.910616],[-86.647081,37.908621],[-86.645513,37.906529],[-86.644143,37.902366],[-86.644039,37.898202],[-86.644754,37.894806],[-86.648727,37.886036],[-86.658374,37.869376],[-86.661233,37.862761],[-86.662495,37.856951],[-86.661637,37.849714],[-86.658268,37.844144],[-86.655296,37.842508],[-86.655286,37.842505],[-86.652516,37.841636],[-86.648028,37.841425],[-86.638265,37.842718],[-86.634271,37.843845],[-86.625763,37.847266],[-86.615215,37.852857],[-86.609163,37.855408],[-86.604624,37.858272],[-86.598108,37.867382],[-86.59732,37.870162],[-86.597476,37.871478],[-86.59939,37.874753],[-86.598317,37.88042],[-86.598151,37.884553],[-86.600096,37.901218],[-86.599848,37.906754],[-86.598452,37.910965],[-86.596125,37.914289],[-86.588581,37.921159],[-86.586542,37.922285],[-86.580322,37.923145],[-86.566256,37.922164],[-86.548507,37.917842],[-86.540722,37.916871],[-86.534156,37.917007],[-86.528279,37.918618],[-86.51924,37.922163],[-86.511005,37.92612],[-86.507831,37.928829],[-86.50662,37.930719],[-86.507043,37.936439],[-86.50939,37.942492],[-86.512588,37.94695],[-86.518575,37.951798],[-86.520503,37.954438],[-86.523831,37.962169],[-86.525174,37.968228],[-86.524888,37.981834],[-86.525844,37.998385],[-86.525671,38.007145],[-86.524656,38.012894],[-86.524385,38.018609],[-86.524969,38.027879],[-86.521825,38.038327],[-86.519404,38.041241],[-86.517289,38.042634],[-86.51176,38.044448],[-86.500051,38.045757],[-86.490769,38.045672],[-86.480393,38.045578],[-86.471903,38.046218],[-86.452192,38.05049],[-86.438236,38.060426],[-86.432789,38.067171],[-86.430091,38.078638],[-86.434046,38.086763],[-86.458795,38.096404],[-86.463858,38.101177],[-86.466217,38.106781],[-86.466081,38.114437],[-86.463248,38.119278],[-86.461034,38.121174],[-86.457115,38.124531],[-86.449793,38.127223],[-86.431749,38.126121],[-86.41876,38.117693],[-86.405068,38.105801],[-86.401653,38.105396],[-86.396215,38.107789],[-86.387216,38.124632],[-86.379775,38.129274],[-86.375324,38.130629],[-86.352466,38.128459],[-86.335145,38.129242],[-86.328398,38.132877],[-86.323453,38.139032],[-86.321274,38.147418],[-86.325941,38.154317],[-86.353625,38.159579],[-86.37174,38.164183],[-86.377434,38.171379],[-86.378151,38.185845],[-86.373801,38.193352],[-86.360377,38.198796],[-86.347736,38.195363],[-86.33281,38.182938],[-86.330018,38.181151],[-86.317139,38.172907],[-86.304155,38.167872],[-86.287773,38.15805],[-86.271802,38.137874],[-86.271223,38.130112],[-86.278656,38.098509],[-86.27872,38.089303],[-86.273584,38.067443],[-86.26731,38.057655],[-86.266891,38.057125],[-86.261273,38.052721],[-86.249972,38.04583],[-86.233057,38.039305],[-86.225519,38.03328],[-86.220371,38.027922],[-86.206439,38.021876],[-86.190927,38.016438],[-86.178983,38.011308],[-86.172186,38.00992],[-86.16731,38.009879],[-86.141063,38.01547],[-86.12757,38.016011],[-86.118208,38.015279],[-86.108156,38.013416],[-86.095766,38.00893],[-86.087525,38.005127],[-86.080034,38.000848],[-86.075393,37.996948],[-86.07398,37.995449],[-86.074915,37.993345],[-86.071644,37.9872],[-86.064859,37.975618],[-86.061731,37.971326],[-86.053912,37.963571],[-86.048458,37.959369],[-86.045208,37.958258],[-86.042354,37.958018],[-86.038188,37.95935],[-86.036013,37.961703],[-86.034355,37.964621],[-86.033386,37.970382],[-86.035279,37.981228],[-86.035012,37.984814],[-86.032468,37.9901],[-86.029509,37.99264],[-86.020655,37.996116],[-86.009127,37.998529],[-85.998967,37.999779],[-85.996582,38.000073],[-85.976028,38.00356],[-85.958299,38.004616],[-85.951467,38.005608],[-85.94803,38.00714],[-85.939483,38.010951],[-85.934635,38.014423],[-85.930235,38.018311],[-85.925418,38.023456],[-85.922395,38.028679],[-85.921371,38.032135],[-85.919563,38.041079],[-85.918379,38.054214],[-85.916987,38.061846],[-85.915643,38.06647],[-85.915214,38.067664],[-85.913163,38.07337],[-85.906163,38.08617],[-85.904564,38.10027],[-85.905164,38.11107],[-85.909464,38.14007],[-85.908764,38.161169],[-85.89955,38.180343],[-85.897664,38.184269],[-85.894764,38.188469],[-85.880264,38.203369],[-85.868564,38.211969],[-85.851436,38.223189],[-85.845464,38.23027],[-85.839664,38.23977],[-85.837964,38.25117],[-85.838064,38.257369],[-85.834864,38.268069],[-85.829364,38.276769],[-85.823764,38.280569],[-85.816164,38.282969],[-85.802563,38.284969],[-85.796063,38.286669],[-85.794063,38.287869],[-85.791576,38.288565],[-85.791563,38.288569],[-85.780963,38.288469],[-85.773363,38.286169],[-85.765963,38.280469],[-85.765763,38.279669],[-85.766563,38.27767],[-85.761062,38.27257],[-85.750962,38.26787],[-85.744862,38.26717],[-85.738746,38.269366],[-85.683561,38.295469],[-85.675017,38.301317],[-85.668698,38.310517],[-85.659897,38.319396],[-85.653641,38.327108],[-85.646201,38.342916],[-85.638777,38.361443],[-85.638009,38.366115],[-85.638521,38.376802],[-85.638048,38.380288],[-85.638041,38.380338],[-85.632937,38.395666],[-85.629961,38.402306],[-85.621625,38.417089],[-85.620329,38.421697],[-85.620521,38.423105],[-85.607629,38.439295],[-85.603833,38.442094],[-85.587758,38.450495],[-85.575254,38.453292],[-85.553304,38.45388],[-85.536542,38.456083],[-85.527164,38.45829],[-85.516939,38.461357],[-85.498866,38.468242],[-85.491422,38.474702],[-85.482897,38.485701],[-85.481246,38.488374],[-85.479472,38.494533],[-85.47767,38.49832],[-85.474354,38.504074],[-85.472221,38.506279],[-85.466691,38.51028],[-85.462518,38.512602],[-85.458496,38.5144],[-85.441725,38.520191],[-85.433136,38.523914],[-85.432916,38.524058],[-85.425787,38.52873],[-85.423077,38.531581],[-85.417322,38.540763],[-85.4156,38.546341],[-85.415272,38.555416],[-85.415821,38.563558],[-85.419883,38.573558],[-85.42829,38.586326],[-85.43617,38.598292],[-85.437446,38.601724],[-85.438594,38.605405],[-85.439351,38.610388],[-85.439458,38.632366],[-85.437738,38.648898],[-85.438742,38.659319],[-85.444815,38.670083],[-85.455486,38.68209],[-85.456481,38.685069],[-85.456978,38.689135],[-85.455967,38.695655],[-85.452114,38.709348],[-85.448862,38.713368],[-85.442271,38.71985],[-85.437766,38.726405],[-85.434065,38.729455],[-85.422021,38.734834],[-85.416631,38.736272],[-85.410925,38.73708],[-85.400481,38.73598],[-85.372284,38.730576],[-85.363827,38.730477],[-85.351776,38.731638],[-85.340953,38.733893],[-85.333052,38.736083],[-85.330807,38.736705],[-85.306049,38.741649],[-85.289226,38.74241],[-85.275454,38.741172],[-85.267639,38.739899],[-85.258846,38.737754],[-85.246505,38.731821],[-85.242434,38.726235],[-85.238665,38.722494],[-85.226062,38.705456],[-85.221124,38.700957],[-85.213257,38.695446],[-85.2045,38.691692],[-85.201583,38.690912],[-85.190507,38.68795],[-85.187278,38.687609],[-85.177112,38.688405],[-85.172528,38.688082],[-85.156158,38.692251],[-85.146861,38.695427],[-85.13868,38.699168],[-85.133049,38.702375],[-85.121357,38.711232],[-85.106902,38.720789],[-85.106979,38.72163],[-85.103313,38.725323],[-85.100963,38.7268],[-85.08218,38.735439],[-85.076369,38.739496],[-85.071928,38.741567],[-85.060264,38.744948],[-85.047967,38.750849],[-85.040938,38.755163],[-85.023584,38.762035],[-85.011772,38.766712],[-84.999949,38.774715],[-84.995939,38.776756],[-84.990006,38.778383],[-84.978723,38.77928],[-84.962535,38.778035],[-84.947644,38.775273],[-84.941071,38.775627],[-84.932977,38.777519],[-84.915234,38.784086],[-84.901874,38.790604],[-84.89393,38.793704],[-84.887919,38.794652],[-84.856904,38.790224],[-84.847918,38.788106],[-84.835672,38.784289],[-84.828714,38.783208],[-84.821378,38.783111],[-84.814641,38.784488],[-84.812877,38.786087],[-84.811752,38.789169],[-84.811645,38.792766],[-84.813939,38.800209],[-84.816506,38.80532],[-84.827098,38.818634],[-84.829886,38.825405],[-84.829958,38.830632],[-84.827488,38.834909],[-84.823363,38.839196],[-84.817169,38.84342],[-84.803247,38.850723],[-84.794617,38.857119],[-84.793714,38.857788],[-84.791002,38.860572],[-84.788302,38.864325],[-84.785799,38.869496],[-84.784579,38.87532],[-84.785234,38.880439],[-84.786406,38.88222],[-84.788143,38.883728],[-84.800247,38.89107],[-84.812746,38.895132],[-84.819073,38.895469],[-84.830472,38.897256],[-84.860759,38.897654],[-84.867778,38.899133],[-84.870124,38.900389],[-84.87062,38.901008],[-84.877029,38.909016],[-84.878817,38.913405],[-84.879268,38.916116],[-84.877762,38.920357],[-84.870759,38.929231],[-84.864731,38.934893],[-84.83516,38.957961],[-84.832617,38.96146],[-84.829857,38.969385],[-84.830619,38.974898],[-84.833473,38.981522],[-84.83712,38.988059],[-84.83983,38.99129],[-84.847094,38.997309],[-84.849445,39.000923],[-84.850354,39.00325],[-84.856959,39.011528],[-84.870168,39.025551],[-84.87805,39.030819],[-84.882856,39.034031],[-84.889065,39.04082],[-84.894281,39.049572],[-84.897171,39.052407],[-84.897364,39.057378],[-84.893873,39.062466],[-84.888873,39.066376],[-84.860689,39.07814],[-84.849574,39.088264],[-84.839515,39.095292],[-84.831197,39.10192],[-84.826246,39.10417],[-84.820157,39.10548],[-84.813767,39.106492],[-84.812241,39.107102],[-84.810753,39.109142],[-84.79382,39.112939],[-84.78768,39.115297],[-84.783991,39.11806],[-84.766749,39.138558],[-84.754449,39.146658],[-84.750749,39.147358],[-84.744149,39.147458],[-84.732048,39.144458],[-84.726148,39.141958],[-84.718548,39.137059],[-84.714048,39.132659],[-84.701947,39.118959],[-84.689747,39.104159],[-84.684847,39.100459],[-84.677247,39.09826],[-84.666147,39.09796],[-84.657246,39.09546],[-84.650346,39.09166],[-84.632446,39.07676],[-84.623732,39.074427],[-84.620112,39.073457],[-84.607928,39.073238],[-84.601682,39.074115],[-84.592408,39.078088],[-84.572144,39.08206],[-84.563944,39.08736],[-84.557544,39.09486],[-84.554444,39.09766],[-84.550844,39.09936],[-84.543544,39.09966],[-84.541344,39.09916],[-84.524644,39.09216],[-84.519543,39.09206],[-84.510076,39.093606],[-84.509743,39.09366],[-84.506082,39.095081],[-84.502062,39.096641],[-84.496543,39.10026],[-84.493743,39.10246],[-84.487743,39.11076],[-84.480943,39.11676],[-84.476243,39.11916],[-84.470542,39.12146],[-84.462042,39.12176],[-84.455342,39.12036],[-84.449793,39.117754],[-84.445242,39.114461],[-84.440642,39.109661],[-84.435541,39.102261],[-84.432841,39.094261],[-84.433941,39.092461],[-84.434641,39.086861],[-84.432941,39.083961],[-84.432641,39.078261],[-84.433141,39.072961],[-84.432341,39.067561],[-84.429841,39.058262],[-84.427913,39.054962],[-84.42573,39.053059],[-84.421467,39.050938],[-84.406941,39.045662],[-84.40254,39.045662],[-84.40094,39.046362],[-84.39414,39.045262],[-84.38684,39.045162],[-84.360439,39.041362],[-84.346039,39.036963],[-84.336339,39.032863],[-84.326539,39.027463],[-84.319936,39.022081],[-84.31368,39.016981],[-84.304698,39.006455],[-84.299362,38.995985],[-84.297255,38.989694],[-84.296466,38.985306],[-84.295076,38.968295],[-84.288164,38.955789],[-84.279916,38.945168],[-84.27491,38.941511],[-84.260797,38.926593],[-84.25701,38.923208],[-84.245647,38.907035],[-84.242689,38.903187],[-84.240155,38.900912],[-84.234453,38.893226],[-84.232343,38.884325],[-84.232132,38.880483],[-84.231914,38.874866],[-84.231837,38.87287],[-84.233727,38.853576],[-84.233265,38.842671],[-84.231306,38.830552],[-84.230427,38.827422],[-84.230181,38.826547],[-84.2253,38.817665],[-84.222059,38.813753],[-84.212904,38.805707],[-84.205592,38.802588],[-84.198358,38.80092],[-84.155912,38.794909],[-84.135088,38.789485],[-84.115655,38.782721],[-84.108836,38.779247],[-84.094334,38.775246],[-84.071491,38.770475],[-84.06341,38.771151],[-84.052685,38.771375],[-84.051642,38.771397],[-84.044486,38.770572],[-84.023113,38.775061],[-84.006104,38.780156],[-83.995447,38.781912],[-83.978814,38.787104],[-83.962123,38.787384],[-83.953546,38.786172],[-83.943978,38.783616],[-83.928454,38.774583],[-83.928591,38.772203],[-83.926986,38.771562],[-83.917217,38.769665],[-83.912922,38.769763],[-83.903971,38.76816],[-83.903917,38.768152],[-83.887107,38.7656],[-83.873168,38.762418],[-83.86653,38.7602],[-83.859028,38.756793],[-83.852085,38.751433],[-83.848734,38.747178],[-83.846207,38.74229],[-83.844676,38.737439],[-83.84274,38.730365],[-83.842506,38.727019],[-83.841689,38.724264],[-83.840595,38.721912],[-83.836696,38.717857],[-83.834015,38.716008],[-83.821854,38.709575],[-83.81388,38.707446],[-83.806317,38.706613],[-83.798549,38.704668],[-83.790676,38.701676],[-83.787113,38.699489],[-83.78362,38.695641],[-83.779961,38.684907],[-83.777141,38.671205],[-83.775761,38.666748],[-83.77216,38.65815],[-83.769347,38.65522],[-83.76509,38.652881],[-83.762445,38.652103],[-83.74992,38.649613],[-83.738207,38.647932],[-83.720779,38.646704],[-83.717915,38.645247],[-83.716933,38.643657],[-83.713405,38.641591],[-83.708164,38.639843],[-83.705314,38.639761],[-83.704006,38.639724],[-83.68552,38.63189],[-83.679484,38.630036],[-83.668111,38.628068],[-83.663911,38.62793],[-83.659304,38.628592],[-83.655425,38.629735],[-83.652916,38.630604],[-83.649737,38.632753],[-83.645914,38.637007],[-83.642994,38.643273],[-83.639954,38.652468],[-83.639396,38.659171],[-83.637377,38.66793],[-83.636208,38.670584],[-83.634018,38.673351],[-83.626922,38.679387],[-83.615736,38.684145],[-83.574754,38.692671],[-83.575121,38.691746],[-83.569098,38.692842],[-83.56187,38.695371],[-83.549298,38.698787],[-83.533339,38.702105],[-83.520953,38.703045],[-83.512571,38.701716],[-83.504365,38.699256],[-83.493342,38.694187],[-83.486477,38.690099],[-83.47642,38.682261],[-83.472157,38.678123],[-83.468059,38.67547],[-83.459809,38.673617],[-83.457055,38.673965],[-83.446989,38.670143],[-83.440404,38.669361],[-83.420194,38.668428],[-83.412039,38.666499],[-83.384755,38.663171],[-83.376302,38.661473],[-83.366661,38.658537],[-83.356445,38.654009],[-83.340004,38.645674],[-83.327636,38.637489],[-83.322383,38.630615],[-83.320531,38.622713],[-83.320099,38.616043],[-83.319101,38.612233],[-83.317542,38.609242],[-83.311448,38.603314],[-83.307832,38.600824],[-83.301951,38.598178],[-83.294193,38.596588],[-83.288885,38.597977],[-83.286514,38.599241],[-83.26851,38.615104],[-83.267694,38.618221],[-83.26755,38.61835],[-83.264011,38.621535],[-83.261126,38.622723],[-83.254558,38.623403],[-83.251103,38.626224],[-83.245572,38.627936],[-83.239515,38.628588],[-83.232404,38.627569],[-83.223076,38.624158],[-83.211027,38.618578],[-83.202453,38.616956],[-83.1914,38.617598],[-83.172647,38.620252],[-83.164744,38.620068],[-83.156926,38.620547],[-83.142836,38.625076],[-83.138572,38.628286],[-83.135046,38.631719],[-83.128973,38.640231],[-83.126311,38.645244],[-83.122547,38.6592],[-83.11786,38.666073],[-83.112372,38.671685],[-83.107436,38.67522],[-83.102746,38.677316],[-83.084226,38.68109],[-83.064319,38.688976],[-83.053104,38.695831],[-83.042338,38.708319],[-83.038442,38.716377],[-83.035964,38.720152],[-83.033014,38.723805],[-83.030891,38.725564],[-83.030702,38.72572],[-83.027917,38.727143],[-83.021752,38.72879],[-83.011816,38.730057],[-82.999296,38.729376],[-82.993996,38.728576],[-82.986095,38.726276],[-82.979395,38.725976],[-82.968695,38.728776],[-82.958895,38.734976],[-82.943147,38.74328],[-82.923694,38.750076],[-82.894193,38.756576],[-82.889193,38.756076],[-82.879492,38.751476],[-82.875492,38.747276],[-82.874341,38.74541],[-82.872592,38.742576],[-82.871292,38.739376],[-82.869892,38.728177],[-82.870392,38.722077],[-82.871192,38.718377],[-82.875292,38.704977],[-82.876892,38.697377],[-82.877592,38.690177],[-82.874892,38.682827],[-82.869592,38.678177],[-82.863291,38.669277],[-82.859391,38.660378],[-82.856291,38.646078],[-82.856791,38.632878],[-82.855795,38.620814],[-82.854291,38.613454],[-82.851314,38.604334],[-82.847186,38.595166],[-82.844306,38.590862],[-82.839538,38.586159],[-82.820161,38.572703],[-82.816012,38.570733],[-82.800112,38.563183],[-82.789776,38.559951],[-82.779472,38.559023],[-82.763695,38.560399],[-82.739582,38.558991],[-82.730958,38.559264],[-82.724846,38.5576],[-82.719662,38.553664],[-82.714142,38.550544],[-82.700045,38.544336],[-82.696621,38.542112],[-82.689965,38.53592],[-82.675724,38.515504],[-82.665548,38.505808],[-82.665481,38.505737],[-82.657051,38.496816],[-82.648395,38.490368],[-82.637707,38.484449],[-82.624106,38.479697],[-82.618474,38.477089],[-82.613802,38.474529],[-82.610458,38.471457],[-82.608202,38.468049],[-82.604089,38.459841],[-82.600761,38.437425],[-82.596921,38.426705],[-82.593673,38.421809],[-82.596281,38.417681],[-82.597113,38.412881],[-82.597033,38.409937],[-82.595001,38.40133],[-82.597801,38.395154],[-82.599241,38.39317],[-82.599737,38.39037],[-82.599273,38.388738],[-82.595369,38.382722],[-82.595382,38.382712],[-82.593008,38.375082],[-82.593952,38.371847],[-82.596654,38.367338],[-82.597524,38.364843],[-82.598189,38.357885],[-82.597979,38.344909],[-82.596525,38.342849],[-82.592543,38.34166],[-82.589724,38.340265],[-82.587951,38.338595],[-82.585363,38.334064],[-82.576936,38.328275],[-82.572691,38.318801],[-82.571877,38.315781],[-82.571964,38.313606],[-82.572893,38.311981],[-82.578352,38.305458],[-82.58146,38.300445],[-82.583056,38.296829],[-82.582823,38.295478],[-82.579743,38.291726],[-82.57948,38.284928],[-82.578782,38.281747],[-82.57672,38.277513],[-82.5746,38.274721],[-82.574656,38.263873],[-82.578254,38.254809],[-82.581796,38.248592],[-82.584001,38.246371],[-82.586061,38.245616],[-82.59497,38.245453],[-82.60423,38.247303],[-82.604625,38.247303],[-82.605333,38.247303],[-82.607131,38.245975],[-82.61226,38.236087],[-82.61252,38.234553],[-82.610367,38.226772],[-82.608944,38.22366],[-82.60575,38.221144],[-82.600353,38.218949],[-82.598437,38.217393],[-82.598864,38.201007],[-82.599326,38.197231],[-82.60425,38.187639],[-82.611343,38.171548],[-82.613487,38.170242],[-82.619429,38.169027],[-82.625457,38.170491],[-82.639054,38.171114],[-82.642997,38.16956],[-82.644739,38.165487],[-82.638947,38.156742],[-82.638398,38.152157],[-82.638288,38.143491],[-82.637306,38.13905],[-82.636466,38.13786],[-82.634265,38.136669],[-82.626182,38.134835],[-82.622125,38.133414],[-82.621167,38.131996],[-82.621164,38.123239],[-82.620351,38.121477],[-82.619452,38.120745],[-82.616149,38.120221],[-82.606589,38.120843],[-82.602618,38.11835],[-82.600127,38.117389],[-82.598011,38.115925],[-82.593605,38.110869],[-82.59178,38.109908],[-82.587782,38.108879],[-82.585696,38.107003],[-82.585142,38.098055],[-82.585488,38.094256],[-82.584039,38.090663],[-82.574075,38.082104],[-82.565736,38.08064],[-82.559598,38.072837],[-82.551259,38.070799],[-82.54958,38.068579],[-82.549407,38.063063],[-82.547284,38.061094],[-82.54485,38.058521],[-82.544779,38.054262],[-82.543916,38.052133],[-82.541245,38.048444],[-82.537293,38.045204],[-82.53747,38.042701],[-82.539071,38.039788],[-82.538639,38.037381],[-82.534976,38.03225],[-82.530371,38.028792],[-82.527068,38.027586],[-82.525817,38.026406],[-82.525831,38.019564],[-82.522591,38.012968],[-82.519665,38.008538],[-82.517606,38.007222],[-82.517351,38.005131],[-82.51781,38.002479],[-82.517351,38.001204],[-82.515974,37.999929],[-82.513271,37.999674],[-82.509812,38.001249],[-82.507197,38.001512],[-82.499874,37.999157],[-82.48978,37.998869],[-82.487732,37.99833],[-82.485967,37.995705],[-82.485675,37.989352],[-82.485128,37.98692],[-82.483871,37.984505],[-82.482695,37.984014],[-82.471629,37.986826],[-82.467015,37.985578],[-82.465473,37.98478],[-82.464257,37.983412],[-82.464067,37.980295],[-82.464987,37.976859],[-82.46938,37.973059],[-82.479963,37.973169],[-82.483836,37.971566],[-82.484413,37.969895],[-82.484758,37.965752],[-82.484265,37.963646],[-82.479031,37.962],[-82.472669,37.960721],[-82.471657,37.959988],[-82.471801,37.959119],[-82.475096,37.954906],[-82.48096,37.949136],[-82.48512,37.946044],[-82.487836,37.945288],[-82.495294,37.946612],[-82.496681,37.946405],[-82.4973,37.945507],[-82.4973,37.945491],[-82.497285,37.942903],[-82.496822,37.942262],[-82.493728,37.940455],[-82.489566,37.939107],[-82.489045,37.938718],[-82.48916,37.937963],[-82.489737,37.936635],[-82.491182,37.93581],[-82.49754,37.936791],[-82.500386,37.936518],[-82.501948,37.934756],[-82.501862,37.9332],[-82.49814,37.9283],[-82.49574,37.927043],[-82.483951,37.927025],[-82.480338,37.925836],[-82.481001,37.924303],[-82.487616,37.919905],[-82.488279,37.91812],[-82.487556,37.916975],[-82.47932,37.914827],[-82.475534,37.911945],[-82.474666,37.910388],[-82.474232,37.908054],[-82.474635,37.905902],[-82.475818,37.904048],[-82.475991,37.9024],[-82.474574,37.900295],[-82.472523,37.899243],[-82.471223,37.899358],[-82.469058,37.90222],[-82.468568,37.904005],[-82.468947,37.910962],[-82.468197,37.913847],[-82.464297,37.915038],[-82.462881,37.914832],[-82.461493,37.913093],[-82.460741,37.910736],[-82.459759,37.909569],[-82.457794,37.909089],[-82.452883,37.908998],[-82.451352,37.908472],[-82.447596,37.904352],[-82.438582,37.900256],[-82.435751,37.897028],[-82.432113,37.88991],[-82.429023,37.888285],[-82.421484,37.885652],[-82.419781,37.883821],[-82.419204,37.882081],[-82.419337,37.875095],[-82.41869,37.872375],[-82.417679,37.870658],[-82.416323,37.869628],[-82.414417,37.869033],[-82.410288,37.868826],[-82.407459,37.867475],[-82.408441,37.866056],[-82.409799,37.865392],[-82.422127,37.863952],[-82.42409,37.863037],[-82.424264,37.861709],[-82.423513,37.860313],[-82.421983,37.859397],[-82.414651,37.85626],[-82.414914,37.855569],[-82.41546,37.854132],[-82.420484,37.847496],[-82.420484,37.846809],[-82.417367,37.845664],[-82.413153,37.845343],[-82.412172,37.844793],[-82.408941,37.836644],[-82.407874,37.835499],[-82.39968,37.829935],[-82.398444,37.821648],[-82.402199,37.812678],[-82.402228,37.810984],[-82.401652,37.810091],[-82.39871,37.808785],[-82.396978,37.809014],[-82.393746,37.811668],[-82.389212,37.817206],[-82.387769,37.818212],[-82.386586,37.818212],[-82.385259,37.81741],[-82.37958,37.810907],[-82.378514,37.80832],[-82.377393,37.803009],[-82.374867,37.80216],[-82.369973,37.801749],[-82.36778,37.800628],[-82.365557,37.798318],[-82.364979,37.796784],[-82.363795,37.795435],[-82.361199,37.794429],[-82.356122,37.793859],[-82.354275,37.793104],[-82.348849,37.787178],[-82.340455,37.786058],[-82.339705,37.785509],[-82.338377,37.780428],[-82.339097,37.778276],[-82.338895,37.776857],[-82.337596,37.775369],[-82.335981,37.7745],[-82.332607,37.774249],[-82.329867,37.775897],[-82.32583,37.776172],[-82.323696,37.775028],[-82.323004,37.773907],[-82.323696,37.772534],[-82.331654,37.768161],[-82.333903,37.766306],[-82.333816,37.765391],[-82.331162,37.763125],[-82.32946,37.762393],[-82.327356,37.762233],[-82.317611,37.764889],[-82.312824,37.765027],[-82.311642,37.764294],[-82.310777,37.762692],[-82.310893,37.762005],[-82.312968,37.760677],[-82.317668,37.759624],[-82.319023,37.758892],[-82.321012,37.755435],[-82.321415,37.751269],[-82.328221,37.74848],[-82.333581,37.743283],[-82.333349,37.7412],[-82.333044,37.740969]]]]}}]} diff --git a/Where/RegionKit/Sources/Resources/regions/us-LA.geojson b/Where/RegionKit/Sources/Resources/regions/us-LA.geojson new file mode 100644 index 00000000..4a8ad822 --- /dev/null +++ b/Where/RegionKit/Sources/Resources/regions/us-LA.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"region":"us-LA","name":"Louisiana"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-88.865067,29.752714],[-88.889755,29.718204],[-88.940346,29.657234],[-88.944435,29.658806],[-88.94632,29.662579],[-88.941605,29.674833],[-88.920235,29.694319],[-88.911751,29.699348],[-88.89006,29.729202],[-88.873611,29.758043],[-88.867973,29.772272],[-88.867973,29.79133],[-88.861267,29.805826],[-88.846497,29.817101],[-88.84301,29.82596],[-88.836296,29.855221],[-88.83683,29.858978],[-88.843277,29.86381],[-88.8312,29.878839],[-88.828247,29.920717],[-88.837379,29.944878],[-88.838715,29.962326],[-88.835495,29.967695],[-88.835495,29.974138],[-88.83979,29.983803],[-88.840866,29.995613],[-88.848373,30.01333],[-88.857368,30.027826],[-88.86972,30.043798],[-88.881454,30.053202],[-88.870476,30.049212],[-88.855583,30.034414],[-88.841225,30.012789],[-88.833725,29.998821],[-88.824158,29.970461],[-88.817017,29.93425],[-88.818146,29.889109],[-88.826538,29.847092],[-88.83271,29.824062],[-88.844078,29.795713],[-88.865067,29.752714]]],[[[-89.486709,29.621003],[-89.486931,29.620447],[-89.504738,29.631508],[-89.523018,29.639427],[-89.535202,29.648567],[-89.583336,29.652834],[-89.608925,29.657707],[-89.621109,29.657101],[-89.62355,29.662584],[-89.632698,29.671724],[-89.644272,29.675381],[-89.64975,29.672941],[-89.641228,29.647961],[-89.641228,29.635773],[-89.647324,29.625414],[-89.657677,29.624195],[-89.674736,29.626633],[-89.684486,29.624804],[-89.688141,29.615055],[-89.684486,29.602867],[-89.671082,29.588243],[-89.668648,29.580322],[-89.684486,29.563263],[-89.684486,29.551073],[-89.681092,29.534487],[-89.69623,29.525004],[-89.699698,29.523423],[-89.700845,29.520785],[-89.700501,29.515967],[-89.693877,29.508559],[-89.665813,29.49002],[-89.644039,29.492343],[-89.63533,29.489294],[-89.617558,29.468298],[-89.596533,29.456303],[-89.592474,29.449822],[-89.589536,29.437662],[-89.577096,29.433692],[-89.574635,29.435734],[-89.574653,29.4411],[-89.548686,29.465723],[-89.528429,29.454702],[-89.53215,29.434567],[-89.531943,29.425679],[-89.518368,29.40023],[-89.508551,29.386168],[-89.505038,29.38604],[-89.487308,29.393346],[-89.484354,29.397471],[-89.482318,29.406222],[-89.47714,29.411241],[-89.470142,29.401471],[-89.457303,29.393148],[-89.42238,29.390628],[-89.380001,29.391785],[-89.373109,29.387175],[-89.355528,29.381569],[-89.340304,29.381412],[-89.336589,29.378228],[-89.347615,29.365],[-89.350694,29.349544],[-89.32317,29.343982],[-89.303766,29.357455],[-89.283028,29.356467],[-89.272543,29.351195],[-89.2653,29.345352],[-89.257852,29.336872],[-89.253545,29.322802],[-89.24087,29.310081],[-89.224192,29.313792],[-89.223444,29.318066],[-89.219734,29.324412],[-89.204703,29.338674],[-89.200389,29.344418],[-89.200599,29.347672],[-89.189354,29.345061],[-89.179547,29.339608],[-89.177351,29.33521],[-89.178221,29.32697],[-89.165015,29.303039],[-89.157593,29.296691],[-89.140275,29.291085],[-89.134337,29.27934],[-89.136979,29.275239],[-89.129688,29.265632],[-89.100106,29.25022],[-89.096173,29.24293],[-89.095544,29.238028],[-89.098389,29.232963],[-89.105833,29.231608],[-89.106244,29.215912],[-89.10065,29.206314],[-89.090724,29.199992],[-89.068265,29.204166],[-89.067371,29.208636],[-89.029103,29.220956],[-89.02185,29.218162],[-89.015192,29.211561],[-89.000674,29.180091],[-89.00529,29.164949],[-89.013254,29.16328],[-89.018344,29.165046],[-89.024269,29.170043],[-89.043919,29.162528],[-89.047233,29.157833],[-89.03873,29.14238],[-89.032004,29.144747],[-89.024149,29.137298],[-89.023942,29.1337],[-89.026031,29.130126],[-89.051953,29.106554],[-89.055475,29.084167],[-89.062335,29.070234],[-89.09126,29.066931],[-89.098068,29.067984],[-89.105009,29.073641],[-89.121542,29.069074],[-89.143453,29.047591],[-89.156339,29.028782],[-89.162,29.01586],[-89.162326,29.011713],[-89.164788,29.008703],[-89.16985,29.008703],[-89.175732,29.012123],[-89.186061,29.017993],[-89.18215,29.025486],[-89.189893,29.032635],[-89.197871,29.029701],[-89.202563,29.031603],[-89.211144,29.040813],[-89.216101,29.056371],[-89.215531,29.06141],[-89.217201,29.067275],[-89.225865,29.07866],[-89.23631,29.084605],[-89.254726,29.083261],[-89.257283,29.081086],[-89.256869,29.0738],[-89.25364,29.064954],[-89.259354,29.058358],[-89.283215,29.053325],[-89.29109,29.053097],[-89.304888,29.046379],[-89.315389,29.039081],[-89.318102,29.035342],[-89.315182,29.032662],[-89.32485,29.013805],[-89.335228,29.015003],[-89.338249,29.012935],[-89.383814,28.947434],[-89.41148,28.925011],[-89.419865,28.929709],[-89.412388,28.957504],[-89.408157,28.965341],[-89.398104,28.977016],[-89.382106,28.981525],[-89.375049,28.985368],[-89.334735,29.040335],[-89.339828,29.052221],[-89.354798,29.072543],[-89.374522,29.084174],[-89.405654,29.086936],[-89.411154,29.105838],[-89.409371,29.127855],[-89.417718,29.13869],[-89.428965,29.14451],[-89.432932,29.149023],[-89.447472,29.178576],[-89.455829,29.190991],[-89.47231,29.20755],[-89.482844,29.215053],[-89.5366,29.236212],[-89.606651,29.252023],[-89.671781,29.289028],[-89.697258,29.296679],[-89.726162,29.304026],[-89.782149,29.311132],[-89.819859,29.310241],[-89.850305,29.311768],[-89.855109,29.334997],[-89.853699,29.34064],[-89.847124,29.349186],[-89.835,29.359043],[-89.820824,29.377486],[-89.816916,29.384385],[-89.816155,29.393518],[-89.816916,29.398845],[-89.819199,29.404173],[-89.822243,29.4095],[-89.826049,29.415589],[-89.835392,29.418538],[-89.843553,29.421677],[-89.845075,29.434615],[-89.836773,29.45404],[-89.833659,29.456686],[-89.833659,29.459731],[-89.832898,29.463536],[-89.833659,29.467341],[-89.83442,29.470386],[-89.840509,29.47343],[-89.849642,29.477996],[-89.86258,29.476474],[-89.876224,29.472168],[-89.902179,29.460011],[-89.918999,29.444254],[-89.932598,29.429288],[-89.95543,29.428527],[-89.96195,29.432874],[-89.964563,29.434615],[-89.972934,29.443748],[-89.977326,29.448316],[-89.991961,29.463536],[-90.01251,29.462775],[-90.018598,29.45212],[-90.022404,29.444509],[-90.029466,29.432015],[-90.032298,29.427005],[-90.031536,29.412545],[-90.033295,29.393274],[-90.029468,29.388136],[-90.029614,29.386658],[-90.029967,29.383087],[-90.030761,29.375043],[-90.030764,29.375008],[-90.030855,29.374876],[-90.033604,29.370851],[-90.035415,29.368201],[-90.036374,29.363661],[-90.032842,29.348624],[-90.031815,29.344251],[-90.034275,29.322661],[-90.028536,29.307083],[-90.013778,29.30271],[-90.009678,29.294785],[-90.016288,29.284257],[-90.019517,29.282213],[-90.032088,29.280027],[-90.043293,29.282487],[-90.057094,29.281331],[-90.061057,29.276748],[-90.059691,29.272648],[-90.060511,29.267729],[-90.070622,29.262537],[-90.086747,29.259257],[-90.091119,29.261443],[-90.097678,29.26199],[-90.101231,29.259804],[-90.096038,29.240673],[-90.073355,29.227282],[-90.073355,29.210611],[-90.070622,29.208698],[-90.06361,29.209474],[-90.04291,29.211765],[-90.019772,29.231903],[-90.005718,29.240627],[-89.969981,29.255753],[-89.965667,29.259126],[-89.959509,29.267677],[-89.951175,29.266124],[-89.949925,29.263154],[-89.950756,29.260801],[-89.95646,29.253744],[-90.022029,29.216065],[-90.058512,29.183687],[-90.079276,29.16997],[-90.088684,29.162574],[-90.104162,29.150407],[-90.174273,29.105301],[-90.223587,29.085075],[-90.231984,29.08773],[-90.245283,29.085824],[-90.343293,29.057062],[-90.348768,29.057817],[-90.349891,29.063681],[-90.325514,29.075138],[-90.304129,29.077332],[-90.29293,29.078761],[-90.282983,29.082326],[-90.26629,29.089421],[-90.258145,29.091627],[-90.253141,29.093772],[-90.249806,29.100919],[-90.250044,29.108067],[-90.243849,29.11045],[-90.234235,29.110268],[-90.234405,29.128824],[-90.243435,29.136311],[-90.248629,29.13837],[-90.26901,29.139242],[-90.280516,29.142521],[-90.27832,29.150691],[-90.297,29.171317],[-90.302846,29.175098],[-90.302948,29.187948],[-90.300885,29.196171],[-90.293183,29.199789],[-90.2828,29.192545],[-90.275851,29.193668],[-90.271251,29.204639],[-90.286621,29.225694],[-90.300304,29.231241],[-90.311663,29.237954],[-90.311523,29.256374],[-90.316093,29.264777],[-90.332796,29.276956],[-90.367166,29.274128],[-90.368154,29.270736],[-90.367012,29.264956],[-90.372565,29.258923],[-90.387924,29.252786],[-90.383857,29.235606],[-90.399465,29.201046],[-90.408578,29.196421],[-90.409416,29.196135],[-90.432912,29.188132],[-90.435907,29.188449],[-90.443954,29.19583],[-90.472489,29.192688],[-90.473273,29.195224],[-90.468773,29.198469],[-90.467233,29.202549],[-90.485786,29.209843],[-90.494928,29.216713],[-90.490987,29.220883],[-90.46832,29.227532],[-90.465764,29.242951],[-90.462866,29.249809],[-90.450674,29.263739],[-90.452186,29.26625],[-90.472779,29.272556],[-90.495299,29.287277],[-90.510555,29.290925],[-90.517277,29.282719],[-90.526216,29.276492],[-90.552005,29.278512],[-90.565436,29.285111],[-90.582525,29.276037],[-90.589724,29.248521],[-90.58847,29.245863],[-90.583924,29.242886],[-90.576506,29.243986],[-90.565378,29.242475],[-90.544547,29.230683],[-90.543245,29.227843],[-90.544311,29.224292],[-90.556501,29.219913],[-90.55739,29.207881],[-90.560889,29.204261],[-90.575277,29.206827],[-90.618413,29.20329],[-90.624161,29.210366],[-90.62742,29.211004],[-90.633819,29.209128],[-90.640223,29.196554],[-90.645612,29.175867],[-90.645169,29.172958],[-90.640863,29.171261],[-90.636973,29.164572],[-90.647042,29.12858],[-90.677724,29.118742],[-90.691109,29.121722],[-90.700893,29.12147],[-90.718035,29.116611],[-90.731239,29.122886],[-90.764189,29.113374],[-90.773458,29.100133],[-90.799444,29.087377],[-90.802053,29.083322],[-90.803699,29.063709],[-90.79872,29.054841],[-90.781981,29.049431],[-90.765188,29.049403],[-90.750092,29.053247],[-90.7253,29.066616],[-90.709105,29.064305],[-90.70535,29.062679],[-90.702102,29.060275],[-90.692205,29.059607],[-90.683645,29.060944],[-90.676958,29.063619],[-90.665589,29.06723],[-90.652348,29.069237],[-90.644189,29.07151],[-90.641247,29.072313],[-90.63924,29.072848],[-90.637623,29.072084],[-90.636033,29.069792],[-90.637495,29.066608],[-90.648058,29.062649],[-90.730899,29.042259],[-90.755677,29.038997],[-90.79768,29.039741],[-90.811473,29.03658],[-90.839345,29.039167],[-90.842762,29.042947],[-90.844849,29.048721],[-90.841226,29.054266],[-90.844593,29.06728],[-90.862757,29.094863],[-90.867766,29.095434],[-90.877583,29.104891],[-90.885351,29.117016],[-90.898215,29.131342],[-90.925797,29.153116],[-90.941877,29.162373],[-90.948091,29.174104],[-90.961278,29.180817],[-90.981458,29.171211],[-91.000096,29.169481],[-91.023955,29.174784],[-91.031786,29.182188],[-91.05863,29.181734],[-91.094015,29.187711],[-91.11476,29.207918],[-91.129141,29.215863],[-91.199647,29.221287],[-91.219032,29.226051],[-91.278792,29.247776],[-91.302677,29.265958],[-91.334885,29.298775],[-91.33275,29.305816],[-91.309314,29.305698],[-91.299054,29.309017],[-91.291821,29.311357],[-91.29042,29.313062],[-91.279742,29.326058],[-91.276647,29.329825],[-91.276187,29.332783],[-91.274308,29.344878],[-91.270582,29.355415],[-91.270053,29.356912],[-91.26994,29.357231],[-91.266589,29.361218],[-91.265479,29.361767],[-91.251546,29.368659],[-91.251232,29.368814],[-91.249517,29.369662],[-91.249109,29.369864],[-91.245558,29.37058],[-91.238515,29.371999],[-91.235348,29.370638],[-91.222377,29.360703],[-91.207299,29.360703],[-91.197465,29.369882],[-91.200087,29.38955],[-91.218463,29.407235],[-91.215976,29.412505],[-91.214284,29.416089],[-91.211999,29.420931],[-91.2151,29.427542],[-91.217448,29.432549],[-91.218067,29.433193],[-91.219242,29.434418],[-91.221166,29.436421],[-91.24164,29.441021],[-91.251319,29.444483],[-91.258226,29.446954],[-91.259537,29.458001],[-91.259844,29.460582],[-91.259988,29.461803],[-91.260024,29.462102],[-91.261588,29.464954],[-91.265649,29.472362],[-91.2813,29.481547],[-91.294325,29.476894],[-91.335742,29.485886],[-91.343567,29.492593],[-91.34588,29.504538],[-91.356625,29.515191],[-91.402214,29.511914],[-91.420449,29.515745],[-91.42713,29.520215],[-91.432337,29.53283],[-91.439941,29.540434],[-91.447345,29.544749],[-91.468748,29.544299],[-91.517274,29.52974],[-91.531021,29.531543],[-91.531471,29.535374],[-91.52584,29.545946],[-91.525523,29.551904],[-91.529217,29.558598],[-91.537445,29.565888],[-91.541974,29.594353],[-91.553537,29.632766],[-91.560908,29.63735],[-91.570589,29.638312],[-91.581843,29.637165],[-91.600179,29.631156],[-91.625114,29.626195],[-91.643832,29.630625],[-91.648941,29.633635],[-91.648657,29.636713],[-91.646478,29.639427],[-91.643198,29.640274],[-91.637344,29.647217],[-91.627286,29.662132],[-91.625114,29.671679],[-91.626826,29.684753],[-91.623829,29.69924],[-91.618479,29.710816],[-91.61809,29.720694],[-91.621512,29.735429],[-91.632829,29.742576],[-91.667128,29.745822],[-91.710935,29.738993],[-91.737253,29.74937],[-91.752259,29.748264],[-91.783674,29.740689],[-91.830499,29.718918],[-91.845962,29.708763],[-91.85864,29.703121],[-91.866516,29.70715],[-91.88075,29.710839],[-91.880999,29.713338],[-91.878331,29.716087],[-91.875637,29.722316],[-91.87557,29.722471],[-91.87557,29.728043],[-91.878355,29.735007],[-91.879748,29.742668],[-91.878355,29.751025],[-91.874761,29.760083],[-91.859151,29.783331],[-91.854677,29.807436],[-91.869998,29.828328],[-91.889118,29.836023],[-91.90689,29.83094],[-91.915989,29.815654],[-91.919143,29.815379],[-91.940723,29.817008],[-91.96123,29.810221],[-91.970443,29.80431],[-91.978381,29.799217],[-91.983871,29.794516],[-92.035666,29.781662],[-92.056398,29.772313],[-92.107486,29.744429],[-92.144431,29.716418],[-92.149349,29.697052],[-92.134347,29.669516],[-92.132804,29.660462],[-92.111787,29.62177],[-92.093419,29.618694],[-92.06564,29.619967],[-92.04767,29.624527],[-92.02532,29.625647],[-92.01627,29.618741],[-92.000371,29.613143],[-92.000003,29.613013],[-91.965031,29.608019],[-91.939903,29.610291],[-91.935024,29.612239],[-91.929567,29.61884],[-91.922825,29.633173],[-91.898996,29.63701],[-91.896763,29.634618],[-91.882318,29.62977],[-91.866113,29.631583],[-91.863018,29.633739],[-91.841294,29.62962],[-91.838981,29.624475],[-91.840921,29.619913],[-91.838297,29.616041],[-91.821693,29.606049],[-91.803831,29.599562],[-91.784976,29.595204],[-91.7785,29.58922],[-91.774805,29.582113],[-91.774686,29.576387],[-91.74632,29.574337],[-91.719102,29.565568],[-91.715642,29.565844],[-91.712002,29.56474],[-91.709205,29.561012],[-91.711654,29.55427],[-91.733956,29.539504],[-91.747058,29.535144],[-91.765448,29.520844],[-91.771927,29.504871],[-91.772529,29.499016],[-91.770069,29.493812],[-91.770516,29.488953],[-91.782387,29.482882],[-91.789119,29.482081],[-91.800121,29.486828],[-91.803448,29.486851],[-91.814609,29.482061],[-91.821576,29.473925],[-91.8385,29.478874],[-91.848665,29.484144],[-91.852598,29.494984],[-91.862324,29.502393],[-91.878746,29.502937],[-91.886815,29.505577],[-91.906175,29.518052],[-91.915322,29.518513],[-91.947007,29.53316],[-91.969312,29.536893],[-91.985726,29.547708],[-92.02681,29.566805],[-92.035462,29.57864],[-92.041168,29.581648],[-92.046316,29.584362],[-92.066533,29.583842],[-92.105923,29.586335],[-92.158624,29.581616],[-92.21259,29.562479],[-92.25186,29.539354],[-92.280392,29.533434],[-92.309357,29.533026],[-92.347236,29.539394],[-92.402165,29.551269],[-92.473585,29.561081],[-92.558602,29.569935],[-92.61627,29.578729],[-92.617725,29.579092],[-92.653651,29.588065],[-92.744126,29.617608],[-92.871232,29.670028],[-92.940455,29.701033],[-92.974305,29.71398],[-93.065354,29.740966],[-93.088182,29.749125],[-93.17693,29.770487],[-93.226934,29.777519],[-93.267456,29.778113],[-93.295573,29.775071],[-93.342104,29.763402],[-93.344993,29.759618],[-93.347331,29.759046],[-93.372029,29.763049],[-93.438973,29.768949],[-93.475252,29.769242],[-93.538462,29.763299],[-93.590786,29.755649],[-93.635304,29.752806],[-93.68364,29.747153],[-93.741948,29.736343],[-93.766048,29.7295],[-93.79925,29.71526],[-93.818995,29.704076],[-93.837971,29.690619],[-93.863204,29.724059],[-93.87002,29.735482],[-93.873941,29.73777],[-93.888821,29.742234],[-93.891637,29.744618],[-93.893829,29.753033],[-93.890821,29.761673],[-93.893862,29.767289],[-93.89847,29.771577],[-93.922407,29.785048],[-93.926504,29.78956],[-93.928808,29.79708],[-93.929208,29.802952],[-93.927992,29.80964],[-93.922744,29.818808],[-93.91636,29.824968],[-93.900728,29.836967],[-93.890679,29.843159],[-93.872446,29.85165],[-93.86357,29.857177],[-93.85514,29.864099],[-93.854343,29.864991],[-93.838374,29.882855],[-93.830374,29.894359],[-93.818998,29.914822],[-93.81655,29.920726],[-93.813735,29.935126],[-93.807815,29.954549],[-93.789431,29.987812],[-93.786935,29.99058],[-93.741078,30.021571],[-93.739734,30.023987],[-93.739158,30.032627],[-93.737446,30.037283],[-93.722791,30.051162],[-93.720805,30.053043],[-93.70394,30.054291],[-93.70082,30.056274],[-93.699396,30.05925],[-93.70058,30.063666],[-93.70218,30.065474],[-93.716405,30.069122],[-93.731605,30.081282],[-93.734085,30.08613],[-93.732485,30.088914],[-93.723765,30.09413],[-93.702436,30.112721],[-93.701252,30.137376],[-93.698276,30.138608],[-93.69498,30.135185],[-93.692868,30.135217],[-93.688212,30.141376],[-93.697748,30.152944],[-93.703764,30.173936],[-93.710468,30.180671],[-93.717397,30.193439],[-93.720946,30.209852],[-93.71922,30.218542],[-93.713359,30.225261],[-93.705083,30.242752],[-93.705519,30.244185],[-93.707271,30.249937],[-93.709132,30.271827],[-93.70719,30.275513],[-93.706608,30.281187],[-93.708645,30.288317],[-93.711118,30.291372],[-93.714319,30.294282],[-93.718684,30.29501],[-93.72422,30.295134],[-93.738699,30.303794],[-93.760328,30.329924],[-93.764265,30.330223],[-93.765822,30.333318],[-93.756352,30.356166],[-93.755894,30.370709],[-93.758554,30.387077],[-93.757654,30.390423],[-93.751437,30.396288],[-93.745333,30.397022],[-93.740245,30.402263],[-93.722314,30.420729],[-93.702665,30.429947],[-93.6978,30.440583],[-93.697828,30.443838],[-93.705845,30.457748],[-93.716678,30.494006],[-93.710117,30.5064],[-93.714322,30.518562],[-93.727721,30.525671],[-93.732793,30.52996],[-93.740253,30.539569],[-93.729195,30.544842],[-93.725847,30.556978],[-93.727746,30.566487],[-93.727844,30.57407],[-93.712454,30.588479],[-93.692869,30.594382],[-93.689534,30.592759],[-93.687282,30.591601],[-93.684329,30.592586],[-93.681235,30.596102],[-93.679828,30.599758],[-93.680813,30.602993],[-93.683397,30.608041],[-93.685121,30.625201],[-93.6831,30.640763],[-93.670354,30.658034],[-93.654971,30.670184],[-93.638213,30.673058],[-93.629904,30.67994],[-93.621093,30.695159],[-93.620774,30.704122],[-93.616184,30.71398],[-93.611192,30.718053],[-93.609544,30.723139],[-93.609719,30.729182],[-93.617688,30.738479],[-93.619129,30.742002],[-93.607757,30.757657],[-93.592828,30.763986],[-93.589896,30.77776],[-93.589381,30.786681],[-93.584265,30.796663],[-93.578395,30.802047],[-93.569303,30.802969],[-93.563243,30.806218],[-93.561666,30.807739],[-93.554057,30.824941],[-93.553626,30.83514],[-93.558172,30.839974],[-93.558608,30.868822],[-93.558617,30.869424],[-93.565428,30.87431],[-93.567451,30.878524],[-93.567788,30.888302],[-93.564248,30.895045],[-93.556493,30.901451],[-93.55565,30.911228],[-93.551942,30.918646],[-93.549244,30.921006],[-93.546884,30.921511],[-93.54503,30.920837],[-93.542489,30.920064],[-93.530936,30.924534],[-93.526147,30.930035],[-93.526245,30.939411],[-93.532549,30.950696],[-93.549841,30.967118],[-93.560533,30.971286],[-93.567972,30.977981],[-93.571906,30.987614],[-93.569764,30.996715],[-93.56798,31.001534],[-93.566017,31.004567],[-93.562626,31.005995],[-93.555581,31.003919],[-93.539526,31.008498],[-93.516943,31.023662],[-93.516407,31.02955],[-93.516943,31.032584],[-93.523248,31.037842],[-93.531219,31.051678],[-93.532069,31.055264],[-93.529256,31.057567],[-93.52533,31.060601],[-93.52301,31.065241],[-93.526044,31.070773],[-93.53104,31.074699],[-93.540129,31.078003],[-93.546644,31.082989],[-93.551034,31.091111],[-93.551693,31.097258],[-93.549717,31.10516],[-93.541375,31.113502],[-93.539619,31.121844],[-93.540278,31.128868],[-93.544702,31.135889],[-93.544888,31.143137],[-93.544888,31.148844],[-93.54401,31.153015],[-93.540253,31.156579],[-93.53683,31.15862],[-93.531744,31.180817],[-93.533307,31.184463],[-93.535097,31.185614],[-93.548931,31.186601],[-93.55254,31.185605],[-93.552649,31.185575],[-93.560943,31.182482],[-93.569563,31.177574],[-93.579215,31.167422],[-93.588503,31.165581],[-93.598828,31.174679],[-93.600308,31.176158],[-93.602443,31.182541],[-93.607288,31.205403],[-93.604319,31.215286],[-93.604319,31.220794],[-93.60526,31.224153],[-93.607409,31.227243],[-93.609828,31.229661],[-93.616007,31.23396],[-93.616308,31.244595],[-93.614288,31.251631],[-93.613942,31.259375],[-93.620343,31.271025],[-93.642516,31.269508],[-93.657004,31.281736],[-93.668928,31.297975],[-93.67544,31.30104],[-93.684039,31.301771],[-93.68688,31.305166],[-93.687851,31.309835],[-93.677277,31.330483],[-93.668439,31.353012],[-93.665825,31.355184],[-93.664665,31.357698],[-93.663698,31.360019],[-93.663892,31.361953],[-93.665052,31.363886],[-93.66892,31.3664],[-93.669693,31.371815],[-93.668146,31.375103],[-93.668533,31.379357],[-93.670182,31.387184],[-93.671644,31.393352],[-93.674117,31.397681],[-93.695866,31.409392],[-93.701611,31.409334],[-93.704879,31.410881],[-93.704678,31.4189],[-93.697603,31.428409],[-93.70093,31.437784],[-93.709416,31.442995],[-93.749476,31.46869],[-93.74987,31.475276],[-93.74987,31.478929],[-93.747841,31.480958],[-93.745608,31.481973],[-93.741885,31.483535],[-93.737168,31.484622],[-93.730998,31.492119],[-93.728766,31.496786],[-93.725925,31.504092],[-93.726736,31.5116],[-93.733433,31.513223],[-93.739318,31.51505],[-93.740332,31.517079],[-93.741111,31.520101],[-93.74155,31.522558],[-93.743376,31.525196],[-93.746826,31.526008],[-93.74987,31.526211],[-93.751899,31.525602],[-93.75386,31.525331],[-93.760062,31.523933],[-93.780835,31.525384],[-93.787687,31.527344],[-93.798087,31.534044],[-93.818582,31.554826],[-93.820764,31.558221],[-93.822958,31.56813],[-93.834923,31.58621],[-93.834924,31.586211],[-93.839383,31.599075],[-93.838057,31.606795],[-93.827852,31.616551],[-93.823977,31.614228],[-93.818717,31.614556],[-93.816838,31.622509],[-93.818037,31.647892],[-93.825661,31.661022],[-93.826462,31.666919],[-93.822051,31.673967],[-93.817425,31.672146],[-93.804479,31.685664],[-93.802452,31.693186],[-93.802694,31.697783],[-93.803419,31.700686],[-93.80727,31.704232],[-93.810304,31.705481],[-93.814587,31.707444],[-93.815836,31.711905],[-93.815657,31.719043],[-93.819048,31.728858],[-93.824579,31.734397],[-93.830647,31.745811],[-93.830112,31.754555],[-93.827343,31.75937],[-93.822598,31.773559],[-93.823443,31.775098],[-93.827451,31.777741],[-93.831197,31.780227],[-93.834649,31.783309],[-93.836868,31.788734],[-93.836868,31.794159],[-93.839951,31.798597],[-93.846188,31.802021],[-93.85339,31.805467],[-93.870917,31.816837],[-93.874761,31.821661],[-93.874822,31.840611],[-93.879294,31.843977],[-93.884117,31.847606],[-93.888149,31.856914],[-93.889197,31.867693],[-93.896981,31.873382],[-93.901888,31.880063],[-93.901173,31.885958],[-93.904766,31.890599],[-93.909557,31.893144],[-93.915949,31.892861],[-93.919588,31.890748],[-93.923929,31.88985],[-93.927672,31.891497],[-93.932463,31.895539],[-93.935008,31.903773],[-93.938002,31.906917],[-93.943541,31.908564],[-93.953546,31.910563],[-93.971712,31.920384],[-93.977461,31.926419],[-94.012796,31.981668],[-94.018664,31.990843],[-94.029283,31.995865],[-94.038412,31.992437],[-94.041833,31.992402],[-94.04272,31.999265],[-94.0427,32.056012],[-94.042337,32.119914],[-94.042752,32.125163],[-94.042681,32.137956],[-94.042591,32.158097],[-94.042539,32.166826],[-94.042566,32.166894],[-94.042621,32.196005],[-94.042662,32.218146],[-94.042732,32.26962],[-94.042733,32.269696],[-94.042739,32.363559],[-94.042763,32.373332],[-94.042901,32.392283],[-94.042923,32.399918],[-94.042899,32.400659],[-94.042986,32.435507],[-94.042908,32.439891],[-94.042903,32.470386],[-94.042875,32.471348],[-94.042902,32.472906],[-94.042995,32.478004],[-94.042955,32.480261],[-94.043072,32.4843],[-94.043089,32.486561],[-94.042911,32.492852],[-94.042885,32.505145],[-94.043081,32.513613],[-94.043142,32.559502],[-94.043083,32.564261],[-94.042919,32.610142],[-94.042929,32.61826],[-94.042926,32.622015],[-94.042824,32.640305],[-94.04278,32.643466],[-94.042913,32.655127],[-94.043147,32.69303],[-94.043147,32.693031],[-94.042947,32.767991],[-94.043027,32.776863],[-94.042938,32.780558],[-94.042829,32.785277],[-94.042747,32.786973],[-94.043026,32.797476],[-94.042785,32.871486],[-94.043025,32.880446],[-94.042886,32.880965],[-94.042886,32.881089],[-94.042859,32.892771],[-94.042885,32.898911],[-94.043092,32.910021],[-94.043067,32.937903],[-94.043088,32.955592],[-94.042964,33.019219],[-94.041444,33.019188],[-94.035839,33.019145],[-94.027983,33.019139],[-94.024475,33.019207],[-93.814553,33.019372],[-93.804916,33.019381],[-93.723273,33.019457],[-93.531499,33.018643],[-93.524916,33.018637],[-93.520994,33.018616],[-93.520971,33.018616],[-93.490893,33.018442],[-93.49052,33.018442],[-93.489506,33.018443],[-93.467042,33.018611],[-93.377134,33.018234],[-93.340353,33.018337],[-93.308398,33.018179],[-93.308181,33.018156],[-93.238607,33.017992],[-93.215653,33.018393],[-93.197402,33.017951],[-93.154351,33.017856],[-93.101443,33.01774],[-93.100981,33.017786],[-93.081428,33.017928],[-93.073167,33.017898],[-93.070686,33.017792],[-92.988708,33.017298],[-92.971137,33.017192],[-92.946553,33.016807],[-92.86751,33.016062],[-92.854167,33.016132],[-92.844286,33.01607],[-92.844073,33.016034],[-92.830798,33.015661],[-92.796533,33.014836],[-92.733197,33.014347],[-92.724994,33.014351],[-92.724743,33.014347],[-92.723553,33.014328],[-92.715884,33.014398],[-92.711289,33.014307],[-92.503776,33.012161],[-92.501383,33.01216],[-92.469762,33.01201],[-92.37029,33.010717],[-92.362865,33.010628],[-92.335893,33.010349],[-92.292664,33.010103],[-92.222825,33.00908],[-92.069105,33.008163],[-91.951958,33.007428],[-91.950001,33.00752],[-91.875128,33.007728],[-91.755068,33.00701],[-91.735531,33.007569],[-91.62667,33.006639],[-91.617615,33.006717],[-91.609001,33.006556],[-91.579802,33.006518],[-91.579639,33.006472],[-91.572326,33.006908],[-91.559494,33.00684],[-91.500118,33.006784],[-91.489176,33.006182],[-91.4604,33.00591],[-91.453369,33.005843],[-91.435782,33.006099],[-91.425466,33.006016],[-91.376016,33.005794],[-91.333011,33.005529],[-91.329767,33.005421],[-91.326396,33.005376],[-91.325037,33.005364],[-91.322506,33.005341],[-91.312016,33.005262],[-91.284398,33.005007],[-91.265018,33.005084],[-91.166073,33.004106],[-91.166195,33.002238],[-91.168973,32.992132],[-91.173308,32.986088],[-91.182158,32.978639],[-91.186983,32.976194],[-91.197433,32.96482],[-91.199646,32.963561],[-91.201842,32.961212],[-91.20203,32.957332],[-91.20119,32.954982],[-91.199415,32.952314],[-91.20744,32.944393],[-91.210705,32.939845],[-91.21282,32.936076],[-91.214027,32.93032],[-91.213972,32.927198],[-91.212837,32.922104],[-91.211597,32.919624],[-91.208263,32.915354],[-91.199775,32.908512],[-91.196785,32.906784],[-91.181631,32.901446],[-91.175405,32.899998],[-91.170235,32.899391],[-91.159975,32.899879],[-91.15169,32.901935],[-91.145076,32.905494],[-91.134041,32.917676],[-91.132115,32.923122],[-91.131304,32.926919],[-91.131289,32.930049],[-91.135507,32.946164],[-91.137863,32.952756],[-91.137167,32.95652],[-91.136628,32.957349],[-91.133335,32.959056],[-91.131243,32.960928],[-91.130721,32.962257],[-91.130947,32.963815],[-91.13305,32.966541],[-91.137524,32.96955],[-91.138585,32.971352],[-91.135517,32.979657],[-91.134414,32.980533],[-91.125107,32.984669],[-91.111757,32.988361],[-91.106581,32.988938],[-91.09693,32.986412],[-91.094265,32.984371],[-91.090887,32.981174],[-91.086802,32.976266],[-91.080355,32.962794],[-91.078904,32.951818],[-91.080507,32.950123],[-91.081892,32.949435],[-91.083084,32.947909],[-91.081913,32.944768],[-91.080431,32.943206],[-91.072075,32.937832],[-91.070547,32.936036],[-91.064804,32.926464],[-91.063875,32.922692],[-91.064854,32.91652],[-91.063684,32.906364],[-91.063809,32.903709],[-91.064449,32.901064],[-91.068186,32.891929],[-91.070602,32.888659],[-91.086683,32.873392],[-91.105631,32.858396],[-91.116091,32.855641],[-91.124725,32.854861],[-91.127886,32.855059],[-91.13789,32.848975],[-91.143559,32.844739],[-91.145002,32.84287],[-91.149704,32.83122],[-91.152174,32.826673],[-91.157155,32.823823],[-91.158336,32.822304],[-91.161669,32.812465],[-91.161412,32.800004],[-91.164397,32.785821],[-91.158583,32.781096],[-91.156918,32.780343],[-91.157614,32.776033],[-91.164968,32.761984],[-91.165814,32.757842],[-91.165328,32.751301],[-91.163389,32.747009],[-91.15861,32.743449],[-91.154461,32.742339],[-91.150244,32.741786],[-91.131691,32.743107],[-91.123152,32.742798],[-91.113652,32.73997],[-91.090573,32.7361],[-91.077176,32.732534],[-91.060766,32.727494],[-91.056999,32.72558],[-91.054481,32.722259],[-91.054749,32.719229],[-91.057043,32.712576],[-91.063946,32.702926],[-91.076061,32.693751],[-91.081145,32.691127],[-91.098762,32.685291],[-91.104443,32.682434],[-91.118258,32.674075],[-91.127723,32.665343],[-91.130928,32.65887],[-91.137638,32.650621],[-91.138712,32.649774],[-91.142038,32.649265],[-91.144347,32.648029],[-91.149753,32.644041],[-91.152081,32.641508],[-91.152699,32.640757],[-91.153744,32.635228],[-91.153821,32.631282],[-91.153556,32.626181],[-91.151318,32.615919],[-91.146204,32.604144],[-91.144074,32.600613],[-91.141148,32.597209],[-91.13528,32.591651],[-91.127912,32.586493],[-91.125108,32.585187],[-91.119854,32.584795],[-91.118641,32.585139],[-91.112764,32.590186],[-91.105704,32.590879],[-91.087784,32.59707],[-91.079506,32.60068],[-91.061354,32.605372],[-91.049796,32.607188],[-91.0489,32.613556],[-91.043263,32.620779],[-91.041448,32.625135],[-91.040401,32.632521],[-91.038415,32.636443],[-91.030181,32.644052],[-91.025769,32.646573],[-91.019115,32.643845],[-91.014286,32.640482],[-91.00682,32.631261],[-91.0035,32.624845],[-91.002962,32.622555],[-91.002997,32.614678],[-91.004599,32.60978],[-91.010228,32.601927],[-91.013723,32.598419],[-91.016231,32.596953],[-91.022943,32.591848],[-91.030991,32.583347],[-91.03617,32.579556],[-91.043451,32.57627],[-91.049312,32.573624],[-91.069354,32.563052],[-91.069786,32.562793],[-91.080398,32.556442],[-91.075373,32.546718],[-91.061685,32.536448],[-91.051168,32.53089],[-91.011275,32.516596],[-91.005468,32.513842],[-90.994481,32.506331],[-90.989826,32.500139],[-90.988174,32.496796],[-90.987831,32.49419],[-90.988278,32.49119],[-90.990703,32.487749],[-90.996388,32.483925],[-90.999223,32.482615],[-91.004206,32.48214],[-91.017106,32.48374],[-91.024106,32.48524],[-91.033906,32.48854],[-91.038106,32.49044],[-91.045807,32.495539],[-91.050907,32.500139],[-91.060516,32.512361],[-91.070467,32.528171],[-91.074817,32.533467],[-91.093741,32.549128],[-91.097878,32.544752],[-91.097949,32.537214],[-91.098756,32.532968],[-91.101304,32.525599],[-91.106985,32.514934],[-91.116708,32.500139],[-91.117308,32.495039],[-91.116008,32.48314],[-91.112108,32.47614],[-91.108808,32.47204],[-91.095308,32.458741],[-91.081807,32.450441],[-91.070207,32.445141],[-91.052907,32.438442],[-91.029606,32.433542],[-91.026306,32.434442],[-91.016506,32.440342],[-91.004806,32.445741],[-90.998974,32.450165],[-90.993863,32.45085],[-90.983423,32.449077],[-90.978547,32.447032],[-90.96959,32.43949],[-90.96856,32.438084],[-90.966869,32.435499],[-90.966457,32.433868],[-90.965986,32.424806],[-90.966255,32.421027],[-90.967767,32.418279],[-90.971141,32.414636],[-90.974461,32.412001],[-90.980723,32.408243],[-90.99408,32.403862],[-90.99378,32.396778],[-90.994686,32.392277],[-90.996237,32.388061],[-91.000606,32.381644],[-91.004506,32.368144],[-91.004506,32.364744],[-91.003506,32.362145],[-91.000106,32.357695],[-90.993625,32.354047],[-90.986672,32.35176],[-90.954583,32.345859],[-90.942981,32.345956],[-90.934897,32.344967],[-90.92117,32.342073],[-90.912363,32.339454],[-90.907756,32.343611],[-90.897762,32.35436],[-90.89206,32.370579],[-90.888947,32.373246],[-90.878289,32.374548],[-90.875631,32.372434],[-90.882161,32.357552],[-90.90072,32.330379],[-90.90124,32.323386],[-90.902558,32.319587],[-90.905173,32.315497],[-90.916157,32.303582],[-90.922231,32.298639],[-90.933991,32.290343],[-90.947834,32.283486],[-90.951351,32.283199],[-90.953008,32.284043],[-90.955405,32.286241],[-90.961171,32.293288],[-90.963079,32.296285],[-90.964149,32.296872],[-90.971643,32.297497],[-90.974602,32.297122],[-90.976199,32.29645],[-90.979475,32.293702],[-90.980747,32.29141],[-90.984077,32.279954],[-90.982985,32.270294],[-90.981028,32.266733],[-90.979663,32.265252],[-90.971344,32.257742],[-90.969403,32.25252],[-90.970016,32.25168],[-90.976139,32.248092],[-90.98029,32.243601],[-90.983135,32.231371],[-90.983263,32.226201],[-90.983434,32.221305],[-90.985989,32.217856],[-90.988672,32.215812],[-90.991227,32.214662],[-90.994293,32.213768],[-90.997359,32.213896],[-90.999531,32.214662],[-91.001192,32.215173],[-91.002469,32.215812],[-91.004769,32.22105],[-91.006106,32.22405],[-91.009606,32.22615],[-91.021507,32.236149],[-91.026607,32.238749],[-91.034307,32.241549],[-91.039007,32.242349],[-91.046507,32.241149],[-91.050307,32.237949],[-91.051807,32.234449],[-91.053107,32.22795],[-91.055107,32.22475],[-91.061408,32.21865],[-91.071108,32.22605],[-91.075108,32.22705],[-91.083708,32.22645],[-91.092108,32.22385],[-91.100409,32.21785],[-91.108509,32.20815],[-91.113009,32.20655],[-91.114084,32.206697],[-91.11727,32.206668],[-91.124043,32.211104],[-91.128495,32.213169],[-91.130197,32.213666],[-91.133587,32.213432],[-91.158026,32.201956],[-91.162062,32.199035],[-91.164171,32.196888],[-91.168073,32.186635],[-91.171046,32.176526],[-91.173664,32.164231],[-91.174552,32.154978],[-91.173495,32.149009],[-91.171702,32.14425],[-91.165452,32.13429],[-91.162822,32.132694],[-91.155043,32.132243],[-91.1444,32.13039],[-91.136566,32.127371],[-91.131403,32.126213],[-91.113866,32.125731],[-91.111294,32.125036],[-91.103696,32.130007],[-91.101181,32.131136],[-91.091656,32.133604],[-91.08163,32.133992],[-91.077043,32.133493],[-91.069081,32.131478],[-91.061555,32.126907],[-91.053175,32.124237],[-91.051207,32.144152],[-91.050207,32.145252],[-91.048507,32.150152],[-91.049707,32.157352],[-91.055707,32.163752],[-91.058907,32.171251],[-91.057647,32.177354],[-91.050207,32.178451],[-91.041807,32.174551],[-91.031907,32.167851],[-91.025007,32.162552],[-91.016606,32.160852],[-91.00619,32.156957],[-91.004106,32.146152],[-91.005006,32.142852],[-91.006406,32.139952],[-91.011806,32.131153],[-91.017606,32.125153],[-91.020006,32.123553],[-91.027007,32.121053],[-91.030799,32.120566],[-91.030907,32.120552],[-91.030706,32.114337],[-91.030507,32.108153],[-91.034707,32.101053],[-91.038607,32.098254],[-91.066679,32.08533],[-91.080008,32.079154],[-91.081508,32.077754],[-91.081708,32.075754],[-91.079108,32.050255],[-91.080208,32.048355],[-91.082308,32.047555],[-91.098708,32.048355],[-91.103708,32.050255],[-91.114309,32.058255],[-91.124109,32.071854],[-91.128609,32.076554],[-91.134909,32.080354],[-91.139309,32.081754],[-91.14511,32.081354],[-91.14881,32.080154],[-91.15581,32.075554],[-91.16031,32.070354],[-91.16161,32.067754],[-91.16201,32.065354],[-91.16201,32.062355],[-91.16131,32.059755],[-91.15901,32.055955],[-91.15631,32.052655],[-91.15141,32.049255],[-91.14511,32.046555],[-91.125109,32.042855],[-91.095508,32.037455],[-91.088108,32.034455],[-91.084408,32.031456],[-91.082608,32.028656],[-91.080808,32.023456],[-91.079928,32.018316],[-91.075908,32.016828],[-91.090105,32.000157],[-91.096108,31.994857],[-91.104108,31.990357],[-91.117409,31.987057],[-91.16441,31.982557],[-91.17021,31.979057],[-91.17741,31.973257],[-91.18481,31.965557],[-91.18831,31.960958],[-91.18911,31.957458],[-91.18881,31.953158],[-91.18951,31.946358],[-91.19321,31.935658],[-91.19291,31.934958],[-91.19111,31.934158],[-91.18471,31.935058],[-91.18371,31.933158],[-91.18491,31.923759],[-91.18111,31.920059],[-91.18061,31.917959],[-91.18321,31.916159],[-91.18921,31.914259],[-91.19081,31.912959],[-91.19261,31.910159],[-91.19381,31.909559],[-91.19751,31.908659],[-91.20101,31.909159],[-91.20281,31.907959],[-91.20511,31.904159],[-91.20881,31.900459],[-91.226951,31.885105],[-91.234899,31.876863],[-91.248144,31.869848],[-91.264412,31.86546],[-91.266512,31.86426],[-91.267712,31.86266],[-91.269012,31.858661],[-91.268812,31.855161],[-91.268112,31.853061],[-91.266612,31.851161],[-91.261144,31.846119],[-91.245624,31.833165],[-91.245047,31.831447],[-91.247367,31.822323],[-91.250111,31.817762],[-91.255611,31.812662],[-91.262011,31.809362],[-91.269212,31.809162],[-91.276712,31.811362],[-91.280212,31.813162],[-91.282212,31.814762],[-91.284912,31.818362],[-91.287812,31.824161],[-91.289412,31.828661],[-91.290135,31.833658],[-91.289312,31.846861],[-91.293413,31.86016],[-91.294713,31.86046],[-91.326914,31.854961],[-91.333814,31.853261],[-91.338414,31.851261],[-91.343014,31.846861],[-91.345714,31.842861],[-91.359514,31.799362],[-91.363714,31.780363],[-91.365529,31.761628],[-91.355214,31.758063],[-91.325973,31.76151],[-91.301315,31.766748],[-91.286045,31.772062],[-91.273874,31.771178],[-91.263043,31.766995],[-91.259611,31.76129],[-91.263406,31.754468],[-91.275545,31.745515],[-91.291723,31.74526],[-91.310734,31.749071],[-91.317861,31.749792],[-91.319816,31.749989],[-91.338663,31.750005],[-91.356394,31.749106],[-91.365034,31.748184],[-91.371804,31.742948],[-91.380239,31.733242],[-91.380915,31.732464],[-91.397115,31.711364],[-91.397915,31.709364],[-91.400015,31.697864],[-91.400115,31.688164],[-91.398015,31.662665],[-91.395715,31.644165],[-91.396115,31.639265],[-91.398315,31.626265],[-91.401015,31.620365],[-91.416498,31.613133],[-91.421116,31.611565],[-91.429616,31.611365],[-91.436716,31.612665],[-91.463817,31.620365],[-91.474318,31.625365],[-91.479818,31.628965],[-91.482618,31.631565],[-91.487518,31.637065],[-91.490027,31.641],[-91.492748,31.644279],[-91.494478,31.645013],[-91.497665,31.645371],[-91.499278,31.644658],[-91.50731,31.639068],[-91.512336,31.634722],[-91.515462,31.630372],[-91.516659,31.627332],[-91.517921,31.618642],[-91.517233,31.61346],[-91.516567,31.611818],[-91.51301,31.606885],[-91.502783,31.595727],[-91.494118,31.590165],[-91.488618,31.587466],[-91.485218,31.586166],[-91.479418,31.585466],[-91.466317,31.586066],[-91.457517,31.587566],[-91.436316,31.594965],[-91.430716,31.596465],[-91.422716,31.597065],[-91.417115,31.596265],[-91.413015,31.595365],[-91.403915,31.589766],[-91.405415,31.576466],[-91.406615,31.571966],[-91.407915,31.569366],[-91.414915,31.562166],[-91.426416,31.554566],[-91.437616,31.546166],[-91.443916,31.542466],[-91.450017,31.539666],[-91.479718,31.530366],[-91.481318,31.530666],[-91.483918,31.532566],[-91.489618,31.534266],[-91.500118,31.532616],[-91.506719,31.532966],[-91.511217,31.532612],[-91.513963,31.532084],[-91.51581,31.530894],[-91.521445,31.523912],[-91.522536,31.522078],[-91.52292,31.519841],[-91.522862,31.517493],[-91.520579,31.513207],[-91.516759,31.511772],[-91.514917,31.510113],[-91.515157,31.50338],[-91.51714,31.498394],[-91.518148,31.483483],[-91.516999,31.460574],[-91.51513,31.449206],[-91.513366,31.444396],[-91.510356,31.438928],[-91.506423,31.43146],[-91.500046,31.42052],[-91.49004,31.412716],[-91.48023,31.404391],[-91.476926,31.397796],[-91.472065,31.395925],[-91.472149,31.391434],[-91.471992,31.382143],[-91.471098,31.376917],[-91.472465,31.371326],[-91.47887,31.364955],[-91.504163,31.36495],[-91.508075,31.366276],[-91.515978,31.370286],[-91.521836,31.37517],[-91.52695,31.380855],[-91.532336,31.390275],[-91.539458,31.414021],[-91.539504,31.41791],[-91.537002,31.423184],[-91.537137,31.424161],[-91.540647,31.430758],[-91.541626,31.431706],[-91.545013,31.433026],[-91.548465,31.432668],[-91.55275,31.430692],[-91.554805,31.42857],[-91.565179,31.423447],[-91.570092,31.419487],[-91.576265,31.410498],[-91.578246,31.403859],[-91.578334,31.399067],[-91.573931,31.390886],[-91.571234,31.384664],[-91.568953,31.377629],[-91.562555,31.383219],[-91.560524,31.384559],[-91.55568,31.386413],[-91.552432,31.385658],[-91.546207,31.38248],[-91.546607,31.381198],[-91.549915,31.376315],[-91.551002,31.363645],[-91.550869,31.360574],[-91.548894,31.353998],[-91.548967,31.347255],[-91.545617,31.343762],[-91.536061,31.338355],[-91.533206,31.333225],[-91.531657,31.331801],[-91.518509,31.323332],[-91.510049,31.316822],[-91.50866,31.315131],[-91.507977,31.312943],[-91.508296,31.295829],[-91.508858,31.291644],[-91.512085,31.284177],[-91.515614,31.27821],[-91.518578,31.275283],[-91.537734,31.267369],[-91.553905,31.26305],[-91.564192,31.261633],[-91.574493,31.261289],[-91.587749,31.262563],[-91.606672,31.2659],[-91.621358,31.267811],[-91.637672,31.26768],[-91.641253,31.266917],[-91.648669,31.262238],[-91.651369,31.259528],[-91.654027,31.255753],[-91.655009,31.251815],[-91.654907,31.250175],[-91.652019,31.242691],[-91.644356,31.234414],[-91.625119,31.226071],[-91.601616,31.208573],[-91.595029,31.201969],[-91.590051,31.193693],[-91.589451,31.19114],[-91.588939,31.188959],[-91.588695,31.181025],[-91.589046,31.178586],[-91.591502,31.173118],[-91.597062,31.163492],[-91.599732,31.159592],[-91.604197,31.154545],[-91.621671,31.13687],[-91.624217,31.133729],[-91.625118,31.131879],[-91.625707,31.128763],[-91.626476,31.119125],[-91.625994,31.116896],[-91.621535,31.110257],[-91.61857,31.107328],[-91.614763,31.104357],[-91.609523,31.101557],[-91.594693,31.091444],[-91.567648,31.070186],[-91.56415,31.06683],[-91.561283,31.060906],[-91.559907,31.054119],[-91.560365,31.049508],[-91.561232,31.046225],[-91.564397,31.038965],[-91.571695,31.029782],[-91.578413,31.02403],[-91.590463,31.01727],[-91.60649,31.011216],[-91.625118,31.005374],[-91.636942,30.999416],[-91.625118,30.999167],[-91.538727,30.999388],[-91.500116,30.998691],[-91.49739,30.999006],[-91.425749,30.999007],[-91.423621,30.998984],[-91.24649,30.999474],[-91.224839,30.999183],[-91.224068,30.999183],[-91.176209,30.999144],[-91.17614,30.999144],[-91.108291,30.99888],[-91.108114,30.998857],[-91.080814,30.998909],[-91.06827,30.99892],[-91.060213,30.998953],[-90.89473,30.99963],[-90.826027,30.99936],[-90.825829,30.99936],[-90.783745,30.999447],[-90.779858,30.999457],[-90.775981,30.999491],[-90.769333,30.999374],[-90.758775,30.999583],[-90.734552,30.999222],[-90.734473,30.999214],[-90.651193,30.99951],[-90.648721,30.999486],[-90.588676,30.99965],[-90.587373,30.999604],[-90.584448,30.999698],[-90.583518,30.999698],[-90.567195,30.999733],[-90.547615,30.999723],[-90.486749,30.999693],[-90.485876,30.99974],[-90.477284,30.999717],[-90.475928,30.99974],[-90.474094,30.999798],[-90.442479,30.999722],[-90.441725,30.999729],[-90.437351,30.99973],[-90.426849,30.999776],[-90.422117,30.99981],[-90.380536,30.999872],[-90.369371,31.000335],[-90.347241,31.000359],[-90.34723,31.000359],[-90.346007,31.000363],[-90.259555,31.000657],[-90.164676,31.00098],[-90.164278,31.001025],[-90.131395,31.000924],[-90.128406,31.001047],[-90.050706,31.001215],[-90.029574,31.00119],[-90.022185,31.001302],[-90.005332,31.001364],[-89.97543,31.001692],[-89.972802,31.001392],[-89.927161,31.001437],[-89.923119,31.001446],[-89.897516,31.001913],[-89.892708,31.001759],[-89.856862,31.002075],[-89.835908,31.002059],[-89.835542,31.002059],[-89.824617,31.00206],[-89.816429,31.002084],[-89.752642,31.001853],[-89.752133,31.000183],[-89.751481,30.99969],[-89.749189,30.999555],[-89.747229,31.000184],[-89.745215,31.002252],[-89.741821,31.003441],[-89.732504,31.004831],[-89.729616,31.003927],[-89.728147,31.002431],[-89.728145,31.0023],[-89.728126,31.000956],[-89.73,30.999749],[-89.73554,30.999715],[-89.734227,30.995602],[-89.732035,30.994409],[-89.728563,30.994396],[-89.727698,30.993329],[-89.72993,30.98209],[-89.730501,30.979707],[-89.732168,30.978088],[-89.735912,30.977865],[-89.736883,30.977122],[-89.737149,30.976081],[-89.736086,30.974446],[-89.728382,30.971141],[-89.727086,30.969707],[-89.727072,30.967395],[-89.728041,30.966518],[-89.729327,30.966242],[-89.731393,30.96613],[-89.733933,30.966919],[-89.735686,30.966573],[-89.743134,30.959993],[-89.743592,30.958482],[-89.751196,30.951439],[-89.756333,30.943498],[-89.756554,30.941949],[-89.755835,30.939543],[-89.750073,30.935763],[-89.748897,30.933888],[-89.748851,30.932816],[-89.750073,30.929815],[-89.748208,30.923369],[-89.745161,30.922416],[-89.744448,30.920577],[-89.744789,30.918933],[-89.746718,30.915805],[-89.750073,30.91293],[-89.754086,30.9128],[-89.757417,30.914993],[-89.759403,30.915134],[-89.7626,30.913736],[-89.764202,30.911906],[-89.764451,30.910276],[-89.763622,30.907732],[-89.761593,30.906591],[-89.759803,30.906216],[-89.756671,30.901069],[-89.757024,30.898947],[-89.758719,30.897319],[-89.760701,30.896306],[-89.765101,30.896919],[-89.770269,30.89939],[-89.771986,30.899127],[-89.773099,30.898338],[-89.773553,30.896862],[-89.772011,30.89024],[-89.770027,30.882254],[-89.775458,30.881497],[-89.77711,30.881088],[-89.778583,30.878903],[-89.779194,30.875185],[-89.778005,30.873411],[-89.768237,30.866392],[-89.767789,30.865577],[-89.767955,30.863858],[-89.771722,30.854677],[-89.772587,30.85366],[-89.774739,30.853254],[-89.778755,30.8558],[-89.781643,30.856613],[-89.783384,30.856022],[-89.784073,30.85527],[-89.784416,30.853744],[-89.783791,30.852131],[-89.780947,30.848542],[-89.780228,30.846235],[-89.7806,30.845508],[-89.782649,30.845264],[-89.7875,30.844112],[-89.790121,30.837983],[-89.790805,30.832131],[-89.790432,30.830985],[-89.789426,30.83047],[-89.786837,30.830642],[-89.783985,30.827385],[-89.781168,30.820123],[-89.782404,30.817975],[-89.785894,30.815962],[-89.791745,30.820387],[-89.796634,30.821648],[-89.797491,30.821478],[-89.798654,30.820855],[-89.800049,30.819078],[-89.799673,30.815172],[-89.800422,30.810425],[-89.804065,30.803247],[-89.804632,30.802511],[-89.808176,30.800562],[-89.810143,30.799846],[-89.811171,30.798921],[-89.811479,30.797996],[-89.810863,30.797379],[-89.808601,30.794913],[-89.807071,30.793908],[-89.806237,30.793371],[-89.804901,30.792549],[-89.804696,30.791624],[-89.805107,30.790596],[-89.806763,30.789069],[-89.810657,30.788026],[-89.812096,30.788437],[-89.81261,30.789876],[-89.813535,30.792035],[-89.813946,30.793782],[-89.816418,30.796054],[-89.817559,30.796054],[-89.819164,30.795229],[-89.821078,30.792523],[-89.821486,30.791183],[-89.82113,30.788609],[-89.824395,30.779629],[-89.831537,30.76761],[-89.827886,30.758419],[-89.825774,30.747305],[-89.826053,30.742322],[-89.823492,30.740988],[-89.819548,30.740671],[-89.816764,30.740076],[-89.816075,30.739366],[-89.816499,30.737946],[-89.81748,30.737305],[-89.821535,30.736618],[-89.826175,30.736594],[-89.833818,30.736972],[-89.835437,30.73626],[-89.83687,30.734661],[-89.836945,30.728201],[-89.836331,30.727197],[-89.833065,30.726759],[-89.828061,30.725018],[-89.83006,30.71631],[-89.831961,30.715384],[-89.836257,30.716185],[-89.845801,30.707314],[-89.846576,30.706209],[-89.845926,30.704157],[-89.843605,30.702511],[-89.84173,30.702713],[-89.839312,30.704143],[-89.838065,30.704036],[-89.835848,30.699555],[-89.835478,30.691166],[-89.836797,30.690573],[-89.844965,30.674691],[-89.847201,30.670038],[-89.845807,30.668931],[-89.843816,30.668761],[-89.842344,30.669724],[-89.84135,30.671963],[-89.840597,30.67288],[-89.838868,30.673731],[-89.837894,30.672514],[-89.838804,30.66909],[-89.841787,30.665557],[-89.843355,30.663699],[-89.845642,30.663569],[-89.846917,30.663952],[-89.848879,30.665202],[-89.85055,30.664781],[-89.852263,30.662934],[-89.851889,30.661199],[-89.840988,30.658515],[-89.836047,30.657298],[-89.833261,30.657516],[-89.824986,30.649423],[-89.821868,30.644024],[-89.818081,30.634019],[-89.823261,30.622803],[-89.821424,30.619815],[-89.820868,30.618254],[-89.822389,30.614462],[-89.823278,30.60823],[-89.821286,30.60713],[-89.816905,30.60862],[-89.81538,30.608566],[-89.81392,30.607721],[-89.814563,30.606152],[-89.817202,30.600891],[-89.819696,30.596785],[-89.819838,30.59534],[-89.818527,30.592688],[-89.816396,30.591646],[-89.812109,30.591473],[-89.807118,30.587337],[-89.807762,30.585825],[-89.809739,30.584714],[-89.806843,30.572039],[-89.808184,30.568795],[-89.808027,30.567998],[-89.806182,30.567543],[-89.803753,30.568148],[-89.799947,30.569351],[-89.794495,30.569653],[-89.790318,30.567524],[-89.789695,30.56658],[-89.790078,30.565333],[-89.79243,30.563087],[-89.796697,30.561718],[-89.800277,30.563695],[-89.801494,30.563703],[-89.802833,30.562879],[-89.803887,30.560581],[-89.803831,30.558888],[-89.802789,30.557903],[-89.794532,30.556554],[-89.791664,30.551524],[-89.79196,30.548788],[-89.793989,30.548283],[-89.795231,30.548132],[-89.795388,30.547452],[-89.795335,30.546563],[-89.793818,30.545935],[-89.791046,30.545046],[-89.788542,30.544464],[-89.783994,30.544075],[-89.780246,30.544607],[-89.779565,30.544345],[-89.775355,30.538848],[-89.771643,30.530249],[-89.770744,30.527819],[-89.769996,30.521896],[-89.768133,30.51502],[-89.76057,30.515761],[-89.758862,30.513062],[-89.758575,30.505942],[-89.758133,30.505404],[-89.752931,30.502493],[-89.746435,30.502619],[-89.742816,30.498704],[-89.742396,30.497316],[-89.734615,30.494723],[-89.726154,30.49256],[-89.724614,30.491902],[-89.721181,30.488608],[-89.719652,30.483166],[-89.715886,30.477797],[-89.712493,30.47751],[-89.710164,30.478308],[-89.709551,30.477853],[-89.705538,30.47235],[-89.701799,30.465115],[-89.695864,30.463269],[-89.690102,30.459657],[-89.689779,30.459278],[-89.68341,30.451793],[-89.682829,30.44581],[-89.684816,30.439511],[-89.683521,30.434959],[-89.681946,30.434073],[-89.680515,30.428924],[-89.678514,30.414012],[-89.680134,30.4114],[-89.681165,30.411492],[-89.68232,30.412991],[-89.684118,30.412646],[-89.683686,30.405873],[-89.679153,30.399991],[-89.672762,30.389276],[-89.670134,30.382429],[-89.662204,30.371267],[-89.660274,30.363487],[-89.657191,30.356515],[-89.652693,30.355536],[-89.6467,30.3525],[-89.645617,30.351314],[-89.645199,30.348126],[-89.636299,30.34397],[-89.629727,30.339287],[-89.630399,30.332933],[-89.629877,30.321017],[-89.626606,30.315457],[-89.626221,30.314255],[-89.631643,30.309332],[-89.634208,30.308256],[-89.639872,30.307281],[-89.640401,30.306755],[-89.641705,30.303799],[-89.64344,30.287682],[-89.637647,30.285032],[-89.631411,30.279662],[-89.63052,30.276562],[-89.629757,30.267195],[-89.630649,30.262084],[-89.631215,30.261704],[-89.632225,30.260137],[-89.631789,30.256924],[-89.626922,30.251745],[-89.623856,30.249895],[-89.616156,30.247395],[-89.614156,30.244595],[-89.614056,30.241495],[-89.615856,30.235295],[-89.617056,30.227495],[-89.616956,30.225595],[-89.615856,30.223195],[-89.612556,30.219496],[-89.610655,30.218096],[-89.607655,30.217096],[-89.601255,30.216096],[-89.596655,30.211796],[-89.588854,30.200296],[-89.587354,30.195196],[-89.585754,30.192096],[-89.580754,30.186197],[-89.574454,30.181697],[-89.570154,30.180297],[-89.562253,30.182397],[-89.554653,30.185797],[-89.550853,30.189197],[-89.549053,30.191597],[-89.546953,30.193097],[-89.541453,30.195397],[-89.538652,30.195797],[-89.533352,30.194797],[-89.530452,30.192197],[-89.527952,30.188697],[-89.524504,30.180753],[-89.531213,30.177099],[-89.537493,30.171745],[-89.555013,30.170798],[-89.562825,30.168667],[-89.56827,30.163932],[-89.572093,30.160362],[-89.587062,30.150648],[-89.595021,30.149891],[-89.598027,30.152409],[-89.617542,30.156422],[-89.62288,30.152368],[-89.625053,30.150717],[-89.640989,30.138612],[-89.64455,30.134108],[-89.650467,30.126625],[-89.656986,30.118381],[-89.658594,30.117364],[-89.668164,30.111311],[-89.668638,30.111011],[-89.669157,30.110683],[-89.669182,30.110667],[-89.672881,30.11049],[-89.674124,30.11043],[-89.674633,30.110406],[-89.674956,30.110212],[-89.675762,30.109728],[-89.676117,30.109515],[-89.678156,30.10829],[-89.678163,30.108286],[-89.678293,30.107746],[-89.678457,30.107059],[-89.678499,30.106886],[-89.679655,30.102067],[-89.679823,30.101367],[-89.679838,30.101304],[-89.680042,30.100452],[-89.68035,30.099171],[-89.680485,30.098605],[-89.681265,30.095355],[-89.681906,30.092682],[-89.682057,30.092052],[-89.682181,30.091536],[-89.682181,30.091531],[-89.682277,30.090565],[-89.68228,30.090531],[-89.682331,30.090015],[-89.682371,30.089607],[-89.682393,30.089391],[-89.682409,30.089225],[-89.682691,30.086365],[-89.683051,30.082718],[-89.683168,30.08153],[-89.683712,30.076018],[-89.697556,30.070842],[-89.698461,30.070504],[-89.698496,30.070491],[-89.698909,30.070451],[-89.699144,30.070428],[-89.699629,30.070381],[-89.711848,30.069194],[-89.712942,30.069088],[-89.713003,30.069061],[-89.714085,30.068582],[-89.714827,30.068253],[-89.715494,30.067958],[-89.715884,30.067785],[-89.716237,30.067628],[-89.716425,30.067545],[-89.71675,30.067402],[-89.716887,30.067341],[-89.721992,30.06508],[-89.724433,30.063999],[-89.72633,30.063158],[-89.727453,30.062661],[-89.728026,30.061841],[-89.72957,30.059628],[-89.72968,30.05947],[-89.72979,30.059314],[-89.729911,30.059139],[-89.73099,30.057594],[-89.730999,30.057581],[-89.731208,30.054558],[-89.731428,30.051377],[-89.731452,30.05104],[-89.731545,30.049694],[-89.731545,30.049691],[-89.731544,30.04969],[-89.7163,30.02811],[-89.7163,30.028106],[-89.716301,30.028088],[-89.716328,30.027415],[-89.716336,30.02723],[-89.716358,30.026686],[-89.716377,30.026222],[-89.724649,30.022454],[-89.724669,30.022453],[-89.72576,30.022403],[-89.733323,30.022054],[-89.734361,30.022884],[-89.739028,30.026618],[-89.739574,30.027055],[-89.740886,30.028104],[-89.745827,30.032056],[-89.746313,30.032445],[-89.746505,30.032599],[-89.746506,30.0326],[-89.757138,30.03865],[-89.763216,30.042108],[-89.782534,30.045372],[-89.78463,30.045253],[-89.813684,30.043605],[-89.818561,30.043328],[-89.829762,30.033275],[-89.830442,30.032664],[-89.832213,30.031075],[-89.832965,30.0304],[-89.833794,30.029656],[-89.834644,30.028893],[-89.835202,30.028393],[-89.839926,30.024153],[-89.839933,30.024146],[-89.840963,30.022995],[-89.841739,30.022127],[-89.854533,30.007821],[-89.857558,30.004439],[-89.852312,29.97765],[-89.844202,29.955645],[-89.8385,29.945816],[-89.829023,29.939228],[-89.81803,29.934145],[-89.804463,29.932588],[-89.775459,29.937416],[-89.748492,29.945831],[-89.727933,29.95878],[-89.719067,29.953699],[-89.71291,29.946349],[-89.736311,29.936263],[-89.742727,29.935894],[-89.746273,29.928221],[-89.742479,29.90817],[-89.711158,29.879287],[-89.692004,29.868722],[-89.671555,29.867535],[-89.660568,29.862909],[-89.638016,29.864065],[-89.613159,29.87216],[-89.598129,29.881409],[-89.591194,29.897018],[-89.592346,29.917253],[-89.583099,29.931705],[-89.583099,29.945581],[-89.574997,29.959455],[-89.574425,29.983738],[-89.58136,29.994722],[-89.571533,29.999926],[-89.551292,30.005709],[-89.501587,30.034037],[-89.494064,30.040972],[-89.494637,30.0508],[-89.499275,30.058893],[-89.493484,30.072191],[-89.481926,30.079128],[-89.458946,30.06345],[-89.444618,30.060959],[-89.429047,30.05224],[-89.418465,30.049747],[-89.372375,30.054729],[-89.368637,30.047256],[-89.372375,30.036671],[-89.381096,30.030441],[-89.393555,30.029818],[-89.41597,30.020477],[-89.422813,30.015495],[-89.432785,30.008022],[-89.433411,29.991205],[-89.432785,29.978752],[-89.40538,29.965672],[-89.393555,29.966295],[-89.379227,29.963804],[-89.378601,29.919588],[-89.368019,29.911491],[-89.331894,29.91585],[-89.315453,29.923208],[-89.283562,29.97332],[-89.273315,29.99382],[-89.250534,30.002361],[-89.243706,29.997236],[-89.249969,29.975597],[-89.218071,29.97275],[-89.22377,29.961929],[-89.231178,29.925484],[-89.244843,29.93004],[-89.263062,29.929472],[-89.280144,29.924915],[-89.318306,29.898149],[-89.322289,29.887333],[-89.311462,29.881636],[-89.289253,29.880499],[-89.272179,29.886763],[-89.241425,29.88961],[-89.236298,29.886763],[-89.236298,29.877081],[-89.254517,29.864552],[-89.269897,29.859997],[-89.294952,29.857149],[-89.317726,29.850885],[-89.363289,29.84576],[-89.383789,29.838928],[-89.383217,29.830385],[-89.372971,29.82526],[-89.345634,29.820135],[-89.342781,29.798496],[-89.33197,29.790524],[-89.318306,29.788815],[-89.293251,29.803053],[-89.277298,29.807608],[-89.277298,29.799635],[-89.284134,29.795649],[-89.284706,29.770021],[-89.269325,29.760912],[-89.271034,29.756355],[-89.305199,29.756926],[-89.316025,29.760912],[-89.325134,29.772301],[-89.337662,29.779135],[-89.354179,29.781412],[-89.367271,29.775148],[-89.386063,29.788815],[-89.394608,29.784828],[-89.399162,29.770592],[-89.414536,29.752371],[-89.428207,29.74155],[-89.42421,29.697638],[-89.44812,29.703316],[-89.471992,29.718597],[-89.486961,29.72592],[-89.506065,29.731651],[-89.530258,29.74375],[-89.540131,29.74375],[-89.560181,29.735472],[-89.572922,29.746616],[-89.598068,29.74757],[-89.634048,29.752981],[-89.651237,29.749479],[-89.649651,29.719872],[-89.644562,29.710957],[-89.618446,29.700768],[-89.59903,29.704908],[-89.592979,29.702042],[-89.599663,29.690262],[-89.596802,29.684212],[-89.573883,29.674025],[-89.55732,29.670204],[-89.53376,29.670204],[-89.487915,29.630405],[-89.485367,29.624357],[-89.486709,29.621003]]]]}}]} diff --git a/Where/RegionKit/Sources/Resources/regions/us-MA.geojson b/Where/RegionKit/Sources/Resources/regions/us-MA.geojson new file mode 100644 index 00000000..bca2071c --- /dev/null +++ b/Where/RegionKit/Sources/Resources/regions/us-MA.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"region":"us-MA","name":"Massachusetts"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-70.827398,41.602067],[-70.823735,41.598569],[-70.820918,41.587673],[-70.821001,41.587268],[-70.821743,41.583656],[-70.82191,41.582841],[-70.830087,41.585385],[-70.837632,41.595374],[-70.838147,41.596056],[-70.838452,41.59646],[-70.834529,41.60261],[-70.832044,41.606504],[-70.831802,41.606272],[-70.828025,41.602666],[-70.827398,41.602067]]],[[[-70.59628,41.471905],[-70.57485,41.468259],[-70.567356,41.471208],[-70.56328,41.469127],[-70.553277,41.452955],[-70.552943,41.443394],[-70.555588,41.430882],[-70.553096,41.423952],[-70.547567,41.415831],[-70.538301,41.409241],[-70.528581,41.4051],[-70.517584,41.403769],[-70.506984,41.400242],[-70.502372,41.392005],[-70.501306,41.385391],[-70.498959,41.384339],[-70.490758,41.383634],[-70.484503,41.38629],[-70.472604,41.399128],[-70.473035,41.408757],[-70.470788,41.412875],[-70.463833,41.419145],[-70.450431,41.420703],[-70.446233,41.39648],[-70.449268,41.380422],[-70.448262,41.353651],[-70.451084,41.348161],[-70.496162,41.346452],[-70.538294,41.348958],[-70.599157,41.349272],[-70.709826,41.341723],[-70.733253,41.336226],[-70.747541,41.329952],[-70.764188,41.318706],[-70.768015,41.311959],[-70.766166,41.308962],[-70.768687,41.303702],[-70.775665,41.300982],[-70.802083,41.314207],[-70.819415,41.327212],[-70.838777,41.347209],[-70.833802,41.353386],[-70.812309,41.355745],[-70.800289,41.3538],[-70.783291,41.347829],[-70.774974,41.349176],[-70.768901,41.353246],[-70.729225,41.397728],[-70.724366,41.398942],[-70.712432,41.40885],[-70.711493,41.41546],[-70.701378,41.430925],[-70.686881,41.441334],[-70.64933,41.461068],[-70.603555,41.482384],[-70.598444,41.481151],[-70.59628,41.471905]]],[[[-70.092142,41.297741],[-70.082072,41.299093],[-70.062565,41.308726],[-70.046088,41.321651],[-70.031332,41.339332],[-70.028805,41.359919],[-70.030924,41.367453],[-70.035162,41.372161],[-70.038458,41.376399],[-70.045586,41.383598],[-70.049564,41.3879],[-70.049053,41.391702],[-70.033514,41.385816],[-70.018446,41.36863],[-69.960277,41.278731],[-69.960181,41.264546],[-69.964422,41.25457],[-69.965725,41.252466],[-69.975,41.247392],[-70.001586,41.239353],[-70.015225,41.237964],[-70.052807,41.242685],[-70.083239,41.2444],[-70.096967,41.24085],[-70.118669,41.242351],[-70.170681,41.255881],[-70.237175,41.282724],[-70.256164,41.288123],[-70.266776,41.294453],[-70.273478,41.301528],[-70.275526,41.310464],[-70.260632,41.310092],[-70.249276,41.305623],[-70.244435,41.303203],[-70.240153,41.295384],[-70.229541,41.290171],[-70.20869,41.290171],[-70.196304,41.294612],[-70.12446,41.293851],[-70.092142,41.297741]]],[[[-73.022903,42.741133],[-72.930261,42.73916],[-72.809113,42.736581],[-72.458519,42.726853],[-72.285954,42.721631],[-72.282981,42.721557],[-72.124526,42.717636],[-71.981402,42.713294],[-71.928811,42.712234],[-71.898716,42.71142],[-71.745817,42.707287],[-71.636214,42.704888],[-71.631814,42.704788],[-71.542533,42.702672],[-71.351874,42.698154],[-71.330206,42.69719],[-71.294205,42.69699],[-71.278929,42.711258],[-71.267905,42.72589],[-71.255605,42.736389],[-71.25518,42.73665],[-71.245504,42.742589],[-71.233404,42.745489],[-71.223904,42.746689],[-71.208302,42.743314],[-71.208227,42.743294],[-71.208137,42.743273],[-71.181803,42.73759],[-71.186104,42.790689],[-71.174403,42.801589],[-71.167703,42.807389],[-71.165603,42.808689],[-71.149703,42.815489],[-71.132503,42.821389],[-71.116048,42.817751],[-71.064201,42.806289],[-71.053601,42.833089],[-71.047501,42.844089],[-71.044401,42.848789],[-71.031201,42.859089],[-70.9665,42.868989],[-70.949199,42.876089],[-70.931699,42.884189],[-70.930799,42.884589],[-70.927629,42.885326],[-70.914899,42.886589],[-70.914886,42.886564],[-70.902768,42.88653],[-70.886136,42.88261],[-70.848625,42.860939],[-70.837376,42.864996],[-70.830795,42.868918],[-70.821769,42.87188],[-70.817296,42.87229],[-70.817731,42.850613],[-70.80522,42.781798],[-70.792867,42.747118],[-70.772267,42.711064],[-70.770453,42.704824],[-70.778552,42.69852],[-70.778671,42.693622],[-70.764421,42.68565],[-70.748752,42.683878],[-70.744427,42.682092],[-70.72982,42.669602],[-70.728845,42.663877],[-70.689402,42.653319],[-70.682594,42.654525],[-70.681594,42.662342],[-70.663548,42.677603],[-70.645101,42.689423],[-70.630077,42.692699],[-70.620031,42.688006],[-70.622864,42.67599],[-70.623815,42.665481],[-70.622791,42.660873],[-70.61482,42.65765],[-70.595474,42.660336],[-70.591742,42.648508],[-70.591469,42.639821],[-70.594014,42.63503],[-70.605611,42.634898],[-70.61842,42.62864],[-70.635635,42.600243],[-70.654727,42.582234],[-70.664887,42.580436],[-70.668022,42.581732],[-70.668115,42.585361],[-70.668488,42.589643],[-70.670442,42.592249],[-70.672583,42.594296],[-70.675747,42.594669],[-70.678819,42.594389],[-70.681428,42.593173],[-70.684502,42.588858],[-70.698574,42.577393],[-70.729688,42.57151],[-70.737044,42.576863],[-70.757283,42.570455],[-70.804091,42.561595],[-70.815391,42.554195],[-70.823291,42.551495],[-70.848492,42.550195],[-70.871382,42.546404],[-70.872357,42.542952],[-70.866279,42.522617],[-70.859751,42.520441],[-70.857125,42.521492],[-70.842091,42.519495],[-70.831091,42.503596],[-70.835991,42.490496],[-70.841591,42.487596],[-70.847391,42.491496],[-70.857791,42.490296],[-70.879692,42.478796],[-70.886493,42.470197],[-70.887992,42.467096],[-70.887292,42.464896],[-70.894292,42.460896],[-70.908092,42.466896],[-70.917693,42.467996],[-70.921993,42.466696],[-70.934993,42.457896],[-70.934264,42.444646],[-70.933155,42.437833],[-70.928226,42.430986],[-70.913192,42.427697],[-70.908392,42.425197],[-70.901992,42.420297],[-70.905692,42.416197],[-70.936393,42.418097],[-70.943295,42.436248],[-70.943612,42.452092],[-70.94702,42.456236],[-70.96047,42.446166],[-70.960647,42.443787],[-70.960835,42.441272],[-70.982994,42.423996],[-70.987694,42.416696],[-70.990595,42.407098],[-70.989195,42.402598],[-70.985068,42.402041],[-70.983426,42.396246],[-70.980336,42.391513],[-70.972706,42.389968],[-70.970195,42.388036],[-70.97174,42.387071],[-70.972513,42.385042],[-70.972706,42.381759],[-70.972223,42.377316],[-70.960798,42.360648],[-70.953292,42.349698],[-70.953022,42.343973],[-70.963578,42.34686],[-70.972418,42.353875],[-70.974897,42.355843],[-70.979927,42.356382],[-70.982282,42.35592],[-70.998253,42.352788],[-71.006877,42.347039],[-71.010146,42.339234],[-71.011804,42.335274],[-71.01568,42.326019],[-71.013165,42.315419],[-71.005399,42.307196],[-71.000948,42.302483],[-71.006158,42.28811],[-71.0049,42.28272],[-70.996097,42.271222],[-70.98909,42.267449],[-70.967351,42.268168],[-70.948971,42.272505],[-70.945547,42.269081],[-70.935886,42.264189],[-70.923169,42.263211],[-70.910941,42.265412],[-70.906302,42.271636],[-70.896267,42.2851],[-70.895778,42.292436],[-70.897123,42.29586],[-70.915588,42.302463],[-70.91749,42.305686],[-70.907556,42.307889],[-70.882764,42.30886],[-70.881242,42.300663],[-70.870873,42.285668],[-70.861807,42.275965],[-70.851093,42.26827],[-70.831075,42.267424],[-70.824661,42.265935],[-70.811742,42.262935],[-70.788724,42.25392],[-70.780722,42.251792],[-70.770964,42.249197],[-70.764757,42.244062],[-70.754488,42.228673],[-70.74723,42.221816],[-70.73056,42.21094],[-70.722269,42.207959],[-70.718707,42.184853],[-70.714301,42.168783],[-70.706264,42.163137],[-70.685315,42.133025],[-70.663931,42.108336],[-70.640169,42.088633],[-70.63848,42.081579],[-70.647349,42.076331],[-70.64819,42.068441],[-70.643208,42.050821],[-70.644337,42.045895],[-70.650874,42.046247],[-70.66936,42.037116],[-70.671666,42.02139],[-70.667512,42.01232],[-70.670934,42.007786],[-70.678798,42.00551],[-70.686798,42.012764],[-70.695809,42.013346],[-70.712204,42.007586],[-70.710034,41.999544],[-70.698981,41.987103],[-70.662476,41.960592],[-70.651673,41.958701],[-70.648365,41.961672],[-70.631251,41.950475],[-70.623513,41.943273],[-70.616491,41.940204],[-70.608166,41.940701],[-70.598078,41.947772],[-70.583572,41.950007],[-70.552941,41.929641],[-70.546386,41.916751],[-70.54741,41.911934],[-70.545949,41.907158],[-70.532084,41.889568],[-70.525567,41.85873],[-70.535487,41.839381],[-70.542065,41.831263],[-70.543168,41.824446],[-70.54103,41.815754],[-70.537289,41.810859],[-70.532656,41.804796],[-70.517411,41.790953],[-70.494048,41.773883],[-70.471552,41.761563],[-70.412476,41.744397],[-70.375341,41.738779],[-70.290957,41.734312],[-70.275203,41.726143],[-70.272289,41.721346],[-70.263654,41.714115],[-70.259205,41.713954],[-70.23485,41.733733],[-70.216073,41.742981],[-70.189254,41.751982],[-70.182076,41.750885],[-70.141533,41.760072],[-70.121978,41.758841],[-70.096061,41.766549],[-70.064314,41.772845],[-70.024734,41.787364],[-70.008462,41.800786],[-70.003842,41.80852],[-70.004486,41.838826],[-70.009013,41.876625],[-70.000188,41.886938],[-70.002922,41.890315],[-70.012154,41.891656],[-70.024335,41.89882],[-70.025553,41.911699],[-70.030537,41.929154],[-70.044995,41.930049],[-70.054464,41.927366],[-70.065671,41.911658],[-70.065723,41.899641],[-70.065372,41.887702],[-70.064084,41.878924],[-70.066002,41.877011],[-70.067566,41.877793],[-70.070889,41.882973],[-70.073039,41.899783],[-70.074006,41.93865],[-70.077421,41.985497],[-70.083775,42.012041],[-70.089578,42.024896],[-70.095595,42.032832],[-70.10806,42.043601],[-70.123043,42.051668],[-70.148294,42.06195],[-70.155415,42.062409],[-70.169781,42.059736],[-70.178468,42.05642],[-70.186816,42.05045],[-70.194456,42.03947],[-70.195345,42.034163],[-70.193074,42.027576],[-70.186295,42.021308],[-70.186708,42.019904],[-70.190834,42.020028],[-70.196693,42.022429],[-70.208016,42.03073],[-70.218701,42.045848],[-70.233256,42.057714],[-70.238875,42.060479],[-70.24354,42.060569],[-70.245385,42.063733],[-70.238087,42.072878],[-70.225626,42.078601],[-70.206899,42.0819],[-70.189305,42.082337],[-70.160166,42.078628],[-70.115968,42.067638],[-70.082624,42.054657],[-70.058531,42.040363],[-70.033501,42.017736],[-70.011898,41.98972],[-69.986085,41.949597],[-69.968598,41.9117],[-69.945314,41.845222],[-69.935952,41.809422],[-69.928652,41.74125],[-69.928261,41.6917],[-69.933114,41.670014],[-69.947599,41.645394],[-69.951169,41.640799],[-69.958272,41.639429],[-69.963234,41.633794],[-69.967869,41.627503],[-69.976478,41.603664],[-69.982768,41.581812],[-69.988215,41.554704],[-69.998071,41.54365],[-70.004136,41.54212],[-70.011504,41.542924],[-70.014456,41.545534],[-70.016584,41.550772],[-70.015059,41.553037],[-70.010644,41.552692],[-70.00153,41.561953],[-69.994357,41.576846],[-69.987192,41.608579],[-69.973035,41.641046],[-69.973153,41.646963],[-69.975719,41.653738],[-69.996359,41.667184],[-70.007011,41.671579],[-70.014211,41.671971],[-70.029346,41.667744],[-70.055523,41.664843],[-70.089238,41.662813],[-70.140877,41.650423],[-70.158621,41.650438],[-70.191061,41.645259],[-70.245867,41.628479],[-70.25621,41.620698],[-70.25542,41.617541],[-70.259601,41.610863],[-70.265424,41.609333],[-70.267587,41.610912],[-70.269687,41.617775],[-70.26913,41.625742],[-70.274522,41.632927],[-70.28132,41.635125],[-70.29062,41.635196],[-70.321588,41.630508],[-70.329924,41.634578],[-70.338067,41.636338],[-70.351634,41.634687],[-70.360352,41.631069],[-70.364892,41.626721],[-70.364744,41.623671],[-70.369854,41.615888],[-70.379151,41.611361],[-70.400581,41.606382],[-70.408535,41.607345],[-70.437246,41.605329],[-70.445289,41.591815],[-70.461278,41.57182],[-70.476256,41.558502],[-70.485571,41.554244],[-70.493244,41.552044],[-70.522327,41.548965],[-70.559689,41.54833],[-70.611081,41.542989],[-70.633607,41.538254],[-70.643627,41.532357],[-70.654104,41.519025],[-70.663856,41.514031],[-70.669518,41.513339],[-70.675379,41.512623],[-70.705181,41.496677],[-70.734306,41.486335],[-70.757171,41.469917],[-70.756481,41.465977],[-70.760863,41.460947],[-70.79027,41.446339],[-70.817478,41.445562],[-70.835867,41.441877],[-70.857528,41.425767],[-70.866946,41.422378],[-70.902763,41.421061],[-70.928197,41.415781],[-70.937282,41.411618],[-70.948431,41.409193],[-70.951045,41.411777],[-70.949861,41.415323],[-70.928165,41.431265],[-70.923698,41.430716],[-70.918983,41.4253],[-70.91164,41.424484],[-70.906011,41.425708],[-70.883247,41.432239],[-70.855265,41.448892],[-70.828546,41.456448],[-70.802186,41.460864],[-70.787769,41.474609],[-70.775268,41.477465],[-70.753905,41.492256],[-70.745053,41.500966],[-70.6948,41.52564],[-70.658659,41.543385],[-70.654302,41.549926],[-70.655365,41.557498],[-70.653899,41.56516],[-70.64878,41.56987],[-70.642748,41.572385],[-70.640948,41.577325],[-70.64204,41.583066],[-70.652449,41.60521],[-70.651986,41.610184],[-70.640003,41.624616],[-70.645251,41.633547],[-70.652614,41.637829],[-70.650419,41.644202],[-70.638695,41.649427],[-70.637632,41.654573],[-70.646308,41.678433],[-70.649285,41.680943],[-70.661475,41.681756],[-70.645962,41.693794],[-70.62544,41.698691],[-70.623652,41.707398],[-70.626529,41.712995],[-70.642914,41.71841],[-70.644641,41.71898],[-70.651093,41.715715],[-70.656596,41.715401],[-70.670453,41.721912],[-70.708193,41.730959],[-70.718739,41.73574],[-70.726331,41.732731],[-70.728933,41.723433],[-70.721302,41.712968],[-70.717451,41.69398],[-70.719575,41.685002],[-70.729395,41.68814],[-70.744396,41.696967],[-70.755347,41.694326],[-70.761481,41.676808],[-70.76236,41.667735],[-70.758198,41.661225],[-70.757622,41.654265],[-70.765463,41.641575],[-70.769318,41.641145],[-70.773654,41.645033],[-70.775798,41.649145],[-70.776709,41.650756],[-70.809118,41.656437],[-70.813286,41.65567],[-70.815729,41.652796],[-70.816351,41.645995],[-70.804664,41.641157],[-70.800215,41.631753],[-70.801063,41.629513],[-70.810279,41.624873],[-70.835296,41.624532],[-70.843177,41.628487],[-70.843522,41.62866],[-70.843528,41.628663],[-70.844165,41.628983],[-70.852518,41.626919],[-70.855031,41.624283],[-70.855162,41.624145],[-70.854232,41.618429],[-70.854211,41.618302],[-70.853445,41.613592],[-70.850181,41.593529],[-70.85222,41.589223],[-70.852488,41.588658],[-70.852551,41.588526],[-70.853121,41.587321],[-70.85324,41.587332],[-70.857239,41.587705],[-70.862852,41.600678],[-70.862998,41.601014],[-70.863486,41.602143],[-70.868501,41.613733],[-70.868904,41.614664],[-70.86836,41.622664],[-70.869624,41.625608],[-70.872665,41.627816],[-70.87904,41.629777],[-70.887643,41.632422],[-70.889209,41.632904],[-70.88926,41.632875],[-70.889594,41.632685],[-70.904513,41.624205],[-70.905765,41.623494],[-70.913202,41.619266],[-70.904522,41.610361],[-70.899981,41.593504],[-70.901381,41.592504],[-70.910814,41.595506],[-70.916581,41.607483],[-70.920074,41.61081],[-70.927172,41.611253],[-70.929722,41.609479],[-70.93,41.600441],[-70.927393,41.594064],[-70.931338,41.5842],[-70.937978,41.577416],[-70.941588,41.581034],[-70.946911,41.581089],[-70.948797,41.579038],[-70.9473,41.573659],[-70.93783,41.565239],[-70.931545,41.540169],[-70.941785,41.540121],[-70.979225,41.530427],[-70.983354,41.520616],[-71.003275,41.511912],[-71.019354,41.508857],[-71.035514,41.499047],[-71.058418,41.505967],[-71.085663,41.509292],[-71.12057,41.497448],[-71.1224,41.522156],[-71.131312,41.592308],[-71.131618,41.593918],[-71.137492,41.602561],[-71.138599,41.60347],[-71.140588,41.605102],[-71.14091,41.607405],[-71.141509,41.616076],[-71.140468,41.623893],[-71.135688,41.628402],[-71.134484,41.641198],[-71.134478,41.641262],[-71.13267,41.658744],[-71.132888,41.660102],[-71.134688,41.660502],[-71.135188,41.660502],[-71.14587,41.662795],[-71.153989,41.664102],[-71.17609,41.668102],[-71.17609,41.668502],[-71.17599,41.671402],[-71.18129,41.672502],[-71.191175,41.674292],[-71.191178,41.674216],[-71.194384,41.674803],[-71.19564,41.67509],[-71.224798,41.710498],[-71.225709,41.711603],[-71.261392,41.752301],[-71.31779,41.776099],[-71.317795,41.776101],[-71.327896,41.780501],[-71.329396,41.7826],[-71.329296,41.7868],[-71.332196,41.7923],[-71.333896,41.7945],[-71.335797,41.7948],[-71.339297,41.7963],[-71.340697,41.7983],[-71.340797,41.8002],[-71.339297,41.8044],[-71.339297,41.8065],[-71.338897,41.8083],[-71.339197,41.809],[-71.347197,41.8231],[-71.344897,41.828],[-71.339597,41.832],[-71.337597,41.8337],[-71.335197,41.8355],[-71.341797,41.8437],[-71.342198,41.8448],[-71.333997,41.8623],[-71.340798,41.8816],[-71.339298,41.893399],[-71.339298,41.893599],[-71.338698,41.898399],[-71.352699,41.896699],[-71.354699,41.896499],[-71.362499,41.895599],[-71.364699,41.895399],[-71.365399,41.895299],[-71.370999,41.894599],[-71.373799,41.894399],[-71.3766,41.893999],[-71.3817,41.893199],[-71.3817,41.922699],[-71.3816,41.922899],[-71.381401,41.964799],[-71.381501,41.966699],[-71.381466,41.984998],[-71.381401,42.018798],[-71.458104,42.017762],[-71.498258,42.01722],[-71.499905,42.017198],[-71.500905,42.017098],[-71.527306,42.015098],[-71.527606,42.014998],[-71.559439,42.014342],[-71.576908,42.014098],[-71.76601,42.009745],[-71.799242,42.008065],[-71.80065,42.023569],[-71.89078,42.024368],[-71.987326,42.02688],[-72.063496,42.027347],[-72.102162,42.028899],[-72.135687,42.030245],[-72.135715,42.030245],[-72.249523,42.031626],[-72.317148,42.031907],[-72.45668,42.033999],[-72.509192,42.034217],[-72.528131,42.034295],[-72.573231,42.030141],[-72.582332,42.024695],[-72.590233,42.024695],[-72.606933,42.024995],[-72.607933,42.030795],[-72.643134,42.032395],[-72.695927,42.036788],[-72.714134,42.036608],[-72.755838,42.036195],[-72.757538,42.033295],[-72.753538,42.032095],[-72.751738,42.030195],[-72.754038,42.025395],[-72.757467,42.020947],[-72.758151,42.020865],[-72.760558,42.021846],[-72.762151,42.021527],[-72.76231,42.019775],[-72.761354,42.018183],[-72.759738,42.016995],[-72.761238,42.014595],[-72.763238,42.012795],[-72.763265,42.009742],[-72.766139,42.007695],[-72.766739,42.002995],[-72.774757,42.002129],[-72.816741,41.997595],[-72.813541,42.036494],[-72.847142,42.036894],[-72.863619,42.037709],[-72.863733,42.03771],[-72.999549,42.038653],[-73.008745,42.03886],[-73.053254,42.039861],[-73.127276,42.041964],[-73.229798,42.044877],[-73.231056,42.044945],[-73.293097,42.04694],[-73.29442,42.046984],[-73.432812,42.050587],[-73.487314,42.049638],[-73.496879,42.049675],[-73.508142,42.086257],[-73.352527,42.510002],[-73.264957,42.74594],[-73.022903,42.741133]]]]}}]} diff --git a/Where/RegionKit/Sources/Resources/regions/us-MD.geojson b/Where/RegionKit/Sources/Resources/regions/us-MD.geojson new file mode 100644 index 00000000..cbe62113 --- /dev/null +++ b/Where/RegionKit/Sources/Resources/regions/us-MD.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"region":"us-MD","name":"Maryland"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-76.048373,38.12055],[-76.056811,38.125123],[-76.061,38.127002],[-76.061111,38.126963],[-76.06147,38.126839],[-76.063661,38.126078],[-76.064683,38.125723],[-76.081127,38.120014],[-76.081587,38.119854],[-76.08523,38.118589],[-76.085311,38.118561],[-76.085542,38.117869],[-76.085885,38.116844],[-76.085947,38.116658],[-76.086224,38.116534],[-76.089018,38.115287],[-76.089166,38.115221],[-76.090872,38.11446],[-76.095548,38.125123],[-76.090649,38.131185],[-76.09064,38.13124],[-76.090527,38.131919],[-76.089017,38.141033],[-76.089918,38.143837],[-76.090216,38.144765],[-76.092334,38.151355],[-76.088639,38.192649],[-76.07147,38.203502],[-76.067797,38.203539],[-76.0671,38.203546],[-76.066994,38.203547],[-76.061906,38.203599],[-76.059731,38.203621],[-76.059562,38.203622],[-76.059218,38.203626],[-76.059158,38.203626],[-76.05902,38.203628],[-76.058925,38.203629],[-76.053753,38.203681],[-76.052165,38.203697],[-76.050511,38.203714],[-76.048945,38.203729],[-76.048786,38.203731],[-76.046539,38.201549],[-76.046273,38.20129],[-76.042691,38.197811],[-76.042615,38.197737],[-76.042385,38.197515],[-76.04228,38.197412],[-76.041952,38.197094],[-76.040718,38.195896],[-76.038929,38.194158],[-76.036757,38.192049],[-76.02858,38.184107],[-76.028411,38.183943],[-76.0269,38.182476],[-76.025899,38.181504],[-76.02217,38.177882],[-76.021941,38.171976],[-76.025892,38.170946],[-76.032767,38.169154],[-76.032816,38.169141],[-76.034038,38.157902],[-76.033978,38.157636],[-76.031945,38.148631],[-76.031868,38.148288],[-76.031442,38.147612],[-76.022515,38.133453],[-76.020982,38.132776],[-76.020476,38.132553],[-76.019637,38.132183],[-76.018574,38.131713],[-76.01779,38.131367],[-76.015155,38.131548],[-76.013903,38.131634],[-76.012487,38.131731],[-76.011916,38.122214],[-76.013363,38.121342],[-76.014698,38.120537],[-76.015702,38.119933],[-76.020496,38.117044],[-76.021305,38.108608],[-76.021353,38.108108],[-76.02137,38.107934],[-76.020996,38.107578],[-76.017394,38.104154],[-76.015477,38.102332],[-76.008168,38.095385],[-76.005904,38.07717],[-76.011544,38.072312],[-76.012701,38.072159],[-76.015235,38.071825],[-76.0233,38.07076],[-76.036676,38.076509],[-76.052207,38.089716],[-76.05831,38.094906],[-76.059304,38.095751],[-76.050156,38.107758],[-76.047291,38.108505],[-76.046494,38.108712],[-76.045279,38.109029],[-76.044482,38.109237],[-76.042083,38.109862],[-76.041083,38.110726],[-76.040874,38.110906],[-76.03962,38.11199],[-76.039696,38.112108],[-76.040665,38.113606],[-76.043423,38.117868],[-76.048373,38.12055]]],[[[-76.022325,37.953878],[-76.029405,37.953776],[-76.029463,37.953775],[-76.030122,37.953655],[-76.038026,37.953901],[-76.041402,37.954006],[-76.041691,37.954],[-76.045561,37.953669],[-76.04653,37.953586],[-76.049608,37.983628],[-76.049562,37.985065],[-76.049549,37.985495],[-76.049527,37.986184],[-76.049396,37.990315],[-76.048617,38.014843],[-76.046213,38.025533],[-76.041668,38.032148],[-76.020827,38.039124],[-76.013128,38.039762],[-76.008835,38.038275],[-76.008695,38.038226],[-76.004592,38.036805],[-75.991846,38.025497],[-75.981195,38.02246],[-75.977246,38.021334],[-75.975494,38.020834],[-75.975487,38.020827],[-75.973432,38.018841],[-75.972304,38.01775],[-75.970172,38.015688],[-75.970168,38.015685],[-75.970168,38.015683],[-75.970178,38.01526],[-75.970345,38.008222],[-75.97039,38.006327],[-75.970917,38.006239],[-75.979879,38.004738],[-75.980683,38.004603],[-75.98288,38.004236],[-75.984251,38.004006],[-75.984479,38.003369],[-75.984675,38.002821],[-75.98502,38.001855],[-75.985723,37.999889],[-75.986249,37.998416],[-75.986571,37.997516],[-75.988541,37.992006],[-75.988719,37.991509],[-75.989101,37.99044],[-75.992468,37.981021],[-75.99473,37.974694],[-75.99473,37.974693],[-75.992789,37.969932],[-75.991543,37.966874],[-75.988879,37.960337],[-75.993905,37.953489],[-75.994739,37.953501],[-76.005888,37.953662],[-76.017686,37.953832],[-76.020796,37.953877],[-76.020932,37.953879],[-76.021714,37.953887],[-76.022325,37.953878]]],[[[-77.042045,38.720202],[-77.041398,38.724515],[-77.040998,38.737914],[-77.041898,38.741514],[-77.041098,38.773313],[-77.040373,38.785355],[-77.040098,38.789913],[-77.039498,38.791113],[-77.038598,38.791513],[-77.024392,38.80297],[-77.001397,38.821513],[-76.999997,38.821913],[-76.992697,38.828213],[-76.979497,38.837812],[-76.953696,38.858512],[-76.949696,38.861312],[-76.920195,38.884412],[-76.919295,38.885112],[-76.910795,38.891712],[-76.909395,38.892812],[-76.935096,38.913311],[-76.941519,38.918276],[-77.002498,38.96541],[-77.002636,38.965521],[-77.008298,38.97011],[-77.013798,38.97441],[-77.015598,38.97591],[-77.036299,38.99171],[-77.040999,38.99511],[-77.054299,38.98511],[-77.0915,38.95651],[-77.1007,38.94891],[-77.1045,38.94641],[-77.1199,38.934311],[-77.127601,38.94001],[-77.131901,38.94741],[-77.137701,38.95531],[-77.146601,38.96421],[-77.148179,38.965002],[-77.151084,38.965832],[-77.165301,38.96801],[-77.166901,38.96811],[-77.168001,38.96741],[-77.171901,38.96751],[-77.183002,38.96881],[-77.188302,38.96751],[-77.197502,38.96681],[-77.202502,38.96791],[-77.203602,38.96891],[-77.209302,38.97041],[-77.211502,38.96941],[-77.221502,38.97131],[-77.224969,38.973349],[-77.228395,38.978404],[-77.229992,38.979858],[-77.231601,38.979917],[-77.232268,38.979502],[-77.234803,38.97631],[-77.249803,38.985909],[-77.248303,38.992309],[-77.249203,38.993709],[-77.253003,38.995709],[-77.255703,39.002409],[-77.251803,39.011409],[-77.246903,39.014809],[-77.244603,39.020109],[-77.246003,39.024909],[-77.248403,39.026909],[-77.255303,39.030009],[-77.266004,39.031909],[-77.274706,39.034091],[-77.293105,39.046508],[-77.301005,39.049508],[-77.310705,39.052008],[-77.314905,39.052208],[-77.324206,39.056508],[-77.328281,39.057795],[-77.333706,39.059508],[-77.33401,39.060989],[-77.335511,39.061771],[-77.340287,39.062991],[-77.350311,39.062133],[-77.359702,39.062004],[-77.367529,39.061087],[-77.375079,39.061297],[-77.380108,39.062808],[-77.38568,39.061987],[-77.399204,39.064784],[-77.404593,39.064496],[-77.41543,39.066435],[-77.42318,39.066878],[-77.4374,39.070611],[-77.452827,39.072468],[-77.458202,39.073723],[-77.46145,39.075151],[-77.462617,39.076248],[-77.469443,39.086387],[-77.472414,39.092524],[-77.47701,39.100331],[-77.481279,39.105658],[-77.4858,39.109303],[-77.494955,39.113038],[-77.499711,39.11395],[-77.51532,39.118591],[-77.519929,39.120925],[-77.524559,39.127821],[-77.526728,39.137315],[-77.527282,39.146236],[-77.524872,39.148455],[-77.521222,39.161057],[-77.516426,39.170891],[-77.510631,39.178484],[-77.505162,39.18205],[-77.485971,39.185665],[-77.478596,39.189168],[-77.477362,39.190495],[-77.475013,39.194934],[-77.475929,39.202024],[-77.47361,39.208407],[-77.470113,39.21184],[-77.459883,39.218682],[-77.458922,39.220336],[-77.457943,39.222023],[-77.45768,39.22502],[-77.45812,39.22614],[-77.46021,39.228359],[-77.471213,39.234509],[-77.480807,39.241664],[-77.484664,39.246123],[-77.486813,39.247586],[-77.496606,39.251045],[-77.508427,39.25263],[-77.519634,39.257232],[-77.520986,39.258491],[-77.522486,39.259086],[-77.534461,39.262361],[-77.540581,39.264947],[-77.543228,39.266937],[-77.544258,39.26966],[-77.545846,39.271535],[-77.551054,39.275882],[-77.553114,39.279268],[-77.560854,39.286152],[-77.562768,39.294501],[-77.561826,39.301913],[-77.56321,39.303903],[-77.566596,39.306121],[-77.570041,39.30635],[-77.578491,39.305228],[-77.588235,39.301955],[-77.592739,39.30129],[-77.598892,39.301883],[-77.6059,39.303688],[-77.615939,39.302722],[-77.636101,39.307782],[-77.640282,39.308241],[-77.650997,39.310784],[-77.66613,39.317008],[-77.671341,39.321675],[-77.675846,39.324192],[-77.677123,39.324077],[-77.681706,39.323666],[-77.687124,39.319914],[-77.692984,39.31845],[-77.697461,39.318633],[-77.707709,39.321559],[-77.715865,39.320641],[-77.719029,39.321125],[-77.727379,39.321666],[-77.730914,39.324684],[-77.735009,39.327015],[-77.755789,39.333899],[-77.759615,39.337331],[-77.761115,39.339757],[-77.761084,39.342524],[-77.760435,39.344171],[-77.759315,39.345314],[-77.750387,39.34945],[-77.74593,39.353221],[-77.743874,39.359947],[-77.744144,39.365139],[-77.753274,39.37832],[-77.753804,39.379624],[-77.753389,39.382094],[-77.752209,39.383328],[-77.749715,39.384171],[-77.740765,39.385409],[-77.738084,39.386211],[-77.736317,39.387744],[-77.735905,39.389665],[-77.736409,39.392684],[-77.740012,39.401694],[-77.747478,39.41093],[-77.75268,39.420174],[-77.75309,39.423262],[-77.754681,39.424658],[-77.75872,39.42681],[-77.763319,39.428436],[-77.77485,39.427845],[-77.787266,39.429335],[-77.792751,39.430593],[-77.798855,39.433339],[-77.802542,39.435969],[-77.803249,39.437136],[-77.802866,39.439285],[-77.80086,39.440841],[-77.78856,39.442829],[-77.786052,39.444224],[-77.78558,39.445367],[-77.78611,39.447197],[-77.7931,39.451406],[-77.798144,39.455981],[-77.799294,39.458383],[-77.798468,39.46067],[-77.796196,39.461722],[-77.793157,39.462042],[-77.783539,39.460073],[-77.780471,39.459867],[-77.779202,39.460392],[-77.777815,39.461924],[-77.777815,39.462816],[-77.778522,39.463663],[-77.789645,39.467827],[-77.795634,39.471259],[-77.796755,39.472448],[-77.798201,39.475719],[-77.797787,39.47876],[-77.796695,39.480498],[-77.795485,39.481824],[-77.788519,39.485048],[-77.78176,39.487128],[-77.771723,39.489207],[-77.769125,39.490281],[-77.767087,39.491333],[-77.765551,39.493025],[-77.765403,39.494397],[-77.765993,39.495724],[-77.768442,39.497783],[-77.77095,39.499087],[-77.774374,39.4995],[-77.781608,39.499067],[-77.784442,39.498061],[-77.786539,39.496598],[-77.789757,39.492207],[-77.791765,39.490789],[-77.795631,39.489623],[-77.80183,39.489395],[-77.807821,39.490241],[-77.820781,39.4939],[-77.825499,39.494258],[-77.831909,39.494744],[-77.845666,39.498628],[-77.847639,39.500698],[-77.848112,39.502093],[-77.847611,39.503351],[-77.845103,39.505845],[-77.829045,39.514425],[-77.82565,39.516895],[-77.823555,39.524077],[-77.823762,39.525907],[-77.825357,39.529177],[-77.827188,39.530458],[-77.833509,39.532628],[-77.836935,39.53217],[-77.839061,39.531117],[-77.840536,39.529196],[-77.840651,39.520941],[-77.84192,39.51847],[-77.850747,39.515403],[-77.860195,39.514325],[-77.86368,39.515032],[-77.866132,39.517661],[-77.866518,39.520039],[-77.866138,39.524727],[-77.865078,39.528226],[-77.864315,39.534813],[-77.864434,39.536483],[-77.865351,39.538381],[-77.87153,39.544278],[-77.886436,39.551947],[-77.888945,39.55595],[-77.888648,39.558054],[-77.887968,39.559198],[-77.886135,39.560432],[-77.878451,39.563493],[-77.872723,39.563895],[-77.865734,39.563547],[-77.855847,39.564607],[-77.842174,39.564333],[-77.83633,39.56637],[-77.833217,39.571016],[-77.830775,39.581178],[-77.829814,39.587288],[-77.829753,39.59105],[-77.831813,39.601105],[-77.833568,39.602936],[-77.838008,39.606125],[-77.842785,39.607255],[-77.853436,39.607117],[-77.8578,39.60788],[-77.868679,39.611138],[-77.874718,39.614293],[-77.885124,39.615775],[-77.887017,39.614518],[-77.886959,39.613329],[-77.881936,39.608112],[-77.88111,39.606214],[-77.880993,39.602852],[-77.881823,39.600039],[-77.882977,39.598828],[-77.885077,39.597937],[-77.888477,39.597343],[-77.91641,39.602816],[-77.916836,39.602942],[-77.923298,39.604852],[-77.925988,39.607642],[-77.928738,39.613908],[-77.932862,39.617676],[-77.937492,39.61915],[-77.94194,39.61879],[-77.944622,39.616772],[-77.944133,39.614617],[-77.938362,39.61258],[-77.93545,39.608076],[-77.936371,39.594508],[-77.93905,39.587139],[-77.94215,39.584933],[-77.946182,39.584814],[-77.949836,39.58711],[-77.951955,39.592709],[-77.952152,39.597272],[-77.950916,39.601163],[-77.950599,39.603944],[-77.952104,39.606358],[-77.957642,39.608614],[-77.962092,39.608702],[-77.966223,39.607435],[-77.97015,39.605091],[-77.973967,39.601071],[-77.976686,39.599744],[-77.984815,39.59942],[-77.991437,39.600194],[-78.00233,39.600488],[-78.006734,39.601337],[-78.009985,39.602893],[-78.011343,39.604083],[-78.022402,39.6196],[-78.023896,39.621697],[-78.03014,39.627462],[-78.035992,39.63572],[-78.03886,39.638121],[-78.047672,39.643107],[-78.04995,39.645349],[-78.051932,39.648207],[-78.068291,39.66106],[-78.074595,39.666686],[-78.077525,39.66888],[-78.08226,39.671166],[-78.088592,39.671211],[-78.089835,39.671668],[-78.097118,39.678161],[-78.101737,39.680286],[-78.107834,39.682137],[-78.11183,39.682593],[-78.123939,39.685652],[-78.132706,39.686977],[-78.135221,39.688305],[-78.143478,39.690412],[-78.154164,39.690531],[-78.162126,39.693643],[-78.171361,39.695612],[-78.176625,39.695967],[-78.182759,39.69511],[-78.191107,39.690262],[-78.192439,39.689118],[-78.196701,39.682074],[-78.201081,39.677866],[-78.202945,39.676653],[-78.206763,39.67599],[-78.227333,39.676121],[-78.231564,39.674382],[-78.233138,39.672875],[-78.233012,39.670471],[-78.223864,39.662607],[-78.223597,39.661097],[-78.225075,39.658878],[-78.227677,39.656796],[-78.238059,39.652081],[-78.246722,39.644758],[-78.254077,39.640089],[-78.262189,39.630464],[-78.263344,39.626417],[-78.263371,39.621675],[-78.265088,39.619274],[-78.266833,39.618818],[-78.271122,39.619642],[-78.283039,39.62047],[-78.308152,39.629606],[-78.313033,39.631001],[-78.331934,39.636054],[-78.33388,39.636486],[-78.351905,39.640486],[-78.355218,39.640576],[-78.358264,39.63966],[-78.359506,39.638081],[-78.358735,39.635589],[-78.355567,39.633463],[-78.353673,39.630787],[-78.353465,39.628912],[-78.353878,39.627722],[-78.35577,39.626258],[-78.358343,39.625581],[-78.362485,39.626049],[-78.366212,39.627534],[-78.367959,39.628929],[-78.373166,39.630459],[-78.380504,39.629359],[-78.382487,39.628216],[-78.383447,39.625091],[-78.383461,39.623321],[-78.382959,39.622246],[-78.379118,39.618127],[-78.372404,39.612297],[-78.372255,39.6112],[-78.3732,39.60953],[-78.374732,39.608635],[-78.378181,39.608178],[-78.383591,39.608912],[-78.390774,39.612117],[-78.395828,39.616076],[-78.41286,39.621091],[-78.420549,39.624021],[-78.425902,39.624548],[-78.43025,39.62329],[-78.433297,39.620569],[-78.433623,39.618259],[-78.433002,39.61652],[-78.431524,39.614484],[-78.425581,39.607599],[-78.420644,39.603183],[-78.41287,39.598311],[-78.402702,39.593596],[-78.397471,39.590232],[-78.395463,39.587372],[-78.395317,39.584215],[-78.397446,39.581952],[-78.400936,39.580214],[-78.408031,39.578593],[-78.41867,39.581111],[-78.420059,39.581706],[-78.422985,39.584109],[-78.428246,39.586717],[-78.443175,39.591155],[-78.445983,39.591223],[-78.451186,39.590193],[-78.454527,39.588958],[-78.457187,39.587379],[-78.458052,39.585241],[-78.458338,39.580426],[-78.454376,39.574319],[-78.450207,39.570889],[-78.438179,39.563524],[-78.426537,39.559155],[-78.423287,39.556319],[-78.420019,39.551745],[-78.418777,39.548953],[-78.419398,39.547401],[-78.421105,39.54678],[-78.424053,39.546315],[-78.426953,39.546598],[-78.430414,39.549418],[-78.433828,39.548953],[-78.434759,39.54678],[-78.434759,39.543988],[-78.435107,39.541658],[-78.436378,39.539302],[-78.438357,39.538753],[-78.441961,39.541223],[-78.445309,39.543367],[-78.447171,39.543367],[-78.449499,39.542281],[-78.449964,39.54104],[-78.449654,39.539643],[-78.449499,39.538092],[-78.45105,39.536695],[-78.459274,39.535919],[-78.461291,39.534678],[-78.461911,39.532971],[-78.461071,39.529304],[-78.460951,39.525987],[-78.462899,39.52084],[-78.468639,39.516789],[-78.471166,39.516103],[-78.474178,39.51624],[-78.480677,39.51896],[-78.484044,39.519507],[-78.485697,39.519392],[-78.489742,39.517789],[-78.499017,39.518906],[-78.5032,39.518652],[-78.513622,39.522545],[-78.521388,39.52479],[-78.527886,39.524654],[-78.546584,39.520998],[-78.550128,39.520702],[-78.552756,39.521388],[-78.557127,39.521526],[-78.565929,39.519444],[-78.567937,39.519902],[-78.572692,39.522372],[-78.578956,39.526695],[-78.587079,39.52802],[-78.590654,39.530192],[-78.592131,39.531816],[-78.593114,39.534401],[-78.593871,39.535158],[-78.595603,39.535483],[-78.597659,39.53505],[-78.600511,39.533434],[-78.605868,39.534304],[-78.606873,39.535082],[-78.614526,39.537595],[-78.623037,39.539512],[-78.628566,39.53919],[-78.628744,39.537863],[-78.630842,39.537109],[-78.655984,39.534695],[-78.657417,39.535068],[-78.66399,39.536778],[-78.668745,39.540164],[-78.675629,39.540371],[-78.682423,39.543848],[-78.689455,39.54577],[-78.691494,39.547646],[-78.691996,39.55078],[-78.692824,39.55197],[-78.694626,39.553251],[-78.707098,39.555857],[-78.708664,39.556795],[-78.713335,39.562032],[-78.714784,39.562558],[-78.72501,39.563973],[-78.726342,39.567587],[-78.731992,39.575364],[-78.733149,39.58369],[-78.733979,39.586618],[-78.738502,39.586319],[-78.740246,39.585655],[-78.743318,39.580712],[-78.746421,39.579544],[-78.756747,39.58069],[-78.760196,39.582154],[-78.76749,39.587487],[-78.768314,39.589394],[-78.768481,39.591583],[-78.770511,39.594994],[-78.772128,39.596497],[-78.774281,39.597328],[-78.778141,39.601364],[-78.778096,39.602097],[-78.77686,39.604027],[-78.768115,39.608704],[-78.760497,39.609984],[-78.751514,39.609947],[-78.74935,39.608572],[-78.749222,39.606536],[-78.747063,39.60569],[-78.73905,39.609697],[-78.733759,39.613931],[-78.733553,39.615533],[-78.736189,39.621708],[-78.74288,39.625088],[-78.748499,39.626262],[-78.756686,39.622971],[-78.763171,39.618897],[-78.769565,39.619431],[-78.777516,39.621712],[-78.778477,39.62265],[-78.778477,39.624405],[-78.77264,39.636887],[-78.77114,39.638387],[-78.76814,39.639287],[-78.76534,39.643987],[-78.76504,39.646087],[-78.76584,39.648487],[-78.775241,39.645687],[-78.781341,39.636787],[-78.784041,39.636687],[-78.790941,39.638287],[-78.795941,39.637287],[-78.801741,39.627488],[-78.795964,39.614205],[-78.795368,39.61071],[-78.795857,39.606934],[-78.79784,39.604897],[-78.800434,39.605232],[-78.801792,39.606812],[-78.809347,39.608063],[-78.812154,39.60054],[-78.812215,39.597717],[-78.818899,39.59037],[-78.824788,39.590233],[-78.826009,39.588829],[-78.82636,39.577333],[-78.820104,39.576287],[-78.815114,39.571351],[-78.813512,39.56772],[-78.816764,39.561691],[-78.821404,39.560616],[-78.826407,39.562589],[-78.830298,39.565355],[-78.838553,39.5673],[-78.851196,39.559924],[-78.851016,39.554044],[-78.851931,39.551848],[-78.868908,39.532487],[-78.868966,39.531366],[-78.874744,39.522611],[-78.87681,39.52125],[-78.879084,39.521205],[-78.885996,39.522581],[-78.891197,39.5189],[-78.895307,39.512085],[-78.908719,39.496699],[-78.916488,39.486544],[-78.918142,39.485858],[-78.926999,39.487003],[-78.933613,39.48618],[-78.938751,39.483732],[-78.942293,39.480987],[-78.942618,39.479614],[-78.941526,39.476869],[-78.939164,39.475267],[-78.938869,39.4741],[-78.941969,39.469959],[-78.946603,39.46614],[-78.953333,39.463645],[-78.955483,39.442277],[-78.956751,39.440264],[-78.965484,39.438455],[-78.967461,39.439804],[-78.970118,39.443327],[-78.978826,39.448678],[-78.99695,39.454961],[-79.010097,39.461048],[-79.017147,39.466977],[-79.020542,39.467002],[-79.028159,39.46506],[-79.030343,39.465403],[-79.033884,39.467761],[-79.035712,39.471331],[-79.035623,39.473344],[-79.036915,39.476795],[-79.046276,39.483801],[-79.050528,39.483299],[-79.052447,39.482315],[-79.05388,39.480094],[-79.054989,39.473096],[-79.056583,39.471014],[-79.068627,39.474515],[-79.08327,39.471379],[-79.091329,39.472407],[-79.094702,39.473253],[-79.096517,39.472799],[-79.098059,39.472073],[-79.098875,39.471438],[-79.099057,39.470259],[-79.09824,39.468445],[-79.096154,39.465542],[-79.095428,39.462548],[-79.104217,39.448358],[-79.107933,39.445748],[-79.11407,39.443321],[-79.116369,39.440482],[-79.116574,39.438058],[-79.116932,39.435788],[-79.117932,39.434412],[-79.119433,39.433161],[-79.12156,39.432786],[-79.124036,39.433204],[-79.129047,39.429542],[-79.129404,39.426637],[-79.128941,39.423279],[-79.129816,39.419901],[-79.132193,39.418275],[-79.136696,39.417649],[-79.140699,39.416649],[-79.14195,39.414272],[-79.142701,39.410519],[-79.143827,39.408517],[-79.145453,39.407767],[-79.147455,39.407767],[-79.149581,39.407767],[-79.151583,39.408768],[-79.153584,39.41202],[-79.157212,39.413021],[-79.159213,39.413021],[-79.16134,39.411895],[-79.166497,39.400888],[-79.165593,39.397134],[-79.16722,39.393256],[-79.170494,39.392026],[-79.1746,39.392756],[-79.176977,39.39213],[-79.179335,39.388342],[-79.189465,39.3865],[-79.193332,39.387974],[-79.195543,39.38779],[-79.197937,39.386132],[-79.202943,39.377872],[-79.213961,39.36532],[-79.220357,39.363157],[-79.229247,39.363662],[-79.235878,39.358689],[-79.25227,39.356663],[-79.253928,39.354085],[-79.253891,39.337222],[-79.255306,39.335874],[-79.269365,39.330732],[-79.27228,39.328964],[-79.282037,39.323048],[-79.283723,39.30964],[-79.290236,39.299323],[-79.29271,39.298729],[-79.302311,39.299554],[-79.314768,39.304381],[-79.33238,39.299919],[-79.344344,39.293534],[-79.345599,39.289733],[-79.343625,39.287148],[-79.343801,39.286096],[-79.35375,39.278039],[-79.361343,39.274924],[-79.376154,39.273154],[-79.387023,39.26554],[-79.412051,39.240546],[-79.42035,39.23888],[-79.425059,39.233686],[-79.424413,39.228171],[-79.43983,39.217074],[-79.452685,39.211719],[-79.469156,39.2073],[-79.476037,39.203728],[-79.486862,39.205959],[-79.486873,39.205961],[-79.485874,39.264905],[-79.486179,39.26497],[-79.487274,39.265205],[-79.486737,39.278149],[-79.487651,39.279933],[-79.486812,39.296367],[-79.486072,39.3443],[-79.484372,39.3443],[-79.482648,39.521364],[-79.482354,39.524682],[-79.482366,39.531689],[-79.478866,39.531689],[-79.477764,39.642282],[-79.476968,39.642986],[-79.476574,39.644206],[-79.476662,39.721078],[-79.392458,39.721431],[-79.045548,39.722883],[-78.931176,39.722775],[-78.931175,39.722775],[-78.808375,39.722933],[-78.723529,39.723043],[-78.575893,39.722561],[-78.546415,39.722869],[-78.537702,39.72249],[-78.461422,39.722869],[-78.438839,39.722481],[-78.380599,39.722516],[-78.342834,39.722539],[-78.34252,39.722539],[-78.340498,39.722514],[-78.339539,39.722552],[-78.337111,39.722461],[-78.330715,39.722689],[-78.26902,39.722613],[-78.268948,39.72259],[-78.243103,39.722481],[-78.240334,39.722498],[-78.20445,39.72252],[-78.202895,39.722416],[-78.09914,39.722322],[-78.075771,39.722301],[-78.073736,39.722314],[-77.874719,39.722219],[-77.768534,39.721358],[-77.743204,39.721205],[-77.732615,39.721094],[-77.724115,39.720894],[-77.674522,39.720847],[-77.672249,39.720778],[-77.534758,39.720134],[-77.533371,39.720165],[-77.469145,39.720018],[-77.459427,39.720017],[-77.243307,39.719998],[-77.239807,39.719998],[-77.217024,39.719998],[-77.216806,39.719998],[-77.058904,39.7201],[-77.058204,39.7202],[-77.047104,39.72],[-76.999466,39.71983],[-76.990903,39.7198],[-76.936601,39.720701],[-76.897566,39.720401],[-76.8901,39.720401],[-76.809197,39.720702],[-76.806397,39.720602],[-76.787097,39.720802],[-76.787096,39.720802],[-76.715594,39.721103],[-76.711894,39.721103],[-76.569475,39.721203],[-76.569389,39.721203],[-76.517087,39.721304],[-76.491887,39.721304],[-76.418784,39.721204],[-76.418684,39.721304],[-76.395583,39.721204],[-76.380583,39.721304],[-76.380083,39.721304],[-76.239805,39.721305],[-76.233277,39.721305],[-76.233259,39.721305],[-76.224191,39.721328],[-76.135584,39.721556],[-76.027618,39.721833],[-76.013067,39.72192],[-75.998649,39.721576],[-75.810068,39.721906],[-75.799563,39.721882],[-75.788359,39.721811],[-75.788395,39.700287],[-75.788395,39.700031],[-75.788658,39.681911],[-75.788616,39.680742],[-75.788658,39.658211],[-75.78745,39.637455],[-75.78689,39.630575],[-75.780786,39.550262],[-75.779663,39.536504],[-75.779518,39.534724],[-75.766693,39.377537],[-75.766667,39.377216],[-75.760104,39.296817],[-75.755962,39.246069],[-75.755953,39.245958],[-75.751028,39.177762],[-75.749356,39.164815],[-75.747671,39.143345],[-75.747668,39.143306],[-75.746121,39.120318],[-75.745793,39.114935],[-75.743811,39.094674],[-75.725829,38.869296],[-75.725565,38.868152],[-75.724061,38.847781],[-75.724002,38.846682],[-75.722882,38.833156],[-75.72261,38.830008],[-75.722599,38.829859],[-75.722028,38.822078],[-75.707352,38.635359],[-75.707346,38.63528],[-75.706585,38.626125],[-75.706235,38.621296],[-75.70586,38.616268],[-75.705774,38.61474],[-75.703981,38.592066],[-75.703445,38.58512],[-75.701565,38.560736],[-75.701465,38.559433],[-75.700179,38.542717],[-75.698777,38.522001],[-75.696688,38.496467],[-75.696369,38.492373],[-75.693521,38.460128],[-75.665585,38.4589],[-75.662843,38.458759],[-75.630457,38.457904],[-75.598069,38.456855],[-75.593082,38.456404],[-75.589307,38.456286],[-75.583601,38.456424],[-75.57411,38.455991],[-75.559934,38.455579],[-75.559212,38.455563],[-75.533763,38.454958],[-75.52273,38.454657],[-75.521304,38.454657],[-75.502961,38.45422],[-75.500142,38.454144],[-75.47915,38.453699],[-75.428728,38.452671],[-75.424831,38.45261],[-75.410884,38.4524],[-75.394786,38.45216],[-75.393563,38.452114],[-75.371054,38.452107],[-75.355797,38.452008],[-75.34125,38.45197],[-75.341247,38.45197],[-75.26035,38.451492],[-75.252723,38.451397],[-75.185413,38.451013],[-75.141894,38.451196],[-75.089649,38.451254],[-75.088281,38.451256],[-75.085814,38.451258],[-75.070356,38.451276],[-75.069909,38.451276],[-75.066327,38.451291],[-75.064719,38.451289],[-75.053483,38.451274],[-75.05251,38.451273],[-75.049268,38.451264],[-75.048939,38.451263],[-75.049365,38.448518],[-75.049442,38.448023],[-75.049582,38.447117],[-75.051997,38.431549],[-75.052008,38.431479],[-75.052167,38.430457],[-75.052206,38.430206],[-75.052226,38.430077],[-75.052368,38.429159],[-75.052426,38.428784],[-75.052467,38.428521],[-75.052471,38.428493],[-75.052505,38.428275],[-75.052746,38.42672],[-75.052804,38.426349],[-75.05282,38.426243],[-75.0531,38.424441],[-75.053137,38.424201],[-75.053277,38.423297],[-75.053309,38.423095],[-75.054591,38.41483],[-75.055838,38.410164],[-75.056,38.40956],[-75.056182,38.408876],[-75.057288,38.404738],[-75.06137,38.389466],[-75.068111,38.368716],[-75.068162,38.368559],[-75.068404,38.367812],[-75.068548,38.36737],[-75.068559,38.367335],[-75.069817,38.363463],[-75.069845,38.363376],[-75.071329,38.358809],[-75.071632,38.357876],[-75.071687,38.357707],[-75.071694,38.357686],[-75.072111,38.356402],[-75.072476,38.355278],[-75.073852,38.352006],[-75.074532,38.35039],[-75.084149,38.327526],[-75.085171,38.325096],[-75.085327,38.324724],[-75.085468,38.324389],[-75.085518,38.32427],[-75.087466,38.322769],[-75.092142,38.323252],[-75.093888,38.323432],[-75.102947,38.311525],[-75.103757,38.309349],[-75.116837,38.274229],[-75.143229,38.220475],[-75.155351,38.192572],[-75.15897,38.184242],[-75.16164,38.176383],[-75.177394,38.130014],[-75.178945,38.126798],[-75.192925,38.097819],[-75.193796,38.096013],[-75.195382,38.093582],[-75.204684,38.079317],[-75.204911,38.07897],[-75.206515,38.07651],[-75.216117,38.061786],[-75.22434,38.050912],[-75.227592,38.046612],[-75.23586,38.035679],[-75.236065,38.035409],[-75.237538,38.033461],[-75.241817,38.027802],[-75.242266,38.027209],[-75.242296,38.027206],[-75.250358,38.026489],[-75.256076,38.02598],[-75.260635,38.025574],[-75.262088,38.025445],[-75.263779,38.025295],[-75.377851,38.015145],[-75.398839,38.013277],[-75.42881,38.010854],[-75.435956,38.010282],[-75.624341,37.994211],[-75.624342,37.994208],[-75.625612,37.9898],[-75.627607,37.988521],[-75.630869,37.987818],[-75.632532,37.986693],[-75.633833,37.984519],[-75.633712,37.983057],[-75.628855,37.977798],[-75.628839,37.976789],[-75.629532,37.975966],[-75.630992,37.975667],[-75.63201,37.97602],[-75.634209,37.977672],[-75.635736,37.979536],[-75.638221,37.979397],[-75.641823,37.975967],[-75.644725,37.969779],[-75.648229,37.966775],[-75.647606,37.947027],[-75.655681,37.945435],[-75.665012,37.949387],[-75.669711,37.950796],[-75.665057,37.956282],[-75.663095,37.961195],[-75.66502,37.962401],[-75.669374,37.96513],[-75.671681,37.966576],[-75.685995,37.967607],[-75.686525,37.967783],[-75.708179,37.974972],[-75.71315,37.976623],[-75.722085,37.973416],[-75.722662,37.97131],[-75.724692,37.969754],[-75.72533,37.969266],[-75.727952,37.967256],[-75.735125,37.964592],[-75.737514,37.963705],[-75.737997,37.963526],[-75.750244,37.968873],[-75.759091,37.970663],[-75.776773,37.972044],[-75.778975,37.972216],[-75.783444,37.972565],[-75.783815,37.972594],[-75.785007,37.971714],[-75.785209,37.971564],[-75.785273,37.971517],[-75.785487,37.971359],[-75.788351,37.969244],[-75.789943,37.968068],[-75.806147,37.9561],[-75.80693,37.955522],[-75.807755,37.954912],[-75.819088,37.946542],[-75.820774,37.945297],[-75.822901,37.943726],[-75.824242,37.942736],[-75.824448,37.942584],[-75.829901,37.938556],[-75.830154,37.938028],[-75.831707,37.934789],[-75.831836,37.934519],[-75.832414,37.933313],[-75.832793,37.933112],[-75.843768,37.927297],[-75.845992,37.926118],[-75.846621,37.925785],[-75.847207,37.925474],[-75.847473,37.925333],[-75.847817,37.925151],[-75.847933,37.925089],[-75.848133,37.924983],[-75.849103,37.92447],[-75.860727,37.91831],[-75.881913,37.912563],[-75.883708,37.912076],[-75.885032,37.911717],[-75.892686,37.916848],[-75.895791,37.921406],[-75.89594,37.921625],[-75.898316,37.925114],[-75.894065,37.93079],[-75.893655,37.933879],[-75.89281,37.940239],[-75.890871,37.954847],[-75.898956,37.974514],[-75.882768,38.002995],[-75.875297,38.011965],[-75.875399,38.028241],[-75.87319,38.034375],[-75.869513,38.035407],[-75.865912,38.036418],[-75.864648,38.036773],[-75.858891,38.03839],[-75.857507,38.038778],[-75.856854,38.038583],[-75.855468,38.03817],[-75.854711,38.037944],[-75.852655,38.037331],[-75.850531,38.036697],[-75.850343,38.035877],[-75.84998,38.034294],[-75.847922,38.03437],[-75.847716,38.034468],[-75.836018,38.040007],[-75.834643,38.040657],[-75.833657,38.041125],[-75.833418,38.041238],[-75.830023,38.042845],[-75.829375,38.043152],[-75.829276,38.043247],[-75.826492,38.045915],[-75.825987,38.0464],[-75.812913,38.058932],[-75.813378,38.059481],[-75.813468,38.059587],[-75.819415,38.066606],[-75.819479,38.066682],[-75.819591,38.066814],[-75.830017,38.06912],[-75.831103,38.069361],[-75.832742,38.069723],[-75.839935,38.071314],[-75.841057,38.071562],[-75.841206,38.071595],[-75.844265,38.072272],[-75.84718,38.071289],[-75.852305,38.069561],[-75.858944,38.067323],[-75.859026,38.067208],[-75.859568,38.066448],[-75.860072,38.065743],[-75.859717,38.064073],[-75.85944,38.062769],[-75.859281,38.062018],[-75.859005,38.060717],[-75.858881,38.060135],[-75.860629,38.05996],[-75.860946,38.059928],[-75.861033,38.059919],[-75.86153,38.05987],[-75.866194,38.059402],[-75.867267,38.059295],[-75.867511,38.05927],[-75.868899,38.059131],[-75.871503,38.05887],[-75.874189,38.060288],[-75.880515,38.075011],[-75.871394,38.089183],[-75.870282,38.090911],[-75.865697,38.098036],[-75.865146,38.098893],[-75.86381,38.100968],[-75.842604,38.113111],[-75.837563,38.113753],[-75.837204,38.114468],[-75.837165,38.114546],[-75.837048,38.114777],[-75.827993,38.132803],[-75.827892,38.133004],[-75.827674,38.133438],[-75.827712,38.133464],[-75.843862,38.144599],[-75.849919,38.144414],[-75.854507,38.142567],[-75.858667,38.140893],[-75.85954,38.140542],[-75.866,38.134886],[-75.868636,38.134381],[-75.870056,38.134684],[-75.871037,38.134893],[-75.880707,38.136957],[-75.880978,38.137015],[-75.900355,38.14115],[-75.901058,38.140826],[-75.902004,38.14039],[-75.903442,38.139726],[-75.905599,38.138732],[-75.906497,38.138317],[-75.907264,38.137964],[-75.923797,38.130339],[-75.932738,38.126216],[-75.936773,38.124355],[-75.937089,38.124209],[-75.937055,38.123077],[-75.937015,38.121749],[-75.936866,38.116745],[-75.936663,38.109956],[-75.938484,38.109976],[-75.945297,38.113091],[-75.949557,38.118127],[-75.956428,38.131115],[-75.956434,38.131126],[-75.958786,38.135572],[-75.959496,38.136915],[-75.959616,38.137141],[-75.952411,38.158513],[-75.951425,38.161436],[-75.951273,38.161887],[-75.949752,38.164486],[-75.947534,38.168274],[-75.947487,38.168736],[-75.947417,38.169439],[-75.94728,38.170792],[-75.948129,38.171778],[-75.94822,38.171884],[-75.948566,38.172285],[-75.948709,38.172451],[-75.951812,38.176053],[-75.951972,38.176239],[-75.95185,38.176794],[-75.951583,38.178014],[-75.951566,38.178093],[-75.949575,38.180037],[-75.94942,38.180188],[-75.948891,38.180704],[-75.948738,38.180854],[-75.946586,38.182955],[-75.945419,38.184094],[-75.942375,38.187066],[-75.941448,38.187352],[-75.933932,38.18967],[-75.888073,38.203813],[-75.886217,38.203309],[-75.88494,38.200493],[-75.884603,38.199751],[-75.884544,38.199739],[-75.878293,38.198407],[-75.877751,38.198292],[-75.87725,38.198386],[-75.870975,38.199566],[-75.86847,38.200037],[-75.864104,38.200858],[-75.862444,38.201759],[-75.85696,38.204734],[-75.854406,38.20612],[-75.852258,38.207286],[-75.848473,38.20934],[-75.847299,38.209977],[-75.847032,38.210122],[-75.846713,38.210295],[-75.846377,38.210477],[-75.851396,38.226432],[-75.851528,38.22655],[-75.85916,38.233407],[-75.864628,38.23832],[-75.87031,38.243425],[-75.870318,38.243432],[-75.872464,38.243968],[-75.874653,38.244514],[-75.882873,38.244449],[-75.883435,38.244445],[-75.8852,38.243395],[-75.886841,38.242418],[-75.887409,38.24208],[-75.888513,38.241423],[-75.889356,38.2395],[-75.885676,38.231006],[-75.885909,38.230866],[-75.890669,38.228009],[-75.894583,38.228439],[-75.895689,38.228561],[-75.895879,38.228717],[-75.899781,38.231921],[-75.90004,38.232133],[-75.900661,38.233206],[-75.901381,38.234448],[-75.905852,38.242165],[-75.906016,38.242447],[-75.90845,38.246648],[-75.908272,38.252045],[-75.911143,38.257951],[-75.917297,38.263126],[-75.919446,38.264056],[-75.920279,38.264415],[-75.925492,38.26667],[-75.938577,38.272329],[-75.940302,38.271611],[-75.942462,38.270711],[-75.942703,38.270611],[-75.948346,38.268261],[-75.95136,38.267006],[-75.951497,38.266949],[-75.951512,38.266936],[-75.951563,38.266892],[-75.951647,38.266819],[-75.954483,38.264366],[-75.954568,38.264293],[-75.954701,38.264177],[-75.954737,38.264146],[-75.954824,38.264071],[-75.954908,38.263998],[-75.954908,38.263997],[-75.95481,38.261016],[-75.954582,38.254108],[-75.954561,38.253476],[-75.954542,38.252894],[-75.950056,38.249699],[-75.949458,38.249273],[-75.948796,38.248802],[-75.947876,38.248875],[-75.945678,38.249051],[-75.9445,38.249145],[-75.943032,38.248279],[-75.942465,38.247945],[-75.942263,38.247826],[-75.940697,38.246902],[-75.94119,38.246211],[-75.942804,38.243949],[-75.946414,38.23889],[-75.948197,38.238504],[-75.951156,38.237862],[-75.955164,38.236994],[-75.955833,38.236849],[-75.958338,38.236306],[-75.958794,38.236208],[-75.961972,38.235519],[-75.962111,38.235489],[-75.962729,38.235355],[-75.962931,38.235311],[-75.970514,38.233668],[-75.971487,38.233457],[-75.972212,38.2333],[-75.9704,38.235043],[-75.970115,38.235317],[-75.969383,38.236021],[-75.969326,38.236076],[-75.964528,38.240692],[-75.964119,38.241085],[-75.963969,38.241598],[-75.962235,38.24754],[-75.963453,38.251793],[-75.984274,38.265155],[-75.985815,38.276466],[-75.987814,38.279287],[-75.988731,38.280581],[-75.990385,38.282915],[-75.991162,38.283894],[-75.991687,38.284555],[-75.992669,38.285792],[-75.992829,38.285994],[-75.993391,38.286702],[-76.000241,38.295331],[-76.00401,38.300079],[-76.007118,38.303994],[-76.007254,38.304165],[-76.007375,38.304318],[-76.007478,38.304351],[-76.011245,38.305572],[-76.011458,38.30564],[-76.016291,38.307206],[-76.016314,38.307247],[-76.016514,38.3076],[-76.017308,38.309007],[-76.017364,38.309106],[-76.009377,38.311997],[-76.008647,38.312261],[-75.991151,38.31411],[-75.990485,38.314181],[-75.986025,38.314652],[-75.984784,38.314783],[-75.984433,38.314821],[-75.983186,38.314952],[-75.983171,38.314954],[-75.982523,38.315022],[-75.981345,38.315147],[-75.969577,38.320044],[-75.96929,38.320164],[-75.96888,38.320498],[-75.964237,38.324285],[-75.961944,38.332572],[-75.961945,38.33583],[-75.961946,38.336018],[-75.961948,38.341431],[-75.965366,38.348429],[-75.966397,38.35054],[-75.968881,38.355623],[-75.969161,38.356197],[-75.97084,38.359635],[-75.971019,38.360002],[-75.971541,38.361069],[-75.97191,38.361826],[-75.972174,38.362365],[-75.972281,38.362584],[-75.973876,38.36585],[-75.979727,38.367627],[-75.98018,38.367765],[-75.980829,38.367962],[-75.995706,38.37248],[-76.001839,38.374343],[-76.002156,38.374439],[-76.002282,38.374477],[-76.004946,38.372045],[-76.006949,38.370216],[-76.011869,38.360582],[-76.012149,38.357077],[-76.011033,38.354844],[-76.010737,38.354251],[-76.010255,38.353287],[-76.010217,38.353211],[-76.010366,38.352732],[-76.010437,38.352504],[-76.016682,38.332429],[-76.033947,38.323211],[-76.041431,38.322163],[-76.041618,38.322137],[-76.041659,38.322097],[-76.04318,38.32061],[-76.043923,38.319884],[-76.044649,38.319175],[-76.045057,38.318776],[-76.045599,38.318246],[-76.045964,38.317452],[-76.046367,38.316576],[-76.047401,38.314329],[-76.047992,38.313044],[-76.048637,38.311643],[-76.048965,38.31093],[-76.049207,38.310404],[-76.049523,38.309718],[-76.04958,38.309594],[-76.049609,38.309348],[-76.049647,38.309017],[-76.05022,38.304101],[-76.047147,38.301582],[-76.040019,38.295738],[-76.030532,38.28796],[-76.028234,38.282035],[-76.027557,38.280288],[-76.027487,38.280108],[-76.032595,38.268875],[-76.032664,38.268722],[-76.032771,38.268487],[-76.032998,38.267989],[-76.03361,38.266644],[-76.033737,38.266363],[-76.038935,38.254932],[-76.039738,38.254093],[-76.043927,38.249712],[-76.044251,38.249373],[-76.044141,38.243447],[-76.044108,38.241682],[-76.043814,38.241294],[-76.03796,38.233551],[-76.037109,38.232426],[-76.037103,38.232418],[-76.036102,38.231094],[-76.035695,38.230556],[-76.033455,38.222046],[-76.033338,38.221599],[-76.032044,38.216684],[-76.05801,38.227079],[-76.069502,38.238455],[-76.070831,38.241836],[-76.071154,38.242657],[-76.073493,38.248609],[-76.073725,38.2492],[-76.074491,38.251148],[-76.074515,38.251208],[-76.074568,38.251344],[-76.074607,38.251443],[-76.074726,38.251745],[-76.07476,38.251832],[-76.074897,38.252181],[-76.082268,38.252616],[-76.082549,38.252633],[-76.089797,38.253061],[-76.092417,38.253216],[-76.092723,38.253234],[-76.094689,38.25335],[-76.09972,38.253647],[-76.107592,38.262525],[-76.102549,38.277153],[-76.111296,38.286946],[-76.12694,38.283751],[-76.131085,38.282904],[-76.137238,38.281648],[-76.137442,38.281606],[-76.138479,38.281394],[-76.138524,38.281385],[-76.138596,38.281406],[-76.140674,38.282006],[-76.140947,38.282085],[-76.143127,38.282714],[-76.149398,38.284525],[-76.149876,38.284663],[-76.160474,38.290983],[-76.160838,38.290948],[-76.161348,38.290898],[-76.166154,38.290431],[-76.173418,38.285326],[-76.173555,38.28523],[-76.173844,38.284869],[-76.174011,38.284659],[-76.174104,38.284543],[-76.174152,38.284483],[-76.174484,38.284068],[-76.174598,38.283924],[-76.174683,38.283818],[-76.180115,38.277019],[-76.180165,38.276956],[-76.180103,38.276739],[-76.179123,38.273291],[-76.178282,38.270336],[-76.175783,38.261551],[-76.171254,38.256984],[-76.164388,38.250061],[-76.163249,38.248913],[-76.146297,38.249678],[-76.135169,38.245872],[-76.13498,38.245807],[-76.132544,38.244974],[-76.130952,38.24443],[-76.126623,38.242949],[-76.126453,38.242046],[-76.125856,38.23888],[-76.125756,38.238348],[-76.128452,38.235704],[-76.128898,38.235267],[-76.131332,38.23288],[-76.140068,38.231305],[-76.151035,38.234215],[-76.17335,38.247037],[-76.188644,38.267434],[-76.189627,38.272487],[-76.189655,38.272633],[-76.190531,38.277139],[-76.197155,38.28522],[-76.197693,38.285877],[-76.197871,38.286094],[-76.201591,38.290633],[-76.201603,38.290647],[-76.202334,38.291539],[-76.202628,38.291898],[-76.202897,38.292226],[-76.20343,38.292876],[-76.203909,38.293461],[-76.211446,38.302656],[-76.216266,38.305023],[-76.217616,38.305686],[-76.218051,38.305899],[-76.226376,38.309988],[-76.226408,38.309989],[-76.243897,38.310313],[-76.254473,38.31512],[-76.258189,38.318373],[-76.266602,38.339502],[-76.264186,38.346436],[-76.259286,38.341619],[-76.259261,38.341595],[-76.259235,38.341603],[-76.258383,38.341865],[-76.257898,38.342014],[-76.238452,38.347986],[-76.238478,38.348355],[-76.238541,38.349238],[-76.238611,38.350233],[-76.23901,38.350738],[-76.239056,38.350795],[-76.239601,38.351486],[-76.239902,38.351866],[-76.240196,38.352238],[-76.24041,38.352508],[-76.24735,38.361285],[-76.248766,38.363076],[-76.249666,38.364214],[-76.256788,38.366712],[-76.257479,38.366702],[-76.258022,38.366695],[-76.273003,38.366483],[-76.278722,38.382919],[-76.278813,38.383179],[-76.280749,38.388743],[-76.281214,38.390079],[-76.28132,38.390384],[-76.281396,38.390604],[-76.281697,38.39147],[-76.282144,38.392754],[-76.282271,38.393118],[-76.280551,38.403143],[-76.28302,38.413512],[-76.290681,38.424404],[-76.300186,38.437916],[-76.301488,38.439767],[-76.3116,38.450266],[-76.311767,38.450439],[-76.320843,38.459862],[-76.331383,38.473323],[-76.331469,38.473432],[-76.331559,38.473548],[-76.331758,38.474324],[-76.33199,38.475225],[-76.33636,38.492235],[-76.327257,38.500121],[-76.318054,38.498199],[-76.289507,38.503906],[-76.283595,38.504157],[-76.281761,38.502165],[-76.263968,38.503452],[-76.262133,38.504874],[-76.26035,38.506255],[-76.247894,38.523019],[-76.2473,38.523818],[-76.244396,38.536966],[-76.248885,38.539023],[-76.250265,38.539131],[-76.251033,38.539191],[-76.253624,38.539393],[-76.274057,38.531207],[-76.278106,38.532468],[-76.281047,38.53613],[-76.277461,38.541851],[-76.275913,38.548809],[-76.27964,38.557231],[-76.283189,38.5613],[-76.283632,38.561807],[-76.289017,38.567982],[-76.290043,38.569158],[-76.290667,38.569247],[-76.296469,38.570076],[-76.299301,38.57048],[-76.308321,38.571769],[-76.305172,38.575293],[-76.291998,38.581988],[-76.290895,38.582548],[-76.273496,38.59139],[-76.268633,38.597753],[-76.272584,38.601997],[-76.274611,38.604174],[-76.274888,38.604471],[-76.275246,38.604856],[-76.275282,38.604895],[-76.275658,38.605298],[-76.279589,38.60952],[-76.278146,38.610662],[-76.276734,38.611779],[-76.271827,38.615661],[-76.264155,38.615109],[-76.263577,38.615475],[-76.262791,38.615973],[-76.261135,38.617021],[-76.260317,38.617539],[-76.253926,38.621586],[-76.247896,38.625404],[-76.24651,38.626282],[-76.23665,38.628598],[-76.235987,38.626827],[-76.234929,38.624002],[-76.231187,38.61401],[-76.229358,38.613301],[-76.229159,38.613224],[-76.22882,38.613093],[-76.222982,38.61083],[-76.220701,38.609945],[-76.212427,38.606738],[-76.212414,38.606744],[-76.203065,38.610741],[-76.202598,38.613011],[-76.190902,38.621092],[-76.174969,38.628791],[-76.170066,38.629225],[-76.160148,38.625452],[-76.152885,38.631819],[-76.147158,38.63684],[-76.147577,38.637893],[-76.148202,38.639463],[-76.148559,38.640362],[-76.148955,38.641356],[-76.149353,38.642356],[-76.152554,38.6504],[-76.152603,38.650523],[-76.152622,38.650572],[-76.15299,38.651495],[-76.153414,38.652562],[-76.153769,38.653455],[-76.154093,38.654269],[-76.154581,38.655495],[-76.154604,38.655553],[-76.154889,38.656268],[-76.154924,38.656358],[-76.155611,38.658083],[-76.160539,38.661903],[-76.164465,38.664946],[-76.168824,38.668325],[-76.174611,38.672811],[-76.175159,38.673236],[-76.196716,38.67286],[-76.199722,38.671127],[-76.199948,38.670997],[-76.200334,38.670774],[-76.212808,38.681892],[-76.226343,38.698057],[-76.229242,38.701519],[-76.231392,38.704088],[-76.231758,38.704524],[-76.232127,38.704964],[-76.232365,38.705249],[-76.232535,38.705452],[-76.232814,38.705785],[-76.232845,38.705823],[-76.232875,38.705859],[-76.232893,38.70588],[-76.234249,38.707499],[-76.234379,38.707655],[-76.234392,38.70767],[-76.234828,38.708191],[-76.237818,38.711762],[-76.237916,38.711879],[-76.238077,38.712071],[-76.238172,38.712185],[-76.238306,38.712344],[-76.238725,38.712845],[-76.239377,38.71688],[-76.239427,38.717191],[-76.239841,38.719756],[-76.23704,38.724518],[-76.238685,38.735434],[-76.255093,38.736476],[-76.255348,38.736273],[-76.257335,38.734691],[-76.257423,38.734621],[-76.257437,38.734609],[-76.257851,38.73428],[-76.258738,38.733573],[-76.259238,38.733176],[-76.259665,38.732836],[-76.259741,38.732775],[-76.259867,38.732675],[-76.259876,38.732667],[-76.260001,38.732568],[-76.260976,38.731791],[-76.261863,38.731085],[-76.268288,38.725969],[-76.268739,38.725609],[-76.26937,38.725107],[-76.26952,38.724988],[-76.270277,38.724385],[-76.271243,38.716209],[-76.271447,38.71448],[-76.271553,38.713576],[-76.271596,38.713216],[-76.275015,38.712714],[-76.275019,38.712715],[-76.298499,38.718005],[-76.299171,38.719287],[-76.296603,38.723183],[-76.296537,38.723283],[-76.295957,38.724162],[-76.298186,38.726255],[-76.29935,38.727347],[-76.299401,38.727395],[-76.312756,38.730708],[-76.316146,38.729586],[-76.321803,38.723565],[-76.321885,38.723478],[-76.322019,38.723335],[-76.322028,38.723326],[-76.322663,38.72265],[-76.322705,38.722605],[-76.322706,38.722604],[-76.32273,38.722578],[-76.322807,38.722496],[-76.32286,38.722439],[-76.322975,38.722317],[-76.323214,38.722063],[-76.32353,38.721727],[-76.326135,38.718954],[-76.327162,38.717861],[-76.328035,38.716932],[-76.328338,38.716609],[-76.330149,38.714682],[-76.331479,38.713266],[-76.332517,38.709118],[-76.333066,38.706927],[-76.333532,38.705063],[-76.333777,38.704086],[-76.334017,38.703127],[-76.333862,38.702953],[-76.332079,38.700956],[-76.321865,38.689512],[-76.321881,38.689217],[-76.321898,38.688902],[-76.321905,38.688768],[-76.321915,38.688584],[-76.322418,38.679304],[-76.33861,38.672023],[-76.340065,38.671369],[-76.340341,38.671245],[-76.34322,38.67688],[-76.343277,38.676992],[-76.343784,38.677985],[-76.344199,38.678798],[-76.347998,38.686234],[-76.345072,38.703546],[-76.344597,38.706352],[-76.340543,38.730338],[-76.340567,38.731008],[-76.340608,38.732179],[-76.340618,38.732464],[-76.340628,38.732756],[-76.340632,38.732857],[-76.340635,38.73296],[-76.340637,38.733003],[-76.340641,38.733123],[-76.340645,38.733225],[-76.340677,38.734136],[-76.340715,38.735215],[-76.340732,38.735712],[-76.340739,38.735894],[-76.34074,38.735932],[-76.341093,38.745959],[-76.341096,38.746058],[-76.3411,38.746148],[-76.341288,38.751505],[-76.341293,38.751654],[-76.341297,38.751756],[-76.341302,38.751901],[-76.334619,38.772911],[-76.333752,38.77342],[-76.329721,38.775789],[-76.323768,38.779287],[-76.3227,38.780657],[-76.312886,38.793247],[-76.310743,38.795996],[-76.310664,38.796098],[-76.310626,38.796147],[-76.310556,38.796237],[-76.310081,38.796846],[-76.308922,38.813346],[-76.308306,38.814331],[-76.308294,38.814349],[-76.308127,38.814618],[-76.307267,38.815993],[-76.301886,38.824595],[-76.300889,38.82619],[-76.300886,38.826192],[-76.298956,38.827519],[-76.2978,38.828314],[-76.296564,38.828186],[-76.296471,38.828176],[-76.296394,38.828168],[-76.296364,38.828165],[-76.296329,38.828162],[-76.29632,38.828161],[-76.296259,38.828155],[-76.295992,38.828127],[-76.29555,38.828081],[-76.295454,38.828071],[-76.295436,38.828069],[-76.293648,38.827884],[-76.292144,38.827729],[-76.288455,38.827347],[-76.284768,38.828706],[-76.277854,38.831256],[-76.277748,38.831295],[-76.277411,38.831419],[-76.27742,38.831468],[-76.278151,38.835494],[-76.27804,38.835768],[-76.274405,38.844766],[-76.271575,38.851771],[-76.267175,38.851652],[-76.265999,38.85162],[-76.264221,38.851572],[-76.265759,38.847638],[-76.265808,38.847512],[-76.265678,38.847326],[-76.262179,38.842325],[-76.261907,38.841936],[-76.261627,38.841536],[-76.257353,38.835428],[-76.255787,38.833189],[-76.255343,38.832554],[-76.255322,38.832525],[-76.250364,38.825438],[-76.250296,38.825389],[-76.245886,38.822232],[-76.23877,38.81959],[-76.229199,38.816036],[-76.228071,38.815617],[-76.221162,38.813052],[-76.219328,38.812371],[-76.198138,38.81444],[-76.197432,38.815541],[-76.196488,38.817015],[-76.196426,38.817111],[-76.19537,38.818759],[-76.19343,38.821787],[-76.193272,38.822319],[-76.193073,38.822989],[-76.19302,38.823165],[-76.192924,38.823489],[-76.192865,38.823687],[-76.192765,38.824024],[-76.192537,38.82479],[-76.19109,38.82966],[-76.191172,38.829834],[-76.192874,38.83345],[-76.192946,38.833603],[-76.192973,38.833661],[-76.197705,38.843712],[-76.197736,38.84383],[-76.199544,38.850817],[-76.200728,38.855389],[-76.202598,38.862616],[-76.202314,38.864906],[-76.200082,38.882885],[-76.205063,38.892726],[-76.204544,38.905715],[-76.204129,38.916096],[-76.204122,38.916269],[-76.204091,38.917058],[-76.203638,38.928382],[-76.207695,38.931954],[-76.213731,38.937269],[-76.213842,38.937366],[-76.22813,38.941412],[-76.228405,38.941489],[-76.232038,38.942518],[-76.233895,38.942123],[-76.234681,38.941956],[-76.250157,38.938667],[-76.250868,38.92825],[-76.250838,38.928204],[-76.249622,38.926297],[-76.249246,38.925707],[-76.248896,38.925159],[-76.248844,38.925076],[-76.248702,38.924855],[-76.248574,38.924655],[-76.248472,38.924494],[-76.248023,38.92379],[-76.249163,38.9218],[-76.249285,38.921587],[-76.249355,38.921465],[-76.249674,38.920907],[-76.249889,38.920841],[-76.255819,38.919008],[-76.25619,38.918893],[-76.256397,38.918829],[-76.25808,38.91916],[-76.258206,38.919185],[-76.262226,38.919976],[-76.264683,38.924576],[-76.264692,38.924764],[-76.264943,38.930297],[-76.265772,38.931482],[-76.26626,38.932179],[-76.269179,38.936349],[-76.270954,38.938886],[-76.271625,38.939844],[-76.273022,38.94184],[-76.273083,38.941927],[-76.273258,38.941826],[-76.276033,38.940213],[-76.284227,38.935452],[-76.288813,38.932787],[-76.291211,38.931394],[-76.29558,38.928855],[-76.295911,38.928663],[-76.298208,38.92206],[-76.299431,38.918542],[-76.299406,38.918505],[-76.298492,38.917121],[-76.293963,38.910266],[-76.293867,38.910121],[-76.293843,38.909826],[-76.293829,38.909649],[-76.293794,38.909222],[-76.293492,38.905499],[-76.293358,38.903854],[-76.293341,38.903635],[-76.293328,38.903479],[-76.293309,38.903244],[-76.293255,38.902582],[-76.293254,38.902568],[-76.308425,38.898404],[-76.317947,38.911312],[-76.317977,38.911311],[-76.31853,38.911299],[-76.319272,38.911282],[-76.322715,38.911205],[-76.323252,38.911193],[-76.324097,38.911174],[-76.324102,38.911172],[-76.336104,38.905977],[-76.336116,38.905907],[-76.336827,38.901905],[-76.336966,38.901118],[-76.337097,38.90038],[-76.337227,38.899653],[-76.337358,38.898915],[-76.338047,38.895034],[-76.338123,38.894601],[-76.338416,38.892954],[-76.338501,38.892474],[-76.337946,38.891332],[-76.336986,38.889357],[-76.33656,38.888481],[-76.336326,38.888001],[-76.335681,38.886673],[-76.335364,38.886021],[-76.335341,38.885907],[-76.333801,38.878194],[-76.333258,38.875478],[-76.333211,38.875241],[-76.332651,38.872438],[-76.331103,38.864686],[-76.33103,38.86432],[-76.334019,38.860238],[-76.337901,38.857579],[-76.338136,38.857418],[-76.339667,38.85637],[-76.340587,38.85574],[-76.348826,38.857134],[-76.35039,38.857399],[-76.356361,38.854396],[-76.35996,38.852586],[-76.360095,38.852518],[-76.361141,38.851992],[-76.36132,38.851589],[-76.366501,38.839936],[-76.368164,38.836194],[-76.368195,38.836125],[-76.368359,38.836205],[-76.372719,38.838324],[-76.373122,38.838519],[-76.375086,38.839474],[-76.375138,38.839981],[-76.375303,38.841611],[-76.375443,38.842988],[-76.376031,38.848777],[-76.376202,38.850461],[-76.376183,38.8505],[-76.375874,38.851126],[-76.372553,38.85786],[-76.367549,38.868009],[-76.367344,38.868424],[-76.364678,38.873831],[-76.365225,38.892614],[-76.365388,38.898219],[-76.365658,38.907477],[-76.36513,38.911736],[-76.36478,38.914553],[-76.364523,38.916632],[-76.36205,38.936568],[-76.361727,38.939175],[-76.359669,38.94388],[-76.357933,38.947848],[-76.357752,38.948262],[-76.354949,38.954672],[-76.353828,38.957234],[-76.351637,38.960214],[-76.343672,38.971048],[-76.333703,38.984607],[-76.33129,38.98789],[-76.323293,38.998767],[-76.322679,38.999602],[-76.322346,39.005488],[-76.322296,39.006375],[-76.323557,39.008961],[-76.32259,39.0131],[-76.320277,39.022998],[-76.320274,39.023013],[-76.320269,39.02302],[-76.311766,39.035257],[-76.302029,39.039571],[-76.301847,39.039651],[-76.301645,39.037663],[-76.301506,39.036298],[-76.301054,39.031862],[-76.30104,39.031721],[-76.301027,39.031595],[-76.302846,39.025828],[-76.30265,39.025346],[-76.29409,39.004263],[-76.293962,39.003948],[-76.2919,39.001264],[-76.289326,38.997914],[-76.286484,38.994215],[-76.284893,38.992143],[-76.28328,38.990044],[-76.280355,38.986236],[-76.278058,38.983246],[-76.277478,38.982492],[-76.277457,38.982493],[-76.275964,38.982587],[-76.258813,38.983664],[-76.258724,38.983646],[-76.246049,38.981035],[-76.243619,38.980534],[-76.229993,38.977728],[-76.229277,38.97758],[-76.228748,38.97722],[-76.218929,38.970538],[-76.218773,38.970562],[-76.20236,38.973079],[-76.202081,38.973272],[-76.187165,38.983558],[-76.182461,38.986802],[-76.180663,38.988042],[-76.168332,38.996546],[-76.164004,38.99953],[-76.163988,38.999541],[-76.163988,38.999542],[-76.163956,39.000437],[-76.163898,39.002096],[-76.163616,39.010057],[-76.167574,39.018273],[-76.173393,39.02555],[-76.174633,39.0271],[-76.177832,39.031102],[-76.178115,39.031456],[-76.178281,39.031663],[-76.184207,39.046264],[-76.179456,39.052941],[-76.177046,39.056329],[-76.175284,39.058805],[-76.16906,39.062787],[-76.15896,39.065486],[-76.156572,39.069433],[-76.153465,39.074568],[-76.150528,39.079421],[-76.145174,39.092824],[-76.15809,39.093998],[-76.167347,39.094839],[-76.169087,39.094997],[-76.169414,39.095027],[-76.169891,39.09507],[-76.183908,39.096344],[-76.189907,39.093042],[-76.194703,39.090403],[-76.203333,39.085654],[-76.203383,39.085626],[-76.203548,39.085101],[-76.205108,39.080129],[-76.207604,39.072176],[-76.210041,39.06441],[-76.210251,39.062511],[-76.210876,39.056874],[-76.211838,39.048184],[-76.212563,39.041641],[-76.212602,39.041288],[-76.212616,39.041158],[-76.21204,39.03887],[-76.211589,39.03708],[-76.210477,39.032664],[-76.209827,39.030081],[-76.209517,39.028848],[-76.208502,39.024818],[-76.208346,39.024614],[-76.206852,39.022649],[-76.206796,39.022575],[-76.205958,39.021475],[-76.200666,39.01452],[-76.201005,39.014339],[-76.202176,39.013714],[-76.209114,39.01001],[-76.209285,39.010074],[-76.21685,39.012916],[-76.221148,39.01453],[-76.223671,39.015478],[-76.231765,39.018518],[-76.240226,39.026581],[-76.241932,39.028206],[-76.242687,39.028926],[-76.240905,39.039798],[-76.239443,39.041977],[-76.2375,39.044872],[-76.237065,39.045521],[-76.231212,39.060769],[-76.231117,39.061017],[-76.231427,39.071714],[-76.231748,39.082826],[-76.233457,39.091385],[-76.240603,39.106856],[-76.24505,39.116484],[-76.252946,39.133577],[-76.252968,39.133626],[-76.260343,39.142722],[-76.260894,39.143402],[-76.264417,39.143874],[-76.26654,39.144158],[-76.268096,39.144367],[-76.274907,39.145279],[-76.276721,39.145522],[-76.278527,39.145764],[-76.276807,39.154484],[-76.27566,39.160304],[-76.274741,39.164961],[-76.274637,39.16549],[-76.274303,39.166115],[-76.269467,39.175163],[-76.268631,39.176727],[-76.266963,39.179848],[-76.266602,39.180523],[-76.255831,39.191595],[-76.251032,39.199214],[-76.248741,39.203333],[-76.232612,39.232333],[-76.232051,39.233341],[-76.22622,39.246485],[-76.220475,39.259433],[-76.219338,39.261997],[-76.219312,39.262022],[-76.218339,39.262963],[-76.21752,39.263754],[-76.211306,39.269761],[-76.211253,39.269812],[-76.211179,39.269813],[-76.210748,39.269816],[-76.203031,39.269871],[-76.20259,39.270265],[-76.193029,39.278801],[-76.191285,39.280358],[-76.189868,39.281623],[-76.185909,39.285157],[-76.185674,39.285367],[-76.181496,39.291797],[-76.181478,39.291829],[-76.177712,39.298686],[-76.177704,39.298701],[-76.177178,39.303099],[-76.176804,39.306229],[-76.176778,39.306447],[-76.176865,39.306584],[-76.178983,39.309926],[-76.179092,39.310098],[-76.186024,39.312462],[-76.186637,39.315426],[-76.186647,39.315475],[-76.186001,39.317814],[-76.185581,39.319334],[-76.185507,39.319396],[-76.170588,39.331954],[-76.170541,39.331994],[-76.170422,39.332094],[-76.169411,39.332453],[-76.168365,39.332824],[-76.159673,39.335909],[-76.157163,39.335641],[-76.152722,39.335167],[-76.145524,39.334399],[-76.133225,39.340491],[-76.135105,39.34246],[-76.136971,39.344414],[-76.13495,39.35107],[-76.129983,39.353702],[-76.116698,39.360744],[-76.116356,39.360925],[-76.115935,39.361744],[-76.113215,39.367032],[-76.110598,39.372119],[-76.110527,39.372257],[-76.108942,39.372215],[-76.108373,39.3722],[-76.074992,39.371312],[-76.065887,39.37107],[-76.065716,39.371066],[-76.061504,39.370954],[-76.059335,39.370896],[-76.05872,39.37088],[-76.057876,39.370857],[-76.054157,39.370759],[-76.049846,39.370644],[-76.032923,39.367414],[-76.031767,39.366772],[-76.030064,39.365826],[-76.02299,39.361896],[-76.019091,39.362958],[-76.006546,39.366374],[-76.002408,39.367501],[-76.002463,39.37644],[-76.002514,39.384805],[-76.002515,39.385024],[-76.006805,39.385174],[-76.022304,39.385716],[-76.035464,39.386176],[-76.035568,39.38618],[-76.035644,39.386213],[-76.039279,39.387796],[-76.039932,39.38808],[-76.039973,39.388327],[-76.040854,39.393594],[-76.040962,39.394237],[-76.040612,39.394692],[-76.035298,39.401609],[-76.035002,39.401994],[-76.03472,39.402093],[-76.018726,39.407696],[-76.018061,39.407929],[-76.016531,39.408465],[-76.015763,39.408947],[-76.012567,39.410955],[-76.009693,39.41276],[-76.00688,39.414527],[-76.002856,39.421225],[-75.998586,39.428333],[-75.997396,39.430314],[-75.996697,39.430549],[-75.992742,39.431877],[-75.992425,39.431983],[-75.98884,39.433187],[-75.982585,39.435287],[-75.977751,39.44302],[-75.976747,39.444627],[-75.976698,39.44569],[-75.976601,39.447808],[-75.990005,39.458646],[-75.990128,39.458624],[-75.991779,39.458332],[-75.994432,39.457862],[-75.998276,39.457182],[-76.002497,39.450231],[-76.002513,39.450204],[-76.002579,39.450194],[-76.009071,39.449256],[-76.009452,39.449201],[-76.009536,39.449316],[-76.01188,39.452524],[-76.012312,39.453115],[-76.011716,39.454165],[-76.010009,39.45717],[-76.002926,39.469642],[-75.99657,39.476658],[-75.995289,39.483014],[-75.994135,39.488743],[-75.993469,39.490583],[-75.986298,39.510398],[-75.985403,39.512108],[-75.985238,39.512424],[-75.980279,39.5219],[-75.976105,39.529876],[-75.976057,39.529968],[-75.975313,39.530678],[-75.973678,39.532237],[-75.966955,39.53865],[-75.966959,39.538839],[-75.967093,39.544623],[-75.967173,39.548047],[-75.967186,39.548627],[-75.967221,39.55014],[-75.970337,39.557637],[-75.992633,39.563098],[-75.999669,39.560488],[-76.00019,39.559696],[-76.001244,39.558096],[-76.002793,39.555741],[-76.003434,39.554768],[-76.004207,39.553594],[-76.006213,39.550546],[-76.006272,39.550457],[-76.006341,39.550352],[-76.03042,39.548784],[-76.046876,39.547713],[-76.063379,39.546638],[-76.063811,39.54661],[-76.075714,39.543032],[-76.096072,39.536912],[-76.102955,39.523639],[-76.105571,39.518595],[-76.105678,39.518388],[-76.106215,39.517353],[-76.107126,39.515597],[-76.111583,39.507001],[-76.116831,39.496882],[-76.117253,39.496068],[-76.11461,39.488619],[-76.113929,39.486701],[-76.108813,39.482333],[-76.104665,39.478792],[-76.100218,39.476918],[-76.099506,39.476618],[-76.098315,39.476116],[-76.083286,39.47786],[-76.083082,39.477809],[-76.08159,39.477438],[-76.073119,39.475331],[-76.072309,39.47513],[-76.071975,39.475047],[-76.071836,39.47476],[-76.069814,39.470577],[-76.063874,39.458295],[-76.062259,39.454955],[-76.060931,39.452208],[-76.060944,39.451174],[-76.060988,39.447775],[-76.060989,39.447722],[-76.081176,39.436712],[-76.081409,39.436891],[-76.083269,39.438321],[-76.083405,39.438302],[-76.093595,39.436871],[-76.102232,39.435659],[-76.112761,39.429852],[-76.115096,39.428565],[-76.11682,39.427614],[-76.117172,39.42717],[-76.120991,39.422358],[-76.121754,39.421396],[-76.121889,39.421226],[-76.132114,39.414579],[-76.142224,39.408007],[-76.146373,39.40531],[-76.147048,39.405364],[-76.150249,39.405623],[-76.150516,39.405644],[-76.150934,39.405678],[-76.151948,39.40576],[-76.152059,39.405769],[-76.152357,39.405793],[-76.157108,39.406176],[-76.158592,39.406295],[-76.158774,39.40631],[-76.159358,39.405661],[-76.171134,39.392588],[-76.171474,39.39221],[-76.171747,39.391747],[-76.175121,39.386019],[-76.175597,39.38521],[-76.175928,39.384648],[-76.180057,39.377638],[-76.180074,39.377609],[-76.199356,39.366221],[-76.202346,39.364455],[-76.226976,39.349908],[-76.227625,39.350109],[-76.229614,39.350723],[-76.233776,39.352008],[-76.234743,39.353498],[-76.234765,39.353532],[-76.235795,39.355119],[-76.23652,39.356236],[-76.237943,39.358429],[-76.239877,39.361408],[-76.241268,39.361567],[-76.243377,39.361808],[-76.244443,39.361731],[-76.244988,39.361691],[-76.245273,39.361671],[-76.250107,39.36132],[-76.250483,39.361136],[-76.266365,39.353352],[-76.265277,39.350008],[-76.263019,39.348634],[-76.258377,39.345808],[-76.258342,39.345737],[-76.253928,39.336768],[-76.262008,39.334708],[-76.262471,39.33459],[-76.263073,39.334436],[-76.263577,39.334308],[-76.263624,39.334265],[-76.265615,39.33245],[-76.265777,39.332302],[-76.266094,39.332013],[-76.266257,39.331864],[-76.266407,39.331727],[-76.272671,39.326015],[-76.276078,39.322908],[-76.277813,39.318738],[-76.277866,39.31861],[-76.278239,39.317712],[-76.278351,39.317444],[-76.278499,39.317088],[-76.280599,39.312037],[-76.280778,39.311608],[-76.281088,39.30793],[-76.281374,39.304531],[-76.281429,39.303872],[-76.281556,39.302369],[-76.281578,39.302108],[-76.2817,39.30211],[-76.296546,39.302383],[-76.297878,39.302408],[-76.291078,39.318108],[-76.298778,39.329208],[-76.298778,39.333958],[-76.298778,39.339278],[-76.298778,39.340208],[-76.297569,39.342244],[-76.295558,39.345631],[-76.294978,39.346608],[-76.295678,39.350008],[-76.30177,39.352216],[-76.310618,39.355423],[-76.310829,39.3555],[-76.31136,39.355693],[-76.311679,39.355808],[-76.31261,39.355917],[-76.312864,39.355946],[-76.314356,39.35612],[-76.322687,39.357092],[-76.323679,39.357208],[-76.330027,39.356139],[-76.341443,39.354217],[-76.339942,39.350169],[-76.335412,39.337949],[-76.334401,39.335222],[-76.334021,39.334197],[-76.333924,39.333935],[-76.338898,39.325783],[-76.33957,39.324681],[-76.33382,39.319611],[-76.327579,39.314108],[-76.337858,39.305799],[-76.339817,39.304216],[-76.341432,39.30291],[-76.353205,39.31065],[-76.354817,39.311709],[-76.355495,39.312155],[-76.36439,39.31184],[-76.365532,39.31095],[-76.380662,39.299161],[-76.380734,39.298765],[-76.383021,39.286231],[-76.383345,39.284455],[-76.383891,39.281465],[-76.384901,39.275928],[-76.385151,39.275766],[-76.395136,39.269293],[-76.395301,39.269042],[-76.400094,39.261753],[-76.400187,39.261612],[-76.401103,39.260219],[-76.402047,39.258783],[-76.402355,39.258315],[-76.401911,39.258053],[-76.386937,39.249216],[-76.38138,39.249508],[-76.382358,39.247292],[-76.38438,39.242708],[-76.384699,39.242242],[-76.38938,39.235408],[-76.389563,39.235261],[-76.393626,39.232012],[-76.394381,39.231408],[-76.398314,39.22945],[-76.399122,39.229048],[-76.41762,39.219838],[-76.417681,39.219808],[-76.41829,39.218677],[-76.419201,39.216988],[-76.425281,39.205708],[-76.425413,39.205629],[-76.441411,39.196049],[-76.442482,39.195408],[-76.447621,39.197977],[-76.46156,39.204947],[-76.462679,39.205506],[-76.463483,39.205908],[-76.471126,39.20554],[-76.480083,39.205108],[-76.482153,39.204426],[-76.485527,39.203314],[-76.486371,39.203036],[-76.488883,39.202208],[-76.489505,39.202378],[-76.489777,39.202453],[-76.49077,39.202724],[-76.497977,39.204697],[-76.498384,39.204808],[-76.500086,39.207798],[-76.500834,39.209113],[-76.500984,39.209376],[-76.519804,39.222946],[-76.520584,39.223508],[-76.520941,39.22324],[-76.528587,39.217492],[-76.529649,39.216693],[-76.534285,39.213208],[-76.53496,39.21228],[-76.535885,39.211008],[-76.533103,39.20763],[-76.533085,39.207608],[-76.533349,39.207172],[-76.53476,39.204841],[-76.535385,39.203808],[-76.534185,39.190608],[-76.525785,39.177908],[-76.525454,39.177746],[-76.525031,39.17754],[-76.524221,39.177144],[-76.52027,39.175214],[-76.519292,39.174736],[-76.511834,39.171093],[-76.508384,39.169408],[-76.500926,39.161286],[-76.500512,39.161362],[-76.484023,39.164407],[-76.483845,39.164334],[-76.475983,39.161109],[-76.474807,39.159436],[-76.473802,39.158007],[-76.471483,39.154709],[-76.468898,39.153161],[-76.459119,39.147304],[-76.458873,39.147157],[-76.458649,39.147023],[-76.45835,39.146844],[-76.458192,39.146749],[-76.452782,39.143509],[-76.44011,39.137305],[-76.430946,39.132818],[-76.43013,39.132419],[-76.428681,39.131709],[-76.432481,39.126709],[-76.432702,39.120752],[-76.432981,39.113209],[-76.432942,39.113098],[-76.427196,39.096685],[-76.427065,39.096309],[-76.426456,39.094571],[-76.426283,39.094076],[-76.426276,39.094057],[-76.423609,39.086438],[-76.423321,39.085615],[-76.423271,39.085473],[-76.422714,39.083881],[-76.422212,39.082448],[-76.42208,39.08207],[-76.42186,39.081442],[-76.423081,39.07421],[-76.432374,39.061648],[-76.438845,39.0529],[-76.438928,39.052788],[-76.437044,39.051698],[-76.422933,39.043536],[-76.407398,39.034551],[-76.407213,39.034444],[-76.407205,39.034439],[-76.405338,39.03336],[-76.405081,39.033211],[-76.405021,39.033124],[-76.4026,39.029609],[-76.39778,39.022611],[-76.397738,39.022482],[-76.396417,39.018449],[-76.396395,39.01838],[-76.395639,39.016074],[-76.395338,39.015154],[-76.394699,39.0132],[-76.394358,39.01216],[-76.39408,39.011311],[-76.412326,38.996832],[-76.414631,38.995002],[-76.421535,38.989524],[-76.422181,38.989011],[-76.427301,38.987827],[-76.448928,38.982823],[-76.448981,38.982811],[-76.449188,38.982092],[-76.450152,38.978751],[-76.450481,38.977612],[-76.451599,38.976767],[-76.454581,38.974512],[-76.474198,38.972647],[-76.474198,38.972646],[-76.47445,38.970683],[-76.474882,38.967312],[-76.474743,38.966895],[-76.473243,38.962397],[-76.471281,38.956512],[-76.463081,38.948612],[-76.460234,38.948505],[-76.457781,38.948412],[-76.457229,38.947875],[-76.451695,38.94249],[-76.45028,38.941113],[-76.450756,38.940412],[-76.46188,38.924013],[-76.461747,38.923674],[-76.460272,38.919909],[-76.458991,38.916639],[-76.458759,38.916045],[-76.45808,38.914313],[-76.459479,38.907113],[-76.460253,38.907152],[-76.460716,38.907175],[-76.462312,38.907256],[-76.46528,38.907406],[-76.46938,38.907613],[-76.46948,38.911513],[-76.475761,38.914469],[-76.49368,38.910013],[-76.493791,38.904225],[-76.493798,38.903865],[-76.493806,38.903443],[-76.493856,38.900846],[-76.49388,38.899614],[-76.49278,38.895614],[-76.49088,38.894514],[-76.490403,38.892254],[-76.490339,38.891955],[-76.489933,38.890031],[-76.489713,38.888991],[-76.489675,38.888811],[-76.489667,38.888772],[-76.48938,38.887414],[-76.49068,38.884814],[-76.491107,38.884492],[-76.491442,38.884239],[-76.4944,38.88201],[-76.494588,38.881868],[-76.494858,38.881665],[-76.498467,38.878944],[-76.507858,38.871866],[-76.511135,38.869396],[-76.519442,38.863135],[-76.516944,38.851157],[-76.516582,38.851026],[-76.509285,38.848388],[-76.509211,38.848416],[-76.499158,38.852156],[-76.497562,38.852749],[-76.496579,38.853115],[-76.496474,38.852953],[-76.493639,38.848595],[-76.492761,38.847246],[-76.492017,38.846102],[-76.491581,38.845433],[-76.491494,38.845299],[-76.489919,38.842878],[-76.489878,38.842815],[-76.489878,38.838715],[-76.490107,38.838176],[-76.491387,38.835161],[-76.491606,38.834644],[-76.491684,38.834462],[-76.491831,38.834116],[-76.496965,38.822022],[-76.497692,38.820309],[-76.498878,38.817516],[-76.499056,38.817258],[-76.50291,38.811648],[-76.50653,38.80638],[-76.506876,38.805875],[-76.509314,38.802328],[-76.510078,38.801216],[-76.51113,38.800769],[-76.514296,38.799425],[-76.51583,38.798774],[-76.523405,38.795557],[-76.524679,38.795016],[-76.524806,38.794871],[-76.524999,38.79465],[-76.525039,38.794605],[-76.52521,38.794409],[-76.525531,38.794043],[-76.527455,38.791844],[-76.527479,38.791816],[-76.527463,38.791667],[-76.527372,38.790788],[-76.52737,38.790774],[-76.527105,38.788223],[-76.527045,38.787645],[-76.526979,38.787016],[-76.527315,38.78666],[-76.528136,38.78579],[-76.532487,38.781181],[-76.533975,38.779604],[-76.535207,38.778298],[-76.535352,38.778145],[-76.535379,38.778116],[-76.535426,38.778095],[-76.535642,38.778],[-76.536284,38.777719],[-76.536819,38.777484],[-76.536849,38.777471],[-76.53723,38.777304],[-76.539088,38.776488],[-76.542973,38.774783],[-76.544372,38.774169],[-76.544413,38.774151],[-76.554443,38.769749],[-76.554693,38.769639],[-76.559697,38.767443],[-76.559884,38.767361],[-76.559778,38.766342],[-76.558933,38.758177],[-76.557535,38.744687],[-76.5573,38.744229],[-76.557091,38.743823],[-76.556954,38.743554],[-76.553978,38.737756],[-76.552743,38.73535],[-76.551971,38.734636],[-76.544561,38.727784],[-76.544475,38.727705],[-76.543853,38.727736],[-76.54357,38.72775],[-76.543435,38.727757],[-76.542053,38.727826],[-76.539769,38.72794],[-76.529868,38.728435],[-76.529284,38.728137],[-76.52718,38.727062],[-76.526655,38.72443],[-76.529237,38.713561],[-76.529532,38.712317],[-76.529721,38.711523],[-76.530575,38.707929],[-76.530799,38.706983],[-76.530824,38.706881],[-76.532465,38.699974],[-76.532537,38.699669],[-76.532527,38.698207],[-76.532432,38.6836],[-76.532409,38.680064],[-76.532398,38.678363],[-76.532056,38.676936],[-76.530454,38.670263],[-76.52785,38.659416],[-76.527428,38.657655],[-76.525007,38.647568],[-76.52462,38.645956],[-76.524122,38.645044],[-76.517862,38.633586],[-76.516988,38.631985],[-76.515554,38.629361],[-76.511278,38.615745],[-76.512452,38.609827],[-76.512583,38.609168],[-76.514812,38.59793],[-76.515741,38.593248],[-76.51576,38.593154],[-76.515764,38.593131],[-76.51634,38.590229],[-76.515106,38.555763],[-76.515376,38.553895],[-76.515409,38.553667],[-76.515415,38.553623],[-76.51552,38.5529],[-76.517506,38.539149],[-76.515754,38.52926],[-76.515706,38.528988],[-76.51535,38.528093],[-76.507489,38.5083],[-76.50686,38.506716],[-76.506023,38.50461],[-76.499256,38.493559],[-76.498792,38.4928],[-76.498222,38.491869],[-76.492699,38.482849],[-76.491642,38.481944],[-76.473372,38.46629],[-76.471253,38.464474],[-76.467342,38.461123],[-76.467194,38.460996],[-76.467186,38.46099],[-76.46401,38.458268],[-76.461078,38.455756],[-76.455799,38.451233],[-76.456002,38.447891],[-76.45414,38.44588],[-76.450937,38.442422],[-76.445376,38.439012],[-76.442441,38.437212],[-76.442431,38.437206],[-76.44118,38.436439],[-76.438919,38.435053],[-76.436271,38.433429],[-76.435674,38.432893],[-76.415384,38.414682],[-76.40271,38.396003],[-76.393378,38.389477],[-76.388348,38.387781],[-76.388328,38.387727],[-76.386229,38.382013],[-76.386243,38.381631],[-76.386931,38.363184],[-76.386957,38.362462],[-76.387002,38.361267],[-76.387408,38.360811],[-76.388806,38.359238],[-76.388915,38.359115],[-76.398261,38.348602],[-76.400871,38.345666],[-76.401532,38.344923],[-76.402043,38.344348],[-76.403101,38.343157],[-76.40494,38.341089],[-76.409291,38.325891],[-76.405716,38.317794],[-76.402894,38.311402],[-76.382163,38.303389],[-76.381493,38.30313],[-76.38012,38.302343],[-76.37531,38.299583],[-76.375023,38.299419],[-76.374517,38.296556],[-76.374481,38.296348],[-76.376607,38.294393],[-76.382051,38.289384],[-76.394171,38.278233],[-76.396913,38.27165],[-76.398852,38.266997],[-76.399013,38.264338],[-76.399049,38.263753],[-76.399078,38.263275],[-76.399313,38.259398],[-76.39932,38.259284],[-76.399078,38.258569],[-76.392464,38.239055],[-76.39228,38.238511],[-76.391659,38.23668],[-76.391623,38.236573],[-76.385244,38.217751],[-76.378104,38.209897],[-76.377693,38.209445],[-76.372535,38.203771],[-76.364135,38.194532],[-76.361877,38.192048],[-76.359887,38.188737],[-76.353799,38.178606],[-76.353516,38.178135],[-76.352561,38.177214],[-76.352395,38.177054],[-76.347983,38.172802],[-76.343517,38.168497],[-76.337611,38.162805],[-76.336106,38.161353],[-76.329711,38.15519],[-76.329705,38.155184],[-76.329688,38.155155],[-76.328864,38.153703],[-76.328805,38.1536],[-76.328778,38.153552],[-76.328419,38.152921],[-76.327124,38.150641],[-76.320492,38.138966],[-76.320136,38.138339],[-76.324108,38.134266],[-76.330982,38.127217],[-76.331812,38.126366],[-76.335243,38.122848],[-76.335637,38.122444],[-76.337342,38.120696],[-76.338161,38.119856],[-76.338535,38.119472],[-76.337411,38.110888],[-76.337402,38.11082],[-76.331807,38.101092],[-76.331484,38.100531],[-76.33124,38.100106],[-76.330807,38.099354],[-76.330794,38.099331],[-76.330787,38.099201],[-76.329433,38.073986],[-76.329308,38.07166],[-76.329165,38.071247],[-76.325044,38.059368],[-76.320592,38.046531],[-76.319476,38.043315],[-76.321499,38.03805],[-76.32195,38.036874],[-76.322093,38.036503],[-76.326994,38.045105],[-76.332812,38.049938],[-76.341172,38.053596],[-76.341404,38.053697],[-76.344327,38.053565],[-76.345697,38.053502],[-76.350656,38.053277],[-76.35275,38.053182],[-76.361237,38.059542],[-76.361538,38.060114],[-76.361668,38.06036],[-76.361779,38.06057],[-76.369306,38.074853],[-76.370204,38.076556],[-76.370845,38.077771],[-76.37179,38.079565],[-76.378292,38.086949],[-76.380991,38.090014],[-76.381298,38.090362],[-76.381752,38.090878],[-76.381842,38.090981],[-76.383896,38.093312],[-76.384886,38.094437],[-76.390917,38.101286],[-76.391823,38.102315],[-76.392058,38.102581],[-76.392335,38.102896],[-76.393121,38.103142],[-76.394006,38.103419],[-76.396478,38.104192],[-76.397656,38.104561],[-76.398067,38.10469],[-76.405368,38.106974],[-76.405972,38.106967],[-76.41316,38.106884],[-76.414475,38.105943],[-76.414994,38.105572],[-76.41655,38.104459],[-76.421066,38.105989],[-76.421214,38.106039],[-76.421896,38.107026],[-76.429384,38.117875],[-76.429471,38.118001],[-76.430425,38.119383],[-76.430412,38.119488],[-76.43013,38.121753],[-76.429744,38.124856],[-76.429581,38.126165],[-76.437242,38.135699],[-76.439841,38.138933],[-76.459236,38.139471],[-76.459689,38.139484],[-76.460072,38.138717],[-76.460673,38.137515],[-76.465727,38.127408],[-76.469798,38.119264],[-76.469795,38.119061],[-76.469787,38.118606],[-76.469784,38.118381],[-76.46976,38.116874],[-76.46974,38.115653],[-76.469738,38.115534],[-76.467333,38.112546],[-76.466973,38.112099],[-76.466568,38.111596],[-76.466404,38.111392],[-76.466387,38.111302],[-76.466364,38.111183],[-76.465892,38.108738],[-76.465479,38.106603],[-76.46533,38.10583],[-76.467879,38.104932],[-76.473266,38.103035],[-76.475448,38.104271],[-76.476222,38.104709],[-76.478168,38.109221],[-76.47861,38.110247],[-76.478797,38.11068],[-76.478817,38.110726],[-76.479056,38.111281],[-76.479799,38.113005],[-76.481,38.115789],[-76.481036,38.115873],[-76.48105,38.115889],[-76.481073,38.115915],[-76.482007,38.116974],[-76.48403,38.119266],[-76.485149,38.120535],[-76.485961,38.121456],[-76.486274,38.12181],[-76.48632,38.121862],[-76.492029,38.128333],[-76.49504,38.131746],[-76.497081,38.134059],[-76.497866,38.13495],[-76.499018,38.136255],[-76.499842,38.137189],[-76.499923,38.137221],[-76.500332,38.137381],[-76.501258,38.137744],[-76.502306,38.138156],[-76.508825,38.140713],[-76.514824,38.141219],[-76.522418,38.139391],[-76.52899,38.134708],[-76.529439,38.134388],[-76.529868,38.134083],[-76.54038,38.152991],[-76.545335,38.165373],[-76.547333,38.175673],[-76.547455,38.175923],[-76.547902,38.176839],[-76.548256,38.177566],[-76.548946,38.178982],[-76.552957,38.187209],[-76.566297,38.198492],[-76.57444,38.203751],[-76.588683,38.21295],[-76.590637,38.214212],[-76.624387,38.223429],[-76.625659,38.223777],[-76.628078,38.224437],[-76.629703,38.224881],[-76.629893,38.224933],[-76.631958,38.225497],[-76.631997,38.225508],[-76.632464,38.225635],[-76.632544,38.225657],[-76.643929,38.22508],[-76.643999,38.225102],[-76.645034,38.225429],[-76.645166,38.22547],[-76.659182,38.229894],[-76.673462,38.234401],[-76.678687,38.234259],[-76.687075,38.23403],[-76.712594,38.233334],[-76.716139,38.233237],[-76.716376,38.233231],[-76.717537,38.233329],[-76.719602,38.233503],[-76.740055,38.235227],[-76.744265,38.230716],[-76.749384,38.225231],[-76.752017,38.222409],[-76.752085,38.222336],[-76.752286,38.222121],[-76.769988,38.226388],[-76.778625,38.22847],[-76.779865,38.229026],[-76.791932,38.234441],[-76.79659,38.236531],[-76.797452,38.236918],[-76.811647,38.250129],[-76.811815,38.251318],[-76.811927,38.252115],[-76.809009,38.252193],[-76.80888,38.252197],[-76.808411,38.252209],[-76.805949,38.252275],[-76.80577,38.252615],[-76.805224,38.253648],[-76.802947,38.275094],[-76.802347,38.280743],[-76.804922,38.2833],[-76.805037,38.283414],[-76.805363,38.283738],[-76.80547,38.283844],[-76.806596,38.284962],[-76.810596,38.288934],[-76.811182,38.289516],[-76.815098,38.293404],[-76.816323,38.29462],[-76.820799,38.299064],[-76.821569,38.299829],[-76.82167,38.299869],[-76.824834,38.30113],[-76.824889,38.301152],[-76.834046,38.29968],[-76.845846,38.297783],[-76.846118,38.297739],[-76.846252,38.297718],[-76.846221,38.29196],[-76.84622,38.291768],[-76.841703,38.289768],[-76.841241,38.289564],[-76.840383,38.289184],[-76.838539,38.28417],[-76.834908,38.274299],[-76.834803,38.274012],[-76.835136,38.272628],[-76.837697,38.26199],[-76.837789,38.261609],[-76.842038,38.254657],[-76.842139,38.254491],[-76.843422,38.254925],[-76.844221,38.255195],[-76.844885,38.25542],[-76.846036,38.255809],[-76.847074,38.25616],[-76.864292,38.268945],[-76.866302,38.269673],[-76.866416,38.269715],[-76.886535,38.277004],[-76.908506,38.28843],[-76.920778,38.291529],[-76.920932,38.291568],[-76.922161,38.311086],[-76.922177,38.311339],[-76.923629,38.314932],[-76.924668,38.316011],[-76.927019,38.318454],[-76.929554,38.321088],[-76.942132,38.329601],[-76.953928,38.333282],[-76.966349,38.341372],[-76.975092,38.347067],[-76.975492,38.347327],[-76.983582,38.362999],[-76.986464,38.382618],[-76.986699,38.384213],[-76.986996,38.386237],[-76.987838,38.391965],[-76.98828,38.394975],[-76.989271,38.396352],[-76.989306,38.396401],[-76.990305,38.397788],[-76.993839,38.402699],[-76.996663,38.406623],[-76.996724,38.406708],[-76.998585,38.409294],[-76.998843,38.410362],[-77.000997,38.419293],[-77.001541,38.421548],[-77.001638,38.421952],[-77.001902,38.422376],[-77.00257,38.423447],[-77.006495,38.429738],[-77.006767,38.430176],[-77.016371,38.445572],[-77.016674,38.44556],[-77.040638,38.444618],[-77.042046,38.443983],[-77.042879,38.443607],[-77.044188,38.443016],[-77.053187,38.437753],[-77.05329,38.437693],[-77.053445,38.437602],[-77.053663,38.437475],[-77.053979,38.43729],[-77.054972,38.436709],[-77.055162,38.436598],[-77.05532,38.436505],[-77.056892,38.435586],[-77.057277,38.435361],[-77.05746,38.435254],[-77.057684,38.435123],[-77.062607,38.432244],[-77.074174,38.425479],[-77.074339,38.425382],[-77.074703,38.42517],[-77.075489,38.42471],[-77.081252,38.419449],[-77.081418,38.419297],[-77.086393,38.414755],[-77.091073,38.407546],[-77.106571,38.406237],[-77.106968,38.406531],[-77.107631,38.407022],[-77.107881,38.407207],[-77.109055,38.408076],[-77.109171,38.408162],[-77.110586,38.40921],[-77.110623,38.409214],[-77.123325,38.410646],[-77.125933,38.404845],[-77.127392,38.4016],[-77.127737,38.400833],[-77.128377,38.40019],[-77.128649,38.399917],[-77.128823,38.399742],[-77.128872,38.399692],[-77.12909,38.399474],[-77.130287,38.398271],[-77.135224,38.393311],[-77.136434,38.392094],[-77.136728,38.391799],[-77.136947,38.391684],[-77.139968,38.390102],[-77.143152,38.388435],[-77.147541,38.386136],[-77.163531,38.377761],[-77.168697,38.375055],[-77.177,38.370706],[-77.1798,38.369239],[-77.182638,38.367753],[-77.183268,38.367423],[-77.184917,38.366559],[-77.18668,38.365636],[-77.189412,38.364872],[-77.205009,38.360511],[-77.207214,38.359894],[-77.207312,38.359867],[-77.207371,38.359888],[-77.208334,38.360224],[-77.212189,38.361572],[-77.216729,38.363159],[-77.216834,38.363221],[-77.236231,38.374601],[-77.250172,38.382781],[-77.250862,38.384325],[-77.25122,38.385127],[-77.253202,38.389567],[-77.256412,38.396755],[-77.257177,38.39847],[-77.261937,38.409131],[-77.264238,38.414282],[-77.26129,38.42367],[-77.259962,38.427902],[-77.259962,38.435821],[-77.26076,38.438394],[-77.263682,38.44781],[-77.266845,38.458004],[-77.269474,38.466476],[-77.274021,38.481127],[-77.27417,38.481608],[-77.27422,38.48177],[-77.274125,38.482044],[-77.271099,38.490753],[-77.263599,38.512344],[-77.257378,38.521847],[-77.254882,38.52566],[-77.246089,38.539093],[-77.242736,38.544214],[-77.237724,38.55187],[-77.236728,38.552071],[-77.226465,38.554139],[-77.221117,38.555217],[-77.209905,38.56887],[-77.205261,38.574525],[-77.183767,38.600699],[-77.175969,38.604113],[-77.169968,38.60674],[-77.169671,38.60687],[-77.167523,38.60674],[-77.163945,38.606524],[-77.163409,38.606492],[-77.16316,38.606477],[-77.162649,38.606446],[-77.161585,38.606381],[-77.148651,38.6056],[-77.146087,38.606748],[-77.135539,38.611473],[-77.129213,38.614306],[-77.129084,38.614364],[-77.128841,38.61466],[-77.12634,38.6177],[-77.125191,38.619096],[-77.12463,38.619778],[-77.1302,38.635017],[-77.132201,38.641217],[-77.131901,38.644217],[-77.135901,38.649817],[-77.132501,38.673816],[-77.122001,38.685816],[-77.1059,38.696815],[-77.1027,38.698315],[-77.099,38.698615],[-77.0918,38.703415],[-77.086329,38.706128],[-77.079499,38.709515],[-77.072807,38.711526],[-77.071861,38.710581],[-77.065322,38.709564],[-77.053199,38.709915],[-77.045498,38.714315],[-77.042298,38.718515],[-77.042045,38.720202]]]]}}]} diff --git a/Where/RegionKit/Sources/Resources/regions/us-ME.geojson b/Where/RegionKit/Sources/Resources/regions/us-ME.geojson new file mode 100644 index 00000000..03496d24 --- /dev/null +++ b/Where/RegionKit/Sources/Resources/regions/us-ME.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"region":"us-ME","name":"Maine"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-70.152589,43.746794],[-70.151959,43.749188],[-70.153344,43.750574],[-70.156116,43.74944],[-70.157754,43.749818],[-70.15851,43.750601],[-70.158456,43.751616],[-70.147646,43.758585],[-70.146286,43.7621],[-70.145911,43.772119],[-70.145033,43.773668],[-70.143603,43.774108],[-70.134287,43.774156],[-70.133029,43.774323],[-70.131174,43.774387],[-70.128271,43.774009],[-70.127389,43.772623],[-70.129668,43.770943],[-70.132485,43.768549],[-70.135513,43.765576],[-70.14089,43.753204],[-70.142827,43.75163],[-70.146539,43.750093],[-70.14983,43.74739],[-70.151833,43.746542],[-70.152589,43.746794]]],[[[-70.135957,43.753219],[-70.135957,43.756243],[-70.13254,43.762142],[-70.129721,43.76408],[-70.117688,43.765693],[-70.11663,43.765458],[-70.116176,43.765189],[-70.116932,43.764181],[-70.120225,43.760642],[-70.128198,43.755667],[-70.132054,43.754101],[-70.135957,43.753219]]],[[[-70.171245,43.663498],[-70.171136,43.6633],[-70.190323,43.642986],[-70.205934,43.633633],[-70.207165,43.63369],[-70.211062,43.641842],[-70.200116,43.662978],[-70.188047,43.673762],[-70.184659,43.674699],[-70.171245,43.663498]]],[[[-70.186213,43.682655],[-70.187536,43.678669],[-70.192574,43.673139],[-70.207341,43.662562],[-70.210825,43.661695],[-70.21313,43.662973],[-70.213948,43.666161],[-70.209627,43.676308],[-70.201893,43.685483],[-70.196535,43.688784],[-70.191041,43.689071],[-70.186213,43.682655]]],[[[-70.163884,43.692404],[-70.156787,43.694706],[-70.146115,43.701635],[-70.135563,43.700658],[-70.154503,43.680933],[-70.168227,43.675136],[-70.170284,43.675441],[-70.173571,43.683734],[-70.171339,43.687546],[-70.163884,43.692404]]],[[[-70.087621,43.699913],[-70.093704,43.6918],[-70.099594,43.695366],[-70.115908,43.682978],[-70.118291,43.683343],[-70.118174,43.686375],[-70.115961,43.689202],[-70.100683,43.705962],[-70.095727,43.709278],[-70.093113,43.710524],[-70.092137,43.709468],[-70.097184,43.700929],[-70.091929,43.698111],[-70.087621,43.699913]]],[[[-70.119671,43.748621],[-70.113059,43.74913],[-70.097318,43.757292],[-70.094986,43.753211],[-70.100233,43.742134],[-70.107812,43.734555],[-70.109561,43.730474],[-70.108978,43.722312],[-70.124136,43.70832],[-70.129383,43.70832],[-70.138128,43.718231],[-70.138711,43.727559],[-70.127051,43.742717],[-70.119671,43.748621]]],[[[-68.499465,44.12419],[-68.492892,44.116921],[-68.491521,44.109833],[-68.502942,44.099722],[-68.51706,44.10341],[-68.518703,44.113222],[-68.511266,44.125082],[-68.506979,44.127237],[-68.499465,44.12419]]],[[[-68.358388,44.125082],[-68.35301,44.127884],[-68.346724,44.127749],[-68.330716,44.110598],[-68.331032,44.10758],[-68.338012,44.101473],[-68.365176,44.101464],[-68.376593,44.112207],[-68.376591,44.113762],[-68.375382,44.11646],[-68.365514,44.124079],[-68.358388,44.125082]]],[[[-68.453236,44.189998],[-68.437789,44.188216],[-68.424441,44.190753],[-68.416434,44.187047],[-68.408207,44.176298],[-68.384903,44.154955],[-68.396634,44.14069],[-68.427534,44.119266],[-68.438518,44.11618],[-68.448646,44.125581],[-68.447505,44.133493],[-68.456813,44.145268],[-68.479934,44.1478],[-68.484696,44.146495],[-68.496639,44.146855],[-68.502096,44.152388],[-68.500817,44.160026],[-68.495511,44.162429],[-68.474365,44.181875],[-68.453236,44.189998]]],[[[-68.680773,44.279242],[-68.675416,44.279753],[-68.668213,44.276511],[-68.658849,44.268588],[-68.623554,44.255622],[-68.611669,44.244818],[-68.605906,44.230772],[-68.612749,44.207722],[-68.624994,44.197637],[-68.625715,44.194756],[-68.619592,44.189354],[-68.618511,44.186472],[-68.618872,44.18107],[-68.643002,44.15766],[-68.652366,44.153698],[-68.670014,44.151537],[-68.671454,44.138572],[-68.675056,44.137131],[-68.681899,44.138212],[-68.686581,44.147216],[-68.692343,44.153698],[-68.700987,44.15838],[-68.709631,44.158741],[-68.713232,44.160541],[-68.716474,44.162702],[-68.720435,44.169185],[-68.718995,44.183231],[-68.715033,44.191154],[-68.714313,44.20376],[-68.721156,44.212404],[-68.722956,44.219607],[-68.722956,44.223568],[-68.718635,44.228611],[-68.711792,44.228971],[-68.700627,44.234013],[-68.694144,44.248779],[-68.680458,44.262105],[-68.677577,44.268948],[-68.677577,44.275431],[-68.680773,44.279242]]],[[[-68.355279,44.199096],[-68.333227,44.207308],[-68.32423,44.205732],[-68.31606,44.200244],[-68.314789,44.197157],[-68.318476,44.196608],[-68.321178,44.199032],[-68.332639,44.192131],[-68.339029,44.171839],[-68.347416,44.169459],[-68.378872,44.184222],[-68.371235,44.193003],[-68.364469,44.197534],[-68.355279,44.199096]]],[[[-68.472831,44.219767],[-68.460205,44.212498],[-68.453843,44.201683],[-68.454224,44.199534],[-68.459182,44.197681],[-68.48452,44.202886],[-68.487227,44.209517],[-68.482726,44.227058],[-68.480565,44.228591],[-68.470323,44.22832],[-68.468572,44.223999],[-68.472831,44.219767]]],[[[-68.792139,44.237819],[-68.769833,44.222787],[-68.769047,44.213351],[-68.780055,44.203129],[-68.789884,44.203915],[-68.801285,44.208633],[-68.809149,44.212565],[-68.815439,44.214137],[-68.822909,44.216496],[-68.829593,44.21689],[-68.837849,44.227112],[-68.839422,44.236547],[-68.833524,44.240872],[-68.827627,44.242838],[-68.825631,44.242556],[-68.792139,44.237819]]],[[[-68.23638,44.266254],[-68.214641,44.263156],[-68.211329,44.257074],[-68.212474,44.255405],[-68.221383,44.257254],[-68.231469,44.256016],[-68.23713,44.25343],[-68.24031,44.251622],[-68.241545,44.247543],[-68.240806,44.239723],[-68.248913,44.235443],[-68.266669,44.234033],[-68.274427,44.237099],[-68.276857,44.240794],[-68.274719,44.258675],[-68.262128,44.260774],[-68.254153,44.257836],[-68.246598,44.257836],[-68.241142,44.260354],[-68.23638,44.266254]]],[[[-68.498637,44.369686],[-68.478785,44.319563],[-68.489641,44.313705],[-68.515173,44.324797],[-68.530394,44.333583],[-68.528635,44.344605],[-68.520671,44.358357],[-68.52193,44.367591],[-68.518573,44.381022],[-68.512697,44.384799],[-68.50766,44.385219],[-68.501364,44.382281],[-68.498637,44.369686]]],[[[-68.618212,44.012367],[-68.635315,44.018886],[-68.64736,44.0145],[-68.651863,44.009859],[-68.652881,44.003845],[-68.657031,44.003823],[-68.659972,44.016013],[-68.659874,44.022758],[-68.657369,44.024404],[-68.650767,44.039908],[-68.654783,44.059599],[-68.661594,44.075837],[-68.627893,44.088128],[-68.62535,44.092906],[-68.6181,44.096706],[-68.609722,44.094674],[-68.602863,44.08665],[-68.589563,44.075585],[-68.585916,44.075335],[-68.584074,44.070578],[-68.588098,44.06127],[-68.590792,44.058662],[-68.601099,44.058362],[-68.611473,44.025176],[-68.610703,44.013422],[-68.615896,44.009761],[-68.618212,44.012367]]],[[[-68.785601,44.053503],[-68.790595,44.053832],[-68.807315,44.035796],[-68.818441,44.032046],[-68.828465,44.032118],[-68.862845,44.025037],[-68.874139,44.025359],[-68.889717,44.032516],[-68.899997,44.06696],[-68.905098,44.077344],[-68.913406,44.08519],[-68.907812,44.105518],[-68.908984,44.110001],[-68.943105,44.10973],[-68.944597,44.11284],[-68.935327,44.13038],[-68.917286,44.148239],[-68.888597,44.15955],[-68.87868,44.166612],[-68.847249,44.183017],[-68.825067,44.186338],[-68.819156,44.180462],[-68.822206,44.178815],[-68.82284,44.173693],[-68.818423,44.160978],[-68.792221,44.145998],[-68.786886,44.143961],[-68.782375,44.14531],[-68.780693,44.143274],[-68.792065,44.136759],[-68.802162,44.137857],[-68.818039,44.136852],[-68.819659,44.135434],[-68.820515,44.130198],[-68.81953,44.122056],[-68.815562,44.115836],[-68.806832,44.116339],[-68.790525,44.09292],[-68.781772,44.084274],[-68.772639,44.078439],[-68.77029,44.069566],[-68.77965,44.057754],[-68.785601,44.053503]]],[[[-67.619761,44.519754],[-67.61541,44.521973],[-67.587738,44.516196],[-67.582113,44.513459],[-67.589259,44.50084],[-67.590627,44.49415],[-67.580288,44.488068],[-67.562651,44.472104],[-67.569189,44.455531],[-67.571774,44.453403],[-67.574206,44.45173],[-67.588346,44.449754],[-67.592755,44.458572],[-67.604919,44.502056],[-67.607199,44.503576],[-67.614954,44.503576],[-67.619211,44.506009],[-67.619761,44.519754]]],[[[-68.942826,44.281073],[-68.919301,44.309872],[-68.919325,44.335392],[-68.911634,44.365027],[-68.90353,44.378613],[-68.87894,44.386584],[-68.868444,44.38144],[-68.860649,44.364425],[-68.864338,44.355002],[-68.87169,44.344662],[-68.883065,44.338193],[-68.888706,44.338196],[-68.89285,44.334653],[-68.896587,44.321986],[-68.88746,44.303094],[-68.899445,44.283775],[-68.904255,44.279889],[-68.916872,44.242866],[-68.92648,44.233035],[-68.945976,44.220824],[-68.95189,44.218719],[-68.94709,44.226792],[-68.955332,44.243873],[-68.959468,44.247439],[-68.965896,44.249754],[-68.967074,44.251968],[-68.965264,44.259332],[-68.953686,44.272346],[-68.942826,44.281073]]],[[[-70.353392,43.535405],[-70.361214,43.52919],[-70.379123,43.507202],[-70.384885,43.49604],[-70.385615,43.487031],[-70.382928,43.469674],[-70.380233,43.46423],[-70.37223,43.45508],[-70.349684,43.442032],[-70.362015,43.439077],[-70.370514,43.434133],[-70.384949,43.418839],[-70.383981,43.41294],[-70.39089,43.402607],[-70.400035,43.399927],[-70.401666,43.401262],[-70.406416,43.400942],[-70.421282,43.395777],[-70.427672,43.389254],[-70.424421,43.379656],[-70.424986,43.375928],[-70.442438,43.356487],[-70.460717,43.34325],[-70.465975,43.340246],[-70.472933,43.343972],[-70.485312,43.346391],[-70.517695,43.344037],[-70.535244,43.336771],[-70.553854,43.321886],[-70.562779,43.310614],[-70.585184,43.270113],[-70.593907,43.249295],[-70.591022,43.237851],[-70.575787,43.221859],[-70.576692,43.217651],[-70.587814,43.199858],[-70.618973,43.163625],[-70.634455,43.127603],[-70.634311,43.122162],[-70.638355,43.114182],[-70.655322,43.098008],[-70.656223,43.093164],[-70.665958,43.076234],[-70.673114,43.070314],[-70.703818,43.059825],[-70.704696,43.070989],[-70.705996,43.073089],[-70.708896,43.074989],[-70.720296,43.074688],[-70.733497,43.073288],[-70.737897,43.073488],[-70.741897,43.077388],[-70.756397,43.079988],[-70.757597,43.080888],[-70.762997,43.089488],[-70.766398,43.092688],[-70.767998,43.093588],[-70.779098,43.095887],[-70.78388,43.100867],[-70.793906,43.106712],[-70.808708,43.117065],[-70.819999,43.122586],[-70.82,43.122586],[-70.8268,43.127086],[-70.8281,43.129086],[-70.8293,43.132486],[-70.83,43.138386],[-70.8329,43.143286],[-70.8338,43.146886],[-70.829101,43.157886],[-70.827801,43.166385],[-70.828301,43.168985],[-70.826201,43.172085],[-70.824001,43.173285],[-70.823501,43.174585],[-70.824801,43.179685],[-70.828301,43.186685],[-70.827901,43.188685],[-70.827201,43.189485],[-70.823754,43.191075],[-70.820702,43.191663],[-70.819344,43.193036],[-70.819146,43.195157],[-70.820366,43.197629],[-70.820763,43.19978],[-70.816903,43.214604],[-70.816033,43.21568],[-70.813119,43.217252],[-70.80967,43.224561],[-70.80964,43.225407],[-70.811852,43.228306],[-70.814019,43.229053],[-70.815453,43.229023],[-70.816232,43.234997],[-70.817773,43.237408],[-70.817865,43.237911],[-70.822959,43.240187],[-70.823309,43.240343],[-70.825071,43.24093],[-70.826711,43.241301],[-70.828022,43.241597],[-70.83365,43.242868],[-70.837274,43.242321],[-70.838678,43.242931],[-70.841273,43.248653],[-70.841059,43.249699],[-70.839717,43.250393],[-70.839213,43.251224],[-70.843302,43.254321],[-70.852015,43.256808],[-70.855082,43.255191],[-70.858207,43.256286],[-70.859607,43.257342],[-70.859853,43.259763],[-70.861384,43.263143],[-70.863231,43.265098],[-70.86323,43.265109],[-70.872585,43.270152],[-70.881704,43.272483],[-70.882804,43.273183],[-70.883704,43.277483],[-70.886504,43.282783],[-70.890204,43.284182],[-70.896304,43.285282],[-70.906005,43.291682],[-70.907405,43.293582],[-70.903905,43.296882],[-70.90139,43.298764],[-70.900386,43.301358],[-70.90231,43.304872],[-70.904485,43.30529],[-70.907405,43.304782],[-70.909805,43.306682],[-70.91246,43.308289],[-70.911625,43.309952],[-70.912004,43.319821],[-70.915406,43.319858],[-70.916421,43.320279],[-70.923949,43.324768],[-70.930783,43.329569],[-70.931641,43.331019],[-70.932198,43.33456],[-70.932735,43.33676],[-70.93711,43.337367],[-70.951525,43.334672],[-70.953034,43.333257],[-70.956528,43.334691],[-70.95786,43.337776],[-70.960439,43.341048],[-70.964028,43.341888],[-70.967229,43.343777],[-70.974863,43.357969],[-70.974156,43.362925],[-70.976408,43.367272],[-70.981859,43.373862],[-70.984335,43.376128],[-70.984305,43.376814],[-70.985965,43.380023],[-70.985958,43.38424],[-70.985205,43.386745],[-70.987649,43.389521],[-70.987733,43.391513],[-70.98739,43.393457],[-70.982876,43.394808],[-70.982565,43.39778],[-70.982817,43.399312],[-70.985767,43.40162],[-70.986677,43.403541],[-70.987249,43.411863],[-70.986812,43.414264],[-70.982898,43.419332],[-70.978052,43.421954],[-70.97462,43.423022],[-70.971039,43.425606],[-70.968359,43.429283],[-70.969362,43.432731],[-70.968782,43.434891],[-70.96115,43.438321],[-70.961046,43.440475],[-70.96164,43.443039],[-70.96581,43.447557],[-70.9669,43.450458],[-70.966266,43.453627],[-70.96399,43.456752],[-70.96045,43.466592],[-70.961428,43.469696],[-70.964433,43.473276],[-70.964542,43.473262],[-70.966017,43.472918],[-70.970946,43.4739],[-70.972956,43.47502],[-70.974245,43.47742],[-70.967968,43.480783],[-70.967404,43.482635],[-70.968975,43.483961],[-70.969572,43.486201],[-70.966718,43.491278],[-70.961948,43.49775],[-70.959185,43.499351],[-70.957958,43.508041],[-70.954755,43.509802],[-70.955386,43.511357],[-70.956856,43.512719],[-70.954045,43.518797],[-70.954066,43.52261],[-70.956787,43.524216],[-70.957214,43.524994],[-70.957046,43.528743],[-70.95822,43.531586],[-70.962556,43.53431],[-70.963342,43.535247],[-70.963531,43.536756],[-70.963281,43.538929],[-70.962182,43.541032],[-70.962153,43.541036],[-70.955928,43.541925],[-70.955337,43.54098],[-70.955252,43.540887],[-70.950838,43.551026],[-70.951876,43.552238],[-70.953322,43.552718],[-70.955017,43.554239],[-70.95586,43.559787],[-70.957234,43.561358],[-70.961848,43.562964],[-70.968546,43.568856],[-70.970124,43.568544],[-70.972716,43.570255],[-70.975705,43.625078],[-70.981946,43.70096],[-70.981978,43.701965],[-70.982238,43.711865],[-70.982083,43.715043],[-70.984901,43.752983],[-70.989037,43.792154],[-70.989067,43.79244],[-70.989929,43.839239],[-70.992653,43.89624],[-70.992842,43.916269],[-70.998444,44.041099],[-71.001367,44.092931],[-71.001335,44.093205],[-71.008567,44.245491],[-71.008764,44.258443],[-71.008736,44.258825],[-71.010264,44.284773],[-71.01127,44.301846],[-71.012749,44.340784],[-71.015363,44.378113],[-71.020773,44.473737],[-71.022992,44.500058],[-71.026655,44.558149],[-71.031039,44.655455],[-71.036705,44.736498],[-71.037518,44.755607],[-71.044646,44.845039],[-71.052707,44.93084],[-71.057861,45.000049],[-71.059004,45.004918],[-71.069387,45.144037],[-71.0726,45.180935],[-71.076914,45.246912],[-71.084334,45.305293],[-71.078407,45.306232],[-71.073743,45.307718],[-71.066197,45.311353],[-71.059265,45.313753],[-71.042485,45.313043],[-71.03821,45.311922],[-71.030565,45.312652],[-71.021753,45.314409],[-71.014268,45.316761],[-71.00905,45.319022],[-71.002563,45.327819],[-71.0024,45.328482],[-71.005087,45.331545],[-71.011144,45.334679],[-71.01292,45.343297],[-71.012757,45.34476],[-71.01081,45.34725],[-71.004848,45.345419],[-71.001771,45.343658],[-70.99273,45.338173],[-70.990233,45.336277],[-70.989324,45.334655],[-70.985595,45.332188],[-70.967188,45.332401],[-70.950824,45.33453],[-70.949365,45.331536],[-70.943887,45.324336],[-70.939188,45.320177],[-70.929923,45.318462],[-70.921435,45.313867],[-70.917904,45.311924],[-70.912111,45.296197],[-70.913732,45.292746],[-70.918753,45.287033],[-70.919951,45.284953],[-70.9217,45.279445],[-70.921474,45.278873],[-70.915194,45.274735],[-70.907978,45.269316],[-70.898565,45.258502],[-70.896627,45.253107],[-70.898482,45.244088],[-70.896898,45.242031],[-70.892822,45.239172],[-70.885029,45.234873],[-70.878495,45.23327],[-70.857042,45.22916],[-70.84443,45.234513],[-70.83877,45.237555],[-70.8411,45.238926],[-70.848319,45.244707],[-70.849261,45.256398],[-70.848554,45.263325],[-70.84328,45.265658],[-70.84108,45.267144],[-70.839042,45.269132],[-70.834714,45.275142],[-70.831535,45.279557],[-70.82979,45.286941],[-70.829661,45.290369],[-70.817099,45.297777],[-70.816224,45.29812],[-70.812338,45.302006],[-70.808613,45.311606],[-70.807058,45.322464],[-70.808322,45.325824],[-70.810266,45.327744],[-70.813021,45.328018],[-70.816585,45.330554],[-70.818141,45.332589],[-70.819049,45.335057],[-70.819828,45.340109],[-70.819471,45.341435],[-70.81445,45.356544],[-70.808712,45.362647],[-70.807577,45.363425],[-70.803848,45.364247],[-70.802648,45.364933],[-70.802745,45.366556],[-70.806244,45.376558],[-70.807664,45.378118],[-70.812406,45.383346],[-70.822268,45.390522],[-70.824053,45.391094],[-70.825156,45.393265],[-70.826033,45.398408],[-70.825612,45.400305],[-70.812797,45.411369],[-70.802216,45.417975],[-70.798677,45.424146],[-70.798028,45.426706],[-70.795009,45.428145],[-70.781471,45.431159],[-70.755567,45.428361],[-70.753977,45.427789],[-70.744077,45.421091],[-70.744787,45.417182],[-70.743775,45.411925],[-70.729972,45.399359],[-70.722734,45.39527],[-70.712286,45.390611],[-70.692497,45.392579],[-70.687307,45.393243],[-70.684614,45.395071],[-70.683543,45.395208],[-70.677995,45.394362],[-70.66116,45.386039],[-70.660775,45.378176],[-70.660029,45.377901],[-70.651175,45.377123],[-70.645952,45.378675],[-70.634661,45.383608],[-70.631354,45.41634],[-70.635498,45.427817],[-70.649739,45.442771],[-70.662954,45.446546],[-70.674903,45.452399],[-70.681074,45.45841],[-70.691762,45.471233],[-70.70463,45.479575],[-70.707945,45.480877],[-70.717047,45.487732],[-70.723167,45.507606],[-70.723396,45.510394],[-70.722845,45.512772],[-70.721611,45.515058],[-70.716606,45.518488],[-70.702433,45.529554],[-70.700613,45.531543],[-70.687605,45.549099],[-70.688214,45.563981],[-70.685686,45.565419],[-70.678462,45.570677],[-70.659286,45.58688],[-70.649578,45.598147],[-70.650424,45.599267],[-70.644687,45.607083],[-70.635306,45.610211],[-70.617198,45.616379],[-70.606193,45.626386],[-70.601275,45.627165],[-70.592252,45.629865],[-70.591275,45.630551],[-70.564789,45.65515],[-70.562019,45.660591],[-70.563747,45.661939],[-70.563779,45.662693],[-70.5584,45.666671],[-70.552831,45.667828],[-70.552793,45.667836],[-70.541415,45.666715],[-70.525831,45.666551],[-70.519537,45.670001],[-70.51947,45.671738],[-70.518948,45.672286],[-70.510171,45.679323],[-70.496603,45.687021],[-70.469869,45.701639],[-70.451503,45.704432],[-70.446903,45.704044],[-70.438878,45.704387],[-70.430787,45.707222],[-70.400404,45.719834],[-70.390379,45.728539],[-70.383552,45.734869],[-70.388501,45.749717],[-70.396133,45.756255],[-70.401749,45.75788],[-70.406548,45.761813],[-70.415684,45.786158],[-70.417641,45.79377],[-70.417674,45.79457],[-70.416922,45.795279],[-70.408,45.797586],[-70.406334,45.797494],[-70.404275,45.796259],[-70.401857,45.795915],[-70.399634,45.796235],[-70.395907,45.798885],[-70.396362,45.802703],[-70.398159,45.80412],[-70.39662,45.808486],[-70.387916,45.819043],[-70.380752,45.824639],[-70.36702,45.834993],[-70.34244,45.852192],[-70.329748,45.853795],[-70.317154,45.856448],[-70.306162,45.85974],[-70.284204,45.872034],[-70.262655,45.887853],[-70.259117,45.890755],[-70.253704,45.902981],[-70.253897,45.906524],[-70.25788,45.918138],[-70.261055,45.920311],[-70.262824,45.919832],[-70.263315,45.920152],[-70.263313,45.923832],[-70.262198,45.925203],[-70.252526,45.933176],[-70.24092,45.939095],[-70.240162,45.940944],[-70.240177,45.943729],[-70.252963,45.955234],[-70.26541,45.962692],[-70.274325,45.964295],[-70.280814,45.965211],[-70.289632,45.963201],[-70.31297,45.961856],[-70.31628,45.963113],[-70.316936,45.963456],[-70.31687,45.96389],[-70.312055,45.971544],[-70.309725,45.98021],[-70.307463,45.982541],[-70.301298,45.985353],[-70.295986,45.985969],[-70.287754,45.99182],[-70.284571,45.995384],[-70.284932,45.995613],[-70.292868,45.997397],[-70.303034,45.998976],[-70.303625,45.999479],[-70.317629,46.01908],[-70.317596,46.019492],[-70.293639,46.041845],[-70.27965,46.052196],[-70.278334,46.057019],[-70.278169,46.059671],[-70.27889,46.060654],[-70.284176,46.062758],[-70.287295,46.062576],[-70.292845,46.060679],[-70.306734,46.061344],[-70.308967,46.062464],[-70.310609,46.064544],[-70.28978,46.094325],[-70.284554,46.098713],[-70.272689,46.102298],[-70.266349,46.100993],[-70.254021,46.0996],[-70.252413,46.100625],[-70.252411,46.106221],[-70.255038,46.108348],[-70.255069,46.1102],[-70.251282,46.117947],[-70.243629,46.128794],[-70.239566,46.142762],[-70.237947,46.147378],[-70.240264,46.150076],[-70.26626,46.16935],[-70.271192,46.172072],[-70.273594,46.172485],[-70.278034,46.175001],[-70.290896,46.185838],[-70.292736,46.191599],[-70.285526,46.196991],[-70.272054,46.209833],[-70.260645,46.231452],[-70.258599,46.235588],[-70.255492,46.246444],[-70.254591,46.254231],[-70.252906,46.259075],[-70.248421,46.267072],[-70.232682,46.284428],[-70.214423,46.295314],[-70.205719,46.299865],[-70.203119,46.31438],[-70.204373,46.316505],[-70.207046,46.319247],[-70.208733,46.328961],[-70.207415,46.331316],[-70.191412,46.348072],[-70.188739,46.349993],[-70.174709,46.358472],[-70.171969,46.359294],[-70.161337,46.360984],[-70.148529,46.358923],[-70.141164,46.362669],[-70.133367,46.368906],[-70.129734,46.369384],[-70.127552,46.371943],[-70.127542,46.378747],[-70.125459,46.381352],[-70.118597,46.384233],[-70.11044,46.38611],[-70.100177,46.398435],[-70.100607,46.399303],[-70.100413,46.405017],[-70.096286,46.40943],[-70.089248,46.410666],[-70.080292,46.410531],[-70.076128,46.409389],[-70.057061,46.415036],[-70.056433,46.415561],[-70.056433,46.41659],[-70.026521,46.557217],[-70.023363,46.573512],[-70.019747,46.592166],[-69.997086,46.69523],[-69.994248,46.698564],[-69.95,46.742523],[-69.943121,46.750034],[-69.874513,46.818027],[-69.818552,46.87503],[-69.566383,47.125032],[-69.439198,47.250033],[-69.22442,47.459686],[-69.219996,47.457159],[-69.203886,47.452203],[-69.181951,47.45561],[-69.178412,47.456615],[-69.164362,47.451037],[-69.156074,47.451035],[-69.146439,47.44886],[-69.122404,47.441881],[-69.108215,47.435831],[-69.098511,47.431217],[-69.097364,47.430326],[-69.096756,47.427013],[-69.082508,47.423976],[-69.080656,47.424068],[-69.066715,47.43024],[-69.061192,47.433052],[-69.055465,47.432274],[-69.043947,47.427634],[-69.042702,47.426651],[-69.039301,47.42217],[-69.036882,47.407977],[-69.039138,47.404068],[-69.042371,47.401143],[-69.042002,47.399269],[-69.04079,47.39808],[-69.041733,47.397326],[-69.043248,47.397189],[-69.045403,47.39191],[-69.044259,47.389259],[-69.04288,47.387841],[-69.039818,47.386309],[-69.03928,47.385052],[-69.043958,47.383682],[-69.046448,47.383934],[-69.053885,47.377878],[-69.053284,47.327568],[-69.054628,47.315911],[-69.049118,47.306471],[-69.051337,47.299774],[-69.052614,47.298289],[-69.052748,47.294403],[-69.052278,47.293078],[-69.050699,47.292552],[-69.050094,47.2915],[-69.04939,47.284689],[-69.050465,47.280575],[-69.049593,47.276804],[-69.047846,47.274243],[-69.047076,47.267089],[-69.048083,47.263044],[-69.049326,47.262107],[-69.050367,47.259821],[-69.050737,47.25733],[-69.050334,47.256621],[-69.0402,47.2451],[-69.033456,47.240984],[-69.030067,47.240549],[-69.023826,47.238353],[-69.004102,47.230162],[-68.992641,47.224564],[-68.981096,47.219884],[-68.975089,47.216687],[-68.972169,47.21431],[-68.966433,47.212712],[-68.96113,47.205582],[-68.958414,47.205491],[-68.95335,47.206749],[-68.952511,47.206087],[-68.951769,47.20292],[-68.950397,47.202476],[-68.948923,47.202819],[-68.942484,47.206386],[-68.93571,47.202249],[-68.929808,47.197266],[-68.92793,47.196969],[-68.926421,47.19786],[-68.924645,47.197791],[-68.920253,47.195048],[-68.919752,47.189859],[-68.916869,47.189333],[-68.909729,47.186292],[-68.90524,47.180919],[-68.902425,47.178839],[-68.900985,47.178519],[-68.89877,47.181353],[-68.895685,47.182883],[-68.893204,47.182974],[-68.890154,47.182241],[-68.88241,47.183357],[-68.877914,47.186601],[-68.874487,47.188405],[-68.871096,47.189252],[-68.862848,47.18953],[-68.857519,47.19095],[-68.85343,47.193443],[-68.848505,47.197558],[-68.83097,47.204945],[-68.812157,47.215461],[-68.803537,47.216033],[-68.780557,47.221605],[-68.769721,47.22135],[-68.764487,47.222331],[-68.752104,47.226645],[-68.745241,47.23108],[-68.73538,47.235793],[-68.717867,47.240919],[-68.713638,47.240989],[-68.710919,47.240327],[-68.70857,47.238705],[-68.705314,47.238066],[-68.693434,47.243072],[-68.690414,47.243987],[-68.687662,47.244215],[-68.675913,47.242626],[-68.664071,47.236762],[-68.661957,47.236327],[-68.658467,47.237149],[-68.653902,47.239479],[-68.648029,47.239706],[-68.639,47.241394],[-68.624964,47.242392],[-68.619749,47.243218],[-68.607906,47.247497],[-68.604819,47.249418],[-68.595427,47.257698],[-68.594085,47.259275],[-68.594053,47.261218],[-68.595028,47.263161],[-68.598657,47.267868],[-68.598726,47.269879],[-68.59688,47.271731],[-68.592516,47.274726],[-68.590605,47.280052],[-68.588725,47.281721],[-68.582984,47.285493],[-68.578551,47.287551],[-68.571094,47.287049],[-68.560378,47.28369],[-68.553896,47.28225],[-68.551747,47.282226],[-68.546641,47.28298],[-68.539587,47.285173],[-68.52907,47.292644],[-68.523492,47.294768],[-68.517982,47.296092],[-68.507432,47.296636],[-68.504006,47.296337],[-68.496719,47.294462],[-68.491075,47.294099],[-68.486742,47.29465],[-68.478983,47.296893],[-68.474851,47.297534],[-68.470282,47.296804],[-68.46628,47.294873],[-68.463964,47.29228],[-68.460064,47.286065],[-68.45825,47.284625],[-68.448844,47.282547],[-68.443235,47.283484],[-68.432555,47.28193],[-68.428861,47.281954],[-68.425233,47.283188],[-68.415861,47.287803],[-68.41314,47.288488],[-68.389863,47.286652],[-68.383146,47.286672],[-68.378678,47.287561],[-68.376829,47.28852],[-68.375848,47.290065],[-68.375615,47.292268],[-68.376319,47.294257],[-68.376955,47.295628],[-68.378667,47.297412],[-68.384105,47.301506],[-68.384943,47.302923],[-68.384706,47.305094],[-68.381746,47.307813],[-68.381308,47.309161],[-68.384622,47.322303],[-68.384281,47.326943],[-68.380334,47.340242],[-68.378616,47.343144],[-68.374487,47.347508],[-68.370265,47.351052],[-68.365728,47.353797],[-68.361559,47.355605],[-68.355171,47.35707],[-68.336236,47.359795],[-68.329879,47.36023],[-68.323186,47.359888],[-68.309933,47.356233],[-68.303778,47.355524],[-68.300718,47.356095],[-68.292679,47.359476],[-68.289315,47.360207],[-68.284101,47.360389],[-68.278284,47.358604],[-68.272501,47.354923],[-68.26971,47.353733],[-68.265138,47.352543],[-68.247987,47.352514],[-68.240168,47.354217],[-68.234604,47.355035],[-68.227607,47.353049],[-68.224646,47.350787],[-68.224174,47.349827],[-68.224139,47.346696],[-68.222893,47.344526],[-68.217712,47.340847],[-68.214551,47.339637],[-68.211222,47.339112],[-68.204263,47.33973],[-68.202346,47.33941],[-68.176055,47.32924],[-68.161333,47.327752],[-68.15515,47.32542],[-68.15357,47.324162],[-68.152462,47.321534],[-68.153509,47.314038],[-68.153275,47.311729],[-68.152302,47.309878],[-68.145452,47.304093],[-68.137059,47.296068],[-68.128226,47.29419],[-68.125407,47.292155],[-68.121463,47.288272],[-68.119682,47.28729],[-68.092501,47.276696],[-68.082896,47.271921],[-68.080175,47.26991],[-68.077521,47.266666],[-68.076009,47.262095],[-68.074061,47.259764],[-68.061842,47.256451],[-68.037335,47.245678],[-68.033916,47.24364],[-68.019724,47.238036],[-68.016103,47.234446],[-68.006314,47.226444],[-67.998171,47.217842],[-67.991871,47.212042],[-67.990171,47.211042],[-67.986071,47.209342],[-67.97137,47.207142],[-67.96907,47.206342],[-67.96347,47.202842],[-67.955669,47.199542],[-67.952269,47.196142],[-67.951269,47.192442],[-67.950569,47.185142],[-67.949369,47.182542],[-67.944669,47.177042],[-67.943069,47.176142],[-67.939168,47.171442],[-67.935868,47.164843],[-67.925768,47.154243],[-67.919767,47.151243],[-67.910367,47.148143],[-67.903366,47.137643],[-67.901166,47.135143],[-67.893266,47.129943],[-67.892166,47.128643],[-67.890026,47.124678],[-67.889155,47.118772],[-67.889193,47.113401],[-67.888658,47.111664],[-67.88565,47.10732],[-67.883844,47.105834],[-67.881302,47.103913],[-67.878124,47.102426],[-67.870367,47.100896],[-67.864574,47.099207],[-67.849008,47.093455],[-67.83689,47.087036],[-67.832373,47.085551],[-67.823304,47.084318],[-67.820828,47.083518],[-67.816345,47.081188],[-67.810716,47.07609],[-67.804512,47.07339],[-67.794446,47.069871],[-67.790515,47.067921],[-67.789761,47.065744],[-67.789461,47.062544],[-67.78966,47.040544],[-67.78896,47.025844],[-67.78956,47.015444],[-67.78926,47.003644],[-67.789766,47.000044],[-67.78923,46.880993],[-67.789799,46.794868],[-67.78938,46.765528],[-67.789284,46.758219],[-67.788406,46.601795],[-67.784509,46.437576],[-67.782114,46.279381],[-67.780438,46.038452],[-67.780462,46.004447],[-67.781378,45.963948],[-67.781095,45.943032],[-67.779984,45.938163],[-67.777626,45.934207],[-67.776873,45.93407],[-67.774907,45.935007],[-67.773564,45.934823],[-67.75752,45.925926],[-67.750422,45.917898],[-67.751866,45.914973],[-67.755701,45.911684],[-67.759665,45.909925],[-67.763725,45.91043],[-67.765002,45.909791],[-67.768709,45.901997],[-67.767827,45.898568],[-67.768745,45.897951],[-67.779157,45.89512],[-67.783314,45.895167],[-67.785344,45.895648],[-67.803318,45.883718],[-67.803908,45.882895],[-67.804724,45.874043],[-67.803678,45.869379],[-67.796514,45.859961],[-67.78968,45.851754],[-67.783108,45.846517],[-67.777975,45.843704],[-67.772056,45.841348],[-67.769179,45.839335],[-67.76503,45.83403],[-67.763955,45.829983],[-67.762812,45.82852],[-67.755068,45.82367],[-67.763767,45.820315],[-67.765534,45.818807],[-67.766842,45.818533],[-67.772758,45.81938],[-67.77763,45.819222],[-67.780082,45.818194],[-67.780507,45.817622],[-67.780443,45.816206],[-67.801989,45.803546],[-67.806598,45.794723],[-67.803626,45.781624],[-67.805457,45.76976],[-67.809083,45.767497],[-67.806308,45.755405],[-67.793083,45.750559],[-67.781892,45.731189],[-67.809833,45.729274],[-67.803148,45.696127],[-67.817892,45.693705],[-67.805483,45.680241],[-67.803313,45.677886],[-67.768648,45.677581],[-67.754245,45.667791],[-67.73035,45.663239],[-67.720401,45.662522],[-67.719651,45.662819],[-67.71799,45.665243],[-67.718056,45.667986],[-67.7236,45.670384],[-67.730845,45.678223],[-67.73372,45.684233],[-67.734605,45.688987],[-67.729908,45.689012],[-67.727648,45.688468],[-67.710464,45.679372],[-67.706092,45.673635],[-67.69797,45.659738],[-67.692623,45.650366],[-67.675417,45.630959],[-67.666456,45.624461],[-67.64581,45.613597],[-67.640238,45.616178],[-67.644206,45.62322],[-67.639741,45.624771],[-67.631762,45.621409],[-67.606172,45.606533],[-67.583341,45.602493],[-67.561359,45.594906],[-67.556931,45.595066],[-67.556345,45.59726],[-67.54612,45.598059],[-67.534919,45.595428],[-67.51858,45.587925],[-67.499444,45.587014],[-67.490923,45.591488],[-67.488452,45.594643],[-67.489018,45.596944],[-67.491061,45.598917],[-67.489793,45.60118],[-67.476704,45.604157],[-67.455406,45.604665],[-67.449674,45.60286],[-67.429716,45.583773],[-67.425452,45.579086],[-67.423646,45.572153],[-67.420976,45.550029],[-67.425399,45.540795],[-67.428338,45.540626],[-67.429057,45.541207],[-67.43067,45.54139],[-67.432236,45.541023],[-67.434559,45.535912],[-67.435275,45.530781],[-67.435044,45.528783],[-67.432207,45.519996],[-67.420543,45.511113],[-67.416416,45.503515],[-67.416462,45.502147],[-67.417417,45.501985],[-67.420966,45.505054],[-67.422649,45.505863],[-67.424242,45.505907],[-67.425674,45.502917],[-67.427713,45.501336],[-67.429681,45.501592],[-67.449968,45.504933],[-67.462882,45.508691],[-67.470416,45.505307],[-67.47091,45.504279],[-67.470732,45.500067],[-67.476855,45.49724],[-67.488001,45.493762],[-67.499445,45.491013],[-67.503088,45.489688],[-67.503771,45.488522],[-67.503157,45.485367],[-67.499767,45.47805],[-67.494351,45.473048],[-67.486907,45.468024],[-67.482353,45.460825],[-67.481929,45.458288],[-67.484851,45.456001],[-67.484328,45.451955],[-67.4772,45.43159],[-67.473366,45.425328],[-67.471255,45.423477],[-67.458495,45.41596],[-67.448106,45.407823],[-67.430001,45.392965],[-67.418747,45.37726],[-67.419007,45.376026],[-67.421501,45.374078],[-67.423773,45.373461],[-67.427243,45.37369],[-67.430097,45.371862],[-67.431232,45.370787],[-67.434281,45.365438],[-67.433536,45.361324],[-67.427797,45.355471],[-67.430489,45.348751],[-67.434996,45.340133],[-67.442029,45.334601],[-67.453469,45.328246],[-67.456288,45.32644],[-67.456676,45.32564],[-67.456384,45.323925],[-67.452268,45.319628],[-67.452267,45.316839],[-67.453336,45.314256],[-67.460554,45.300379],[-67.465833,45.297223],[-67.466091,45.29416],[-67.466479,45.293817],[-67.47969,45.289767],[-67.482315,45.291412],[-67.484258,45.291868],[-67.485683,45.291433],[-67.486524,45.290633],[-67.489464,45.282653],[-67.489333,45.281282],[-67.46357,45.244097],[-67.462081,45.242748],[-67.460236,45.241926],[-67.453473,45.241127],[-67.43998,45.227047],[-67.437101,45.222658],[-67.43141,45.210039],[-67.429083,45.199066],[-67.428889,45.193213],[-67.407139,45.179425],[-67.404658,45.166944],[-67.40537,45.164864],[-67.40537,45.162852],[-67.404629,45.159926],[-67.390579,45.154114],[-67.383635,45.152259],[-67.357117,45.131782],[-67.353434,45.129475],[-67.345585,45.126392],[-67.340806,45.125435],[-67.339869,45.125594],[-67.329829,45.131654],[-67.318462,45.139403],[-67.305472,45.144826],[-67.298209,45.146672],[-67.296174,45.147952],[-67.294881,45.149666],[-67.294363,45.153506],[-67.296979,45.155267],[-67.301729,45.157119],[-67.302568,45.161348],[-67.299238,45.168937],[-67.29591,45.1704],[-67.291417,45.17145],[-67.291707,45.174491],[-67.293484,45.176114],[-67.293742,45.177966],[-67.290603,45.187589],[-67.289794,45.188663],[-67.283619,45.192022],[-67.271076,45.191081],[-67.261542,45.187785],[-67.257795,45.185132],[-67.246697,45.180765],[-67.244012,45.178274],[-67.242293,45.17224],[-67.240643,45.171167],[-67.233047,45.168587],[-67.230201,45.165549],[-67.227324,45.163652],[-67.223156,45.1637],[-67.203933,45.171407],[-67.191167,45.165876],[-67.16787,45.164595],[-67.161247,45.162879],[-67.159406,45.162193],[-67.157919,45.161004],[-67.145652,45.146667],[-67.128935,45.132168],[-67.112414,45.112323],[-67.094735,45.075458],[-67.090786,45.068721],[-67.105899,45.065786],[-67.117688,45.05673],[-67.099749,45.04501],[-67.082074,45.029608],[-67.074914,45.019254],[-67.072753,45.008329],[-67.068274,45.001014],[-67.05461,44.986764],[-67.038299,44.945433],[-67.033474,44.939923],[-67.002118,44.918836],[-66.990937,44.917835],[-66.984466,44.912557],[-66.983558,44.903277],[-66.985901,44.89715],[-66.989235,44.89648],[-66.990351,44.882551],[-66.981008,44.862813],[-66.978142,44.856963],[-66.99296,44.849181],[-66.996523,44.844654],[-66.986318,44.820657],[-66.975009,44.815495],[-66.966468,44.819063],[-66.952112,44.82007],[-66.949895,44.817419],[-66.950569,44.814539],[-66.961068,44.807269],[-66.970026,44.805713],[-66.97626,44.808315],[-66.979708,44.80736],[-66.989351,44.79878],[-66.995154,44.791073],[-67.01995,44.771427],[-67.02615,44.768199],[-67.04335,44.765071],[-67.05516,44.771442],[-67.062239,44.769543],[-67.063308,44.758238],[-67.073439,44.741957],[-67.083477,44.739899],[-67.092542,44.742693],[-67.098931,44.741311],[-67.103957,44.717444],[-67.128792,44.695421],[-67.139209,44.693849],[-67.148061,44.684114],[-67.155119,44.66944],[-67.154479,44.668114],[-67.169857,44.662105],[-67.181785,44.663699],[-67.186612,44.66265],[-67.192068,44.655515],[-67.191438,44.64775],[-67.189427,44.645533],[-67.213025,44.63922],[-67.234275,44.637201],[-67.24726,44.641664],[-67.251247,44.640825],[-67.274122,44.626345],[-67.27706,44.61795],[-67.273076,44.610873],[-67.27916,44.606782],[-67.293403,44.599265],[-67.302427,44.597323],[-67.314938,44.598215],[-67.32297,44.609394],[-67.322491,44.612458],[-67.310745,44.613212],[-67.293665,44.634316],[-67.292462,44.648455],[-67.298449,44.654377],[-67.309627,44.659316],[-67.307909,44.691295],[-67.300144,44.696752],[-67.299176,44.705705],[-67.308538,44.707454],[-67.347782,44.69948],[-67.355966,44.69906],[-67.376742,44.681852],[-67.381149,44.66947],[-67.37905,44.665483],[-67.374014,44.662965],[-67.367298,44.652472],[-67.363158,44.631825],[-67.368269,44.624672],[-67.377554,44.619757],[-67.386605,44.626974],[-67.388704,44.626554],[-67.395839,44.612914],[-67.398987,44.602631],[-67.405492,44.594236],[-67.411815,44.596954],[-67.418923,44.60347],[-67.420602,44.607877],[-67.428367,44.609136],[-67.443686,44.605779],[-67.447464,44.60326],[-67.448513,44.600322],[-67.457747,44.598014],[-67.492373,44.61795],[-67.493632,44.628863],[-67.505804,44.636837],[-67.522802,44.63306],[-67.524061,44.626554],[-67.530777,44.621938],[-67.533925,44.621518],[-67.54022,44.626345],[-67.543368,44.626554],[-67.551133,44.621938],[-67.552392,44.619629],[-67.575056,44.560659],[-67.569836,44.556788],[-67.562321,44.539435],[-67.568159,44.531117],[-67.648506,44.525403],[-67.653123,44.525823],[-67.656901,44.535896],[-67.660678,44.537575],[-67.685861,44.537155],[-67.696354,44.533798],[-67.702649,44.527922],[-67.698872,44.51575],[-67.703489,44.504837],[-67.71419,44.495238],[-67.722876,44.498524],[-67.733986,44.496252],[-67.743353,44.497418],[-67.742789,44.506176],[-67.740076,44.508944],[-67.742942,44.526453],[-67.753854,44.543661],[-67.758891,44.546599],[-67.767285,44.548278],[-67.774001,44.547438],[-67.779457,44.543661],[-67.781975,44.534008],[-67.781556,44.520577],[-67.79726,44.520685],[-67.802541,44.523934],[-67.805479,44.52981],[-67.805479,44.536946],[-67.808837,44.544081],[-67.829823,44.557512],[-67.839896,44.558771],[-67.844513,44.556252],[-67.845772,44.551636],[-67.843254,44.542822],[-67.856684,44.523934],[-67.853746,44.497492],[-67.851228,44.492456],[-67.851648,44.484901],[-67.855579,44.478676],[-67.860994,44.477576],[-67.866801,44.471812],[-67.868774,44.465272],[-67.868875,44.456881],[-67.851764,44.428695],[-67.851697,44.424282],[-67.855108,44.419434],[-67.868856,44.424672],[-67.878509,44.435585],[-67.887323,44.433066],[-67.887323,44.426351],[-67.892033,44.409668],[-67.899571,44.394078],[-67.911667,44.419216],[-67.913346,44.430128],[-67.92132,44.433066],[-67.926357,44.431807],[-67.930554,44.428869],[-67.927616,44.421314],[-67.931453,44.411848],[-67.936531,44.411187],[-67.947342,44.415858],[-67.955737,44.416278],[-67.957089,44.415408],[-67.961613,44.4125],[-67.961613,44.39907],[-67.978876,44.387034],[-67.985668,44.386917],[-67.997288,44.399909],[-68.000646,44.406624],[-68.006102,44.409562],[-68.010719,44.407464],[-68.019533,44.396971],[-68.01399,44.390255],[-68.034223,44.360456],[-68.039679,44.360876],[-68.044296,44.357938],[-68.044716,44.351222],[-68.043037,44.343667],[-68.049334,44.33073],[-68.060356,44.331988],[-68.067047,44.335692],[-68.076066,44.347925],[-68.077873,44.373047],[-68.086268,44.376405],[-68.090045,44.371369],[-68.092983,44.370949],[-68.103818,44.385111],[-68.11229,44.401588],[-68.11271,44.421314],[-68.116487,44.429289],[-68.119845,44.445658],[-68.119425,44.459508],[-68.115228,44.467903],[-68.117746,44.475038],[-68.123203,44.478815],[-68.150904,44.482383],[-68.159298,44.479445],[-68.162656,44.477346],[-68.163075,44.473149],[-68.17105,44.470211],[-68.194554,44.47189],[-68.189517,44.478605],[-68.189937,44.484901],[-68.192036,44.487419],[-68.213861,44.492456],[-68.223934,44.487],[-68.227292,44.479865],[-68.224354,44.464335],[-68.22939,44.463496],[-68.2445,44.471051],[-68.252474,44.483222],[-68.261708,44.484062],[-68.268004,44.47147],[-68.270522,44.459718],[-68.281015,44.451324],[-68.298223,44.449225],[-68.299063,44.437893],[-68.294865,44.432857],[-68.268423,44.440411],[-68.247438,44.433276],[-68.2445,44.429919],[-68.24366,44.420685],[-68.249956,44.417747],[-68.249956,44.414809],[-68.21554,44.390466],[-68.209664,44.392984],[-68.20354,44.392365],[-68.196937,44.386352],[-68.184532,44.369145],[-68.174687,44.343604],[-68.173608,44.328397],[-68.191924,44.306675],[-68.233435,44.288578],[-68.275139,44.288895],[-68.289409,44.283858],[-68.298223,44.276303],[-68.298643,44.26665],[-68.297641,44.263035],[-68.295265,44.261722],[-68.290818,44.247673],[-68.317588,44.225101],[-68.339498,44.222893],[-68.343132,44.229505],[-68.365364,44.237871],[-68.369759,44.243311],[-68.377982,44.247563],[-68.389848,44.247066],[-68.401268,44.252244],[-68.41965,44.274612],[-68.421302,44.284468],[-68.426107,44.295102],[-68.430946,44.298624],[-68.430853,44.312609],[-68.411965,44.322262],[-68.409027,44.32562],[-68.409867,44.329397],[-68.421619,44.336113],[-68.421471,44.337754],[-68.409867,44.356259],[-68.406089,44.356679],[-68.396552,44.363941],[-68.395516,44.369561],[-68.398035,44.376191],[-68.367565,44.39071],[-68.36372,44.388935],[-68.360318,44.389674],[-68.3581,44.392337],[-68.359082,44.402847],[-68.372445,44.42369],[-68.3791,44.430049],[-68.387678,44.430936],[-68.390932,44.427387],[-68.392559,44.41807],[-68.416412,44.397973],[-68.421783,44.396411],[-68.427874,44.3968],[-68.433901,44.401534],[-68.432556,44.426594],[-68.429648,44.439136],[-68.439281,44.448043],[-68.448006,44.449497],[-68.455095,44.447498],[-68.460003,44.443317],[-68.46382,44.436592],[-68.458849,44.412141],[-68.464106,44.398078],[-68.464262,44.391081],[-68.461072,44.385639],[-68.461072,44.378504],[-68.466109,44.377245],[-68.47828,44.378084],[-68.483317,44.388157],[-68.480798,44.397391],[-68.472824,44.404106],[-68.480379,44.432647],[-68.485415,44.434326],[-68.494649,44.429709],[-68.499686,44.414179],[-68.505562,44.411661],[-68.51452,44.41334],[-68.529905,44.39907],[-68.534522,44.397811],[-68.555088,44.403687],[-68.560964,44.402847],[-68.565161,44.39907],[-68.56642,44.394453],[-68.564741,44.385219],[-68.559285,44.374307],[-68.550051,44.371788],[-68.545434,44.355],[-68.553873,44.346256],[-68.563209,44.333039],[-68.566936,44.317603],[-68.566203,44.313007],[-68.564005,44.308022],[-68.556236,44.300819],[-68.538595,44.299902],[-68.531532,44.290388],[-68.532266,44.28634],[-68.528611,44.276117],[-68.519516,44.265046],[-68.519819,44.260209],[-68.529802,44.249594],[-68.528153,44.241263],[-68.52348,44.235819],[-68.525302,44.227554],[-68.534595,44.229331],[-68.550802,44.236534],[-68.551162,44.238335],[-68.562687,44.248059],[-68.572772,44.252741],[-68.603385,44.27471],[-68.61563,44.275431],[-68.626075,44.280473],[-68.627515,44.284435],[-68.630036,44.286235],[-68.682979,44.299201],[-68.725657,44.321591],[-68.733004,44.328388],[-68.746164,44.331148],[-68.762021,44.329597],[-68.766197,44.327015],[-68.771489,44.320523],[-68.795063,44.30786],[-68.827197,44.31216],[-68.828377,44.316549],[-68.825419,44.334547],[-68.821311,44.349594],[-68.817647,44.353093],[-68.814811,44.362194],[-68.818703,44.375077],[-68.821767,44.40894],[-68.815325,44.42808],[-68.801634,44.434803],[-68.785898,44.462611],[-68.783679,44.473879],[-68.796206,44.471437],[-68.810059,44.468737],[-68.829153,44.462242],[-68.858993,44.444923],[-68.880271,44.428112],[-68.886491,44.430676],[-68.890826,44.437995],[-68.8928,44.443415],[-68.892073,44.445075],[-68.897104,44.450643],[-68.900934,44.452062],[-68.927452,44.448039],[-68.931934,44.43869],[-68.946582,44.429108],[-68.982449,44.426195],[-68.990767,44.415033],[-68.984404,44.396879],[-68.978815,44.38634],[-68.9673,44.381106],[-68.961111,44.375076],[-68.948164,44.355882],[-68.954465,44.32405],[-68.958889,44.314353],[-68.979005,44.296327],[-69.003682,44.294582],[-69.005071,44.274071],[-69.017051,44.257086],[-69.02859,44.249139],[-69.029434,44.248558],[-69.040193,44.233673],[-69.043599,44.225029],[-69.042807,44.215173],[-69.05181,44.19592],[-69.054546,44.171542],[-69.06124,44.165498],[-69.077776,44.165043],[-69.079835,44.160953],[-69.080978,44.156768],[-69.079608,44.143962],[-69.075667,44.129991],[-69.080331,44.117824],[-69.100863,44.104529],[-69.101107,44.093601],[-69.092,44.085734],[-69.089078,44.085326],[-69.076452,44.090634],[-69.056303,44.095162],[-69.050814,44.094888],[-69.043403,44.092164],[-69.031878,44.079036],[-69.048917,44.062506],[-69.050566,44.063152],[-69.050622,44.068017],[-69.056093,44.06949],[-69.064299,44.069911],[-69.067876,44.067596],[-69.079805,44.055256],[-69.073767,44.046135],[-69.081131,44.041295],[-69.094177,44.038981],[-69.113113,44.028881],[-69.125738,44.019623],[-69.128052,44.017309],[-69.124475,44.007419],[-69.148883,43.998582],[-69.162559,43.999003],[-69.170345,43.995637],[-69.193805,43.975543],[-69.197803,43.967547],[-69.193805,43.959762],[-69.19633,43.950504],[-69.203668,43.941806],[-69.214205,43.935583],[-69.237368,43.931596],[-69.24271,43.925465],[-69.259838,43.921427],[-69.265257,43.933393],[-69.267515,43.943667],[-69.280498,43.95744],[-69.283998,43.958569],[-69.288513,43.957665],[-69.307776,43.943451],[-69.31427,43.942951],[-69.319751,43.94487],[-69.305176,43.956676],[-69.304301,43.962068],[-69.331411,43.974311],[-69.351961,43.974748],[-69.366702,43.964755],[-69.375478,43.964584],[-69.388059,43.96434],[-69.398455,43.971804],[-69.421072,43.938261],[-69.423323,43.922871],[-69.423324,43.915507],[-69.440913,43.909767],[-69.459637,43.903316],[-69.483498,43.88028],[-69.486243,43.869118],[-69.50329,43.837673],[-69.514889,43.831298],[-69.516212,43.837222],[-69.513267,43.84479],[-69.520301,43.868498],[-69.524673,43.875639],[-69.543912,43.881615],[-69.54945,43.880012],[-69.550908,43.877971],[-69.550616,43.872579],[-69.545028,43.861241],[-69.552606,43.841347],[-69.558122,43.84066],[-69.568325,43.844449],[-69.572697,43.844012],[-69.575466,43.841972],[-69.578527,43.823316],[-69.588551,43.81836],[-69.604179,43.813551],[-69.605928,43.814862],[-69.604616,43.825793],[-69.598495,43.825502],[-69.592373,43.830895],[-69.589167,43.851299],[-69.594705,43.858878],[-69.604616,43.858004],[-69.613215,43.845032],[-69.613069,43.837453],[-69.61511,43.831623],[-69.621086,43.826814],[-69.630268,43.837016],[-69.629685,43.843429],[-69.634932,43.845907],[-69.649798,43.836287],[-69.65315,43.817194],[-69.650818,43.803785],[-69.653337,43.79103],[-69.664922,43.791033],[-69.685473,43.816328],[-69.685579,43.820546],[-69.692429,43.824336],[-69.697239,43.825065],[-69.697858,43.824918],[-69.705838,43.823024],[-69.714873,43.810264],[-69.717804,43.801047],[-69.717074,43.792403],[-69.719723,43.786685],[-69.752801,43.75594],[-69.761587,43.757],[-69.780097,43.755397],[-69.782429,43.753794],[-69.782283,43.75117],[-69.778494,43.747089],[-69.778348,43.744612],[-69.835323,43.721125],[-69.838689,43.70514],[-69.851297,43.703581],[-69.855081,43.704746],[-69.857927,43.723915],[-69.855595,43.73266],[-69.858947,43.740531],[-69.868673,43.742701],[-69.862155,43.758962],[-69.869732,43.775656],[-69.884066,43.778035],[-69.88739,43.777052],[-69.903164,43.77239],[-69.915593,43.775112],[-69.927011,43.780174],[-69.948539,43.765948],[-69.953246,43.768806],[-69.958056,43.767786],[-69.982574,43.750801],[-69.989131,43.743227],[-69.994479,43.728451],[-69.992396,43.726852],[-69.992615,43.724793],[-70.001645,43.717666],[-70.006954,43.717065],[-70.005205,43.727559],[-70.001125,43.733389],[-69.998793,43.740385],[-70.001708,43.744466],[-70.041351,43.738053],[-70.040768,43.745049],[-70.034355,43.759041],[-70.02561,43.769534],[-70.005205,43.787607],[-69.99821,43.798684],[-69.999376,43.805097],[-70.002874,43.812093],[-70.011035,43.810927],[-70.026193,43.822587],[-70.026193,43.829],[-70.023278,43.834247],[-70.006954,43.844158],[-70.002874,43.848239],[-70.002874,43.852903],[-70.009869,43.859315],[-70.019197,43.858733],[-70.032023,43.849988],[-70.053594,43.828417],[-70.053011,43.821421],[-70.064671,43.813259],[-70.06642,43.819672],[-70.080995,43.819672],[-70.107229,43.809178],[-70.142792,43.791688],[-70.153869,43.781194],[-70.153869,43.774781],[-70.176023,43.76079],[-70.177772,43.764871],[-70.172525,43.773615],[-70.17544,43.777113],[-70.190014,43.771866],[-70.194678,43.766037],[-70.197593,43.753211],[-70.194095,43.745632],[-70.194678,43.742134],[-70.217998,43.71998],[-70.219164,43.715899],[-70.215666,43.707737],[-70.216832,43.704822],[-70.227909,43.701907],[-70.23199,43.704822],[-70.251812,43.683251],[-70.254144,43.676839],[-70.252961,43.67501],[-70.247321,43.671973],[-70.242289,43.669544],[-70.239512,43.665986],[-70.240119,43.664685],[-70.241942,43.663296],[-70.240987,43.659132],[-70.22299,43.639023],[-70.211204,43.625765],[-70.217087,43.596717],[-70.214369,43.590445],[-70.20112,43.586515],[-70.196911,43.565146],[-70.206123,43.557627],[-70.216782,43.556874],[-70.219784,43.562149],[-70.231963,43.561118],[-70.244331,43.551849],[-70.261917,43.553687],[-70.272497,43.562616],[-70.299184,43.550589],[-70.307764,43.544315],[-70.341793,43.540484],[-70.352826,43.535855],[-70.353392,43.535405]]]]}}]} diff --git a/Where/RegionKit/Sources/Resources/regions/us-MI.geojson b/Where/RegionKit/Sources/Resources/regions/us-MI.geojson new file mode 100644 index 00000000..e74ca189 --- /dev/null +++ b/Where/RegionKit/Sources/Resources/regions/us-MI.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"region":"us-MI","name":"Michigan"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-85.825955,45.404296],[-85.833516,45.378175],[-85.873386,45.421482],[-85.88301,45.443479],[-85.858263,45.440042],[-85.834891,45.428356],[-85.825955,45.404296]]],[[[-86.093536,45.007838],[-86.115699,44.999093],[-86.133655,44.996874],[-86.154824,45.002394],[-86.156689,45.010535],[-86.154557,45.018102],[-86.141644,45.040251],[-86.138095,45.043038],[-86.117908,45.048478],[-86.093166,45.041492],[-86.079103,45.030795],[-86.093451,45.03166],[-86.097094,45.030128],[-86.100315,45.02624],[-86.101894,45.022811],[-86.101214,45.018101],[-86.093536,45.007838]]],[[[-86.033174,45.15842],[-86.005946,45.155751],[-85.993194,45.152805],[-85.989412,45.151069],[-85.976803,45.138363],[-85.976434,45.120706],[-85.980433,45.113046],[-85.984095,45.087073],[-85.982799,45.080787],[-85.977082,45.072993],[-85.976883,45.06266],[-85.99736,45.055929],[-86.013073,45.063774],[-86.019874,45.071665],[-86.037129,45.086576],[-86.052424,45.095311],[-86.058653,45.100776],[-86.060396,45.104617],[-86.065016,45.140266],[-86.059393,45.152291],[-86.050473,45.158418],[-86.04443,45.159582],[-86.033174,45.15842]]],[[[-88.684434,48.115785],[-88.675628,48.120444],[-88.676395,48.124876],[-88.674192,48.127165],[-88.656915,48.139225],[-88.614026,48.154797],[-88.578413,48.16237],[-88.547033,48.174891],[-88.524753,48.165291],[-88.501088,48.168181],[-88.491961,48.175466],[-88.482039,48.179915],[-88.459735,48.183807],[-88.447236,48.182916],[-88.422601,48.190975],[-88.418244,48.18037],[-88.419875,48.170731],[-88.427373,48.166764],[-88.449502,48.163312],[-88.459697,48.158551],[-88.469573,48.152879],[-88.4857,48.137683],[-88.511902,48.121699],[-88.566938,48.093719],[-88.578053,48.084373],[-88.578395,48.078003],[-88.575869,48.075166],[-88.573924,48.068861],[-88.575048,48.064154],[-88.579784,48.058669],[-88.670073,48.011446],[-88.718555,47.995134],[-88.772357,47.981126],[-88.791959,47.978938],[-88.832063,47.965213],[-88.852923,47.965322],[-88.899184,47.9533],[-88.918029,47.945605],[-88.923573,47.937976],[-88.962664,47.923512],[-88.968903,47.909474],[-88.968903,47.901675],[-88.957985,47.895436],[-88.942387,47.895436],[-88.899698,47.902445],[-88.898986,47.900685],[-88.911665,47.891344],[-88.998939,47.86749],[-89.022736,47.858532],[-89.044463,47.85575],[-89.056412,47.852598],[-89.107991,47.835705],[-89.124134,47.828616],[-89.157738,47.824015],[-89.19017,47.831603],[-89.192681,47.83343],[-89.192207,47.84106],[-89.201812,47.850243],[-89.234533,47.851718],[-89.235552,47.853774],[-89.234535,47.855373],[-89.228507,47.858039],[-89.246774,47.871016],[-89.250936,47.870377],[-89.255202,47.876102],[-89.247127,47.888503],[-89.226327,47.895438],[-89.22071,47.90085],[-89.221332,47.908069],[-89.214499,47.913895],[-89.179154,47.93503],[-89.095207,47.967922],[-89.018303,47.992525],[-88.994163,48.00229],[-88.940886,48.01959],[-88.931487,48.021637],[-88.927529,48.019615],[-88.915032,48.020681],[-88.895069,48.029059],[-88.896327,48.031801],[-88.893701,48.03477],[-88.835714,48.056752],[-88.816084,48.057006],[-88.810461,48.055247],[-88.787556,48.063035],[-88.772077,48.070502],[-88.77183,48.079457],[-88.764256,48.085189],[-88.744458,48.092769],[-88.728198,48.101914],[-88.705586,48.111013],[-88.695353,48.110549],[-88.684434,48.115785]]],[[[-84.612845,45.834528],[-84.623863,45.846579],[-84.629239,45.850014],[-84.6397,45.852624],[-84.650783,45.85921],[-84.651336,45.862844],[-84.646876,45.884642],[-84.641804,45.885486],[-84.629437,45.882578],[-84.622515,45.87753],[-84.6082,45.861631],[-84.602922,45.85164],[-84.589272,45.825795],[-84.578328,45.820092],[-84.538395,45.807843],[-84.514441,45.81012],[-84.492951,45.805343],[-84.432472,45.786732],[-84.426724,45.788194],[-84.421267,45.792694],[-84.419696,45.799823],[-84.42159,45.805651],[-84.419335,45.806747],[-84.41091,45.797217],[-84.403208,45.784394],[-84.35602,45.771895],[-84.356312,45.769495],[-84.370241,45.75619],[-84.372248,45.745784],[-84.394292,45.735301],[-84.3956,45.732925],[-84.394038,45.727623],[-84.405852,45.722417],[-84.418902,45.721712],[-84.430026,45.726307],[-84.45104,45.727952],[-84.469183,45.732246],[-84.484128,45.73071],[-84.500892,45.737259],[-84.507476,45.744644],[-84.509301,45.754336],[-84.52506,45.764168],[-84.549902,45.789859],[-84.561562,45.796213],[-84.58195,45.802633],[-84.587572,45.8067],[-84.590198,45.813217],[-84.593232,45.817389],[-84.594241,45.818776],[-84.597043,45.822629],[-84.61184,45.833429],[-84.611893,45.833487],[-84.612845,45.834528]]],[[[-85.524448,45.829794],[-85.496951,45.822232],[-85.450206,45.796677],[-85.450206,45.776452],[-85.462581,45.765864],[-85.507263,45.778237],[-85.532009,45.798172],[-85.524448,45.829794]]],[[[-85.696872,45.69725],[-85.701809,45.736129],[-85.688849,45.747238],[-85.651866,45.743139],[-85.649353,45.722552],[-85.672187,45.696633],[-85.696872,45.69725]]],[[[-85.360952,45.817554],[-85.351434,45.795663],[-85.359048,45.776627],[-85.377132,45.769013],[-85.394264,45.778531],[-85.377132,45.812795],[-85.360952,45.817554]]],[[[-85.566441,45.760222],[-85.54956,45.757266],[-85.54375,45.751413],[-85.53562,45.750394],[-85.525237,45.750462],[-85.506133,45.754715],[-85.501267,45.754415],[-85.497656,45.746246],[-85.503758,45.742771],[-85.508818,45.742358],[-85.510091,45.742888],[-85.508522,45.744991],[-85.50904,45.748488],[-85.515145,45.749451],[-85.520569,45.744745],[-85.521911,45.739419],[-85.520803,45.737247],[-85.510895,45.734414],[-85.498777,45.726291],[-85.494154,45.705378],[-85.494016,45.698476],[-85.5028,45.690998],[-85.506104,45.681148],[-85.503767,45.670472],[-85.500451,45.664298],[-85.490252,45.652122],[-85.487026,45.621211],[-85.491347,45.609665],[-85.509276,45.596475],[-85.518038,45.592912],[-85.526895,45.59159],[-85.530273,45.589253],[-85.534064,45.578198],[-85.541129,45.575045],[-85.561634,45.572213],[-85.618049,45.582647],[-85.622741,45.586028],[-85.630016,45.598166],[-85.61985,45.624547],[-85.608653,45.632008],[-85.604521,45.639256],[-85.604951,45.647599],[-85.609295,45.658067],[-85.604881,45.681932],[-85.600842,45.68886],[-85.590769,45.698051],[-85.583724,45.700796],[-85.572309,45.711449],[-85.565132,45.730719],[-85.564774,45.745462],[-85.567128,45.750419],[-85.567781,45.757655],[-85.566441,45.760222]]],[[[-86.626187,45.573581],[-86.620239,45.562279],[-86.622023,45.55633],[-86.636895,45.542053],[-86.648792,45.543243],[-86.661284,45.574176],[-86.691705,45.595816],[-86.712328,45.610939],[-86.692393,45.617126],[-86.67727,45.613689],[-86.665746,45.606239],[-86.644033,45.585479],[-86.626187,45.573581]]],[[[-83.880387,41.720089],[-83.880539,41.720081],[-83.899764,41.719961],[-83.998849,41.716822],[-84.019373,41.716668],[-84.134417,41.712931],[-84.360416,41.706625],[-84.360546,41.706621],[-84.396547,41.705935],[-84.399547,41.70586],[-84.438067,41.704903],[-84.749955,41.698245],[-84.806082,41.696089],[-84.806018,41.707485],[-84.806042,41.720544],[-84.806065,41.732909],[-84.806074,41.737603],[-84.806134,41.743115],[-84.805883,41.760216],[-84.818873,41.760059],[-84.82513,41.759991],[-84.825196,41.75999],[-84.932484,41.759691],[-84.96086,41.759438],[-84.961562,41.759552],[-84.971551,41.759527],[-84.972803,41.759366],[-85.037817,41.759801],[-85.039436,41.759985],[-85.117267,41.7597],[-85.123102,41.759743],[-85.17223,41.759618],[-85.196637,41.759735],[-85.196774,41.759735],[-85.232835,41.759839],[-85.272216,41.759999],[-85.272951,41.759911],[-85.273713,41.75977],[-85.292099,41.759962],[-85.292178,41.759963],[-85.298365,41.760028],[-85.30814,41.760097],[-85.318129,41.759983],[-85.330623,41.759982],[-85.350174,41.759908],[-85.379133,41.759875],[-85.427553,41.759706],[-85.432471,41.759684],[-85.515959,41.759352],[-85.518251,41.759513],[-85.607548,41.759079],[-85.608312,41.759193],[-85.622608,41.759049],[-85.624987,41.759093],[-85.632714,41.759164],[-85.647683,41.759125],[-85.650738,41.759103],[-85.65975,41.759101],[-85.724534,41.759085],[-85.749992,41.759091],[-85.750469,41.75909],[-85.775039,41.759147],[-85.791335,41.759051],[-85.791363,41.759051],[-85.872041,41.759365],[-85.874997,41.759341],[-85.888825,41.759422],[-85.974901,41.759849],[-85.97498,41.759849],[-85.991302,41.759949],[-86.003678,41.760089],[-86.041027,41.760512],[-86.062575,41.760528],[-86.12506,41.760576],[-86.12546,41.76056],[-86.127844,41.760592],[-86.21759,41.760016],[-86.22607,41.760016],[-86.226097,41.760016],[-86.265496,41.760207],[-86.501773,41.759553],[-86.519318,41.759447],[-86.524223,41.759456],[-86.640044,41.759671],[-86.641186,41.759633],[-86.746521,41.759982],[-86.748096,41.759967],[-86.800611,41.760251],[-86.800707,41.76024],[-86.801578,41.76024],[-86.804427,41.76024],[-86.823628,41.76024],[-86.824828,41.76024],[-86.82355,41.760898],[-86.802065,41.771956],[-86.801772,41.772107],[-86.794712,41.77574],[-86.794632,41.775782],[-86.79351,41.776359],[-86.777943,41.784371],[-86.777227,41.78474],[-86.77608,41.785399],[-86.774798,41.786137],[-86.751292,41.799652],[-86.735207,41.808901],[-86.717037,41.819349],[-86.715578,41.820334],[-86.697541,41.832513],[-86.679672,41.844579],[-86.679355,41.844793],[-86.648971,41.869659],[-86.6476,41.870782],[-86.645296,41.872668],[-86.644048,41.873689],[-86.643965,41.873757],[-86.629867,41.885295],[-86.629344,41.885723],[-86.623837,41.89023],[-86.623774,41.890282],[-86.621259,41.89234],[-86.619442,41.893827],[-86.616978,41.896625],[-86.616886,41.89673],[-86.616029,41.897703],[-86.612251,41.901993],[-86.61208,41.902188],[-86.611511,41.902833],[-86.610896,41.903532],[-86.600524,41.91531],[-86.597899,41.918291],[-86.596802,41.919964],[-86.588662,41.93238],[-86.587827,41.933653],[-86.587763,41.933752],[-86.586721,41.935341],[-86.585696,41.936904],[-86.585264,41.937562],[-86.582894,41.941179],[-86.582197,41.942241],[-86.581518,41.943765],[-86.564722,41.981427],[-86.564276,41.982427],[-86.564077,41.982874],[-86.563904,41.983262],[-86.563598,41.983948],[-86.561542,41.988559],[-86.556537,41.999782],[-86.556421,42.000042],[-86.549328,42.01092],[-86.549237,42.011059],[-86.545288,42.017115],[-86.544867,42.017761],[-86.541718,42.02259],[-86.541089,42.023555],[-86.536063,42.031262],[-86.533855,42.034648],[-86.532934,42.036061],[-86.53264,42.036512],[-86.532161,42.037246],[-86.508856,42.072986],[-86.501322,42.08454],[-86.490122,42.105139],[-86.485223,42.118239],[-86.479031,42.123519],[-86.466576,42.134138],[-86.466262,42.134406],[-86.464913,42.135752],[-86.464897,42.135767],[-86.464356,42.136308],[-86.463967,42.136696],[-86.463685,42.136977],[-86.440762,42.159847],[-86.439416,42.16119],[-86.437909,42.162694],[-86.437148,42.163453],[-86.404146,42.196379],[-86.402183,42.198542],[-86.398915,42.202143],[-86.398536,42.202561],[-86.397692,42.203491],[-86.394997,42.20646],[-86.394183,42.207357],[-86.393565,42.208039],[-86.393518,42.20809],[-86.386591,42.215723],[-86.385179,42.217279],[-86.383665,42.219207],[-86.383585,42.21931],[-86.381434,42.222048],[-86.380407,42.223357],[-86.380035,42.22383],[-86.36488,42.243133],[-86.356218,42.254166],[-86.321803,42.310743],[-86.297168,42.358207],[-86.284448,42.394563],[-86.284969,42.401814],[-86.276878,42.413317],[-86.273893,42.41928],[-86.261573,42.443894],[-86.24971,42.480212],[-86.241446,42.534697],[-86.240642,42.54],[-86.23528,42.564958],[-86.235254,42.565023],[-86.234755,42.566302],[-86.234594,42.566715],[-86.23119,42.575435],[-86.228082,42.583397],[-86.226037,42.592811],[-86.225978,42.593084],[-86.225613,42.594765],[-86.22905,42.637693],[-86.226638,42.644922],[-86.21602,42.664413],[-86.208654,42.69209],[-86.206834,42.719424],[-86.208309,42.762789],[-86.208886,42.76754],[-86.210863,42.783832],[-86.211815,42.833236],[-86.210737,42.859128],[-86.214138,42.883555],[-86.216209,42.919007],[-86.226305,42.988284],[-86.232707,43.015762],[-86.244277,43.049681],[-86.250069,43.057489],[-86.250517,43.066993],[-86.254646,43.083409],[-86.271996,43.118365],[-86.280756,43.136015],[-86.299048,43.166465],[-86.311336,43.18692],[-86.311887,43.187837],[-86.316259,43.195114],[-86.329836,43.2158],[-86.344643,43.23836],[-86.348647,43.244459],[-86.34891,43.24486],[-86.349801,43.246217],[-86.350027,43.246562],[-86.352192,43.24986],[-86.352314,43.250047],[-86.354505,43.253385],[-86.357996,43.258703],[-86.382882,43.29662],[-86.383821,43.298051],[-86.386096,43.301516],[-86.386374,43.301941],[-86.388493,43.305168],[-86.38941,43.306565],[-86.392124,43.310701],[-86.393385,43.312622],[-86.39575,43.316225],[-86.401684,43.327135],[-86.40301,43.329572],[-86.403541,43.330548],[-86.404831,43.33292],[-86.407832,43.338436],[-86.411941,43.347209],[-86.427585,43.380607],[-86.434757,43.395919],[-86.434842,43.3961],[-86.435124,43.396702],[-86.435271,43.397083],[-86.437896,43.40389],[-86.438028,43.404231],[-86.438267,43.404851],[-86.438875,43.406427],[-86.448479,43.431329],[-86.448743,43.432013],[-86.45457,43.449475],[-86.456083,43.45401],[-86.456845,43.456294],[-86.457561,43.458441],[-86.462195,43.472328],[-86.468747,43.491963],[-86.468754,43.491979],[-86.468919,43.492344],[-86.476956,43.510184],[-86.477424,43.511223],[-86.478716,43.514091],[-86.479276,43.515335],[-86.479552,43.51575],[-86.481158,43.518158],[-86.48165,43.518896],[-86.48187,43.519225],[-86.482255,43.519803],[-86.483043,43.520984],[-86.483083,43.521045],[-86.505799,43.555112],[-86.509205,43.560221],[-86.509339,43.560421],[-86.512317,43.564887],[-86.514168,43.567664],[-86.515108,43.569074],[-86.515838,43.570169],[-86.516295,43.570854],[-86.516725,43.571499],[-86.517493,43.572651],[-86.518698,43.574458],[-86.519912,43.576278],[-86.520205,43.576718],[-86.520248,43.576796],[-86.529507,43.593462],[-86.537923,43.615965],[-86.538497,43.617501],[-86.538876,43.619957],[-86.538921,43.620244],[-86.539103,43.621424],[-86.539291,43.622642],[-86.539303,43.62272],[-86.540916,43.633158],[-86.540906,43.634047],[-86.540896,43.634969],[-86.54081,43.642516],[-86.540787,43.644593],[-86.54064,43.645499],[-86.538763,43.657061],[-86.538482,43.658795],[-86.538186,43.659403],[-86.529686,43.676849],[-86.529179,43.677889],[-86.527667,43.679552],[-86.526863,43.680435],[-86.517867,43.690326],[-86.516152,43.692212],[-86.514371,43.69417],[-86.511008,43.697867],[-86.510319,43.698625],[-86.50762,43.701138],[-86.50669,43.702004],[-86.504679,43.703878],[-86.503192,43.705263],[-86.502989,43.705452],[-86.501899,43.706467],[-86.496187,43.711787],[-86.488381,43.719056],[-86.486983,43.720358],[-86.481854,43.725135],[-86.480655,43.726407],[-86.480628,43.726436],[-86.480267,43.726819],[-86.463436,43.744687],[-86.461554,43.746685],[-86.460444,43.748366],[-86.445532,43.770945],[-86.445123,43.771564],[-86.444903,43.772069],[-86.442786,43.776934],[-86.437722,43.788573],[-86.437391,43.789334],[-86.43114,43.815569],[-86.431043,43.815975],[-86.431063,43.819178],[-86.431064,43.819406],[-86.431172,43.836638],[-86.431176,43.837177],[-86.431182,43.838119],[-86.431198,43.84072],[-86.431238,43.840941],[-86.432894,43.850013],[-86.433471,43.853176],[-86.433915,43.855608],[-86.434078,43.85609],[-86.434258,43.856623],[-86.434985,43.858771],[-86.445455,43.889726],[-86.44573,43.892897],[-86.445938,43.89529],[-86.446463,43.901349],[-86.447915,43.918089],[-86.448009,43.918416],[-86.448147,43.918897],[-86.44955,43.92377],[-86.451275,43.929763],[-86.454401,43.940624],[-86.462756,43.969655],[-86.463087,43.970807],[-86.463136,43.970976],[-86.46322,43.971101],[-86.481606,43.998599],[-86.483331,44.001179],[-86.484399,44.002382],[-86.501738,44.021912],[-86.502998,44.023839],[-86.504133,44.025575],[-86.50444,44.026044],[-86.508827,44.032755],[-86.514742,44.04792],[-86.514704,44.057672],[-86.514702,44.058119],[-86.514573,44.05833],[-86.509052,44.067408],[-86.508764,44.067881],[-86.508415,44.068206],[-86.501243,44.074873],[-86.500453,44.075607],[-86.497937,44.077033],[-86.469295,44.093267],[-86.454895,44.101429],[-86.447678,44.105519],[-86.447126,44.105832],[-86.446883,44.10597],[-86.446609,44.106193],[-86.429871,44.119782],[-86.426873,44.123099],[-86.425876,44.124203],[-86.425162,44.124993],[-86.421576,44.128962],[-86.421108,44.12948],[-86.400645,44.156848],[-86.397874,44.161239],[-86.397023,44.162589],[-86.3965,44.163418],[-86.386867,44.178685],[-86.380188,44.189272],[-86.380062,44.189472],[-86.362847,44.208113],[-86.354592,44.223811],[-86.354313,44.224342],[-86.351638,44.229429],[-86.349294,44.235459],[-86.343793,44.249608],[-86.327287,44.263057],[-86.326902,44.263781],[-86.319063,44.278503],[-86.318328,44.279884],[-86.316651,44.283034],[-86.316513,44.283293],[-86.316025,44.28421],[-86.313612,44.287882],[-86.312774,44.289158],[-86.311943,44.290422],[-86.304691,44.301459],[-86.304433,44.301852],[-86.300264,44.308197],[-86.26871,44.345324],[-86.251926,44.400984],[-86.248083,44.420946],[-86.24832,44.434758],[-86.251843,44.451632],[-86.251605,44.465443],[-86.248914,44.483004],[-86.248897,44.483024],[-86.248816,44.483116],[-86.243745,44.488929],[-86.238743,44.501682],[-86.233503,44.518278],[-86.223788,44.549043],[-86.220697,44.566742],[-86.22545,44.59459],[-86.231828,44.609107],[-86.25395,44.64808],[-86.259029,44.663654],[-86.256796,44.686769],[-86.254996,44.691935],[-86.248474,44.699046],[-86.232482,44.70605],[-86.172201,44.720623],[-86.169323,44.722448],[-86.160585,44.727988],[-86.160268,44.728189],[-86.122946,44.727982],[-86.122466,44.727979],[-86.121125,44.727972],[-86.120759,44.728048],[-86.108303,44.730646],[-86.106182,44.731088],[-86.105473,44.731522],[-86.09074,44.740544],[-86.089186,44.741496],[-86.077933,44.758234],[-86.077068,44.760494],[-86.076811,44.761167],[-86.076719,44.761407],[-86.074658,44.766792],[-86.073506,44.769803],[-86.073073,44.778393],[-86.071746,44.804717],[-86.065966,44.821522],[-86.066031,44.834852],[-86.071112,44.86542],[-86.072468,44.884788],[-86.07099,44.895876],[-86.066745,44.905685],[-86.058862,44.911012],[-86.038332,44.915696],[-86.031194,44.907349],[-86.021513,44.902774],[-86.009355,44.899454],[-85.992535,44.900026],[-85.980219,44.906136],[-85.972824,44.914781],[-85.967169,44.929484],[-85.961603,44.935567],[-85.952721,44.940758],[-85.942099,44.954317],[-85.938589,44.964559],[-85.9316,44.968788],[-85.915851,44.968307],[-85.897626,44.962014],[-85.891543,44.957783],[-85.879934,44.943305],[-85.869852,44.939031],[-85.854304,44.938147],[-85.83615,44.940256],[-85.815451,44.945631],[-85.807403,44.949814],[-85.780439,44.977932],[-85.778278,44.983075],[-85.776207,45.000574],[-85.771395,45.015181],[-85.761943,45.023454],[-85.746444,45.051229],[-85.740836,45.055575],[-85.712262,45.065622],[-85.695715,45.076461],[-85.681096,45.092693],[-85.675671,45.10554],[-85.674861,45.116216],[-85.656024,45.145788],[-85.618639,45.186771],[-85.613174,45.184624],[-85.611684,45.181104],[-85.606963,45.178477],[-85.593064,45.178527],[-85.585986,45.180381],[-85.564654,45.192546],[-85.561809,45.200524],[-85.551072,45.210742],[-85.540497,45.210169],[-85.526734,45.189316],[-85.531461,45.177247],[-85.536892,45.173385],[-85.552179,45.167352],[-85.56168,45.15894],[-85.562104,45.156954],[-85.563102,45.155358],[-85.5639,45.154361],[-85.564897,45.153962],[-85.566493,45.153762],[-85.568489,45.153762],[-85.570178,45.155145],[-85.573893,45.155488],[-85.590434,45.153175],[-85.599801,45.149286],[-85.614319,45.127562],[-85.609266,45.11351],[-85.583198,45.071304],[-85.573353,45.068382],[-85.566066,45.059201],[-85.56613,45.043633],[-85.57016,45.041278],[-85.573976,45.043361],[-85.597181,45.040547],[-85.599652,45.021749],[-85.609123,45.013103],[-85.621878,45.004529],[-85.606588,44.990662],[-85.604301,44.990983],[-85.602356,44.974272],[-85.602034,44.926743],[-85.621403,44.923123],[-85.625497,44.921107],[-85.639842,44.890255],[-85.645456,44.883645],[-85.648932,44.87401],[-85.652355,44.849092],[-85.651435,44.831624],[-85.641652,44.810816],[-85.637,44.790078],[-85.640781,44.775561],[-85.640216,44.775051],[-85.636097,44.771329],[-85.627982,44.767508],[-85.624541,44.767038],[-85.623607,44.766911],[-85.620551,44.766494],[-85.619648,44.766371],[-85.610776,44.76516],[-85.607701,44.765363],[-85.605586,44.765502],[-85.599874,44.765878],[-85.599256,44.765919],[-85.599103,44.765996],[-85.593833,44.768651],[-85.593571,44.768783],[-85.593474,44.769348],[-85.593449,44.769499],[-85.591852,44.778839],[-85.591145,44.782981],[-85.591124,44.7831],[-85.590985,44.783914],[-85.581717,44.807784],[-85.581392,44.808294],[-85.545891,44.864024],[-85.539042,44.868868],[-85.532931,44.87319],[-85.530729,44.889182],[-85.530711,44.889314],[-85.530649,44.889763],[-85.553348,44.890916],[-85.553509,44.890924],[-85.559524,44.888113],[-85.564509,44.895246],[-85.562936,44.896612],[-85.562503,44.896987],[-85.557257,44.901541],[-85.556647,44.90207],[-85.556471,44.902223],[-85.551567,44.906481],[-85.539703,44.916779],[-85.538945,44.917885],[-85.538288,44.918845],[-85.533553,44.925762],[-85.530477,44.933732],[-85.529233,44.936955],[-85.520205,44.960347],[-85.520443,44.961149],[-85.520698,44.962008],[-85.5221,44.966727],[-85.521896,44.967446],[-85.520789,44.971338],[-85.520034,44.973996],[-85.518875,44.974665],[-85.4926,44.989834],[-85.492386,44.989849],[-85.475204,44.991053],[-85.472676,44.985558],[-85.471708,44.983453],[-85.470462,44.980745],[-85.470215,44.979864],[-85.468293,44.973008],[-85.46802,44.972035],[-85.466848,44.967853],[-85.464944,44.961062],[-85.46665,44.958844],[-85.470688,44.959238],[-85.471261,44.959294],[-85.471646,44.959331],[-85.472258,44.959391],[-85.474274,44.958529],[-85.48574,44.953626],[-85.489049,44.938087],[-85.489895,44.934118],[-85.490713,44.930274],[-85.491215,44.927918],[-85.491239,44.927804],[-85.491286,44.927585],[-85.491393,44.925868],[-85.491403,44.925695],[-85.491414,44.925531],[-85.491471,44.92461],[-85.491496,44.924205],[-85.492397,44.909719],[-85.49249,44.90822],[-85.489477,44.903145],[-85.488927,44.902217],[-85.488624,44.901707],[-85.489704,44.897533],[-85.489921,44.896694],[-85.498007,44.865451],[-85.500872,44.85883],[-85.502182,44.855802],[-85.502386,44.855551],[-85.508227,44.848352],[-85.508617,44.847872],[-85.511751,44.847114],[-85.513575,44.846674],[-85.516997,44.845846],[-85.518845,44.8454],[-85.519096,44.845339],[-85.527181,44.841002],[-85.533434,44.837648],[-85.538522,44.834918],[-85.539924,44.834166],[-85.542706,44.831395],[-85.546021,44.828092],[-85.547119,44.826998],[-85.551797,44.822338],[-85.55285,44.821288],[-85.553844,44.820298],[-85.555894,44.818256],[-85.557952,44.814372],[-85.560231,44.810072],[-85.560232,44.809974],[-85.560253,44.808359],[-85.560348,44.800772],[-85.560352,44.800454],[-85.5604,44.796655],[-85.560409,44.79595],[-85.560424,44.794772],[-85.560488,44.78969],[-85.560488,44.789679],[-85.568781,44.774477],[-85.571018,44.770377],[-85.57517,44.762766],[-85.576239,44.760807],[-85.576566,44.760208],[-85.575916,44.759602],[-85.571301,44.755293],[-85.554774,44.748917],[-85.554326,44.748744],[-85.554083,44.748715],[-85.538285,44.746821],[-85.527216,44.748235],[-85.523296,44.751702],[-85.509432,44.763964],[-85.504775,44.768082],[-85.504772,44.768102],[-85.5047,44.768518],[-85.503935,44.772951],[-85.504079,44.773901],[-85.504787,44.778577],[-85.505244,44.781594],[-85.507113,44.784271],[-85.509251,44.787334],[-85.508462,44.788682],[-85.507473,44.790372],[-85.499591,44.803838],[-85.496314,44.805308],[-85.484668,44.810531],[-85.481972,44.81174],[-85.477423,44.813781],[-85.475748,44.814532],[-85.475114,44.814816],[-85.474796,44.814959],[-85.474622,44.815107],[-85.462943,44.825044],[-85.462916,44.825067],[-85.462906,44.82511],[-85.462622,44.826327],[-85.460445,44.835667],[-85.457475,44.839609],[-85.457472,44.839613],[-85.457328,44.839804],[-85.456007,44.841558],[-85.455336,44.842448],[-85.452683,44.845969],[-85.44225,44.859817],[-85.425804,44.881646],[-85.423003,44.895019],[-85.406173,44.911773],[-85.3958,44.931018],[-85.378286,44.998587],[-85.381654,45.018407],[-85.380659,45.046319],[-85.377586,45.055713],[-85.366412,45.069023],[-85.366908,45.116938],[-85.372571,45.126241],[-85.376948,45.142881],[-85.380464,45.180876],[-85.386726,45.189497],[-85.387463,45.207565],[-85.388593,45.23524],[-85.371593,45.270834],[-85.355478,45.282774],[-85.335016,45.294027],[-85.323941,45.303355],[-85.307646,45.31314],[-85.294848,45.316408],[-85.289568,45.314052],[-85.273789,45.315443],[-85.262996,45.319507],[-85.25505,45.325675],[-85.252193,45.330863],[-85.235629,45.339374],[-85.209673,45.356937],[-85.196704,45.360641],[-85.182471,45.360824],[-85.143651,45.370369],[-85.095985,45.367001],[-85.073617,45.36542],[-85.066969,45.364951],[-85.06425,45.364758],[-85.063459,45.364703],[-85.060905,45.364522],[-85.054805,45.364091],[-85.046635,45.362287],[-85.045526,45.362041],[-85.043721,45.361643],[-85.043446,45.361582],[-85.043101,45.361506],[-85.032813,45.361251],[-85.022234,45.366701],[-84.998603,45.370173],[-84.975357,45.373587],[-84.959119,45.375973],[-84.91585,45.393115],[-84.912537,45.402828],[-84.912956,45.409776],[-84.916165,45.417639],[-84.922006,45.421914],[-84.97637,45.428801],[-84.976623,45.428833],[-84.978969,45.429131],[-84.980467,45.42932],[-84.980953,45.429382],[-84.981192,45.429336],[-84.990041,45.427618],[-84.990785,45.425264],[-84.989224,45.424253],[-84.987416,45.423082],[-84.987143,45.422906],[-84.984928,45.421471],[-84.983836,45.420764],[-84.978373,45.420171],[-84.977116,45.420035],[-84.978608,45.418663],[-84.994191,45.423173],[-85.034856,45.434941],[-85.037741,45.435776],[-85.040272,45.436509],[-85.040936,45.436701],[-85.046943,45.441429],[-85.050234,45.444019],[-85.050747,45.444423],[-85.052994,45.446191],[-85.069573,45.459239],[-85.070485,45.460096],[-85.087756,45.476335],[-85.088386,45.476928],[-85.097142,45.495684],[-85.103943,45.510252],[-85.109252,45.521626],[-85.109353,45.521915],[-85.110884,45.526285],[-85.110955,45.526488],[-85.115479,45.539406],[-85.115785,45.541533],[-85.11587,45.542125],[-85.117406,45.552811],[-85.117656,45.55455],[-85.119494,45.567338],[-85.119675,45.568597],[-85.119721,45.568915],[-85.119737,45.569026],[-85.119026,45.573002],[-85.118825,45.574123],[-85.118637,45.575175],[-85.118353,45.575625],[-85.117812,45.576482],[-85.11243,45.585004],[-85.112406,45.585042],[-85.111909,45.585829],[-85.111737,45.585962],[-85.107744,45.589067],[-85.106909,45.589716],[-85.106246,45.590231],[-85.105458,45.590844],[-85.103521,45.59235],[-85.103077,45.592695],[-85.102917,45.59282],[-85.102221,45.59336],[-85.101977,45.59355],[-85.096798,45.597576],[-85.095531,45.598562],[-85.093525,45.600121],[-85.079528,45.617083],[-85.07937,45.617355],[-85.076284,45.62266],[-85.075686,45.623688],[-85.075678,45.623742],[-85.075461,45.625295],[-85.07491,45.629242],[-85.074243,45.629752],[-85.071381,45.63194],[-85.065716,45.636272],[-85.063974,45.637604],[-85.061488,45.639505],[-85.061006,45.639631],[-85.044872,45.643847],[-85.041037,45.644849],[-85.03559,45.646273],[-85.020107,45.650319],[-85.019374,45.65051],[-85.015341,45.651564],[-85.014352,45.652134],[-85.013218,45.652789],[-85.007026,45.65636],[-85.005645,45.657504],[-85.002344,45.660239],[-85.001154,45.661225],[-84.997431,45.667762],[-84.996336,45.669685],[-84.996067,45.669861],[-84.974237,45.684178],[-84.97095,45.686334],[-84.970213,45.686984],[-84.94565,45.708621],[-84.943756,45.71029],[-84.942636,45.714292],[-84.941073,45.719879],[-84.940526,45.721832],[-84.942098,45.728349],[-84.942125,45.72846],[-84.942543,45.728865],[-84.943982,45.730257],[-84.945958,45.732169],[-84.947266,45.733435],[-84.950226,45.736299],[-84.95084,45.736893],[-84.951745,45.737326],[-84.954275,45.738537],[-84.955394,45.739072],[-84.95813,45.740381],[-84.968309,45.745252],[-84.982328,45.75196],[-84.982973,45.752022],[-84.983316,45.752055],[-84.983829,45.752104],[-84.983933,45.752114],[-84.984568,45.752175],[-84.985318,45.752247],[-84.996755,45.753347],[-85.001656,45.753819],[-85.002914,45.75394],[-85.011433,45.757962],[-85.014509,45.760329],[-85.009173,45.762463],[-85.00741,45.763168],[-84.995105,45.759855],[-84.938312,45.759892],[-84.93779,45.759777],[-84.931463,45.758389],[-84.926802,45.757366],[-84.92523,45.757021],[-84.924664,45.756897],[-84.922478,45.755842],[-84.920691,45.754979],[-84.919996,45.754643],[-84.910398,45.75001],[-84.866976,45.752066],[-84.840981,45.744751],[-84.810953,45.745993],[-84.810411,45.746015],[-84.808285,45.746103],[-84.806642,45.746171],[-84.805114,45.746378],[-84.800664,45.74698],[-84.799558,45.74713],[-84.792474,45.75053],[-84.78958,45.751919],[-84.788893,45.752248],[-84.788821,45.752283],[-84.788808,45.752298],[-84.781995,45.760345],[-84.781373,45.76108],[-84.7798,45.76965],[-84.787228,45.774892],[-84.79229,45.778464],[-84.792337,45.778497],[-84.793153,45.780463],[-84.780313,45.787224],[-84.774156,45.788918],[-84.774014,45.788957],[-84.772765,45.789301],[-84.751571,45.782733],[-84.742,45.784134],[-84.734065,45.788205],[-84.732388,45.787928],[-84.726192,45.786905],[-84.718904,45.777599],[-84.715996,45.766174],[-84.681967,45.756197],[-84.679546,45.749095],[-84.644822,45.73999],[-84.604712,45.721668],[-84.573631,45.710381],[-84.555496,45.702268],[-84.553311,45.698566],[-84.539167,45.69048],[-84.539165,45.690478],[-84.538998,45.690383],[-84.46168,45.652404],[-84.442348,45.654771],[-84.435415,45.664106],[-84.427495,45.669201],[-84.413642,45.669427],[-84.400283,45.663345],[-84.376403,45.655565],[-84.329537,45.66438],[-84.289685,45.653296],[-84.270238,45.64479],[-84.215268,45.634767],[-84.204218,45.627116],[-84.196043,45.621456],[-84.180514,45.604639],[-84.157121,45.585305],[-84.139462,45.573714],[-84.128867,45.562284],[-84.126532,45.556616],[-84.126971,45.542428],[-84.122309,45.523788],[-84.116687,45.51305],[-84.109238,45.505171],[-84.095905,45.497298],[-84.075792,45.490537],[-84.056138,45.489349],[-84.039958,45.493733],[-84.036286,45.496245],[-84.028813,45.497225],[-84.009582,45.495069],[-83.99835,45.491158],[-83.978017,45.494138],[-83.939261,45.493189],[-83.909472,45.485784],[-83.881813,45.467907],[-83.85856,45.446865],[-83.841543,45.435287],[-83.806622,45.419159],[-83.788777,45.416415],[-83.773171,45.417302],[-83.755569,45.411034],[-83.737321,45.410943],[-83.721815,45.413304],[-83.697316,45.396239],[-83.667934,45.384675],[-83.64379,45.37171],[-83.599273,45.352561],[-83.570361,45.347198],[-83.550268,45.350832],[-83.546799,45.352637],[-83.545729,45.358397],[-83.538306,45.358167],[-83.520258,45.347239],[-83.514717,45.34646],[-83.496704,45.357536],[-83.488826,45.355872],[-83.477794,45.341891],[-83.477728,45.341827],[-83.468099,45.33245],[-83.445672,45.310612],[-83.43304,45.303688],[-83.42514,45.296808],[-83.423178,45.292506],[-83.422486,45.290989],[-83.422389,45.290775],[-83.422272,45.290713],[-83.42051,45.289787],[-83.401091,45.279572],[-83.40088,45.279528],[-83.400753,45.279502],[-83.400261,45.2794],[-83.398845,45.279107],[-83.388274,45.276916],[-83.385104,45.274195],[-83.381743,45.268983],[-83.388034,45.254976],[-83.412569,45.245807],[-83.41241,45.238905],[-83.405914,45.227157],[-83.387587,45.207107],[-83.384265,45.203472],[-83.381647,45.203357],[-83.368896,45.182168],[-83.368046,45.172478],[-83.363678,45.166469],[-83.359895,45.16302],[-83.348684,45.161516],[-83.337822,45.14712],[-83.316118,45.141958],[-83.315924,45.139992],[-83.319315,45.137684],[-83.318442,45.12893],[-83.30788,45.099093],[-83.298275,45.090483],[-83.290827,45.069157],[-83.291346,45.062597],[-83.280272,45.045962],[-83.277037,45.044767],[-83.271464,45.038114],[-83.265896,45.026844],[-83.271506,45.023417],[-83.287974,45.026462],[-83.302153,45.032315],[-83.340257,45.041545],[-83.357609,45.050613],[-83.36747,45.062268],[-83.399255,45.070364],[-83.433798,45.057616],[-83.442052,45.051056],[-83.453363,45.035331],[-83.454168,45.03188],[-83.446342,45.016655],[-83.435249,45.011883],[-83.431254,45.007998],[-83.435822,45.000012],[-83.438948,45.000011],[-83.450013,44.990219],[-83.443718,44.952247],[-83.438856,44.940843],[-83.433032,44.93289],[-83.425311,44.926741],[-83.404596,44.918761],[-83.398879,44.906417],[-83.39396,44.903056],[-83.352815,44.886164],[-83.320503,44.880571],[-83.321093,44.858494],[-83.321237,44.853102],[-83.321241,44.852962],[-83.321089,44.852723],[-83.318373,44.84844],[-83.314429,44.84222],[-83.31433,44.842131],[-83.31294,44.840882],[-83.312831,44.840783],[-83.312478,44.840466],[-83.308578,44.83696],[-83.306854,44.83541],[-83.300648,44.829831],[-83.299737,44.823362],[-83.298618,44.815416],[-83.29553,44.793486],[-83.295518,44.793397],[-83.29565,44.790237],[-83.295696,44.789112],[-83.296125,44.778828],[-83.296969,44.758543],[-83.296971,44.758495],[-83.298021,44.755632],[-83.298287,44.754907],[-83.298237,44.754465],[-83.297797,44.750547],[-83.297526,44.74814],[-83.29742,44.747203],[-83.2973,44.746134],[-83.296265,44.743502],[-83.290944,44.729974],[-83.290665,44.729265],[-83.288214,44.726453],[-83.284724,44.72245],[-83.284128,44.721766],[-83.283098,44.721011],[-83.277213,44.7167],[-83.274747,44.714893],[-83.274103,44.714421],[-83.273393,44.713901],[-83.274674,44.70477],[-83.275078,44.701891],[-83.275281,44.700441],[-83.275318,44.700177],[-83.2755,44.698882],[-83.275543,44.698574],[-83.275601,44.698161],[-83.276137,44.69434],[-83.276836,44.689354],[-83.277476,44.687507],[-83.279129,44.682735],[-83.279288,44.682278],[-83.285992,44.662927],[-83.286874,44.66038],[-83.287211,44.659409],[-83.287585,44.658328],[-83.287802,44.657703],[-83.289442,44.652968],[-83.295377,44.64536],[-83.307116,44.630313],[-83.307504,44.629816],[-83.309222,44.62465],[-83.309802,44.622906],[-83.309869,44.622703],[-83.31445,44.608926],[-83.314517,44.608725],[-83.314534,44.608512],[-83.315037,44.60219],[-83.31504,44.602152],[-83.315277,44.599178],[-83.315435,44.597193],[-83.315603,44.595079],[-83.315503,44.593514],[-83.314127,44.572043],[-83.314098,44.571592],[-83.314013,44.570266],[-83.313925,44.568888],[-83.313893,44.568395],[-83.313813,44.567148],[-83.313792,44.566822],[-83.313744,44.566076],[-83.313649,44.564588],[-83.313623,44.564498],[-83.309234,44.549444],[-83.309117,44.549043],[-83.308918,44.54836],[-83.308906,44.54814],[-83.308471,44.539902],[-83.309385,44.537528],[-83.310185,44.535448],[-83.310376,44.534952],[-83.311245,44.532693],[-83.311529,44.531956],[-83.318104,44.514871],[-83.318279,44.514416],[-83.318276,44.514294],[-83.318216,44.511734],[-83.31761,44.486058],[-83.326824,44.444411],[-83.327171,44.429234],[-83.324616,44.415039],[-83.321553,44.409119],[-83.321648,44.404502],[-83.333757,44.372486],[-83.335248,44.357995],[-83.332533,44.340464],[-83.336988,44.332919],[-83.343738,44.329763],[-83.352115,44.332366],[-83.364312,44.33259],[-83.373607,44.327784],[-83.401822,44.301831],[-83.414301,44.294543],[-83.419236,44.2878],[-83.425762,44.272487],[-83.429689,44.269708],[-83.442731,44.265361],[-83.445805,44.273378],[-83.447742,44.273991],[-83.460958,44.278176],[-83.463049,44.278838],[-83.479531,44.28009],[-83.500392,44.27661],[-83.508839,44.273711],[-83.524817,44.261558],[-83.53771,44.248171],[-83.549096,44.227282],[-83.552872,44.210718],[-83.553834,44.197956],[-83.565225,44.163517],[-83.565257,44.163418],[-83.565984,44.161219],[-83.566366,44.160066],[-83.567744,44.155899],[-83.567941,44.150983],[-83.5682,44.144542],[-83.568238,44.143587],[-83.568243,44.143475],[-83.568803,44.129513],[-83.568831,44.128819],[-83.568915,44.126734],[-83.568509,44.124343],[-83.567978,44.121207],[-83.567714,44.119652],[-83.573071,44.101298],[-83.588004,44.086758],[-83.591361,44.079237],[-83.590437,44.069569],[-83.58409,44.056748],[-83.601173,44.054686],[-83.621078,44.056186],[-83.650116,44.052404],[-83.679654,44.036365],[-83.687892,44.020709],[-83.680108,43.994196],[-83.708741,43.992997],[-83.743806,43.991529],[-83.746779,43.988807],[-83.757063,43.986599],[-83.76283,43.985361],[-83.763015,43.985321],[-83.763345,43.98525],[-83.763774,43.985158],[-83.779086,43.985235],[-83.787863,43.985279],[-83.82808,43.989003],[-83.828398,43.989032],[-83.829077,43.989095],[-83.829102,43.989085],[-83.829123,43.989077],[-83.848276,43.981594],[-83.851496,43.979403],[-83.85175,43.979231],[-83.851884,43.97914],[-83.853582,43.977984],[-83.85493,43.977067],[-83.855219,43.975997],[-83.855516,43.974899],[-83.855572,43.974691],[-83.855602,43.974581],[-83.855653,43.974391],[-83.856077,43.972822],[-83.856128,43.972632],[-83.856371,43.972414],[-83.858373,43.970618],[-83.858528,43.970479],[-83.859114,43.969953],[-83.859305,43.969782],[-83.859459,43.969643],[-83.859615,43.969504],[-83.859743,43.969389],[-83.869406,43.960719],[-83.869614,43.960682],[-83.877047,43.959351],[-83.877694,43.959235],[-83.880011,43.955428],[-83.880113,43.955261],[-83.885328,43.946691],[-83.885526,43.946197],[-83.885543,43.946154],[-83.890145,43.934672],[-83.890912,43.923314],[-83.907388,43.918062],[-83.911128,43.91052],[-83.916815,43.89905],[-83.917875,43.856509],[-83.926345,43.787398],[-83.929375,43.777091],[-83.945426,43.759946],[-83.954792,43.760932],[-83.956021,43.759286],[-83.954347,43.750647],[-83.939297,43.715369],[-83.929462,43.701269],[-83.909479,43.672622],[-83.897078,43.664022],[-83.852076,43.644922],[-83.814674,43.643022],[-83.806774,43.641221],[-83.778919,43.630056],[-83.770693,43.628691],[-83.769886,43.634924],[-83.725793,43.618691],[-83.703446,43.597646],[-83.699253,43.596792],[-83.669795,43.59079],[-83.666052,43.591292],[-83.654192,43.59929],[-83.618602,43.628891],[-83.595579,43.650249],[-83.563157,43.684564],[-83.553707,43.685432],[-83.549044,43.693798],[-83.55147,43.699901],[-83.540187,43.708746],[-83.524837,43.716948],[-83.515853,43.718157],[-83.513461,43.714607],[-83.506657,43.710907],[-83.48007,43.714636],[-83.470053,43.723418],[-83.467429,43.72892],[-83.46508,43.733843],[-83.459628,43.740931],[-83.440171,43.761694],[-83.438878,43.767135],[-83.441591,43.770175],[-83.446752,43.77186],[-83.438311,43.786846],[-83.426068,43.799915],[-83.416378,43.801034],[-83.411453,43.805033],[-83.410663,43.80773],[-83.412456,43.817569],[-83.410853,43.825585],[-83.407647,43.831998],[-83.390344,43.839132],[-83.389017,43.840457],[-83.389424,43.844229],[-83.358869,43.857395],[-83.33227,43.880522],[-83.331788,43.893901],[-83.333532,43.89852],[-83.340976,43.904541],[-83.348007,43.906388],[-83.348648,43.909915],[-83.347365,43.91216],[-83.338067,43.915687],[-83.318656,43.91762],[-83.30569,43.922489],[-83.28231,43.938031],[-83.26898,43.956132],[-83.26185,43.969021],[-83.26153,43.973525],[-83.227093,43.981003],[-83.195688,43.983137],[-83.180618,43.982109],[-83.145407,43.989441],[-83.134881,43.993147],[-83.120659,44.00095],[-83.10782,44.003245],[-83.079297,44.001079],[-83.066026,44.003366],[-83.058741,44.006224],[-83.046577,44.01571],[-83.029868,44.041175],[-83.024604,44.045174],[-82.999283,44.04651],[-82.990728,44.048846],[-82.967439,44.066138],[-82.958688,44.065774],[-82.956658,44.063306],[-82.947368,44.062187],[-82.928884,44.069389],[-82.915976,44.070503],[-82.889831,44.050952],[-82.875889,44.045046],[-82.833103,44.036851],[-82.793205,44.023247],[-82.788298,44.013712],[-82.783198,44.009366],[-82.765018,44.006845],[-82.746255,43.996037],[-82.738992,43.989506],[-82.728528,43.972615],[-82.712235,43.94961],[-82.709839,43.948226],[-82.693505,43.91798],[-82.678642,43.88373],[-82.65545,43.867883],[-82.643166,43.852468],[-82.642899,43.846419],[-82.647467,43.84449],[-82.647784,43.842684],[-82.644345,43.837539],[-82.633641,43.831224],[-82.617955,43.768596],[-82.619079,43.756088],[-82.617213,43.746788],[-82.612224,43.739771],[-82.606233,43.690437],[-82.60483,43.678884],[-82.605783,43.669489],[-82.6005,43.602935],[-82.597911,43.590016],[-82.593785,43.581467],[-82.585654,43.543969],[-82.565691,43.502904],[-82.565505,43.497063],[-82.55354,43.464111],[-82.539517,43.437539],[-82.538578,43.431594],[-82.53993,43.422378],[-82.535627,43.368062],[-82.536794,43.34851],[-82.530128,43.333805],[-82.529416,43.316243],[-82.532396,43.30577],[-82.523086,43.225361],[-82.519123,43.212737],[-82.508881,43.196748],[-82.503157,43.168946],[-82.50299,43.168137],[-82.501656,43.161656],[-82.501529,43.161351],[-82.500061,43.157827],[-82.495685,43.147316],[-82.494194,43.143736],[-82.494072,43.142864],[-82.494052,43.142722],[-82.494014,43.142453],[-82.493977,43.142186],[-82.493347,43.137685],[-82.493021,43.135363],[-82.490979,43.120782],[-82.490634,43.118314],[-82.490614,43.118172],[-82.490494,43.117759],[-82.486684,43.104688],[-82.486042,43.102486],[-82.471053,43.087581],[-82.457319,43.06147],[-82.457221,43.061285],[-82.450724,43.051229],[-82.443433,43.039942],[-82.422768,43.007956],[-82.415937,43.005555],[-82.422586,43.000029],[-82.424206,42.996938],[-82.42455,42.993393],[-82.423086,42.988728],[-82.420346,42.984451],[-82.412965,42.977041],[-82.416737,42.966613],[-82.428603,42.952001],[-82.447142,42.937752],[-82.455027,42.926866],[-82.46404,42.901456],[-82.469912,42.887459],[-82.470032,42.881421],[-82.46822,42.859107],[-82.468961,42.852314],[-82.472681,42.836784],[-82.47864,42.825187],[-82.482045,42.808629],[-82.481576,42.805519],[-82.480394,42.802272],[-82.471159,42.784002],[-82.467394,42.769298],[-82.467483,42.76191],[-82.483604,42.733624],[-82.48387,42.71798],[-82.494491,42.700823],[-82.510533,42.665172],[-82.509935,42.637294],[-82.518782,42.613888],[-82.523337,42.607486],[-82.548169,42.591848],[-82.549717,42.590338],[-82.554236,42.583981],[-82.555938,42.582425],[-82.569801,42.573551],[-82.57738,42.567078],[-82.579205,42.56534],[-82.583996,42.554041],[-82.589779,42.550678],[-82.604686,42.548592],[-82.607068,42.548843],[-82.611059,42.550419],[-82.616848,42.554601],[-82.624907,42.557229],[-82.633491,42.557051],[-82.640916,42.554973],[-82.64268,42.554333],[-82.648776,42.550401],[-82.661677,42.541875],[-82.666596,42.535084],[-82.679059,42.52221],[-82.686417,42.518597],[-82.685397,42.528659],[-82.679522,42.53552],[-82.670956,42.537989],[-82.664335,42.546244],[-82.680758,42.557909],[-82.681036,42.574695],[-82.688061,42.588417],[-82.701152,42.585991],[-82.711151,42.590884],[-82.713042,42.597904],[-82.700818,42.606687],[-82.683482,42.609433],[-82.681593,42.618672],[-82.690124,42.625033],[-82.689836,42.627148],[-82.669103,42.637225],[-82.645715,42.631145],[-82.630922,42.64211],[-82.626396,42.647385],[-82.623043,42.655951],[-82.623797,42.665395],[-82.630851,42.673341],[-82.635262,42.675552],[-82.659781,42.678618],[-82.674287,42.687049],[-82.6855,42.690036],[-82.700964,42.689548],[-82.706135,42.683578],[-82.707841,42.68351],[-82.726366,42.682768],[-82.753317,42.669732],[-82.765583,42.655725],[-82.780817,42.652232],[-82.792418,42.655132],[-82.797318,42.654032],[-82.813518,42.640833],[-82.820118,42.626333],[-82.819017,42.616333],[-82.811017,42.610933],[-82.789017,42.603434],[-82.787573,42.5983],[-82.788977,42.592661],[-82.788116,42.582835],[-82.781514,42.571634],[-82.782414,42.564834],[-82.784514,42.563634],[-82.789114,42.568434],[-82.796715,42.571034],[-82.821016,42.570734],[-82.834216,42.567849],[-82.845916,42.560634],[-82.849316,42.555734],[-82.851016,42.548935],[-82.859316,42.541935],[-82.860213,42.540842],[-82.874416,42.523535],[-82.882316,42.501035],[-82.883915,42.471836],[-82.870572,42.451235],[-82.870347,42.450888],[-82.886113,42.408137],[-82.888413,42.398237],[-82.894013,42.389437],[-82.898413,42.385437],[-82.915114,42.378137],[-82.919114,42.374437],[-82.928815,42.359437],[-82.92397,42.352068],[-82.945415,42.347337],[-82.959416,42.339638],[-82.988619,42.332439],[-83.01832,42.329739],[-83.064121,42.317738],[-83.079721,42.308638],[-83.096521,42.290138],[-83.110922,42.260638],[-83.128022,42.238839],[-83.131343,42.20276],[-83.133923,42.17474],[-83.121323,42.125742],[-83.133511,42.088143],[-83.157624,42.085542],[-83.168759,42.073601],[-83.170589,42.07294],[-83.188598,42.066431],[-83.189115,42.061853],[-83.186877,42.061206],[-83.185526,42.052243],[-83.18824,42.031329],[-83.185858,42.029451],[-83.185822,42.029367],[-83.181475,42.019301],[-83.187246,42.007573],[-83.190535,42.006172],[-83.208647,42.00504],[-83.209379,41.995736],[-83.216835,41.98862],[-83.216897,41.988561],[-83.223354,41.989191],[-83.223369,41.989185],[-83.224947,41.988603],[-83.227744,41.987571],[-83.22841,41.987325],[-83.228502,41.987291],[-83.228607,41.987216],[-83.22929,41.986725],[-83.248741,41.972735],[-83.249204,41.972402],[-83.249828,41.971386],[-83.255123,41.962759],[-83.256803,41.960021],[-83.257009,41.959686],[-83.257043,41.958615],[-83.257143,41.955438],[-83.257199,41.95367],[-83.257292,41.950745],[-83.269521,41.939042],[-83.270491,41.939337],[-83.28713,41.944397],[-83.292761,41.944616],[-83.293015,41.944626],[-83.295982,41.944742],[-83.29823,41.9442],[-83.299467,41.943902],[-83.302904,41.943073],[-83.303465,41.942762],[-83.305639,41.941557],[-83.315859,41.935893],[-83.326007,41.924979],[-83.326024,41.924961],[-83.326029,41.924948],[-83.32706,41.922554],[-83.330498,41.914565],[-83.332998,41.908757],[-83.333642,41.907261],[-83.334173,41.903247],[-83.334346,41.901939],[-83.335103,41.896209],[-83.335132,41.895992],[-83.335658,41.892009],[-83.335961,41.889721],[-83.341557,41.879956],[-83.359467,41.867849],[-83.366187,41.865505],[-83.372198,41.874122],[-83.372445,41.874477],[-83.379705,41.871729],[-83.381955,41.870877],[-83.389289,41.861668],[-83.393822,41.855976],[-83.39622,41.852965],[-83.40822,41.832654],[-83.409596,41.830325],[-83.422316,41.822278],[-83.422391,41.822255],[-83.425393,41.821316],[-83.426321,41.821026],[-83.431183,41.819506],[-83.434204,41.818562],[-83.435946,41.816823],[-83.436298,41.816471],[-83.439612,41.813162],[-83.441668,41.808646],[-83.442316,41.80119],[-83.442521,41.79883],[-83.442843,41.795121],[-83.443364,41.789118],[-83.437935,41.771086],[-83.437516,41.769694],[-83.437231,41.76915],[-83.437197,41.769085],[-83.435571,41.765983],[-83.434238,41.763439],[-83.432973,41.761025],[-83.432832,41.760756],[-83.432078,41.759316],[-83.431951,41.759074],[-83.431103,41.757457],[-83.427377,41.750346],[-83.427336,41.750267],[-83.427308,41.750214],[-83.42643,41.747639],[-83.42418,41.741042],[-83.424076,41.740738],[-83.424155,41.74071],[-83.43436,41.737058],[-83.451897,41.734486],[-83.453832,41.732647],[-83.497733,41.731847],[-83.499733,41.731647],[-83.503433,41.731547],[-83.504334,41.731547],[-83.585235,41.729348],[-83.593835,41.729148],[-83.595235,41.729148],[-83.636636,41.727849],[-83.639636,41.727749],[-83.665937,41.726949],[-83.685337,41.726449],[-83.708937,41.72515],[-83.763038,41.72355],[-83.76315,41.723547],[-83.859541,41.72125],[-83.880387,41.720089]]],[[[-88.116846,45.921703],[-88.118507,45.92114],[-88.121864,45.92075],[-88.126382,45.921499],[-88.127594,45.922414],[-88.12743,45.923214],[-88.126122,45.924639],[-88.127428,45.926153],[-88.141001,45.930608],[-88.145928,45.933646],[-88.146419,45.934194],[-88.146352,45.935314],[-88.158704,45.939064],[-88.163105,45.939043],[-88.163959,45.93834],[-88.170096,45.93947],[-88.172628,45.941015],[-88.175532,45.944897],[-88.178008,45.947111],[-88.189789,45.952208],[-88.191991,45.95274],[-88.196316,45.953311],[-88.197627,45.953082],[-88.202116,45.949836],[-88.201852,45.945173],[-88.209585,45.94428],[-88.211158,45.944531],[-88.215025,45.946976],[-88.222167,45.948513],[-88.223773,45.948712],[-88.227988,45.947688],[-88.23314,45.947405],[-88.239672,45.948982],[-88.242518,45.950363],[-88.244452,45.952142],[-88.245752,45.954147],[-88.246579,45.956597],[-88.245937,45.958726],[-88.246307,45.962983],[-88.249117,45.963663],[-88.250133,45.963572],[-88.250133,45.963147],[-88.254816,45.963538],[-88.256455,45.962739],[-88.259343,45.959494],[-88.26839,45.957486],[-88.283335,45.955091],[-88.292381,45.951115],[-88.295264,45.951253],[-88.296968,45.953767],[-88.300965,45.956168],[-88.30952,45.959369],[-88.316894,45.960969],[-88.320531,45.959963],[-88.326003,45.9553],[-88.326953,45.955071],[-88.330296,45.956625],[-88.327872,45.958934],[-88.328333,45.964054],[-88.330137,45.965951],[-88.334628,45.968808],[-88.380183,45.991654],[-88.385234,45.990239],[-88.384318,45.988113],[-88.388847,45.982675],[-88.395308,45.980391],[-88.399046,45.980278],[-88.402848,45.981194],[-88.409864,45.979688],[-88.411077,45.979139],[-88.414849,45.975483],[-88.416914,45.975323],[-88.420356,45.976764],[-88.423044,45.978547],[-88.422322,45.98017],[-88.423437,45.98193],[-88.426125,45.984102],[-88.43406,45.986205],[-88.435798,45.988125],[-88.439733,45.990456],[-88.443078,45.990685],[-88.448751,45.98977],[-88.450325,45.990181],[-88.454261,45.993426],[-88.453868,45.996169],[-88.454361,45.997518],[-88.458658,45.999391],[-88.465542,46.000685],[-88.470855,46.001004],[-88.474695,45.99877],[-88.475152,45.996598],[-88.474036,45.994655],[-88.476002,45.992826],[-88.478984,45.991797],[-88.486755,45.990949],[-88.492495,45.992157],[-88.497417,45.995149],[-88.498108,45.99636],[-88.496897,45.998281],[-88.496898,45.999012],[-88.498765,46.000393],[-88.500133,46.000457],[-88.505946,46.013385],[-88.506205,46.017134],[-88.507188,46.0183],[-88.509516,46.019169],[-88.514601,46.019926],[-88.523131,46.019518],[-88.526673,46.020822],[-88.532414,46.021212],[-88.533825,46.020915],[-88.53353,46.019932],[-88.534876,46.018104],[-88.539011,46.014791],[-88.541078,46.013763],[-88.550756,46.012896],[-88.554987,46.014977],[-88.565485,46.015708],[-88.571553,46.013811],[-88.572995,46.011799],[-88.58067,46.006975],[-88.589,46.005077],[-88.589755,46.005602],[-88.592874,46.01159],[-88.593302,46.014447],[-88.59386,46.015132],[-88.598093,46.017623],[-88.60144,46.017599],[-88.603965,46.016181],[-88.607438,46.010991],[-88.611466,46.003332],[-88.611563,45.99881],[-88.613063,45.990627],[-88.614176,45.988775],[-88.616405,45.9877],[-88.623947,45.988633],[-88.634055,45.987999],[-88.634842,45.987565],[-88.635598,45.985119],[-88.6375,45.98496],[-88.65776,45.989287],[-88.661312,45.988819],[-88.662902,45.98873],[-88.663697,45.989084],[-88.664802,45.989835],[-88.66436,45.991337],[-88.663609,45.992397],[-88.663923,45.993242],[-88.667464,45.995048],[-88.671267,45.999026],[-88.670939,45.999957],[-88.670115,45.999957],[-88.671458,46.005104],[-88.674606,46.010567],[-88.679132,46.013538],[-88.683303,46.01417],[-88.691662,46.015435],[-88.698716,46.017903],[-88.704687,46.018154],[-88.710328,46.016303],[-88.713049,46.012668],[-88.718397,46.013284],[-88.721319,46.018608],[-88.721125,46.022013],[-88.724801,46.024503],[-88.730675,46.026535],[-88.739994,46.027308],[-88.746422,46.025798],[-88.752176,46.023584],[-88.754033,46.02246],[-88.756295,46.020173],[-88.758618,46.019542],[-88.760044,46.019815],[-88.763767,46.021943],[-88.765208,46.022086],[-88.766156,46.022149],[-88.767104,46.021896],[-88.76761,46.021643],[-88.768305,46.021201],[-88.768692,46.020571],[-88.769712,46.018968],[-88.776187,46.015931],[-88.779915,46.015436],[-88.782104,46.016558],[-88.783891,46.020934],[-88.784007,46.022984],[-88.783635,46.024357],[-88.778734,46.028875],[-88.778628,46.031271],[-88.779221,46.031869],[-88.784411,46.032709],[-88.791796,46.032057],[-88.796182,46.033712],[-88.80067,46.030036],[-88.796242,46.026853],[-88.79579,46.024864],[-88.79646,46.023605],[-88.801761,46.023737],[-88.811948,46.021609],[-88.815629,46.02232],[-88.815427,46.022954],[-88.816489,46.023924],[-88.820592,46.026261],[-88.831544,46.02962],[-88.835249,46.03033],[-88.837991,46.030176],[-88.840584,46.031112],[-88.843903,46.03305],[-88.847599,46.037161],[-88.848464,46.038858],[-88.85027,46.040274],[-88.932558,46.073601],[-88.943279,46.077943],[-88.948698,46.080205],[-88.990807,46.097298],[-88.990885,46.09733],[-89.09163,46.138505],[-89.125136,46.144531],[-89.161757,46.151816],[-89.166887,46.152868],[-89.194508,46.157942],[-89.201283,46.159426],[-89.203289,46.16002],[-89.205657,46.160408],[-89.218156,46.162988],[-89.219964,46.163319],[-89.276489,46.174047],[-89.276883,46.174116],[-89.495723,46.216301],[-89.533801,46.224119],[-89.638416,46.243804],[-89.667617,46.249797],[-89.764506,46.268082],[-89.908196,46.296037],[-89.90991,46.296402],[-89.918798,46.297741],[-89.929158,46.29975],[-90.120489,46.336852],[-90.121248,46.337217],[-90.12138,46.338131],[-90.121084,46.338656],[-90.119468,46.3397],[-90.118791,46.342253],[-90.119572,46.34418],[-90.120198,46.345066],[-90.120614,46.34642],[-90.119729,46.348504],[-90.117466,46.349487],[-90.116741,46.350652],[-90.116844,46.355153],[-90.118827,46.359241],[-90.119691,46.359755],[-90.119757,46.359748],[-90.120973,46.35972],[-90.122287,46.360139],[-90.122785,46.361259],[-90.122757,46.362621],[-90.122923,46.363603],[-90.126517,46.366889],[-90.131036,46.369199],[-90.133871,46.371828],[-90.134663,46.374947],[-90.134656,46.374979],[-90.13225,46.381249],[-90.133966,46.382118],[-90.135253,46.38221],[-90.13941,46.384999],[-90.144359,46.390255],[-90.146816,46.397205],[-90.148347,46.399258],[-90.152936,46.401293],[-90.157851,46.409291],[-90.158972,46.413769],[-90.158241,46.420485],[-90.158603,46.422656],[-90.163422,46.434605],[-90.166526,46.437576],[-90.166909,46.439311],[-90.166919,46.439851],[-90.174556,46.439656],[-90.17786,46.440548],[-90.179212,46.45309],[-90.180336,46.456746],[-90.189162,46.459054],[-90.190749,46.460173],[-90.193294,46.463143],[-90.192005,46.465611],[-90.189426,46.467004],[-90.188633,46.468101],[-90.188996,46.469015],[-90.193394,46.472487],[-90.201727,46.476074],[-90.204009,46.478175],[-90.211753,46.490351],[-90.214843,46.498181],[-90.214866,46.499947],[-90.216594,46.501759],[-90.220532,46.503403],[-90.222351,46.50338],[-90.228735,46.501573],[-90.230324,46.501732],[-90.23102,46.503354],[-90.230921,46.504656],[-90.229402,46.507992],[-90.230363,46.509705],[-90.231587,46.509842],[-90.236283,46.507121],[-90.243395,46.505245],[-90.246043,46.504832],[-90.248194,46.505357],[-90.25716,46.504716],[-90.25865,46.503483],[-90.260504,46.502822],[-90.263018,46.502777],[-90.265269,46.503829],[-90.265143,46.505089],[-90.265143,46.506222],[-90.266528,46.507356],[-90.26848,46.507167],[-90.27018,46.507356],[-90.270684,46.508237],[-90.270558,46.50956],[-90.270432,46.510756],[-90.270422,46.51169],[-90.274721,46.515416],[-90.271971,46.519756],[-90.272599,46.521127],[-90.277131,46.524487],[-90.278356,46.523847],[-90.27892,46.522271],[-90.283423,46.518868],[-90.285707,46.518846],[-90.292854,46.520972],[-90.294311,46.519876],[-90.294411,46.518848],[-90.298284,46.51782],[-90.303546,46.517432],[-90.306558,46.518484],[-90.307716,46.518392],[-90.312581,46.517113],[-90.313839,46.516199],[-90.313894,46.516199],[-90.316983,46.517319],[-90.317777,46.521637],[-90.314434,46.523784],[-90.311886,46.528695],[-90.310329,46.536852],[-90.310859,46.539365],[-90.320428,46.546287],[-90.324699,46.545602],[-90.326686,46.54615],[-90.328044,46.548046],[-90.327548,46.550262],[-90.331887,46.553278],[-90.336921,46.554076],[-90.344338,46.552087],[-90.347514,46.547083],[-90.349462,46.53808],[-90.350121,46.537337],[-90.35158,46.537074],[-90.353534,46.537553],[-90.355689,46.540317],[-90.357014,46.540591],[-90.357676,46.540271],[-90.3616,46.541434],[-90.369964,46.540549],[-90.374461,46.539212],[-90.387228,46.533663],[-90.39332,46.532615],[-90.395272,46.533941],[-90.395568,46.536317],[-90.398742,46.542738],[-90.400041,46.544384],[-90.400429,46.544384],[-90.402019,46.544384],[-90.405593,46.547584],[-90.407775,46.552246],[-90.414464,46.55732],[-90.414596,46.55732],[-90.41562,46.563169],[-90.418136,46.566094],[-90.417943,46.56619],[-90.398478,46.575832],[-90.39735,46.576391],[-90.39731,46.57641],[-90.396772,46.576677],[-90.394936,46.577586],[-90.371717,46.589088],[-90.355341,46.5972],[-90.353284,46.598219],[-90.348407,46.600635],[-90.347801,46.600842],[-90.327626,46.607744],[-90.327604,46.607739],[-90.306609,46.602741],[-90.29546,46.606998],[-90.28455,46.611164],[-90.284189,46.611302],[-90.28315,46.611698],[-90.279723,46.613007],[-90.278287,46.613555],[-90.265294,46.618516],[-90.265291,46.618517],[-90.251669,46.621454],[-90.250176,46.621776],[-90.237609,46.624485],[-90.164026,46.645515],[-90.100695,46.655132],[-90.04542,46.668272],[-90.028392,46.67439],[-89.996034,46.693225],[-89.985817,46.70319],[-89.973803,46.710322],[-89.957101,46.716929],[-89.918466,46.740324],[-89.907516,46.74987],[-89.892355,46.763088],[-89.888687,46.765826],[-89.875069,46.775991],[-89.862544,46.785341],[-89.851966,46.793237],[-89.850979,46.793974],[-89.848652,46.795711],[-89.846962,46.796556],[-89.844691,46.79769],[-89.841453,46.799308],[-89.831956,46.804053],[-89.830863,46.804434],[-89.830093,46.804703],[-89.828129,46.805389],[-89.790663,46.818469],[-89.788353,46.818861],[-89.78708,46.819077],[-89.757585,46.824082],[-89.724471,46.829701],[-89.720277,46.830413],[-89.717848,46.830559],[-89.713354,46.830829],[-89.710062,46.831026],[-89.708873,46.831098],[-89.708303,46.831132],[-89.708084,46.831145],[-89.678469,46.832923],[-89.677771,46.832965],[-89.676878,46.833019],[-89.673375,46.833229],[-89.660625,46.831056],[-89.659681,46.830762],[-89.651795,46.828309],[-89.646854,46.826771],[-89.64344,46.825709],[-89.642255,46.82534],[-89.637309,46.821384],[-89.634938,46.819488],[-89.619329,46.81889],[-89.598527,46.824338],[-89.578217,46.829657],[-89.572423,46.831174],[-89.570326,46.831723],[-89.569808,46.831859],[-89.564509,46.832483],[-89.542408,46.835086],[-89.540709,46.835286],[-89.538927,46.835496],[-89.535683,46.835878],[-89.534331,46.836248],[-89.525656,46.838625],[-89.516895,46.841025],[-89.515665,46.841362],[-89.513938,46.841835],[-89.500227,46.841638],[-89.499248,46.841623],[-89.49908,46.841621],[-89.49776,46.841086],[-89.494019,46.83957],[-89.491307,46.83847],[-89.491252,46.838448],[-89.491079,46.838438],[-89.485166,46.838112],[-89.475333,46.837569],[-89.471849,46.837376],[-89.47154,46.837359],[-89.470915,46.837398],[-89.470619,46.837416],[-89.470547,46.837421],[-89.469651,46.837477],[-89.469446,46.83749],[-89.453185,46.838505],[-89.448454,46.8388],[-89.448445,46.838801],[-89.446583,46.838917],[-89.445969,46.838955],[-89.445313,46.838996],[-89.440145,46.839319],[-89.437047,46.839512],[-89.434016,46.840131],[-89.415154,46.843983],[-89.413413,46.844524],[-89.401123,46.848344],[-89.395386,46.850127],[-89.372032,46.857386],[-89.370788,46.857851],[-89.33613,46.870807],[-89.317396,46.877811],[-89.304623,46.882586],[-89.28578,46.88963],[-89.278612,46.89231],[-89.249938,46.903029],[-89.249143,46.903326],[-89.228362,46.912751],[-89.227914,46.912954],[-89.226244,46.914105],[-89.202811,46.930253],[-89.201511,46.931149],[-89.199648,46.933075],[-89.18373,46.949529],[-89.168493,46.965279],[-89.168244,46.965536],[-89.142595,46.984859],[-89.142425,46.984954],[-89.142282,46.985033],[-89.128698,46.992599],[-89.128101,46.992692],[-89.124799,46.993209],[-89.118339,46.99422],[-89.118106,46.994002],[-89.115903,46.991933],[-89.113158,46.989356],[-89.106277,46.98648],[-89.086742,46.985298],[-89.063103,46.988522],[-89.058591,46.990604],[-89.048164,46.995416],[-89.03949,46.999419],[-89.038116,46.999643],[-89.02893,47.00114],[-89.027648,46.999839],[-89.022994,46.99512],[-88.998907,46.99531],[-88.998417,46.995314],[-88.992399,46.996347],[-88.99172,46.996463],[-88.987197,46.997239],[-88.982483,46.99883],[-88.978813,47.000068],[-88.978433,47.000196],[-88.972802,47.002096],[-88.960337,47.008053],[-88.959409,47.008496],[-88.957276,47.010111],[-88.944045,47.020129],[-88.933329,47.0322],[-88.925586,47.040923],[-88.924492,47.042156],[-88.923458,47.043872],[-88.914976,47.05794],[-88.914189,47.059246],[-88.908288,47.074396],[-88.903933,47.085579],[-88.903706,47.086161],[-88.899857,47.089969],[-88.890708,47.099024],[-88.890422,47.099306],[-88.890122,47.099603],[-88.88914,47.100575],[-88.885418,47.102084],[-88.885361,47.102107],[-88.872087,47.107487],[-88.855372,47.114263],[-88.855126,47.11429],[-88.854656,47.114343],[-88.848176,47.115065],[-88.826028,47.132558],[-88.825619,47.132881],[-88.825475,47.132994],[-88.816684,47.139938],[-88.816553,47.140042],[-88.815403,47.14095],[-88.815355,47.140987],[-88.814834,47.141399],[-88.813748,47.141813],[-88.798779,47.147511],[-88.789813,47.150925],[-88.784612,47.150722],[-88.783821,47.150691],[-88.779188,47.15051],[-88.778022,47.150465],[-88.764351,47.155762],[-88.750496,47.167782],[-88.746724,47.171055],[-88.74665,47.171118],[-88.729688,47.185834],[-88.728541,47.18656],[-88.728327,47.186695],[-88.712138,47.196937],[-88.702086,47.203296],[-88.702029,47.203333],[-88.700047,47.204586],[-88.69966,47.204831],[-88.698919,47.20522],[-88.698282,47.205554],[-88.676624,47.216918],[-88.674917,47.217814],[-88.673771,47.218415],[-88.673172,47.218729],[-88.672395,47.219137],[-88.666614,47.221475],[-88.657496,47.225164],[-88.656359,47.225624],[-88.648001,47.226229],[-88.642047,47.226659],[-88.640323,47.226784],[-88.633915,47.228915],[-88.625119,47.23184],[-88.623579,47.232352],[-88.623302,47.232484],[-88.618613,47.234715],[-88.609867,47.238877],[-88.60983,47.238894],[-88.608087,47.239137],[-88.598622,47.240454],[-88.585196,47.242321],[-88.584912,47.242361],[-88.584652,47.242447],[-88.573997,47.245989],[-88.573326,47.246424],[-88.573301,47.246441],[-88.57172,47.247466],[-88.526764,47.276641],[-88.518091,47.282269],[-88.515276,47.284096],[-88.514786,47.284414],[-88.512421,47.285948],[-88.504898,47.290831],[-88.50116,47.293256],[-88.50078,47.293503],[-88.498756,47.295256],[-88.487116,47.305335],[-88.478951,47.312405],[-88.477733,47.31346],[-88.471103,47.326442],[-88.470484,47.327653],[-88.465888,47.33267],[-88.465089,47.333542],[-88.459262,47.339903],[-88.458952,47.340142],[-88.432162,47.360791],[-88.431753,47.361106],[-88.431446,47.361343],[-88.418841,47.371058],[-88.418673,47.371188],[-88.400224,47.379551],[-88.399726,47.379777],[-88.394239,47.382264],[-88.39144,47.383533],[-88.389459,47.384431],[-88.378917,47.387513],[-88.360313,47.392951],[-88.324083,47.403542],[-88.303447,47.412204],[-88.301214,47.413451],[-88.285635,47.422146],[-88.285195,47.422392],[-88.28406,47.422579],[-88.274709,47.424118],[-88.23944,47.429923],[-88.239161,47.429969],[-88.238091,47.430437],[-88.228645,47.434568],[-88.227446,47.435093],[-88.225797,47.436279],[-88.218424,47.441585],[-88.216977,47.445493],[-88.217822,47.448738],[-88.217662,47.448778],[-88.213141,47.449898],[-88.213059,47.449918],[-88.207853,47.451208],[-88.207239,47.45136],[-88.206036,47.451658],[-88.18182,47.457657],[-88.181763,47.457661],[-88.179998,47.457799],[-88.169383,47.458627],[-88.167703,47.458758],[-88.167009,47.458812],[-88.15076,47.460078],[-88.150571,47.460093],[-88.150437,47.460125],[-88.143573,47.461759],[-88.140537,47.462482],[-88.139651,47.462693],[-88.137698,47.462918],[-88.129274,47.463889],[-88.12848,47.46398],[-88.090299,47.46838],[-88.089966,47.468418],[-88.085252,47.468961],[-88.08485,47.468906],[-88.08358,47.468733],[-88.081892,47.468503],[-88.081277,47.468419],[-88.080916,47.46837],[-88.080796,47.468353],[-88.080271,47.468282],[-88.079183,47.468133],[-88.076388,47.467752],[-88.074681,47.46788],[-88.073982,47.467933],[-88.07358,47.467963],[-88.067043,47.468454],[-88.049326,47.469785],[-88.048226,47.470008],[-88.048077,47.474973],[-88.047857,47.475002],[-88.046665,47.475159],[-88.040291,47.475999],[-88.040242,47.476002],[-88.03659,47.476205],[-88.03113,47.47651],[-88.031089,47.476512],[-88.027085,47.476735],[-88.021555,47.477044],[-88.017268,47.477283],[-88.015502,47.477381],[-88.014516,47.477436],[-88.01083,47.477642],[-88.010415,47.477665],[-88.009704,47.477704],[-87.982227,47.479236],[-87.98174,47.479264],[-87.978934,47.47942],[-87.978121,47.479409],[-87.962546,47.479195],[-87.959166,47.479148],[-87.958042,47.479133],[-87.957582,47.479126],[-87.95669,47.479114],[-87.955374,47.479096],[-87.954672,47.479086],[-87.954458,47.479083],[-87.951912,47.479048],[-87.948287,47.478999],[-87.929672,47.478743],[-87.929269,47.478737],[-87.928726,47.478703],[-87.928137,47.478666],[-87.927548,47.478629],[-87.922224,47.478293],[-87.921103,47.478222],[-87.920321,47.478173],[-87.920259,47.478169],[-87.902416,47.477045],[-87.898036,47.474872],[-87.816958,47.471998],[-87.801184,47.473301],[-87.756739,47.460717],[-87.730804,47.449112],[-87.715942,47.439816],[-87.710471,47.4062],[-87.712421,47.4014],[-87.721274,47.401032],[-87.742417,47.405823],[-87.75138,47.405066],[-87.759057,47.403013],[-87.765019,47.398652],[-87.800294,47.392148],[-87.815371,47.38479],[-87.827115,47.38616],[-87.834822,47.390478],[-87.848252,47.394864],[-87.8567,47.395387],[-87.882245,47.395588],[-87.941613,47.390073],[-87.957058,47.38726],[-87.965063,47.37443],[-87.965598,47.368645],[-87.962567,47.362543],[-87.954796,47.356809],[-87.947397,47.355461],[-87.938787,47.346777],[-87.93825,47.342299],[-87.94336,47.335899],[-87.946352,47.334254],[-87.958386,47.334435],[-87.968604,47.332582],[-87.989133,47.322633],[-88.016478,47.306275],[-88.054849,47.29824],[-88.06009,47.295796],[-88.071476,47.286768],[-88.096851,47.261351],[-88.108833,47.259131],[-88.117456,47.255174],[-88.131943,47.239554],[-88.163059,47.216278],[-88.194218,47.209242],[-88.204849,47.210498],[-88.212361,47.209423],[-88.227552,47.199938],[-88.228987,47.199042],[-88.229132,47.198862],[-88.235041,47.191532],[-88.236892,47.189236],[-88.237024,47.188862],[-88.240295,47.179609],[-88.242006,47.174767],[-88.242109,47.172184],[-88.242142,47.171358],[-88.242157,47.170988],[-88.242561,47.160902],[-88.24266,47.158426],[-88.242062,47.157059],[-88.239487,47.151176],[-88.23947,47.151137],[-88.238408,47.150423],[-88.236961,47.149449],[-88.236721,47.149287],[-88.236566,47.149297],[-88.234295,47.149446],[-88.231797,47.149609],[-88.232164,47.145975],[-88.239895,47.139436],[-88.247628,47.135981],[-88.249571,47.136231],[-88.249838,47.137106],[-88.250645,47.139752],[-88.250785,47.140209],[-88.250814,47.140231],[-88.253834,47.142524],[-88.254205,47.142807],[-88.254267,47.142853],[-88.255303,47.14364],[-88.255676,47.143715],[-88.262537,47.145087],[-88.262972,47.145174],[-88.263292,47.145115],[-88.272017,47.143511],[-88.281652,47.138239],[-88.281701,47.138212],[-88.281743,47.138163],[-88.288994,47.129743],[-88.28904,47.129689],[-88.289058,47.129581],[-88.289543,47.126604],[-88.28865,47.125947],[-88.288481,47.125823],[-88.28787,47.125374],[-88.287792,47.124822],[-88.28726,47.121041],[-88.287173,47.12042],[-88.287313,47.119721],[-88.287822,47.117174],[-88.287901,47.116779],[-88.287981,47.116376],[-88.288309,47.114738],[-88.288347,47.114547],[-88.28869,47.113954],[-88.28893,47.113539],[-88.289005,47.11341],[-88.289534,47.112494],[-88.290598,47.110655],[-88.290708,47.110465],[-88.291217,47.109585],[-88.291688,47.10877],[-88.294082,47.10463],[-88.296645,47.100199],[-88.297547,47.098639],[-88.297625,47.098505],[-88.297772,47.098443],[-88.313033,47.091964],[-88.315051,47.091108],[-88.333076,47.083455],[-88.337406,47.081617],[-88.340052,47.080494],[-88.344658,47.079718],[-88.346501,47.079407],[-88.346709,47.079372],[-88.347197,47.078921],[-88.349952,47.076377],[-88.353191,47.069063],[-88.353952,47.058047],[-88.354011,47.057835],[-88.356884,47.047524],[-88.357556,47.045113],[-88.357661,47.044739],[-88.358201,47.042798],[-88.35855,47.041546],[-88.358873,47.040389],[-88.359054,47.039739],[-88.359139,47.039536],[-88.367624,47.019213],[-88.368062,47.018733],[-88.368358,47.018408],[-88.373966,47.012262],[-88.374238,47.012081],[-88.379268,47.008736],[-88.384442,47.005296],[-88.385338,47.0047],[-88.385507,47.004588],[-88.385606,47.004522],[-88.386153,47.003909],[-88.386538,47.003477],[-88.387612,47.002275],[-88.388564,47.001208],[-88.389698,46.999937],[-88.404498,46.983353],[-88.405352,46.982663],[-88.406229,46.981955],[-88.410157,46.978782],[-88.41089,46.97819],[-88.411145,46.977984],[-88.41616,46.977106],[-88.416364,46.977071],[-88.443901,46.972251],[-88.44857,46.946769],[-88.450823,46.939038],[-88.452129,46.934557],[-88.452354,46.933787],[-88.454333,46.926996],[-88.454353,46.926928],[-88.454781,46.925458],[-88.455117,46.924305],[-88.455404,46.923321],[-88.457776,46.918999],[-88.474217,46.889034],[-88.475859,46.886042],[-88.476098,46.881957],[-88.476918,46.867946],[-88.47762,46.855937],[-88.477681,46.854902],[-88.477845,46.852091],[-88.477935,46.85056],[-88.483748,46.831727],[-88.482579,46.826197],[-88.473342,46.806226],[-88.462349,46.786711],[-88.438427,46.786714],[-88.433835,46.793502],[-88.415225,46.811715],[-88.38141,46.838466],[-88.382204,46.844477],[-88.381947,46.84611],[-88.381727,46.847868],[-88.380849,46.850064],[-88.38019,46.852481],[-88.378432,46.854897],[-88.375577,46.857313],[-88.372501,46.858192],[-88.368767,46.857313],[-88.362502,46.856432],[-88.361936,46.856352],[-88.360868,46.856202],[-88.36026,46.856258],[-88.352145,46.857009],[-88.35194,46.857028],[-88.35173,46.857193],[-88.34743,46.860571],[-88.334647,46.870613],[-88.333168,46.871775],[-88.333092,46.871835],[-88.310714,46.889415],[-88.31029,46.889748],[-88.308786,46.890622],[-88.307978,46.891092],[-88.307261,46.891509],[-88.305045,46.892797],[-88.299515,46.896012],[-88.296476,46.897778],[-88.289298,46.90195],[-88.288767,46.902259],[-88.286473,46.903592],[-88.282087,46.906142],[-88.282066,46.906154],[-88.281244,46.906632],[-88.276915,46.908589],[-88.27473,46.909577],[-88.273929,46.909939],[-88.272478,46.910595],[-88.261593,46.915516],[-88.258072,46.918409],[-88.250141,46.924926],[-88.246953,46.927545],[-88.246872,46.927611],[-88.244437,46.929612],[-88.243175,46.93009],[-88.241858,46.930589],[-88.24134,46.930785],[-88.240926,46.930942],[-88.240846,46.930972],[-88.238324,46.931927],[-88.2358,46.932883],[-88.235702,46.93292],[-88.233334,46.933817],[-88.232969,46.933955],[-88.194361,46.948578],[-88.176758,46.955245],[-88.167373,46.9588],[-88.167227,46.958855],[-88.164704,46.960178],[-88.164059,46.960516],[-88.162856,46.961146],[-88.162833,46.961158],[-88.162437,46.961366],[-88.160571,46.962345],[-88.160086,46.962599],[-88.156273,46.964598],[-88.15543,46.96504],[-88.155374,46.965069],[-88.145561,46.966409],[-88.143688,46.966665],[-88.143614,46.966635],[-88.142893,46.966337],[-88.142807,46.966302],[-88.142528,46.966186],[-88.142339,46.966108],[-88.142057,46.965992],[-88.14175,46.965865],[-88.132957,46.962237],[-88.132876,46.962204],[-88.13521,46.959689],[-88.150114,46.94363],[-88.156359,46.939518],[-88.167989,46.931861],[-88.170905,46.92994],[-88.171317,46.929669],[-88.175568,46.92687],[-88.176156,46.926483],[-88.177921,46.92532],[-88.185964,46.920025],[-88.187522,46.918999],[-88.18295,46.91365],[-88.181908,46.912431],[-88.175197,46.90458],[-88.161913,46.904941],[-88.160704,46.90511],[-88.130288,46.909369],[-88.126927,46.90984],[-88.126378,46.909998],[-88.124935,46.910413],[-88.124573,46.910517],[-88.122862,46.911009],[-88.106377,46.915751],[-88.105195,46.916091],[-88.102816,46.916775],[-88.102362,46.916906],[-88.101457,46.917166],[-88.101315,46.917207],[-88.100133,46.917405],[-88.099227,46.917556],[-88.0989,46.917611],[-88.098858,46.917618],[-88.097609,46.917827],[-88.083937,46.920112],[-88.08377,46.92014],[-88.082263,46.920392],[-88.08187,46.920458],[-88.080087,46.920255],[-88.074736,46.919647],[-88.065192,46.918563],[-88.063614,46.918097],[-88.044551,46.912473],[-88.032911,46.909038],[-88.032408,46.90889],[-88.030053,46.90873],[-88.029373,46.908684],[-88.004298,46.906982],[-88.003693,46.906948],[-87.98629,46.905967],[-87.986113,46.905957],[-87.98334,46.906242],[-87.982258,46.906353],[-87.97549,46.907048],[-87.958255,46.908819],[-87.957115,46.908936],[-87.956,46.909051],[-87.955745,46.909054],[-87.954687,46.909066],[-87.915943,46.909508],[-87.914489,46.909525],[-87.911474,46.909559],[-87.910624,46.909569],[-87.908791,46.90959],[-87.900695,46.909682],[-87.900339,46.909686],[-87.90007,46.909508],[-87.88792,46.901451],[-87.875051,46.892918],[-87.874538,46.892578],[-87.873893,46.892381],[-87.847037,46.884163],[-87.846195,46.883905],[-87.844637,46.884049],[-87.841228,46.884363],[-87.838889,46.885252],[-87.830204,46.888556],[-87.827162,46.889713],[-87.816794,46.891154],[-87.81412,46.888808],[-87.813228,46.888025],[-87.813226,46.888023],[-87.793194,46.880822],[-87.788186,46.880373],[-87.783216,46.879927],[-87.782461,46.879859],[-87.781969,46.87958],[-87.777749,46.87719],[-87.777527,46.877064],[-87.777156,46.876854],[-87.77693,46.876726],[-87.776672,46.874999],[-87.776567,46.874293],[-87.776313,46.872591],[-87.776346,46.872562],[-87.778289,46.870834],[-87.778752,46.870422],[-87.776804,46.866823],[-87.766243,46.861446],[-87.765989,46.861316],[-87.765835,46.861303],[-87.755937,46.860459],[-87.755868,46.860453],[-87.755748,46.860518],[-87.754448,46.861219],[-87.748498,46.864428],[-87.746646,46.865427],[-87.745665,46.865396],[-87.744893,46.865371],[-87.744403,46.865355],[-87.741857,46.865274],[-87.741014,46.865247],[-87.740917,46.865007],[-87.740846,46.864834],[-87.73487,46.85012],[-87.735039,46.849856],[-87.735106,46.849751],[-87.736732,46.847216],[-87.736539,46.846393],[-87.736469,46.846096],[-87.734325,46.836955],[-87.731522,46.831196],[-87.727358,46.827656],[-87.72588,46.827426],[-87.725649,46.82739],[-87.713737,46.825534],[-87.69459,46.827182],[-87.685787,46.832477],[-87.685698,46.83253],[-87.685735,46.832639],[-87.68793,46.839159],[-87.687875,46.839343],[-87.68728,46.841351],[-87.687164,46.841742],[-87.68672,46.841794],[-87.681561,46.842392],[-87.680668,46.842496],[-87.679573,46.841507],[-87.675046,46.83742],[-87.674541,46.836964],[-87.673469,46.829598],[-87.673433,46.82935],[-87.673177,46.827593],[-87.673274,46.8273],[-87.673973,46.825179],[-87.674345,46.82405],[-87.672015,46.820415],[-87.662261,46.815157],[-87.65151,46.812411],[-87.646539,46.813094],[-87.642789,46.813609],[-87.641887,46.813733],[-87.640839,46.813534],[-87.6333,46.812107],[-87.628786,46.806096],[-87.628284,46.805428],[-87.628081,46.805157],[-87.627356,46.804553],[-87.627124,46.80436],[-87.619747,46.79821],[-87.617852,46.796631],[-87.6168,46.795753],[-87.613654,46.793131],[-87.613586,46.793074],[-87.610582,46.790571],[-87.609008,46.789258],[-87.607988,46.788408],[-87.595307,46.78295],[-87.595276,46.782745],[-87.594384,46.776863],[-87.593148,46.768713],[-87.592227,46.762635],[-87.59222,46.762594],[-87.591973,46.760965],[-87.591907,46.760525],[-87.591455,46.757544],[-87.591362,46.756932],[-87.591082,46.755087],[-87.590865,46.753653],[-87.590767,46.753009],[-87.590502,46.752267],[-87.589671,46.749937],[-87.587755,46.744568],[-87.587626,46.744206],[-87.584568,46.735637],[-87.58357,46.732839],[-87.582745,46.730527],[-87.581674,46.729399],[-87.573203,46.720471],[-87.567343,46.716714],[-87.557436,46.710364],[-87.553048,46.707551],[-87.551989,46.706872],[-87.549097,46.705019],[-87.54392,46.7017],[-87.534504,46.695664],[-87.533529,46.69504],[-87.532638,46.694469],[-87.523308,46.688488],[-87.523361,46.687977],[-87.523744,46.6843],[-87.524419,46.67783],[-87.524444,46.677586],[-87.519176,46.670186],[-87.506657,46.652599],[-87.503238,46.647796],[-87.503025,46.647497],[-87.501511,46.646762],[-87.493405,46.642826],[-87.49286,46.642561],[-87.492409,46.642435],[-87.469023,46.635918],[-87.467965,46.635623],[-87.466537,46.631555],[-87.467563,46.626228],[-87.464108,46.614811],[-87.451368,46.605923],[-87.442612,46.602776],[-87.411167,46.601669],[-87.403275,46.595215],[-87.383961,46.59307],[-87.381649,46.580059],[-87.392974,46.572523],[-87.392828,46.570852],[-87.382206,46.553681],[-87.375613,46.54714],[-87.3903,46.542577],[-87.393985,46.533183],[-87.38929,46.524472],[-87.381349,46.517292],[-87.366767,46.507303],[-87.352448,46.501324],[-87.351071,46.500749],[-87.312109,46.49231],[-87.310755,46.492017],[-87.309402,46.491919],[-87.259116,46.488283],[-87.258732,46.488255],[-87.258145,46.488282],[-87.205147,46.490702],[-87.202404,46.490827],[-87.200147,46.491382],[-87.175105,46.497538],[-87.175065,46.497548],[-87.145946,46.495387],[-87.12744,46.494014],[-87.116618,46.495163],[-87.107559,46.496124],[-87.09876,46.503609],[-87.077279,46.515339],[-87.046022,46.519956],[-87.029892,46.525599],[-87.017136,46.53355],[-87.008724,46.532723],[-86.976958,46.526581],[-86.964534,46.516549],[-86.962842,46.509646],[-86.94698,46.484567],[-86.946218,46.479059],[-86.949526,46.476315],[-86.947077,46.472064],[-86.927725,46.464566],[-86.903742,46.466138],[-86.889094,46.458499],[-86.883976,46.450976],[-86.883919,46.441514],[-86.875151,46.43728],[-86.850111,46.434114],[-86.837448,46.434186],[-86.816026,46.437892],[-86.810967,46.449663],[-86.808817,46.460611],[-86.803557,46.466669],[-86.787905,46.477729],[-86.768516,46.479072],[-86.750157,46.479109],[-86.735929,46.475231],[-86.731096,46.47176],[-86.730829,46.468057],[-86.710573,46.444908],[-86.70323,46.439378],[-86.698139,46.438624],[-86.686412,46.454965],[-86.688816,46.463152],[-86.686468,46.471655],[-86.683819,46.498079],[-86.696001,46.50316],[-86.701929,46.511571],[-86.709325,46.543914],[-86.695645,46.555026],[-86.678182,46.561039],[-86.675764,46.557061],[-86.670927,46.556489],[-86.656479,46.558453],[-86.652865,46.560555],[-86.62738,46.53371],[-86.629086,46.518144],[-86.632109,46.508865],[-86.63453,46.504523],[-86.641088,46.500438],[-86.645528,46.492039],[-86.646393,46.485776],[-86.636671,46.478298],[-86.627441,46.47754],[-86.620603,46.483873],[-86.618061,46.489452],[-86.612173,46.493295],[-86.609393,46.492976],[-86.606932,46.478531],[-86.609039,46.470239],[-86.586168,46.463324],[-86.557731,46.487434],[-86.524959,46.505381],[-86.495054,46.524874],[-86.484003,46.535965],[-86.481956,46.542709],[-86.469306,46.551422],[-86.45993,46.551928],[-86.44439,46.548137],[-86.437167,46.54896],[-86.390409,46.563194],[-86.34989,46.578035],[-86.188024,46.654008],[-86.161681,46.669475],[-86.138295,46.672935],[-86.119862,46.657256],[-86.112126,46.655044],[-86.099843,46.654615],[-86.074219,46.657799],[-86.036969,46.667627],[-85.995044,46.673676],[-85.95367,46.676869],[-85.924047,46.684733],[-85.877908,46.690914],[-85.864549,46.690182],[-85.857755,46.68981],[-85.85662,46.689748],[-85.841057,46.688896],[-85.840211,46.688753],[-85.815747,46.68461],[-85.796641,46.681374],[-85.794923,46.681083],[-85.792506,46.68088],[-85.751345,46.67743],[-85.750606,46.677368],[-85.742834,46.677322],[-85.739929,46.677305],[-85.738624,46.677298],[-85.714415,46.677156],[-85.700945,46.678114],[-85.674011,46.68003],[-85.668753,46.680404],[-85.663673,46.680227],[-85.647387,46.679658],[-85.624573,46.678862],[-85.61747,46.678054],[-85.595806,46.67559],[-85.594158,46.675402],[-85.593558,46.675334],[-85.587741,46.674672],[-85.587345,46.674627],[-85.584989,46.674608],[-85.558762,46.674395],[-85.547593,46.674304],[-85.542517,46.674263],[-85.50951,46.675786],[-85.482978,46.680283],[-85.482096,46.680432],[-85.369805,46.713754],[-85.362572,46.716548],[-85.347047,46.722546],[-85.296395,46.742114],[-85.289846,46.744644],[-85.257999,46.753078],[-85.25686,46.75338],[-85.256031,46.753481],[-85.237873,46.755703],[-85.173042,46.763634],[-85.063556,46.757856],[-85.036286,46.760435],[-85.00924,46.769224],[-84.989497,46.772403],[-84.964652,46.772845],[-84.954009,46.771362],[-84.95158,46.769488],[-84.987539,46.745483],[-85.007616,46.728339],[-85.020159,46.712463],[-85.027513,46.697451],[-85.030078,46.684769],[-85.028291,46.675125],[-85.035504,46.625021],[-85.037056,46.600995],[-85.035476,46.581547],[-85.031507,46.568703],[-85.029594,46.554419],[-85.027374,46.553756],[-85.025491,46.546397],[-85.027083,46.543038],[-85.045534,46.537694],[-85.052954,46.532827],[-85.056133,46.52652],[-85.054943,46.51475],[-85.049847,46.503963],[-85.033766,46.48767],[-85.025598,46.483028],[-85.015211,46.479712],[-84.969464,46.47629],[-84.955307,46.480269],[-84.947269,46.487399],[-84.937145,46.489252],[-84.934432,46.480315],[-84.921931,46.469962],[-84.915184,46.467515],[-84.893423,46.465406],[-84.87507,46.466781],[-84.861448,46.46993],[-84.849767,46.460245],[-84.843907,46.448661],[-84.829491,46.444071],[-84.800101,46.446219],[-84.769151,46.453523],[-84.723338,46.468266],[-84.689672,46.483923],[-84.678423,46.487694],[-84.65388,46.48225],[-84.63102,46.484868],[-84.616489,46.47187],[-84.607945,46.456747],[-84.584167,46.43941],[-84.573522,46.427895],[-84.551496,46.418522],[-84.503719,46.43919],[-84.493401,46.440313],[-84.479513,46.432573],[-84.471848,46.434289],[-84.462597,46.44094],[-84.455527,46.453897],[-84.455256,46.462785],[-84.463322,46.467435],[-84.445149,46.489016],[-84.420274,46.501077],[-84.394725,46.499242],[-84.37504,46.508669],[-84.373968,46.509098],[-84.343599,46.507713],[-84.337732,46.505577],[-84.325371,46.500021],[-84.293016,46.492803],[-84.275814,46.492821],[-84.265391,46.494393],[-84.264266,46.495055],[-84.254434,46.500821],[-84.226131,46.53392],[-84.193729,46.53992],[-84.177428,46.52692],[-84.166028,46.52622],[-84.153027,46.52832],[-84.146526,46.531119],[-84.139426,46.532219],[-84.128925,46.530119],[-84.123325,46.520919],[-84.117925,46.517619],[-84.111225,46.504119],[-84.125026,46.470143],[-84.146172,46.41852],[-84.138906,46.372221],[-84.119122,46.337014],[-84.106247,46.321963],[-84.119629,46.315013],[-84.115563,46.268225],[-84.097766,46.256512],[-84.108089,46.241238],[-84.118175,46.233968],[-84.125024,46.232885],[-84.134652,46.23214],[-84.14595,46.224995],[-84.14715,46.224184],[-84.14922,46.223808],[-84.150725,46.223808],[-84.151666,46.224184],[-84.152042,46.224937],[-84.15223,46.226254],[-84.152499,46.227875],[-84.159485,46.233233],[-84.182732,46.23545],[-84.219494,46.231992],[-84.233117,46.224037],[-84.249164,46.206461],[-84.245233,46.192571],[-84.247687,46.17989],[-84.251424,46.175888],[-84.221001,46.163062],[-84.196669,46.16615],[-84.177298,46.183993],[-84.17164,46.181731],[-84.125022,46.180209],[-84.114941,46.174114],[-84.113259,46.16886],[-84.100126,46.15077],[-84.095818,46.147733],[-84.089309,46.146432],[-84.060383,46.146138],[-84.026536,46.131648],[-84.031036,46.123186],[-84.038696,46.12562],[-84.0519,46.11981],[-84.061329,46.113482],[-84.069147,46.103978],[-84.072398,46.09669],[-84.071741,46.092441],[-84.066257,46.087438],[-84.051712,46.079189],[-84.027861,46.054784],[-84.006082,46.044586],[-83.989526,46.032823],[-83.963808,46.027833],[-83.95141,46.029042],[-83.943933,46.031465],[-83.939012,46.029226],[-83.93547,46.020385],[-83.931175,46.017871],[-83.908583,46.011471],[-83.900535,45.998918],[-83.873147,45.993426],[-83.868233,45.995075],[-83.845399,46.025679],[-83.830146,46.022324],[-83.818202,46.002425],[-83.794055,45.995801],[-83.776436,46.004202],[-83.765277,46.018363],[-83.765233,46.031935],[-83.773785,46.051471],[-83.796555,46.056688],[-83.81252,46.073469],[-83.824036,46.103638],[-83.815826,46.108529],[-83.81241,46.108598],[-83.792867,46.101971],[-83.779996,46.093515],[-83.771821,46.090999],[-83.755991,46.092159],[-83.728165,46.090957],[-83.7233,46.09381],[-83.719791,46.101031],[-83.703861,46.103366],[-83.661161,46.100258],[-83.63498,46.103953],[-83.625554,46.102212],[-83.615343,46.095976],[-83.598612,46.090085],[-83.581315,46.089613],[-83.57609,46.083513],[-83.57264,46.074922],[-83.572574,46.069895],[-83.565351,46.061898],[-83.554059,46.058882],[-83.547202,46.047868],[-83.543366,46.037196],[-83.540845,46.021247],[-83.532913,46.011328],[-83.49484,45.999541],[-83.488348,45.999543],[-83.480639,45.996164],[-83.473946,45.988558],[-83.473221,45.984422],[-83.481765,45.971873],[-83.488809,45.96874],[-83.510623,45.929324],[-83.517242,45.923614],[-83.526347,45.918636],[-83.561838,45.912562],[-83.583052,45.915919],[-83.632214,45.932287],[-83.65766,45.945463],[-83.687695,45.935389],[-83.719433,45.934078],[-83.732986,45.937641],[-83.742778,45.938002],[-83.766233,45.935221],[-83.768854,45.932069],[-83.78611,45.933375],[-83.80104,45.937582],[-83.803332,45.943362],[-83.808147,45.945693],[-83.82281,45.943985],[-83.827566,45.941236],[-83.835505,45.941843],[-83.840869,45.952726],[-83.846437,45.953181],[-83.864859,45.959465],[-83.879616,45.966196],[-83.881055,45.968185],[-83.910838,45.965613],[-83.921257,45.958075],[-83.952183,45.965498],[-83.985141,45.967133],[-83.996471,45.961461],[-84.017565,45.959046],[-84.080071,45.970822],[-84.090391,45.967256],[-84.10537,45.972948],[-84.107204,45.977161],[-84.111174,45.978675],[-84.114284,45.978322],[-84.140461,45.975348],[-84.140816,45.975308],[-84.169368,45.966919],[-84.17225,45.966072],[-84.174763,45.967414],[-84.175244,45.967671],[-84.17806,45.969175],[-84.203135,45.968516],[-84.213885,45.968233],[-84.218951,45.9681],[-84.238174,45.967595],[-84.253993,45.956727],[-84.254952,45.956068],[-84.2613,45.956083],[-84.261858,45.956084],[-84.266673,45.956096],[-84.281663,45.956132],[-84.317422,45.956217],[-84.319565,45.956222],[-84.320017,45.956223],[-84.320494,45.956224],[-84.324647,45.956234],[-84.325115,45.956235],[-84.325787,45.956237],[-84.326413,45.956238],[-84.327177,45.95624],[-84.330021,45.956247],[-84.330346,45.956043],[-84.331572,45.955274],[-84.345451,45.946569],[-84.353259,45.941671],[-84.353272,45.941663],[-84.353714,45.941478],[-84.357525,45.939881],[-84.376429,45.931962],[-84.376431,45.931963],[-84.387383,45.937497],[-84.391464,45.93956],[-84.398007,45.942866],[-84.398323,45.943026],[-84.39854,45.943136],[-84.399134,45.943436],[-84.39946,45.9436],[-84.399582,45.943662],[-84.411212,45.949539],[-84.428239,45.958144],[-84.428689,45.958371],[-84.436454,45.971722],[-84.436574,45.97193],[-84.437633,45.97375],[-84.443086,45.977825],[-84.443138,45.977863],[-84.44314,45.977862],[-84.443336,45.977775],[-84.459956,45.970343],[-84.463128,45.968925],[-84.473694,45.974321],[-84.478576,45.976814],[-84.480436,45.977764],[-84.4808,45.978385],[-84.482563,45.981391],[-84.483062,45.982242],[-84.482506,45.985109],[-84.482442,45.985441],[-84.482773,45.986035],[-84.484009,45.98825],[-84.485625,45.988453],[-84.488536,45.98882],[-84.507201,45.991169],[-84.514123,45.987242],[-84.514071,45.971292],[-84.525052,45.968578],[-84.532392,45.969448],[-84.534422,45.972762],[-84.534648,45.978132],[-84.530444,45.991385],[-84.533426,46.00572],[-84.540995,46.019501],[-84.544405,46.02286],[-84.563891,46.032459],[-84.581081,46.031041],[-84.586592,46.026584],[-84.609063,46.026418],[-84.647609,46.049704],[-84.656567,46.052654],[-84.66671,46.050486],[-84.675835,46.046009],[-84.687322,46.03488],[-84.692735,46.027019],[-84.6927,46.016963],[-84.686269,45.979144],[-84.684368,45.977499],[-84.685254,45.973454],[-84.687712,45.97126],[-84.703948,45.970901],[-84.723039,45.967279],[-84.730179,45.961198],[-84.738849,45.945792],[-84.73937,45.941816],[-84.733041,45.932837],[-84.718955,45.927449],[-84.713614,45.920366],[-84.713251,45.916047],[-84.734002,45.907026],[-84.730252,45.897267],[-84.729482,45.895263],[-84.721277,45.873911],[-84.721276,45.873908],[-84.715501,45.865962],[-84.715481,45.865934],[-84.715365,45.86583],[-84.709727,45.860766],[-84.702122,45.853935],[-84.701594,45.853461],[-84.701183,45.853092],[-84.702256,45.850557],[-84.702295,45.850464],[-84.704647,45.849425],[-84.705036,45.849253],[-84.705923,45.848861],[-84.705978,45.848837],[-84.706383,45.848658],[-84.707676,45.848609],[-84.709261,45.848548],[-84.720609,45.848116],[-84.720836,45.848107],[-84.721011,45.847972],[-84.721468,45.84762],[-84.722764,45.846621],[-84.723005,45.845845],[-84.723552,45.84408],[-84.725734,45.837045],[-84.726921,45.836964],[-84.746985,45.835597],[-84.747033,45.835621],[-84.751507,45.837878],[-84.754672,45.839475],[-84.758333,45.841322],[-84.773761,45.849105],[-84.7754,45.849932],[-84.792763,45.858691],[-84.820557,45.868293],[-84.828996,45.871209],[-84.831396,45.872038],[-84.831947,45.872776],[-84.834213,45.87581],[-84.834236,45.875841],[-84.835147,45.87706],[-84.838282,45.881258],[-84.838427,45.881452],[-84.838472,45.881512],[-84.838228,45.883685],[-84.837841,45.887123],[-84.837717,45.888226],[-84.837624,45.889054],[-84.837635,45.889075],[-84.839639,45.893042],[-84.840666,45.895074],[-84.842147,45.898005],[-84.842243,45.898194],[-84.843087,45.898346],[-84.844615,45.89862],[-84.846035,45.898875],[-84.850592,45.899694],[-84.852916,45.900111],[-84.853303,45.900296],[-84.855982,45.901574],[-84.859025,45.903026],[-84.860544,45.903751],[-84.861494,45.904204],[-84.867851,45.907237],[-84.870355,45.908432],[-84.873254,45.909815],[-84.873273,45.909832],[-84.877253,45.91348],[-84.878969,45.915053],[-84.879507,45.915546],[-84.879835,45.915847],[-84.902572,45.923557],[-84.902913,45.923673],[-84.917288,45.930576],[-84.917484,45.93067],[-84.936565,45.955217],[-84.936953,45.955716],[-84.937134,45.955949],[-84.971232,45.984208],[-84.973556,45.986134],[-84.974668,45.986874],[-84.974714,45.986905],[-84.992511,45.998751],[-85.003597,46.00613],[-85.010208,46.009084],[-85.010941,46.009412],[-85.01399,46.010774],[-85.020951,46.012845],[-85.047028,46.020603],[-85.047974,46.020885],[-85.048972,46.021182],[-85.054297,46.022766],[-85.055581,46.023148],[-85.081934,46.027295],[-85.088345,46.028304],[-85.088818,46.028378],[-85.102862,46.032477],[-85.102899,46.032488],[-85.105148,46.033598],[-85.106684,46.034356],[-85.113601,46.037769],[-85.124796,46.043294],[-85.125243,46.043515],[-85.127046,46.044404],[-85.127202,46.044481],[-85.130433,46.046076],[-85.133704,46.047184],[-85.13765,46.048522],[-85.139572,46.049173],[-85.140835,46.049601],[-85.142456,46.049764],[-85.14516,46.050035],[-85.147103,46.05023],[-85.151738,46.050696],[-85.151825,46.050705],[-85.152027,46.050725],[-85.19063,46.047622],[-85.194724,46.045992],[-85.195201,46.045802],[-85.197523,46.044878],[-85.210834,46.053301],[-85.214657,46.055719],[-85.217705,46.057648],[-85.220289,46.059283],[-85.221206,46.059864],[-85.222416,46.060629],[-85.222511,46.060689],[-85.222959,46.060741],[-85.225052,46.060984],[-85.248414,46.063694],[-85.255375,46.064502],[-85.266385,46.065779],[-85.268308,46.066365],[-85.278345,46.069426],[-85.287693,46.072276],[-85.287936,46.072398],[-85.290046,46.073456],[-85.295321,46.076103],[-85.304238,46.080576],[-85.310613,46.083773],[-85.316264,46.086608],[-85.335466,46.092459],[-85.335911,46.092595],[-85.33628,46.092586],[-85.3561,46.092089],[-85.356214,46.092086],[-85.356339,46.092022],[-85.366622,46.086778],[-85.367158,46.086606],[-85.381263,46.082086],[-85.381394,46.082044],[-85.382312,46.083035],[-85.382781,46.08354],[-85.382927,46.083698],[-85.390047,46.091381],[-85.393832,46.095465],[-85.404194,46.098859],[-85.409463,46.100585],[-85.412064,46.101437],[-85.426916,46.101964],[-85.42921,46.101021],[-85.429533,46.100888],[-85.432064,46.099848],[-85.437352,46.097675],[-85.437768,46.097504],[-85.44157,46.095942],[-85.441879,46.095815],[-85.441932,46.095793],[-85.441934,46.095783],[-85.442112,46.094867],[-85.442293,46.093941],[-85.442255,46.093916],[-85.440908,46.093053],[-85.440191,46.092593],[-85.445835,46.086426],[-85.445976,46.086272],[-85.44699,46.085164],[-85.45315,46.087219],[-85.466828,46.091783],[-85.468899,46.092474],[-85.476097,46.094876],[-85.480315,46.096283],[-85.480603,46.096379],[-85.48072,46.096382],[-85.486316,46.096543],[-85.499422,46.09692],[-85.5001,46.09694],[-85.50024,46.096915],[-85.512696,46.094727],[-85.521424,46.091314],[-85.52157,46.091257],[-85.521636,46.091217],[-85.528403,46.087121],[-85.528947,46.086791],[-85.529058,46.086724],[-85.533341,46.084131],[-85.539479,46.080416],[-85.540858,46.079581],[-85.542974,46.077926],[-85.54595,46.075598],[-85.561097,46.063751],[-85.563567,46.06182],[-85.603785,46.030363],[-85.615661,46.01168],[-85.617577,46.008665],[-85.617709,46.008458],[-85.625118,46.002515],[-85.628293,45.999968],[-85.628998,45.999403],[-85.62933,45.999136],[-85.646279,45.985541],[-85.646359,45.985477],[-85.64743,45.984619],[-85.647554,45.984519],[-85.648581,45.983695],[-85.648942,45.983103],[-85.650434,45.980656],[-85.650942,45.979824],[-85.654686,45.973686],[-85.654738,45.973648],[-85.663966,45.967013],[-85.664609,45.96688],[-85.688149,45.962025],[-85.697203,45.960158],[-85.697609,45.960237],[-85.701627,45.961017],[-85.704237,45.961524],[-85.704951,45.961662],[-85.706548,45.961973],[-85.716228,45.963852],[-85.724246,45.965409],[-85.725153,45.965398],[-85.731776,45.965317],[-85.74353,45.965174],[-85.743618,45.965173],[-85.760165,45.968914],[-85.770938,45.971349],[-85.774055,45.972337],[-85.790279,45.97748],[-85.790639,45.977594],[-85.791841,45.977745],[-85.8092,45.979931],[-85.810442,45.980087],[-85.811054,45.980032],[-85.817066,45.979491],[-85.817558,45.979447],[-85.818006,45.979276],[-85.820721,45.978239],[-85.825819,45.976292],[-85.826034,45.976021],[-85.826278,45.975714],[-85.82978,45.9713],[-85.832261,45.968172],[-85.832603,45.967742],[-85.834504,45.967258],[-85.835217,45.967077],[-85.835456,45.967016],[-85.838133,45.966334],[-85.838366,45.966275],[-85.839025,45.966107],[-85.842404,45.965247],[-85.843016,45.965342],[-85.86019,45.968016],[-85.861157,45.968167],[-85.865402,45.968257],[-85.882442,45.96862],[-85.893196,45.967253],[-85.9091,45.959074],[-85.91237,45.956487],[-85.912604,45.956302],[-85.922737,45.948287],[-85.926213,45.938093],[-85.926017,45.932104],[-85.917238,45.927782],[-85.910264,45.922112],[-85.913769,45.919439],[-85.920581,45.920994],[-85.954063,45.936629],[-85.998868,45.950968],[-86.050956,45.962205],[-86.072067,45.965313],[-86.094753,45.966704],[-86.123567,45.964748],[-86.145714,45.957372],[-86.150173,45.954494],[-86.159415,45.953765],[-86.196618,45.963185],[-86.208255,45.962978],[-86.220546,45.958883],[-86.22906,45.94857],[-86.233613,45.945802],[-86.248008,45.944849],[-86.254768,45.94864],[-86.278007,45.942057],[-86.315981,45.915247],[-86.324232,45.90608],[-86.332625,45.851813],[-86.349134,45.83416],[-86.355062,45.805355],[-86.351658,45.798132],[-86.363808,45.790057],[-86.369918,45.789254],[-86.395809,45.78974],[-86.401656,45.795412],[-86.415971,45.793793],[-86.424828,45.789747],[-86.428423,45.785587],[-86.428946,45.782524],[-86.427183,45.77905],[-86.428294,45.77562],[-86.431921,45.767756],[-86.435493,45.764485],[-86.43553,45.764452],[-86.439661,45.760669],[-86.440329,45.760508],[-86.442335,45.760026],[-86.455534,45.75685],[-86.459866,45.758042],[-86.466039,45.759741],[-86.47905,45.757416],[-86.486028,45.746608],[-86.496251,45.749255],[-86.504216,45.75423],[-86.51457,45.752337],[-86.518281,45.747688],[-86.523197,45.736498],[-86.525166,45.720797],[-86.53328,45.710849],[-86.537258,45.708361],[-86.54143,45.70811],[-86.570627,45.716412],[-86.580936,45.71192],[-86.585847,45.704922],[-86.584771,45.682007],[-86.587528,45.666456],[-86.593613,45.665625],[-86.611306,45.669733],[-86.62043,45.667098],[-86.625132,45.663819],[-86.627938,45.659293],[-86.616972,45.620581],[-86.616893,45.606796],[-86.62387,45.613262],[-86.633224,45.618249],[-86.648439,45.615992],[-86.666127,45.621689],[-86.687208,45.634253],[-86.688772,45.639969],[-86.695275,45.648175],[-86.708038,45.649202],[-86.717828,45.668106],[-86.718191,45.67732],[-86.715781,45.683949],[-86.705184,45.690901],[-86.689102,45.687862],[-86.676184,45.691862],[-86.665677,45.702217],[-86.665511,45.70903],[-86.669263,45.71086],[-86.67148,45.72053],[-86.662762,45.728964],[-86.647319,45.732618],[-86.633138,45.747654],[-86.634902,45.763536],[-86.631018,45.782019],[-86.617336,45.783538],[-86.612137,45.779356],[-86.597661,45.775385],[-86.583391,45.778242],[-86.576869,45.788502],[-86.581071,45.791802],[-86.581759,45.794797],[-86.576858,45.801473],[-86.571172,45.805452],[-86.563392,45.804469],[-86.557215,45.808172],[-86.555547,45.813499],[-86.559044,45.822323],[-86.555186,45.831696],[-86.549723,45.836039],[-86.545602,45.836495],[-86.538831,45.840083],[-86.529208,45.853043],[-86.528224,45.856974],[-86.529573,45.874974],[-86.532989,45.882665],[-86.541464,45.890234],[-86.553608,45.896476],[-86.567719,45.9005],[-86.583304,45.898784],[-86.593184,45.88511],[-86.603293,45.876626],[-86.613536,45.875982],[-86.625736,45.868295],[-86.633168,45.860068],[-86.632478,45.843309],[-86.645998,45.833888],[-86.721113,45.845431],[-86.72852,45.848759],[-86.742466,45.864719],[-86.749638,45.867796],[-86.758449,45.867274],[-86.78208,45.860195],[-86.784177,45.854641],[-86.782259,45.82995],[-86.777225,45.827183],[-86.774612,45.821696],[-86.773279,45.811385],[-86.785722,45.794517],[-86.801476,45.780027],[-86.821523,45.770356],[-86.823743,45.765486],[-86.820868,45.760776],[-86.821814,45.757164],[-86.838658,45.741831],[-86.841818,45.729051],[-86.838746,45.722307],[-86.870392,45.710087],[-86.876904,45.711891],[-86.895342,45.711464],[-86.904089,45.709546],[-86.92106,45.697868],[-86.944158,45.695833],[-86.964275,45.672761],[-86.966885,45.675001],[-86.967315,45.684923],[-86.969765,45.691895],[-86.981349,45.696463],[-86.984588,45.705812],[-86.982413,45.719873],[-86.977655,45.728768],[-86.975224,45.75313],[-86.981341,45.76616],[-86.981624,45.792221],[-86.988438,45.810621],[-87.00508,45.831718],[-87.006095,45.832244],[-87.006225,45.832312],[-87.018902,45.838886],[-87.031435,45.837238],[-87.039842,45.834245],[-87.050104,45.823844],[-87.052043,45.821879],[-87.057439,45.812483],[-87.057863,45.80917],[-87.057882,45.809021],[-87.058207,45.806483],[-87.058277,45.80594],[-87.058489,45.804285],[-87.058844,45.80151],[-87.058682,45.796447],[-87.058628,45.794772],[-87.058413,45.788071],[-87.058127,45.779152],[-87.058601,45.778126],[-87.063975,45.76651],[-87.064302,45.758828],[-87.062406,45.753296],[-87.05555,45.751535],[-87.052908,45.747983],[-87.057444,45.736822],[-87.061721,45.732821],[-87.070442,45.718779],[-87.059953,45.708893],[-87.059533,45.708497],[-87.061339,45.708122],[-87.073932,45.705508],[-87.074813,45.705325],[-87.074873,45.705312],[-87.093365,45.701473],[-87.095455,45.701039],[-87.099401,45.698614],[-87.099411,45.698514],[-87.099725,45.695231],[-87.100265,45.694808],[-87.111638,45.685905],[-87.112524,45.685696],[-87.12857,45.681909],[-87.129412,45.68171],[-87.146713,45.673662],[-87.15033,45.67198],[-87.161593,45.666741],[-87.172241,45.661788],[-87.173493,45.66049],[-87.191496,45.641827],[-87.196852,45.636275],[-87.21122,45.616468],[-87.215616,45.610408],[-87.218989,45.60576],[-87.223647,45.599338],[-87.232472,45.59087],[-87.234612,45.588817],[-87.250122,45.569059],[-87.260709,45.555573],[-87.261979,45.553954],[-87.263488,45.552032],[-87.263763,45.551482],[-87.264446,45.550118],[-87.280709,45.517624],[-87.288726,45.501606],[-87.289443,45.50053],[-87.306122,45.475513],[-87.317416,45.466712],[-87.319703,45.464929],[-87.330262,45.451011],[-87.333147,45.447208],[-87.333407,45.446056],[-87.334033,45.443273],[-87.334249,45.442315],[-87.333309,45.437269],[-87.33324,45.436897],[-87.331107,45.433673],[-87.329958,45.431937],[-87.32864,45.431331],[-87.327367,45.430745],[-87.326855,45.43051],[-87.325834,45.43004],[-87.326069,45.429459],[-87.327749,45.425307],[-87.328248,45.424716],[-87.329505,45.423229],[-87.330882,45.421598],[-87.336152,45.41536],[-87.338083,45.41436],[-87.350852,45.407743],[-87.351306,45.407328],[-87.359512,45.399829],[-87.360078,45.398512],[-87.360529,45.397464],[-87.364368,45.388532],[-87.371282,45.383738],[-87.387851,45.372251],[-87.389181,45.371329],[-87.389478,45.371123],[-87.389849,45.370866],[-87.391446,45.369759],[-87.3925,45.369028],[-87.39452,45.363702],[-87.399973,45.349322],[-87.409987,45.33892],[-87.427379,45.320854],[-87.431684,45.316383],[-87.436128,45.307705],[-87.437257,45.3055],[-87.437507,45.30367],[-87.438908,45.293405],[-87.455519,45.280736],[-87.456414,45.280053],[-87.464794,45.273662],[-87.465201,45.273351],[-87.496869,45.240364],[-87.503302,45.233662],[-87.504186,45.232742],[-87.512336,45.224252],[-87.530499,45.208056],[-87.535346,45.203734],[-87.548964,45.191591],[-87.552468,45.189767],[-87.556327,45.187759],[-87.563417,45.18407],[-87.582324,45.169039],[-87.585651,45.166394],[-87.587822,45.163591],[-87.596556,45.152316],[-87.600796,45.146842],[-87.607812,45.134833],[-87.607958,45.134583],[-87.60928,45.13232],[-87.612019,45.123377],[-87.611814,45.122406],[-87.6115,45.120915],[-87.611497,45.120901],[-87.611216,45.119568],[-87.610073,45.114141],[-87.608951,45.112886],[-87.606757,45.110433],[-87.605193,45.108684],[-87.604464,45.107868],[-87.602542,45.105719],[-87.602217,45.105356],[-87.602179,45.105314],[-87.601981,45.105092],[-87.601649,45.104721],[-87.601086,45.104092],[-87.60012,45.103011],[-87.598689,45.102052],[-87.597665,45.101365],[-87.592318,45.097779],[-87.59027,45.096406],[-87.589396,45.09649],[-87.581969,45.097206],[-87.590208,45.095264],[-87.59188,45.094689],[-87.614897,45.100064],[-87.621609,45.102399],[-87.62764,45.103328],[-87.628829,45.104039],[-87.629571,45.105324],[-87.631535,45.106224],[-87.63611,45.105918],[-87.648191,45.106368],[-87.652512,45.108633],[-87.657135,45.107568],[-87.659952,45.107512],[-87.661211,45.108279],[-87.661296,45.112566],[-87.667102,45.118109],[-87.671,45.120069],[-87.672447,45.121294],[-87.678209,45.130084],[-87.678511,45.131204],[-87.676024,45.134089],[-87.675816,45.135059],[-87.683902,45.144135],[-87.688425,45.147433],[-87.692375,45.149505],[-87.695055,45.150522],[-87.700618,45.151188],[-87.703492,45.152206],[-87.707391,45.154679],[-87.708134,45.156004],[-87.711322,45.158946],[-87.717945,45.161156],[-87.723121,45.165141],[-87.724601,45.167452],[-87.727768,45.169596],[-87.730866,45.170913],[-87.735135,45.171538],[-87.736104,45.172244],[-87.736509,45.173389],[-87.73521,45.177642],[-87.741805,45.197051],[-87.741732,45.198201],[-87.739492,45.202126],[-87.736339,45.204653],[-87.72796,45.207956],[-87.726198,45.209391],[-87.726175,45.21264],[-87.727276,45.216129],[-87.726952,45.218949],[-87.722473,45.223309],[-87.721354,45.226847],[-87.721935,45.228444],[-87.72492,45.229977],[-87.725205,45.231539],[-87.724156,45.233236],[-87.718264,45.238333],[-87.717051,45.238743],[-87.713398,45.238564],[-87.712184,45.239014],[-87.711339,45.239965],[-87.71148,45.245224],[-87.709145,45.254649],[-87.707779,45.258343],[-87.709137,45.260341],[-87.703053,45.267041],[-87.69878,45.26942],[-87.698456,45.272072],[-87.699492,45.276659],[-87.698248,45.281512],[-87.693468,45.287675],[-87.690364,45.29027],[-87.687578,45.296283],[-87.687498,45.298055],[-87.679085,45.305841],[-87.675328,45.307907],[-87.667423,45.31636],[-87.665243,45.317115],[-87.663666,45.318257],[-87.6615,45.321386],[-87.662029,45.326434],[-87.661603,45.327608],[-87.65983,45.329144],[-87.655775,45.330847],[-87.648126,45.339396],[-87.647454,45.345232],[-87.647729,45.350721],[-87.648476,45.352243],[-87.650661,45.353798],[-87.653568,45.354204],[-87.656632,45.358617],[-87.655807,45.362706],[-87.656624,45.367295],[-87.657349,45.368752],[-87.673513,45.376946],[-87.674403,45.378065],[-87.67455,45.381649],[-87.675017,45.382454],[-87.682866,45.38495],[-87.685934,45.388711],[-87.690281,45.389822],[-87.693956,45.389893],[-87.699797,45.387927],[-87.704337,45.385462],[-87.706767,45.383827],[-87.708329,45.381218],[-87.718891,45.377462],[-87.733409,45.364432],[-87.737801,45.359635],[-87.738352,45.358243],[-87.750928,45.355037],[-87.751626,45.354169],[-87.751452,45.351755],[-87.754104,45.349442],[-87.762128,45.348401],[-87.769172,45.351195],[-87.771384,45.35121],[-87.773901,45.351226],[-87.783076,45.349725],[-87.787967,45.352612],[-87.790324,45.353444],[-87.800464,45.353608],[-87.810076,45.351269],[-87.823028,45.35265],[-87.823554,45.351637],[-87.824855,45.350713],[-87.826918,45.350538],[-87.829775,45.352005],[-87.832612,45.352249],[-87.835303,45.35098],[-87.836782,45.346451],[-87.838141,45.345101],[-87.848368,45.340676],[-87.850133,45.340435],[-87.851318,45.341346],[-87.851475,45.342335],[-87.849899,45.344651],[-87.850418,45.347492],[-87.852784,45.349497],[-87.858617,45.350378],[-87.860871,45.351192],[-87.863489,45.35302],[-87.864873,45.354767],[-87.865274,45.355969],[-87.865675,45.358213],[-87.867037,45.360137],[-87.86856,45.360537],[-87.870243,45.360617],[-87.871204,45.360056],[-87.871285,45.358614],[-87.871124,45.357011],[-87.871685,45.355729],[-87.873529,45.354286],[-87.879835,45.35149],[-87.881114,45.351278],[-87.88517,45.351736],[-87.886949,45.35311],[-87.888052,45.354697],[-87.887828,45.358122],[-87.884855,45.362792],[-87.876862,45.368535],[-87.871485,45.371546],[-87.871789,45.373557],[-87.875692,45.377052],[-87.875424,45.379373],[-87.873568,45.381357],[-87.870905,45.383116],[-87.864677,45.385232],[-87.859418,45.388227],[-87.85683,45.393106],[-87.859603,45.396409],[-87.859773,45.397278],[-87.859131,45.398967],[-87.850969,45.401925],[-87.849322,45.403872],[-87.849668,45.409518],[-87.850533,45.411685],[-87.85181,45.413103],[-87.856216,45.416101],[-87.860432,45.423504],[-87.860127,45.429584],[-87.86195,45.433072],[-87.861697,45.434473],[-87.855298,45.441379],[-87.847429,45.444177],[-87.844815,45.448411],[-87.836008,45.450877],[-87.833042,45.453596],[-87.832456,45.45502],[-87.82743,45.458076],[-87.821057,45.459955],[-87.812976,45.464159],[-87.812971,45.4661],[-87.811469,45.467991],[-87.805773,45.473139],[-87.805873,45.47438],[-87.807388,45.477031],[-87.806891,45.479092],[-87.79896,45.485147],[-87.798362,45.486564],[-87.797824,45.491468],[-87.796409,45.494679],[-87.793447,45.498372],[-87.792769,45.499967],[-87.793215,45.505028],[-87.798794,45.506287],[-87.802267,45.514233],[-87.804203,45.524676],[-87.80472,45.531244],[-87.804528,45.534373],[-87.803364,45.537016],[-87.80339,45.538272],[-87.807159,45.543523],[-87.813737,45.548616],[-87.818791,45.5521],[-87.827215,45.55562],[-87.832296,45.558767],[-87.832968,45.559461],[-87.833591,45.562529],[-87.831689,45.568035],[-87.829346,45.568776],[-87.813745,45.565175],[-87.806104,45.562863],[-87.797536,45.562124],[-87.792372,45.563055],[-87.790874,45.564096],[-87.788798,45.565947],[-87.788326,45.567941],[-87.787292,45.574906],[-87.787534,45.581376],[-87.786767,45.58283],[-87.785647,45.58396],[-87.781255,45.585682],[-87.777199,45.588499],[-87.776238,45.597797],[-87.777671,45.609204],[-87.780845,45.614599],[-87.792016,45.616756],[-87.79588,45.618846],[-87.796179,45.622074],[-87.796983,45.623613],[-87.804481,45.628933],[-87.810194,45.638732],[-87.817277,45.643926],[-87.821818,45.645589],[-87.824102,45.647138],[-87.824676,45.653211],[-87.822693,45.656077],[-87.822425,45.658012],[-87.823672,45.659817],[-87.823868,45.66192],[-87.823164,45.662732],[-87.80329,45.666494],[-87.798903,45.67014],[-87.795355,45.671334],[-87.781623,45.67328],[-87.781007,45.673934],[-87.780737,45.675458],[-87.780808,45.680349],[-87.782226,45.683053],[-87.787727,45.68718],[-87.80188,45.693862],[-87.804993,45.695796],[-87.809075,45.699717],[-87.809181,45.700337],[-87.805076,45.703556],[-87.805081,45.704974],[-87.805867,45.706841],[-87.810144,45.71023],[-87.812338,45.711303],[-87.831442,45.714938],[-87.837343,45.716919],[-87.846817,45.722155],[-87.85548,45.726943],[-87.86432,45.737139],[-87.863874,45.74266],[-87.86305,45.74309],[-87.864141,45.745697],[-87.868111,45.749477],[-87.873339,45.750439],[-87.875813,45.753888],[-87.879812,45.754843],[-87.882261,45.754779],[-87.891905,45.754055],[-87.896032,45.752285],[-87.898363,45.752503],[-87.900005,45.753497],[-87.901299,45.756553],[-87.902707,45.757932],[-87.904657,45.759163],[-87.905873,45.759364],[-87.907771,45.75928],[-87.908933,45.758297],[-87.921999,45.756989],[-87.926611,45.75959],[-87.92913,45.760364],[-87.934585,45.758094],[-87.944113,45.757422],[-87.954459,45.758414],[-87.959277,45.757367],[-87.963452,45.75822],[-87.964725,45.759461],[-87.963996,45.760794],[-87.96697,45.764021],[-87.972451,45.766319],[-87.976835,45.767015],[-87.986429,45.769596],[-87.989656,45.772025],[-87.989829,45.772945],[-87.985597,45.774926],[-87.983392,45.774696],[-87.981789,45.775081],[-87.98087,45.776977],[-87.982617,45.782944],[-87.987942,45.793075],[-87.989831,45.794827],[-87.991447,45.795393],[-87.995876,45.795435],[-88.001593,45.794091],[-88.007043,45.792192],[-88.017588,45.792455],[-88.0236,45.790094],[-88.027228,45.78919],[-88.031124,45.789233],[-88.033568,45.789816],[-88.039729,45.789626],[-88.040221,45.789236],[-88.040892,45.786452],[-88.044697,45.783718],[-88.048514,45.782549],[-88.050634,45.780972],[-88.058256,45.780719],[-88.072091,45.780261],[-88.076375,45.781606],[-88.078361,45.784249],[-88.079764,45.78495],[-88.08859,45.784697],[-88.094047,45.785658],[-88.099616,45.790186],[-88.103247,45.791361],[-88.106351,45.797573],[-88.105518,45.798839],[-88.105355,45.800104],[-88.107506,45.802668],[-88.109506,45.803584],[-88.116024,45.804079],[-88.129461,45.809288],[-88.131834,45.811312],[-88.13611,45.819029],[-88.135067,45.821694],[-88.13364,45.823128],[-88.127808,45.827173],[-88.122947,45.829565],[-88.120723,45.832995],[-88.114267,45.837891],[-88.111726,45.839196],[-88.109089,45.839492],[-88.106622,45.841072],[-88.098326,45.850142],[-88.088825,45.85586],[-88.087419,45.857459],[-88.084985,45.862443],[-88.08259,45.864944],[-88.081641,45.865087],[-88.077534,45.863825],[-88.075146,45.864832],[-88.073134,45.871952],[-88.073944,45.875593],[-88.081781,45.880516],[-88.083965,45.881186],[-88.095841,45.880042],[-88.100218,45.881205],[-88.101814,45.883504],[-88.105447,45.896593],[-88.105981,45.897091],[-88.106136,45.900811],[-88.105677,45.904387],[-88.104576,45.906847],[-88.101973,45.91055],[-88.099172,45.912362],[-88.095354,45.913895],[-88.095409,45.915175],[-88.096496,45.917273],[-88.102908,45.921869],[-88.104686,45.922121],[-88.115346,45.922211],[-88.116846,45.921703]]]]}}]} diff --git a/Where/RegionKit/Sources/Resources/regions/us-MN.geojson b/Where/RegionKit/Sources/Resources/regions/us-MN.geojson new file mode 100644 index 00000000..f26f1695 --- /dev/null +++ b/Where/RegionKit/Sources/Resources/regions/us-MN.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"region":"us-MN","name":"Minnesota"},"geometry":{"type":"Polygon","coordinates":[[[-92.204691,46.704041],[-92.205692,46.702541],[-92.205192,46.698341],[-92.198491,46.696141],[-92.183091,46.695241],[-92.177891,46.691841],[-92.176491,46.690241],[-92.176091,46.686341],[-92.177591,46.683441],[-92.181391,46.680241],[-92.187592,46.678941],[-92.192492,46.676741],[-92.199492,46.670241],[-92.204092,46.666941],[-92.205492,46.664741],[-92.202266,46.659072],[-92.202192,46.658941],[-92.201592,46.656641],[-92.202292,46.655041],[-92.207092,46.651941],[-92.212392,46.649941],[-92.216392,46.649841],[-92.223492,46.652641],[-92.228492,46.652941],[-92.235592,46.650041],[-92.242493,46.649241],[-92.256592,46.658741],[-92.259692,46.657141],[-92.265993,46.651041],[-92.270592,46.650741],[-92.272792,46.652841],[-92.274392,46.657441],[-92.278492,46.658641],[-92.283692,46.658841],[-92.286192,46.660342],[-92.287092,46.662842],[-92.287392,46.667342],[-92.291292,46.668142],[-92.292192,46.666042],[-92.292192,46.663308],[-92.292192,46.663242],[-92.291597,46.624941],[-92.291647,46.604649],[-92.291976,46.503997],[-92.292371,46.495585],[-92.29251,46.478761],[-92.292727,46.431993],[-92.292847,46.420876],[-92.29286,46.41722],[-92.292999,46.321894],[-92.292782,46.319312],[-92.292803,46.314628],[-92.29288,46.313752],[-92.292839,46.307107],[-92.29284,46.304319],[-92.293007,46.297987],[-92.293074,46.295129],[-92.293619,46.244043],[-92.293558,46.224578],[-92.293857,46.180073],[-92.293744,46.166838],[-92.293706,46.157321],[-92.29353,46.113824],[-92.294069,46.078346],[-92.294033,46.074377],[-92.298638,46.072989],[-92.306756,46.07241],[-92.319329,46.069289],[-92.327868,46.06618],[-92.329806,46.065216],[-92.332912,46.062697],[-92.335335,46.059422],[-92.338239,46.052149],[-92.33859,46.050111],[-92.341278,46.045424],[-92.343459,46.04299],[-92.343604,46.040917],[-92.342429,46.034541],[-92.343745,46.028525],[-92.344244,46.02743],[-92.346345,46.025429],[-92.349281,46.023624],[-92.350004,46.021888],[-92.350319,46.01898],[-92.349977,46.016982],[-92.35176,46.015685],[-92.357965,46.013413],[-92.362141,46.013103],[-92.372717,46.014198],[-92.381707,46.017034],[-92.392681,46.01954],[-92.408259,46.02663],[-92.410649,46.027259],[-92.420696,46.026769],[-92.428555,46.024241],[-92.435627,46.021232],[-92.442259,46.016177],[-92.444356,46.011777],[-92.444294,46.009161],[-92.44963,46.002252],[-92.451627,46.000441],[-92.452952,45.997782],[-92.453635,45.996171],[-92.453373,45.992913],[-92.456494,45.990243],[-92.462477,45.98785],[-92.464512,45.985038],[-92.464173,45.982423],[-92.463429,45.981507],[-92.461138,45.980216],[-92.46126,45.979427],[-92.464481,45.976267],[-92.469354,45.973811],[-92.472761,45.972952],[-92.479478,45.973992],[-92.484633,45.975872],[-92.490996,45.97556],[-92.502535,45.979995],[-92.519488,45.983917],[-92.522032,45.984203],[-92.527052,45.983245],[-92.530516,45.981918],[-92.537709,45.977818],[-92.545682,45.970118],[-92.548459,45.969056],[-92.549806,45.967986],[-92.550672,45.960759],[-92.549858,45.957039],[-92.551186,45.95224],[-92.551933,45.951651],[-92.561256,45.951006],[-92.569764,45.948146],[-92.574892,45.948103],[-92.580565,45.94625],[-92.590138,45.941773],[-92.60246,45.940815],[-92.608329,45.938112],[-92.614314,45.934529],[-92.62272,45.935186],[-92.627723,45.932682],[-92.62926,45.932404],[-92.636316,45.934634],[-92.638824,45.934166],[-92.639936,45.933541],[-92.640115,45.932478],[-92.638474,45.925971],[-92.639116,45.924555],[-92.656125,45.924442],[-92.659549,45.922937],[-92.670352,45.916247],[-92.676167,45.912072],[-92.676807,45.91093],[-92.675737,45.907478],[-92.676607,45.90637],[-92.683924,45.903939],[-92.698983,45.896451],[-92.703265,45.896155],[-92.707702,45.894901],[-92.712503,45.891705],[-92.721128,45.883805],[-92.734039,45.868108],[-92.736484,45.863356],[-92.736117,45.859129],[-92.739278,45.84758],[-92.739991,45.846283],[-92.745557,45.841455],[-92.74918,45.840717],[-92.759458,45.835341],[-92.761712,45.833861],[-92.765146,45.830183],[-92.765681,45.827252],[-92.764906,45.824859],[-92.761889,45.817928],[-92.760023,45.815475],[-92.757947,45.811216],[-92.757815,45.806574],[-92.75901,45.803965],[-92.761833,45.801258],[-92.76843,45.79801],[-92.772065,45.79523],[-92.776496,45.790014],[-92.779617,45.782563],[-92.781373,45.773062],[-92.784621,45.764196],[-92.798645,45.753654],[-92.80263,45.751888],[-92.803971,45.749805],[-92.805348,45.747493],[-92.809837,45.744172],[-92.812939,45.742709],[-92.816559,45.742037],[-92.826013,45.73665],[-92.828981,45.733714],[-92.830685,45.73312],[-92.835917,45.732802],[-92.841051,45.730024],[-92.843079,45.729163],[-92.848851,45.728751],[-92.850388,45.727576],[-92.850537,45.724376],[-92.850933,45.723831],[-92.853405,45.723152],[-92.862598,45.722241],[-92.865688,45.720623],[-92.869193,45.717568],[-92.869689,45.715142],[-92.868862,45.711993],[-92.871775,45.699774],[-92.870025,45.697272],[-92.870145,45.696757],[-92.875488,45.689014],[-92.876891,45.675289],[-92.878932,45.665606],[-92.882504,45.659471],[-92.883987,45.65487],[-92.885711,45.646017],[-92.887067,45.644148],[-92.887929,45.639006],[-92.886963,45.636777],[-92.886827,45.633403],[-92.888114,45.628377],[-92.888035,45.624959],[-92.886669,45.61976],[-92.88297,45.613738],[-92.882529,45.610216],[-92.8849,45.605001],[-92.886442,45.598679],[-92.886421,45.594881],[-92.883277,45.589831],[-92.884954,45.578818],[-92.883749,45.575483],[-92.881136,45.573409],[-92.871082,45.567581],[-92.846447,45.566515],[-92.843783,45.566135],[-92.834156,45.563096],[-92.823309,45.560934],[-92.812083,45.561122],[-92.801503,45.562854],[-92.790143,45.566915],[-92.785741,45.567888],[-92.775988,45.568478],[-92.773412,45.568235],[-92.770223,45.566939],[-92.764574,45.563592],[-92.756906,45.557499],[-92.745591,45.553016],[-92.726082,45.541112],[-92.724762,45.538617],[-92.72465,45.536744],[-92.728023,45.525652],[-92.727744,45.518811],[-92.726677,45.514462],[-92.724337,45.512223],[-92.715814,45.506676],[-92.71189,45.503281],[-92.702224,45.493046],[-92.695212,45.482882],[-92.691619,45.476273],[-92.686793,45.472271],[-92.680234,45.464344],[-92.677219,45.462864],[-92.661131,45.458278],[-92.653549,45.455346],[-92.652698,45.454527],[-92.646602,45.441635],[-92.646768,45.437929],[-92.649152,45.429618],[-92.650269,45.419168],[-92.649467,45.416408],[-92.646943,45.414265],[-92.646676,45.413227],[-92.648157,45.407423],[-92.65057,45.403308],[-92.650422,45.398507],[-92.658486,45.396058],[-92.664102,45.393309],[-92.669505,45.389111],[-92.676961,45.380137],[-92.678756,45.376201],[-92.678223,45.373604],[-92.679193,45.37271],[-92.696499,45.363529],[-92.70272,45.358472],[-92.703705,45.35633],[-92.704054,45.35366],[-92.699524,45.342421],[-92.69892,45.339364],[-92.698967,45.336374],[-92.699956,45.333716],[-92.704794,45.326526],[-92.709968,45.321302],[-92.727737,45.309288],[-92.732594,45.304224],[-92.737122,45.300459],[-92.745575,45.295844],[-92.750819,45.29298],[-92.75871,45.290965],[-92.761013,45.289028],[-92.761868,45.287013],[-92.761868,45.284938],[-92.760615,45.278827],[-92.758022,45.274822],[-92.752666,45.269565],[-92.751659,45.26591],[-92.751709,45.261666],[-92.755199,45.256733],[-92.758907,45.253407],[-92.760249,45.2496],[-92.757503,45.238308],[-92.757456,45.230526],[-92.755732,45.225949],[-92.753931,45.222905],[-92.752192,45.221051],[-92.751708,45.218666],[-92.754008,45.212766],[-92.758008,45.209566],[-92.762108,45.207166],[-92.763908,45.204866],[-92.766932,45.195111],[-92.767408,45.190166],[-92.766808,45.185466],[-92.764872,45.182812],[-92.752404,45.173916],[-92.752542,45.171772],[-92.756907,45.165166],[-92.757775,45.160519],[-92.757707,45.155466],[-92.756807,45.151866],[-92.749427,45.138117],[-92.745694,45.123112],[-92.742925,45.119918],[-92.740611,45.118454],[-92.739528,45.116515],[-92.739584,45.115598],[-92.740509,45.113396],[-92.744938,45.108309],[-92.746749,45.107051],[-92.754387,45.103146],[-92.765602,45.09573],[-92.77401,45.089138],[-92.791528,45.079647],[-92.800851,45.069477],[-92.802163,45.067555],[-92.802911,45.065403],[-92.803079,45.060978],[-92.802056,45.057423],[-92.797081,45.050648],[-92.793282,45.047178],[-92.78791,45.043516],[-92.778815,45.039327],[-92.770362,45.033803],[-92.764604,45.028767],[-92.76206,45.02432],[-92.761904,45.022467],[-92.762533,45.020551],[-92.768118,45.009115],[-92.771231,45.001378],[-92.770834,44.994131],[-92.769049,44.988195],[-92.770346,44.983327],[-92.770304,44.978967],[-92.769445,44.97215],[-92.768545,44.969839],[-92.767218,44.968084],[-92.760701,44.964979],[-92.754603,44.955767],[-92.750802,44.941567],[-92.750645,44.937299],[-92.757557,44.911214],[-92.758701,44.908979],[-92.759556,44.907857],[-92.761341,44.906904],[-92.773103,44.901367],[-92.774022,44.900083],[-92.774571,44.898084],[-92.774907,44.892797],[-92.773946,44.889997],[-92.769603,44.882967],[-92.764133,44.875905],[-92.763402,44.874167],[-92.763706,44.872129],[-92.767102,44.866767],[-92.769102,44.862167],[-92.769093,44.862029],[-92.76909,44.861997],[-92.768574,44.854368],[-92.765278,44.84107],[-92.765278,44.837186],[-92.766102,44.834966],[-92.769367,44.8318],[-92.772266,44.828046],[-92.772663,44.826337],[-92.771902,44.823067],[-92.772663,44.821424],[-92.78043,44.812589],[-92.781498,44.809408],[-92.782963,44.798131],[-92.785206,44.792303],[-92.788776,44.787794],[-92.796039,44.782056],[-92.800313,44.777379],[-92.805287,44.768361],[-92.807362,44.758909],[-92.807988,44.75147],[-92.807317,44.750364],[-92.804035,44.748433],[-92.802875,44.746847],[-92.802579,44.745797],[-92.802402,44.745167],[-92.787906,44.737432],[-92.766054,44.729604],[-92.75699,44.723829],[-92.7542,44.722767],[-92.7502,44.72212],[-92.737259,44.717155],[-92.732042,44.713671],[-92.713198,44.701085],[-92.700948,44.693751],[-92.696491,44.689436],[-92.686511,44.682096],[-92.664699,44.66338],[-92.660988,44.660884],[-92.655807,44.65804],[-92.632105,44.649027],[-92.621733,44.638983],[-92.619779,44.634195],[-92.619774,44.629214],[-92.622571,44.623518],[-92.623348,44.620713],[-92.623163,44.618224],[-92.621456,44.615017],[-92.618025,44.61287],[-92.614569,44.61173],[-92.607141,44.612433],[-92.601516,44.612052],[-92.590467,44.605936],[-92.588797,44.601698],[-92.586216,44.600088],[-92.584711,44.599861],[-92.581591,44.600863],[-92.57885,44.603939],[-92.577148,44.605054],[-92.572943,44.604649],[-92.569434,44.603539],[-92.567226,44.60177],[-92.560796,44.594956],[-92.549777,44.58113],[-92.54928,44.577704],[-92.549685,44.576],[-92.551182,44.573449],[-92.55151,44.571607],[-92.549957,44.568988],[-92.54806,44.567792],[-92.544346,44.566986],[-92.540551,44.567258],[-92.527337,44.573554],[-92.520878,44.5752],[-92.518358,44.575183],[-92.512564,44.571801],[-92.508759,44.570325],[-92.493808,44.566063],[-92.490472,44.566205],[-92.48474,44.568067],[-92.481001,44.568276],[-92.470209,44.565036],[-92.455105,44.561886],[-92.440745,44.562833],[-92.433256,44.5655],[-92.431101,44.565786],[-92.425774,44.564602],[-92.420702,44.562041],[-92.415089,44.560359],[-92.399281,44.558292],[-92.38904,44.557697],[-92.368298,44.559182],[-92.361518,44.558935],[-92.347567,44.557149],[-92.336114,44.554004],[-92.329013,44.550895],[-92.319938,44.54494],[-92.317357,44.542512],[-92.316228,44.540966],[-92.314071,44.538014],[-92.310827,44.528756],[-92.307957,44.524475],[-92.303527,44.519822],[-92.303046,44.518646],[-92.302466,44.516487],[-92.302961,44.503601],[-92.302215,44.500298],[-92.297122,44.492732],[-92.291005,44.485464],[-92.282364,44.477707],[-92.276784,44.473649],[-92.262476,44.465149],[-92.249071,44.459524],[-92.244884,44.456842],[-92.24201,44.454254],[-92.237325,44.449417],[-92.232472,44.445434],[-92.221083,44.440386],[-92.215163,44.438503],[-92.195378,44.433792],[-92.17028,44.428598],[-92.162454,44.427208],[-92.139569,44.424673],[-92.124513,44.422115],[-92.121106,44.420572],[-92.115296,44.416056],[-92.111085,44.413948],[-92.097415,44.411464],[-92.087241,44.408848],[-92.08364,44.407189],[-92.078605,44.404869],[-92.072267,44.404017],[-92.061637,44.404124],[-92.056486,44.402729],[-92.053549,44.401375],[-92.046285,44.394398],[-92.038147,44.388731],[-92.019313,44.381217],[-92.008589,44.379626],[-92.006179,44.378825],[-92.002838,44.377118],[-92.000165,44.374966],[-91.993984,44.3718],[-91.987289,44.369119],[-91.983974,44.368448],[-91.978574,44.368372],[-91.974922,44.367516],[-91.970266,44.365842],[-91.9636,44.362112],[-91.959523,44.359404],[-91.95282,44.352982],[-91.949599,44.348796],[-91.941311,44.340978],[-91.928224,44.335473],[-91.92559,44.333548],[-91.918625,44.322671],[-91.916191,44.318094],[-91.913534,44.311392],[-91.913574,44.310392],[-91.91436,44.30823],[-91.921028,44.301069],[-91.924102,44.297095],[-91.924975,44.294819],[-91.924613,44.291815],[-91.922205,44.287811],[-91.920282,44.286496],[-91.905789,44.281614],[-91.898697,44.277172],[-91.896388,44.27469],[-91.895652,44.273008],[-91.89676,44.265447],[-91.896008,44.262871],[-91.889132,44.25606],[-91.887824,44.254171],[-91.88704,44.251772],[-91.887905,44.246398],[-91.892963,44.235149],[-91.892698,44.231105],[-91.88979,44.226286],[-91.880265,44.216555],[-91.877429,44.212921],[-91.876356,44.209575],[-91.876056,44.202728],[-91.875158,44.200575],[-91.872369,44.199167],[-91.864387,44.196574],[-91.858393,44.193003],[-91.844754,44.184878],[-91.832479,44.180308],[-91.829167,44.17835],[-91.817302,44.164235],[-91.808064,44.159262],[-91.796669,44.154335],[-91.774486,44.147539],[-91.768574,44.143508],[-91.756719,44.136804],[-91.751747,44.134786],[-91.730648,44.1329],[-91.721552,44.130342],[-91.719097,44.128853],[-91.710597,44.12048],[-91.709476,44.117565],[-91.708082,44.110929],[-91.708207,44.105186],[-91.707491,44.103906],[-91.69531,44.09857],[-91.691281,44.097858],[-91.685748,44.098419],[-91.68153,44.0974],[-91.667006,44.086964],[-91.665263,44.085041],[-91.663442,44.08091],[-91.659511,44.074203],[-91.657,44.071409],[-91.652247,44.068634],[-91.647873,44.064109],[-91.644717,44.062782],[-91.6434,44.062711],[-91.640535,44.063679],[-91.638115,44.063285],[-91.633365,44.060364],[-91.6279,44.055807],[-91.623784,44.054106],[-91.615375,44.051598],[-91.610487,44.04931],[-91.607339,44.047357],[-91.60355,44.043681],[-91.597617,44.034965],[-91.59207,44.031372],[-91.582604,44.027381],[-91.580019,44.026925],[-91.573283,44.026901],[-91.559004,44.025315],[-91.547028,44.022226],[-91.533778,44.021433],[-91.524315,44.021433],[-91.507121,44.01898],[-91.502163,44.016856],[-91.494988,44.012536],[-91.48087,44.008145],[-91.478498,44.00803],[-91.468472,44.00948],[-91.463515,44.009041],[-91.457378,44.006301],[-91.440536,44.001501],[-91.43738,43.999962],[-91.432522,43.996827],[-91.429878,43.993888],[-91.42672,43.9885],[-91.425681,43.985113],[-91.425188,43.984322],[-91.424134,43.982631],[-91.412491,43.973411],[-91.410555,43.970892],[-91.407395,43.965148],[-91.406011,43.963929],[-91.395086,43.959409],[-91.385785,43.954239],[-91.375142,43.944289],[-91.366642,43.937463],[-91.364736,43.934884],[-91.363242,43.926563],[-91.357426,43.917231],[-91.356741,43.916564],[-91.351688,43.914545],[-91.347741,43.911964],[-91.346271,43.910074],[-91.342335,43.902697],[-91.338141,43.897664],[-91.328143,43.893435],[-91.320605,43.888491],[-91.31531,43.881808],[-91.313037,43.875757],[-91.310991,43.867381],[-91.301302,43.859515],[-91.298815,43.856555],[-91.296739,43.855165],[-91.291002,43.852733],[-91.284138,43.847065],[-91.281968,43.842738],[-91.277695,43.837741],[-91.275737,43.824866],[-91.273037,43.818566],[-91.272037,43.813766],[-91.267436,43.804166],[-91.264436,43.800366],[-91.262436,43.792166],[-91.244135,43.774667],[-91.243955,43.773046],[-91.255431,43.744876],[-91.254903,43.733533],[-91.255932,43.729849],[-91.257773,43.725661],[-91.258756,43.723426],[-91.261316,43.71949],[-91.266538,43.713947],[-91.268455,43.709824],[-91.267792,43.695652],[-91.272741,43.676609],[-91.273252,43.666623],[-91.271749,43.654929],[-91.270767,43.65308],[-91.265051,43.649141],[-91.263856,43.647662],[-91.262397,43.64176],[-91.263178,43.638203],[-91.268457,43.627352],[-91.268748,43.615348],[-91.265091,43.609977],[-91.261631,43.606175],[-91.258267,43.603484],[-91.252926,43.600363],[-91.239109,43.58976],[-91.234499,43.585529],[-91.232707,43.583533],[-91.231865,43.581822],[-91.23149,43.575595],[-91.232812,43.564842],[-91.234432,43.561781],[-91.240649,43.554995],[-91.243214,43.550722],[-91.24382,43.54913],[-91.244093,43.54562],[-91.243183,43.540309],[-91.236725,43.53293],[-91.232941,43.523967],[-91.230027,43.521595],[-91.222613,43.517892],[-91.218292,43.514434],[-91.217353,43.512474],[-91.217876,43.508104],[-91.217706,43.50055],[-91.246715,43.500488],[-91.261781,43.500993],[-91.369325,43.500827],[-91.371608,43.500945],[-91.37695,43.500482],[-91.397319,43.500887],[-91.441786,43.500438],[-91.445932,43.500588],[-91.461403,43.500642],[-91.465063,43.500608],[-91.491042,43.50069],[-91.533806,43.50056],[-91.54122,43.500515],[-91.551021,43.500539],[-91.591073,43.500536],[-91.610832,43.50053],[-91.610895,43.50053],[-91.615293,43.50055],[-91.616895,43.500663],[-91.617407,43.500687],[-91.620785,43.500677],[-91.625611,43.500727],[-91.634244,43.500479],[-91.634495,43.500439],[-91.635626,43.500463],[-91.639772,43.500573],[-91.644924,43.500529],[-91.651396,43.500454],[-91.658401,43.500533],[-91.670872,43.500513],[-91.700749,43.500581],[-91.730217,43.50068],[-91.730359,43.50068],[-91.73333,43.500623],[-91.736558,43.500561],[-91.738446,43.500525],[-91.761414,43.500637],[-91.777688,43.500711],[-91.77929,43.500803],[-91.804925,43.500716],[-91.807156,43.500648],[-91.824848,43.500684],[-91.941837,43.500554],[-91.949879,43.500485],[-92.079802,43.500647],[-92.079954,43.500647],[-92.08997,43.500684],[-92.103886,43.500735],[-92.178863,43.500713],[-92.198788,43.500527],[-92.277425,43.500466],[-92.279084,43.500436],[-92.368908,43.500454],[-92.388298,43.500483],[-92.40613,43.500476],[-92.408832,43.500614],[-92.448948,43.50042],[-92.464505,43.500345],[-92.553128,43.5003],[-92.553161,43.5003],[-92.649194,43.500049],[-92.653318,43.50005],[-92.67258,43.500055],[-92.689033,43.500062],[-92.692786,43.500063],[-92.707312,43.500069],[-92.752088,43.500084],[-92.790317,43.499567],[-92.870277,43.499548],[-93.007871,43.499604],[-93.024348,43.499572],[-93.024429,43.499572],[-93.049192,43.499571],[-93.228861,43.499567],[-93.2718,43.499356],[-93.399035,43.499485],[-93.428509,43.499478],[-93.468563,43.499473],[-93.472804,43.4994],[-93.482009,43.499482],[-93.488261,43.499417],[-93.49735,43.499456],[-93.497405,43.499456],[-93.528482,43.499471],[-93.532178,43.499472],[-93.558631,43.499521],[-93.576728,43.49952],[-93.617131,43.499548],[-93.648533,43.499559],[-93.699345,43.499576],[-93.704916,43.499568],[-93.708771,43.499564],[-93.716217,43.499563],[-93.794285,43.499542],[-93.795793,43.49952],[-93.97076,43.499605],[-93.970762,43.499605],[-94.092894,43.500302],[-94.094339,43.500302],[-94.108068,43.5003],[-94.10988,43.500283],[-94.247965,43.500333],[-94.377466,43.500379],[-94.390597,43.500469],[-94.442835,43.500583],[-94.442848,43.500583],[-94.447048,43.500639],[-94.47042,43.50034],[-94.560838,43.500377],[-94.565665,43.50033],[-94.615916,43.500544],[-94.854555,43.500614],[-94.857867,43.500615],[-94.860192,43.500546],[-94.872725,43.500564],[-94.874235,43.500557],[-94.887291,43.500502],[-94.914523,43.50045],[-94.914634,43.50045],[-94.914905,43.50045],[-94.914955,43.50045],[-94.934625,43.50049],[-94.954477,43.500467],[-94.974359,43.500508],[-94.99446,43.500523],[-95.014245,43.500872],[-95.034,43.500811],[-95.053504,43.500769],[-95.054289,43.50086],[-95.114874,43.500667],[-95.122633,43.500755],[-95.154936,43.500449],[-95.167294,43.500771],[-95.167891,43.500885],[-95.180423,43.500774],[-95.214938,43.500885],[-95.244844,43.501196],[-95.250762,43.500406],[-95.250969,43.500464],[-95.374737,43.500314],[-95.375269,43.500322],[-95.387787,43.50024],[-95.387812,43.50024],[-95.387851,43.50024],[-95.434199,43.500314],[-95.434293,43.50036],[-95.454433,43.500644],[-95.454706,43.500648],[-95.454706,43.500563],[-95.475065,43.500335],[-95.486737,43.500274],[-95.486803,43.500246],[-95.514774,43.499865],[-95.740813,43.499894],[-95.741569,43.499891],[-95.821277,43.499965],[-95.834421,43.499966],[-95.860946,43.499966],[-95.861152,43.499966],[-96.053163,43.500176],[-96.198484,43.500335],[-96.198766,43.500312],[-96.208814,43.500391],[-96.332062,43.500415],[-96.351059,43.500333],[-96.453049,43.500415],[-96.453352,43.58704],[-96.453383,43.588183],[-96.453356,43.607544],[-96.453387,43.609944],[-96.453408,43.675008],[-96.45338,43.689637],[-96.453281,43.791435],[-96.453088,43.805123],[-96.453264,43.849501],[-96.453264,43.849506],[-96.453264,43.849604],[-96.453335,43.877029],[-96.453304,43.878583],[-96.453183,43.87865],[-96.453352,43.949122],[-96.453289,43.950814],[-96.453165,43.96654],[-96.453292,43.96718],[-96.453389,43.97806],[-96.453263,43.980277],[-96.453328,43.992871],[-96.453297,43.994723],[-96.453116,44.006876],[-96.453053,44.008887],[-96.453373,44.023744],[-96.453405,44.025413],[-96.453313,44.03643],[-96.453187,44.03835],[-96.452774,44.19678],[-96.452774,44.196895],[-96.452673,44.254588],[-96.452419,44.255274],[-96.452369,44.268967],[-96.452365,44.271972],[-96.452617,44.282702],[-96.4525,44.285687],[-96.452334,44.297009],[-96.452239,44.298655],[-96.452369,44.312071],[-96.452248,44.313362],[-96.452372,44.325991],[-96.452309,44.328094],[-96.452248,44.340642],[-96.452152,44.342219],[-96.452305,44.345332],[-96.452282,44.354857],[-96.452213,44.360149],[-96.452134,44.383679],[-96.452073,44.38969],[-96.451924,44.441549],[-96.451816,44.460402],[-96.452218,44.470873],[-96.452122,44.473043],[-96.451974,44.506849],[-96.45201,44.516929],[-96.452236,44.526871],[-96.452016,44.543533],[-96.45199,44.543639],[-96.451888,44.544058],[-96.45172,44.630708],[-96.451761,44.631194],[-96.451761,44.63135],[-96.451543,44.703135],[-96.451232,44.718375],[-96.451573,44.76051],[-96.45138,44.761788],[-96.45162,44.776191],[-96.451823,44.790471],[-96.451888,44.792299],[-96.451829,44.797691],[-96.451559,44.805468],[-96.45156,44.805569],[-96.452009,44.89008],[-96.451853,44.906672],[-96.452047,44.910695],[-96.452347,44.962734],[-96.452092,44.977475],[-96.452092,44.977494],[-96.45224,45.042347],[-96.452177,45.050185],[-96.45221,45.051602],[-96.452219,45.093836],[-96.452026,45.095138],[-96.452418,45.122677],[-96.452353,45.124071],[-96.452304,45.178563],[-96.452162,45.203109],[-96.452152,45.204849],[-96.452315,45.208986],[-96.452948,45.268925],[-96.452949,45.269059],[-96.452791,45.28428],[-96.453067,45.298115],[-96.454094,45.301546],[-96.456941,45.303652],[-96.457781,45.30761],[-96.46191,45.313884],[-96.466644,45.317162],[-96.468027,45.318619],[-96.468756,45.320564],[-96.469246,45.324941],[-96.470387,45.326605],[-96.479323,45.339644],[-96.482556,45.346273],[-96.489065,45.357071],[-96.502006,45.365473],[-96.508132,45.367832],[-96.521787,45.375645],[-96.530944,45.378495],[-96.539722,45.380338],[-96.545973,45.38105],[-96.562142,45.38609],[-96.571364,45.389871],[-96.578879,45.392295],[-96.584764,45.395705],[-96.60118,45.403181],[-96.617726,45.408092],[-96.631204,45.409238],[-96.640624,45.409227],[-96.647888,45.410126],[-96.662258,45.409011],[-96.670301,45.410545],[-96.675447,45.410216],[-96.680454,45.410499],[-96.683753,45.411556],[-96.692541,45.417338],[-96.702006,45.426247],[-96.710786,45.43693],[-96.72425,45.451482],[-96.731396,45.45702],[-96.732739,45.458737],[-96.736837,45.466775],[-96.738446,45.473499],[-96.742509,45.478723],[-96.743486,45.480649],[-96.743683,45.484439],[-96.745487,45.488712],[-96.752865,45.502163],[-96.760591,45.514895],[-96.76528,45.521414],[-96.781036,45.535972],[-96.784863,45.5413],[-96.79384,45.550724],[-96.799102,45.554225],[-96.801987,45.555414],[-96.835451,45.586129],[-96.843957,45.594003],[-96.844334,45.594375],[-96.849444,45.598944],[-96.853646,45.602307],[-96.857751,45.605962],[-96.856657,45.609041],[-96.852392,45.61484],[-96.851621,45.619412],[-96.844211,45.639583],[-96.840746,45.645294],[-96.835769,45.649648],[-96.832659,45.651716],[-96.827428,45.653067],[-96.82616,45.654164],[-96.800156,45.668355],[-96.760866,45.687518],[-96.757174,45.690957],[-96.75035,45.698782],[-96.745086,45.701576],[-96.711157,45.717561],[-96.687224,45.725931],[-96.672665,45.732336],[-96.662595,45.738682],[-96.652226,45.746809],[-96.641941,45.759871],[-96.639685,45.7654],[-96.638726,45.770171],[-96.636646,45.773702],[-96.630512,45.781157],[-96.629426,45.784211],[-96.627778,45.786239],[-96.625347,45.787924],[-96.618195,45.791063],[-96.612512,45.794442],[-96.607621,45.79907],[-96.601863,45.806343],[-96.596704,45.811801],[-96.593216,45.813873],[-96.587093,45.816445],[-96.583085,45.820024],[-96.57974,45.82582],[-96.577484,45.833108],[-96.577534,45.83793],[-96.576544,45.839945],[-96.574517,45.843098],[-96.572984,45.861602],[-96.574417,45.86501],[-96.574667,45.866816],[-96.571871,45.871846],[-96.572651,45.876474],[-96.571354,45.886673],[-96.568772,45.888072],[-96.568281,45.891203],[-96.568053,45.898697],[-96.568315,45.902902],[-96.567268,45.905393],[-96.56442,45.909415],[-96.565541,45.910883],[-96.566534,45.911876],[-96.56703,45.915682],[-96.566562,45.916931],[-96.564002,45.91956],[-96.564317,45.921074],[-96.564518,45.926256],[-96.56328,45.935238],[-96.562525,45.937087],[-96.561334,45.945655],[-96.562135,45.947718],[-96.564803,45.950349],[-96.57035,45.963595],[-96.572384,45.980231],[-96.572483,45.989577],[-96.573605,46.002309],[-96.574064,46.004434],[-96.575869,46.007999],[-96.574264,46.016545],[-96.576569,46.021846],[-96.577315,46.02356],[-96.57794,46.026874],[-96.573644,46.037911],[-96.566295,46.051416],[-96.560945,46.055415],[-96.559271,46.058272],[-96.556907,46.06483],[-96.556611,46.06892],[-96.558055,46.071159],[-96.558088,46.072096],[-96.554507,46.083978],[-96.556345,46.08688],[-96.556672,46.097232],[-96.557952,46.102442],[-96.559167,46.105024],[-96.563175,46.107995],[-96.565723,46.111963],[-96.56692,46.11475],[-96.562811,46.11625],[-96.563043,46.119512],[-96.570023,46.123756],[-96.571439,46.12572],[-96.570081,46.127037],[-96.56926,46.133686],[-96.574784,46.143146],[-96.577381,46.144951],[-96.579453,46.147601],[-96.580408,46.151234],[-96.577715,46.162797],[-96.577952,46.165843],[-96.57862,46.168135],[-96.580531,46.169186],[-96.582823,46.170905],[-96.583779,46.173563],[-96.583324,46.174154],[-96.584495,46.177123],[-96.585647,46.177309],[-96.586739,46.177305],[-96.587408,46.178164],[-96.587599,46.178928],[-96.587599,46.180075],[-96.587408,46.181221],[-96.587217,46.182749],[-96.587503,46.183609],[-96.588554,46.185233],[-96.588579,46.189689],[-96.587724,46.191838],[-96.587694,46.195262],[-96.584929,46.197231],[-96.584272,46.198053],[-96.583582,46.201047],[-96.584372,46.204155],[-96.584899,46.204383],[-96.586744,46.209912],[-96.591652,46.218183],[-96.59567,46.21985],[-96.59755,46.227733],[-96.598645,46.241626],[-96.598119,46.243112],[-96.594234,46.245329],[-96.592375,46.246076],[-96.591037,46.247222],[-96.590369,46.247891],[-96.590082,46.248655],[-96.590369,46.249515],[-96.590942,46.250183],[-96.59247,46.250757],[-96.594189,46.251712],[-96.594571,46.253335],[-96.593712,46.254959],[-96.593616,46.256679],[-96.594571,46.258302],[-96.595909,46.259926],[-96.59887,46.26069],[-96.599729,46.262123],[-96.599087,46.263701],[-96.596822,46.267913],[-96.595014,46.275135],[-96.595509,46.276689],[-96.598392,46.28008],[-96.598774,46.281417],[-96.598201,46.283136],[-96.5961,46.286097],[-96.596077,46.290536],[-96.596968,46.291838],[-96.599347,46.292879],[-96.600302,46.294407],[-96.598679,46.29775],[-96.599156,46.299183],[-96.60027,46.300406],[-96.60136,46.30413],[-96.598233,46.312563],[-96.598399,46.314482],[-96.60104,46.319554],[-96.599761,46.330386],[-96.601048,46.331139],[-96.608075,46.332576],[-96.614676,46.337418],[-96.619991,46.340135],[-96.620454,46.341346],[-96.618147,46.344295],[-96.62079,46.347607],[-96.628522,46.349569],[-96.629378,46.350529],[-96.629211,46.352654],[-96.631586,46.353752],[-96.640267,46.351585],[-96.644335,46.351908],[-96.645959,46.353532],[-96.647296,46.358499],[-96.646341,46.360982],[-96.646532,46.36251],[-96.650718,46.363655],[-96.655206,46.365964],[-96.658009,46.370512],[-96.658436,46.373391],[-96.666028,46.374566],[-96.667189,46.375458],[-96.669794,46.384644],[-96.669132,46.390037],[-96.678507,46.404823],[-96.680687,46.407383],[-96.682008,46.40784],[-96.684834,46.407021],[-96.688082,46.40788],[-96.688846,46.409409],[-96.688318,46.410948],[-96.688941,46.413134],[-96.69429,46.41428],[-96.696583,46.415617],[-96.696869,46.416859],[-96.696392,46.418483],[-96.696869,46.420011],[-96.69792,46.42068],[-96.701358,46.420584],[-96.702314,46.422685],[-96.702314,46.423832],[-96.701167,46.426506],[-96.701645,46.428607],[-96.703078,46.429467],[-96.706134,46.429754],[-96.706994,46.430231],[-96.707471,46.432715],[-96.709095,46.435294],[-96.71177,46.436153],[-96.715495,46.436153],[-96.718074,46.438255],[-96.718647,46.439974],[-96.717967,46.442021],[-96.716438,46.444567],[-96.716641,46.447233],[-96.717119,46.448093],[-96.718169,46.448666],[-96.718933,46.451054],[-96.718551,46.451913],[-96.715593,46.453867],[-96.714861,46.459132],[-96.715557,46.463232],[-96.717453,46.464474],[-96.720414,46.468008],[-96.721274,46.470014],[-96.720891,46.471446],[-96.72156,46.472115],[-96.72242,46.472784],[-96.724712,46.473166],[-96.726718,46.474121],[-96.726914,46.476432],[-96.735123,46.478897],[-96.736365,46.480138],[-96.73627,46.48138],[-96.735028,46.483863],[-96.735505,46.484914],[-96.737129,46.485965],[-96.737989,46.487875],[-96.737798,46.489785],[-96.73457,46.494254],[-96.733612,46.497224],[-96.735499,46.497932],[-96.737702,46.50077],[-96.735888,46.504973],[-96.735888,46.50631],[-96.738562,46.509366],[-96.736147,46.513478],[-96.737408,46.517636],[-96.738475,46.525793],[-96.74202,46.529036],[-96.744341,46.533006],[-96.744341,46.53463],[-96.742239,46.536827],[-96.742335,46.538546],[-96.745009,46.540457],[-96.745105,46.541125],[-96.745009,46.541698],[-96.743003,46.54294],[-96.742812,46.543609],[-96.743577,46.54485],[-96.746347,46.546283],[-96.744341,46.550104],[-96.744532,46.551346],[-96.746824,46.555071],[-96.748161,46.556408],[-96.74883,46.558127],[-96.748161,46.559847],[-96.746633,46.560706],[-96.744436,46.56596],[-96.746442,46.574078],[-96.748161,46.575798],[-96.7516,46.576371],[-96.752746,46.577517],[-96.753033,46.57895],[-96.752078,46.582197],[-96.752746,46.58277],[-96.755421,46.582866],[-96.756949,46.583534],[-96.756662,46.585827],[-96.757999,46.586878],[-96.76182,46.588501],[-96.762393,46.589743],[-96.76182,46.592991],[-96.762584,46.593946],[-96.763865,46.594595],[-96.766596,46.597957],[-96.770226,46.598148],[-96.772446,46.600129],[-96.772457,46.601491],[-96.772476,46.603716],[-96.771802,46.605742],[-96.772088,46.606315],[-96.774763,46.607461],[-96.775622,46.609276],[-96.774094,46.613288],[-96.774954,46.614625],[-96.778488,46.616153],[-96.778965,46.617873],[-96.778201,46.619305],[-96.779061,46.620834],[-96.783932,46.621598],[-96.784505,46.625418],[-96.783837,46.627329],[-96.784123,46.628666],[-96.784792,46.62943],[-96.784815,46.629439],[-96.78995,46.631531],[-96.791096,46.633155],[-96.790523,46.63688],[-96.789572,46.639079],[-96.789405,46.641639],[-96.790663,46.649112],[-96.796767,46.653363],[-96.798823,46.658071],[-96.798357,46.665314],[-96.793914,46.669212],[-96.792576,46.672173],[-96.793723,46.674943],[-96.79334,46.676854],[-96.792958,46.677427],[-96.788947,46.678382],[-96.787801,46.679815],[-96.788159,46.681879],[-96.784339,46.685054],[-96.784205,46.686768],[-96.785068,46.687636],[-96.786941,46.68822],[-96.787801,46.691181],[-96.786845,46.692805],[-96.786654,46.695861],[-96.787801,46.700446],[-96.790906,46.70297],[-96.791204,46.703747],[-96.786184,46.71284],[-96.784751,46.720495],[-96.779899,46.722915],[-96.779252,46.727429],[-96.77992,46.729149],[-96.781544,46.730104],[-96.784279,46.732993],[-96.781617,46.737197],[-96.781216,46.740944],[-96.784601,46.743094],[-96.785269,46.746246],[-96.784568,46.748669],[-96.783455,46.750353],[-96.783646,46.753123],[-96.787466,46.756753],[-96.787466,46.758472],[-96.786129,46.760956],[-96.784601,46.761338],[-96.783646,46.762579],[-96.785556,46.764394],[-96.785651,46.766113],[-96.784314,46.766973],[-96.784314,46.767546],[-96.784983,46.768788],[-96.788612,46.771271],[-96.78909,46.773373],[-96.788135,46.776238],[-96.788803,46.777575],[-96.792051,46.778339],[-96.792433,46.778913],[-96.792624,46.780632],[-96.791096,46.783688],[-96.791478,46.785694],[-96.793102,46.7877],[-96.796195,46.789881],[-96.796992,46.791572],[-96.795756,46.807795],[-96.796488,46.808709],[-96.801446,46.810401],[-96.802544,46.811521],[-96.802013,46.812464],[-96.80036,46.8135],[-96.799336,46.815436],[-96.80016,46.819664],[-96.79796,46.822364],[-96.791559,46.827864],[-96.789377,46.827435],[-96.787657,46.827817],[-96.787275,46.829059],[-96.789663,46.832306],[-96.789377,46.833166],[-96.785365,46.834025],[-96.78355,46.835936],[-96.783264,46.837464],[-96.784028,46.838897],[-96.783837,46.840234],[-96.783359,46.840807],[-96.780398,46.841189],[-96.779347,46.842144],[-96.779347,46.843672],[-96.780207,46.845392],[-96.779729,46.847302],[-96.777915,46.849594],[-96.777915,46.850741],[-96.779061,46.851696],[-96.780876,46.852269],[-96.782022,46.853415],[-96.781926,46.856472],[-96.781162,46.857809],[-96.781067,46.859146],[-96.781353,46.860483],[-96.782881,46.862585],[-96.782881,46.86459],[-96.780758,46.867163],[-96.779302,46.872699],[-96.779258,46.875963],[-96.780358,46.877063],[-96.781358,46.879363],[-96.780358,46.880163],[-96.775558,46.879163],[-96.771258,46.877463],[-96.769758,46.877563],[-96.768458,46.879563],[-96.767358,46.883663],[-96.768058,46.884763],[-96.769758,46.884763],[-96.771858,46.884063],[-96.773558,46.884763],[-96.776558,46.895663],[-96.773558,46.903563],[-96.770458,46.906763],[-96.767458,46.905163],[-96.765657,46.905063],[-96.763557,46.909463],[-96.763973,46.912507],[-96.762871,46.916886],[-96.759241,46.918223],[-96.759337,46.91956],[-96.760865,46.920897],[-96.761343,46.922234],[-96.760961,46.923858],[-96.759528,46.925769],[-96.761725,46.927297],[-96.762011,46.928347],[-96.762011,46.929303],[-96.760292,46.932073],[-96.760292,46.93341],[-96.761757,46.934663],[-96.763257,46.935063],[-96.775157,46.930863],[-96.780258,46.928263],[-96.78312,46.925482],[-96.785126,46.925769],[-96.786845,46.928921],[-96.79038,46.929398],[-96.791048,46.929876],[-96.791621,46.931213],[-96.791558,46.934264],[-96.790058,46.937664],[-96.791558,46.944464],[-96.792863,46.946018],[-96.797734,46.9464],[-96.799358,46.947355],[-96.798758,46.952988],[-96.799606,46.954316],[-96.79991,46.959228],[-96.798737,46.962399],[-96.79931,46.964118],[-96.801316,46.965933],[-96.802749,46.965933],[-96.809814,46.9639],[-96.819558,46.967453],[-96.821852,46.969372],[-96.822043,46.971091],[-96.819894,46.977357],[-96.822566,46.990141],[-96.824598,46.993309],[-96.82447,46.996173],[-96.823189,46.998026],[-96.82318,46.999965],[-96.826198,47.001895],[-96.827489,47.001611],[-96.831798,47.004353],[-96.834221,47.006671],[-96.834603,47.007721],[-96.834508,47.008867],[-96.833504,47.01011],[-96.832303,47.015184],[-96.833038,47.016029],[-96.829499,47.021537],[-96.826358,47.023205],[-96.819416,47.024914],[-96.817984,47.026538],[-96.818557,47.02778],[-96.821231,47.029977],[-96.821613,47.031505],[-96.821422,47.032842],[-96.818843,47.034179],[-96.818557,47.035516],[-96.818748,47.037618],[-96.820563,47.039528],[-96.820849,47.041438],[-96.818843,47.047074],[-96.819321,47.0529],[-96.822568,47.055861],[-96.824479,47.059682],[-96.824097,47.061497],[-96.822186,47.06207],[-96.821327,47.06293],[-96.821804,47.064362],[-96.823491,47.065911],[-96.824097,47.070666],[-96.823715,47.071717],[-96.821231,47.07315],[-96.820849,47.073818],[-96.821613,47.076302],[-96.819479,47.078181],[-96.819078,47.081152],[-96.820216,47.082111],[-96.82065,47.083619],[-96.819034,47.087573],[-96.820563,47.08977],[-96.820085,47.091393],[-96.818366,47.093304],[-96.818557,47.097888],[-96.819894,47.099321],[-96.81999,47.100849],[-96.818175,47.104193],[-96.817984,47.106007],[-96.818843,47.107154],[-96.82159,47.108457],[-96.822694,47.109622],[-96.822192,47.111679],[-96.820619,47.113712],[-96.821189,47.115723],[-96.827344,47.120144],[-96.827726,47.121481],[-96.826712,47.122852],[-96.82544,47.123354],[-96.824807,47.124968],[-96.824476,47.127188],[-96.827631,47.129504],[-96.828777,47.13151],[-96.827631,47.134758],[-96.827631,47.136572],[-96.828597,47.1398],[-96.831547,47.142017],[-96.832407,47.143736],[-96.830114,47.146793],[-96.830114,47.148512],[-96.831069,47.149467],[-96.83121,47.150522],[-96.83126,47.1509],[-96.828013,47.153956],[-96.822706,47.156229],[-96.822405,47.156914],[-96.822707,47.157668],[-96.82467,47.159019],[-96.824861,47.159783],[-96.824288,47.16112],[-96.822377,47.162744],[-96.822091,47.165036],[-96.824479,47.167042],[-96.824288,47.170863],[-96.825147,47.172295],[-96.829637,47.17497],[-96.829828,47.176307],[-96.829446,47.177262],[-96.826962,47.180128],[-96.826676,47.181561],[-96.826962,47.182802],[-96.828299,47.183948],[-96.830401,47.184617],[-96.831451,47.185572],[-96.832407,47.187483],[-96.832502,47.188342],[-96.831165,47.190826],[-96.83126,47.191781],[-96.833075,47.193596],[-96.8368,47.195028],[-96.838233,47.196366],[-96.838806,47.197894],[-96.838615,47.199613],[-96.83766,47.201141],[-96.832789,47.203911],[-96.83212,47.204866],[-96.833457,47.20649],[-96.835177,47.207445],[-96.835463,47.208401],[-96.833648,47.210406],[-96.833362,47.211457],[-96.833553,47.212794],[-96.836514,47.216137],[-96.835654,47.219289],[-96.835941,47.221009],[-96.838329,47.222059],[-96.839284,47.223874],[-96.838806,47.22502],[-96.835654,47.226549],[-96.835654,47.227217],[-96.837374,47.229254],[-96.837564,47.231802],[-96.836036,47.233999],[-96.833362,47.23505],[-96.832693,47.236196],[-96.832946,47.237588],[-96.833589,47.238037],[-96.83766,47.240876],[-96.838233,47.241831],[-96.838233,47.242882],[-96.837278,47.244219],[-96.83489,47.246416],[-96.834699,47.248135],[-96.835368,47.250428],[-96.840143,47.253102],[-96.840525,47.253866],[-96.839857,47.25549],[-96.840048,47.256159],[-96.841672,47.258164],[-96.841003,47.259215],[-96.840717,47.261221],[-96.84129,47.262463],[-96.842531,47.262845],[-96.842627,47.263991],[-96.842054,47.265328],[-96.839857,47.265997],[-96.838997,47.267716],[-96.839761,47.268767],[-96.842531,47.269531],[-96.8432,47.270486],[-96.842245,47.273351],[-96.840353,47.275496],[-96.84022,47.276981],[-96.841465,47.284041],[-96.844088,47.289981],[-96.843922,47.29302],[-96.832884,47.30449],[-96.832884,47.307069],[-96.835735,47.310843],[-96.837045,47.311391],[-96.841003,47.311558],[-96.842531,47.312418],[-96.841958,47.316907],[-96.841194,47.317575],[-96.836991,47.318817],[-96.836036,47.320059],[-96.835845,47.321014],[-96.836609,47.323975],[-96.835177,47.326267],[-96.835177,47.32856],[-96.836036,47.329706],[-96.838329,47.331043],[-96.83852,47.33238],[-96.835845,47.335914],[-96.836609,47.338684],[-96.840586,47.340956],[-96.844012,47.346182],[-96.845158,47.34943],[-96.843439,47.354397],[-96.844298,47.356021],[-96.846877,47.356785],[-96.848119,47.358026],[-96.849265,47.359841],[-96.849456,47.363662],[-96.852417,47.366241],[-96.852226,47.367291],[-96.849552,47.368247],[-96.848597,47.369584],[-96.848907,47.370565],[-96.852035,47.371876],[-96.853754,47.373405],[-96.852676,47.374973],[-96.848931,47.375363],[-96.846925,47.376891],[-96.845588,47.381571],[-96.841099,47.38415],[-96.840621,47.389881],[-96.840717,47.391314],[-96.841767,47.39246],[-96.845492,47.394179],[-96.845874,47.396185],[-96.844919,47.399815],[-96.84511,47.400483],[-96.848071,47.403158],[-96.852739,47.405909],[-96.852656,47.407647],[-96.853325,47.408889],[-96.858094,47.410317],[-96.861833,47.414337],[-96.86207,47.415159],[-96.861095,47.417056],[-96.861231,47.41781],[-96.863593,47.418775],[-96.864261,47.419539],[-96.864261,47.420972],[-96.862924,47.422309],[-96.859581,47.424028],[-96.858721,47.426129],[-96.860632,47.427658],[-96.861014,47.428995],[-96.860823,47.430237],[-96.85853,47.433389],[-96.860059,47.435681],[-96.859772,47.437209],[-96.85748,47.440457],[-96.85748,47.441603],[-96.859537,47.445662],[-96.859239,47.451557],[-96.858244,47.453351],[-96.858148,47.454498],[-96.859677,47.456026],[-96.859963,47.457363],[-96.859581,47.4587],[-96.85748,47.460229],[-96.856811,47.46319],[-96.859555,47.466865],[-96.859868,47.470926],[-96.859103,47.472837],[-96.855856,47.475702],[-96.85471,47.478281],[-96.854996,47.479618],[-96.858148,47.481624],[-96.85853,47.482484],[-96.85853,47.483917],[-96.857957,47.484681],[-96.856142,47.48554],[-96.855665,47.48726],[-96.855856,47.48831],[-96.85853,47.489934],[-96.85853,47.490889],[-96.857957,47.492513],[-96.857002,47.493468],[-96.851653,47.497098],[-96.851791,47.498752],[-96.851844,47.49939],[-96.853317,47.501322],[-96.853286,47.503881],[-96.853052,47.506828],[-96.851749,47.507891],[-96.851367,47.509037],[-96.851749,47.510088],[-96.853181,47.511425],[-96.853468,47.513813],[-96.854204,47.514368],[-96.858454,47.514892],[-96.861422,47.515873],[-96.863245,47.517266],[-96.863551,47.520304],[-96.866363,47.524893],[-96.866363,47.525944],[-96.864739,47.527663],[-96.862379,47.529055],[-96.860524,47.529536],[-96.85471,47.535973],[-96.855092,47.53731],[-96.856429,47.538456],[-96.856716,47.540271],[-96.854614,47.54285],[-96.854232,47.544665],[-96.854423,47.545333],[-96.856429,47.546957],[-96.85662,47.548103],[-96.856238,47.548963],[-96.854328,47.550491],[-96.853755,47.552497],[-96.855092,47.554598],[-96.858002,47.556578],[-96.859057,47.558591],[-96.859153,47.559741],[-96.857427,47.561658],[-96.856852,47.563288],[-96.857236,47.564055],[-96.858673,47.564534],[-96.859153,47.566355],[-96.858769,47.56741],[-96.856661,47.567889],[-96.853689,47.570381],[-96.854073,47.57201],[-96.855894,47.573352],[-96.856373,47.575749],[-96.853273,47.579483],[-96.851293,47.589264],[-96.851964,47.591469],[-96.854743,47.594728],[-96.854456,47.596261],[-96.853114,47.596836],[-96.852826,47.597891],[-96.853785,47.599808],[-96.855618,47.60089],[-96.856903,47.602329],[-96.854812,47.606328],[-96.855421,47.60875],[-96.857112,47.61076],[-96.860255,47.612175],[-96.873671,47.613654],[-96.874078,47.614774],[-96.871005,47.616832],[-96.8706,47.617563],[-96.870871,47.618042],[-96.876355,47.619181],[-96.879496,47.620576],[-96.882393,47.633489],[-96.888573,47.63845],[-96.888166,47.63973],[-96.884515,47.640755],[-96.882857,47.641714],[-96.882376,47.649025],[-96.882882,47.650168],[-96.88697,47.653049],[-96.887607,47.658853],[-96.88571,47.661547],[-96.885573,47.663443],[-96.887126,47.666369],[-96.889627,47.668587],[-96.889726,47.670643],[-96.891042,47.672149],[-96.891922,47.673157],[-96.895271,47.67357],[-96.896724,47.674758],[-96.899352,47.689473],[-96.900264,47.690775],[-96.901719,47.691621],[-96.902971,47.691576],[-96.905273,47.689246],[-96.907236,47.688493],[-96.908928,47.688722],[-96.909909,47.689522],[-96.910144,47.691235],[-96.907266,47.693976],[-96.907604,47.695119],[-96.909769,47.697313],[-96.911527,47.700512],[-96.912846,47.701746],[-96.913762,47.701468],[-96.915242,47.702369],[-96.915242,47.703527],[-96.914405,47.704814],[-96.914856,47.707003],[-96.9155,47.707968],[-96.920119,47.710383],[-96.920321,47.712394],[-96.919811,47.714339],[-96.920391,47.716527],[-96.923544,47.718201],[-96.92348,47.719809],[-96.919471,47.722515],[-96.918556,47.723863],[-96.919131,47.724731],[-96.925089,47.729051],[-96.930574,47.734352],[-96.932809,47.737139],[-96.933316,47.738716],[-96.933011,47.739949],[-96.929319,47.742988],[-96.928506,47.744884],[-96.928505,47.748037],[-96.929051,47.750331],[-96.934173,47.752412],[-96.934463,47.752956],[-96.934209,47.754517],[-96.932648,47.755315],[-96.932684,47.756804],[-96.935555,47.758276],[-96.937859,47.760195],[-96.938435,47.762411],[-96.936909,47.764536],[-96.939179,47.768397],[-96.949585,47.775228],[-96.956635,47.776188],[-96.956501,47.779798],[-96.961926,47.783292],[-96.9644,47.782995],[-96.965316,47.783474],[-96.96535,47.784937],[-96.963521,47.78729],[-96.961554,47.788707],[-96.957283,47.790147],[-96.957216,47.79097],[-96.95786,47.792021],[-96.963523,47.794601],[-96.966068,47.797297],[-96.971698,47.798255],[-96.973585,47.797884],[-96.975131,47.798326],[-96.976088,47.799577],[-96.976176,47.801544],[-96.980579,47.805614],[-96.981168,47.806792],[-96.980947,47.808337],[-96.978894,47.809882],[-96.977946,47.811619],[-96.980391,47.815662],[-96.980726,47.820411],[-96.980137,47.821441],[-96.979327,47.821809],[-96.979327,47.824533],[-96.981683,47.825785],[-96.982272,47.826668],[-96.981725,47.830421],[-96.986685,47.837639],[-96.992963,47.837911],[-96.998295,47.841724],[-96.99789,47.843163],[-96.996364,47.844398],[-96.996816,47.854405],[-96.998144,47.858882],[-97.000356,47.860915],[-97.001759,47.861266],[-97.005557,47.863977],[-97.005857,47.865277],[-97.003356,47.865877],[-97.001556,47.867377],[-97.002456,47.868677],[-97.005356,47.870177],[-97.017356,47.871578],[-97.021256,47.872578],[-97.023156,47.873978],[-97.023156,47.874978],[-97.018955,47.876878],[-97.017955,47.878478],[-97.019355,47.880278],[-97.023355,47.882078],[-97.025355,47.884278],[-97.024955,47.886878],[-97.019155,47.889778],[-97.018955,47.891078],[-97.024955,47.894978],[-97.023955,47.898078],[-97.020155,47.900478],[-97.020255,47.902178],[-97.024155,47.905278],[-97.024955,47.908178],[-97.023555,47.908478],[-97.020355,47.906378],[-97.017254,47.905678],[-97.015054,47.907178],[-97.015354,47.910278],[-97.017254,47.913078],[-97.023754,47.915878],[-97.018054,47.918078],[-97.017754,47.919778],[-97.029654,47.927578],[-97.035754,47.930179],[-97.037354,47.933279],[-97.035554,47.936579],[-97.036054,47.939379],[-97.039154,47.940479],[-97.044954,47.941079],[-97.051054,47.943379],[-97.054554,47.946279],[-97.055554,47.949079],[-97.055154,47.950779],[-97.052554,47.954779],[-97.052454,47.957179],[-97.054054,47.959679],[-97.059054,47.96208],[-97.061454,47.96358],[-97.061854,47.96448],[-97.061554,47.96588],[-97.057854,47.96898],[-97.057153,47.97048],[-97.059353,47.97398],[-97.059153,47.97538],[-97.056481,47.980556],[-97.053537,47.987948],[-97.053089,47.990252],[-97.053553,47.991612],[-97.054945,47.992924],[-97.062257,47.995948],[-97.064289,47.998508],[-97.066762,48.009558],[-97.065411,48.011337],[-97.063012,48.013179],[-97.063289,48.014989],[-97.064927,48.015658],[-97.069284,48.016176],[-97.070654,48.016918],[-97.072239,48.019107],[-97.071911,48.021395],[-97.068987,48.026267],[-97.068711,48.027694],[-97.070411,48.041765],[-97.072257,48.048068],[-97.074015,48.051212],[-97.075641,48.052725],[-97.082895,48.055794],[-97.086986,48.058222],[-97.097772,48.07108],[-97.103052,48.071669],[-97.104483,48.072428],[-97.104697,48.073094],[-97.104154,48.074578],[-97.100771,48.077452],[-97.099431,48.082106],[-97.099798,48.085884],[-97.102165,48.089122],[-97.105226,48.09044],[-97.105616,48.091362],[-97.105475,48.09278],[-97.103879,48.094517],[-97.10395,48.096184],[-97.104872,48.097851],[-97.108428,48.099824],[-97.109535,48.104723],[-97.11147,48.105913],[-97.113194,48.106188],[-97.119773,48.105381],[-97.123205,48.106648],[-97.123666,48.108004],[-97.123135,48.109497],[-97.12104,48.112281],[-97.120592,48.113365],[-97.120702,48.114987],[-97.121586,48.116925],[-97.126862,48.124277],[-97.128279,48.127185],[-97.129453,48.133133],[-97.132176,48.135829],[-97.13252,48.137641],[-97.131956,48.139563],[-97.134299,48.141833],[-97.141401,48.14359],[-97.142133,48.144981],[-97.142279,48.148056],[-97.140295,48.150894],[-97.139497,48.153108],[-97.138911,48.155304],[-97.138911,48.157793],[-97.139643,48.159111],[-97.14195,48.160202],[-97.144242,48.16249],[-97.146745,48.168556],[-97.146672,48.171484],[-97.145702,48.173223],[-97.145243,48.174046],[-97.142352,48.176609],[-97.14162,48.177781],[-97.141474,48.179099],[-97.14184,48.181734],[-97.142938,48.182686],[-97.144622,48.183199],[-97.146013,48.18459],[-97.146233,48.186054],[-97.141518,48.192518],[-97.141233,48.193602],[-97.138007,48.197587],[-97.139131,48.20282],[-97.138765,48.20465],[-97.13774,48.206188],[-97.134738,48.207506],[-97.134372,48.210434],[-97.137006,48.212537],[-97.137407,48.215245],[-97.135177,48.217243],[-97.135201,48.219156],[-97.135617,48.220904],[-97.137522,48.221713],[-97.138154,48.223104],[-97.13769,48.225126],[-97.136304,48.226176],[-97.136003,48.228082],[-97.136304,48.228984],[-97.139311,48.230187],[-97.140815,48.232032],[-97.141254,48.234668],[-97.13979,48.235913],[-97.135763,48.237596],[-97.135617,48.238988],[-97.138618,48.242429],[-97.138765,48.244991],[-97.138033,48.246236],[-97.133434,48.249873],[-97.129384,48.250429],[-97.127967,48.251474],[-97.127276,48.253323],[-97.127594,48.254383],[-97.129235,48.256398],[-97.129533,48.257815],[-97.129384,48.258785],[-97.127146,48.260874],[-97.127146,48.262889],[-97.128551,48.264816],[-97.130951,48.265276],[-97.131921,48.266023],[-97.131846,48.267589],[-97.13028,48.269305],[-97.125348,48.270452],[-97.12408,48.27125],[-97.11657,48.279661],[-97.116717,48.281246],[-97.117726,48.283488],[-97.12216,48.290056],[-97.125348,48.291855],[-97.127236,48.291827],[-97.128862,48.292882],[-97.129086,48.295792],[-97.128638,48.297657],[-97.127295,48.298478],[-97.123341,48.298627],[-97.12252,48.299299],[-97.122072,48.300865],[-97.122296,48.301388],[-97.126176,48.303701],[-97.126176,48.309147],[-97.127146,48.310192],[-97.130951,48.311609],[-97.131921,48.312728],[-97.132443,48.315489],[-97.131697,48.318324],[-97.13125,48.319543],[-97.129826,48.320516],[-97.127601,48.323319],[-97.127436,48.325709],[-97.127766,48.326781],[-97.131227,48.327935],[-97.133751,48.327847],[-97.134772,48.328677],[-97.134854,48.331314],[-97.131969,48.335518],[-97.131145,48.339722],[-97.131722,48.341123],[-97.137904,48.344585],[-97.138481,48.34747],[-97.137492,48.350602],[-97.137822,48.352003],[-97.139851,48.353425],[-97.143861,48.354503],[-97.147748,48.359905],[-97.147748,48.366959],[-97.147356,48.368723],[-97.146376,48.37029],[-97.144221,48.37127],[-97.142066,48.374209],[-97.140106,48.380479],[-97.140106,48.382242],[-97.14089,48.384006],[-97.143633,48.386161],[-97.145201,48.388904],[-97.145592,48.394195],[-97.145201,48.395566],[-97.143829,48.397134],[-97.140106,48.399289],[-97.135795,48.404187],[-97.135012,48.406735],[-97.1356,48.411829],[-97.138343,48.415944],[-97.142457,48.416727],[-97.142849,48.419471],[-97.142066,48.42045],[-97.136971,48.422018],[-97.1356,48.424369],[-97.1356,48.426524],[-97.137813,48.428056],[-97.139173,48.430528],[-97.139296,48.432011],[-97.136206,48.434606],[-97.13497,48.436337],[-97.134229,48.439797],[-97.135094,48.442269],[-97.137319,48.443505],[-97.137689,48.444247],[-97.137689,48.447583],[-97.137072,48.449067],[-97.133611,48.45228],[-97.132622,48.456482],[-97.132746,48.459942],[-97.134229,48.461178],[-97.141768,48.464021],[-97.143127,48.466246],[-97.144116,48.469212],[-97.143745,48.473661],[-97.142015,48.47465],[-97.141397,48.476256],[-97.142757,48.477987],[-97.144611,48.478975],[-97.144981,48.481571],[-97.143869,48.48293],[-97.140291,48.484722],[-97.139276,48.48631],[-97.138864,48.494362],[-97.140347,48.496834],[-97.146279,48.499677],[-97.147638,48.501531],[-97.148133,48.503384],[-97.153076,48.524148],[-97.151964,48.529215],[-97.149122,48.532305],[-97.148874,48.534282],[-97.150481,48.536877],[-97.153942,48.539102],[-97.159697,48.541339],[-97.161277,48.542505],[-97.163105,48.543855],[-97.16309,48.543964],[-97.162717,48.546765],[-97.162099,48.548124],[-97.160863,48.549236],[-97.155791,48.551173],[-97.153447,48.551214],[-97.152459,48.552326],[-97.152211,48.553933],[-97.153942,48.556034],[-97.156413,48.557146],[-97.158267,48.558753],[-97.158762,48.560112],[-97.158638,48.564067],[-97.157402,48.565921],[-97.151638,48.56763],[-97.149616,48.569876],[-97.148998,48.571977],[-97.148874,48.575067],[-97.149616,48.576921],[-97.14974,48.579516],[-97.148429,48.581028],[-97.144922,48.581452],[-97.143654,48.582358],[-97.142915,48.583733],[-97.141585,48.59082],[-97.142237,48.592595],[-97.143931,48.594594],[-97.143684,48.597066],[-97.142818,48.598425],[-97.140841,48.600032],[-97.138246,48.604234],[-97.13738,48.607324],[-97.138246,48.609301],[-97.137504,48.612268],[-97.136145,48.613256],[-97.132931,48.61338],[-97.131448,48.613998],[-97.130707,48.616593],[-97.131325,48.619065],[-97.130089,48.621166],[-97.125639,48.620919],[-97.124774,48.621537],[-97.124033,48.623267],[-97.124175,48.625387],[-97.125887,48.626975],[-97.125887,48.629076],[-97.125269,48.629694],[-97.120819,48.631053],[-97.115043,48.629821],[-97.111559,48.630266],[-97.109515,48.631453],[-97.108466,48.632658],[-97.108276,48.634396],[-97.109651,48.638888],[-97.111921,48.642918],[-97.111179,48.644525],[-97.107814,48.647728],[-97.10591,48.652632],[-97.104566,48.654416],[-97.10179,48.656294],[-97.100551,48.658614],[-97.100674,48.661951],[-97.102652,48.664793],[-97.101539,48.666771],[-97.100009,48.667926],[-97.099811,48.671377],[-97.100674,48.679624],[-97.100056,48.681355],[-97.097708,48.68395],[-97.097337,48.685186],[-97.097584,48.686298],[-97.098697,48.687534],[-97.108655,48.691484],[-97.118286,48.700573],[-97.119027,48.703292],[-97.116926,48.705022],[-97.116185,48.709348],[-97.121253,48.713593],[-97.124328,48.719166],[-97.126398,48.721101],[-97.134229,48.725167],[-97.135588,48.726403],[-97.136083,48.727763],[-97.135094,48.72974],[-97.134847,48.733324],[-97.135341,48.73456],[-97.138996,48.736654],[-97.139611,48.738129],[-97.139488,48.746611],[-97.143176,48.750913],[-97.15006,48.754724],[-97.151043,48.755707],[-97.151289,48.757428],[-97.147478,48.763698],[-97.147478,48.766033],[-97.152588,48.772602],[-97.153871,48.773286],[-97.154854,48.774515],[-97.155223,48.775499],[-97.154854,48.776728],[-97.153871,48.777712],[-97.153256,48.781031],[-97.154116,48.781891],[-97.157067,48.78312],[-97.157804,48.784104],[-97.157797,48.78768],[-97.157093,48.790024],[-97.158102,48.791145],[-97.161231,48.791778],[-97.162959,48.79293],[-97.163535,48.79507],[-97.163699,48.799513],[-97.165921,48.803792],[-97.165921,48.805273],[-97.164874,48.807129],[-97.164874,48.808253],[-97.165624,48.809627],[-97.168497,48.811002],[-97.174045,48.812108],[-97.177045,48.814124],[-97.178611,48.815839],[-97.180028,48.81845],[-97.177747,48.824815],[-97.180991,48.828992],[-97.181116,48.832741],[-97.180366,48.834365],[-97.175727,48.836158],[-97.174275,48.837261],[-97.173811,48.838309],[-97.174355,48.842619],[-97.177243,48.846483],[-97.176993,48.847733],[-97.175618,48.849857],[-97.175618,48.853105],[-97.179071,48.856866],[-97.180116,48.861601],[-97.182365,48.863725],[-97.185488,48.864849],[-97.187113,48.866098],[-97.187362,48.867598],[-97.185738,48.87222],[-97.186238,48.87347],[-97.187737,48.874594],[-97.190486,48.875594],[-97.197982,48.880341],[-97.198857,48.882215],[-97.197982,48.884839],[-97.197857,48.886838],[-97.199981,48.891086],[-97.198107,48.893959],[-97.197982,48.898332],[-97.198857,48.899831],[-97.207688,48.902629],[-97.210541,48.90439],[-97.212706,48.908143],[-97.212553,48.90986],[-97.210809,48.91395],[-97.211161,48.916649],[-97.212926,48.918033],[-97.217992,48.919735],[-97.219095,48.922078],[-97.219185,48.92486],[-97.217463,48.927659],[-97.217549,48.929892],[-97.218666,48.931781],[-97.224505,48.9341],[-97.226394,48.938651],[-97.226823,48.943545],[-97.227854,48.945864],[-97.232147,48.948955],[-97.232319,48.950501],[-97.230859,48.958229],[-97.230859,48.960891],[-97.23146,48.962437],[-97.232491,48.963897],[-97.237541,48.965341],[-97.238882,48.966573],[-97.239209,48.968684],[-97.238025,48.975143],[-97.238387,48.982631],[-97.237297,48.985696],[-97.234214,48.988966],[-97.230833,48.991303],[-97.230403,48.993366],[-97.23149,48.995995],[-97.231397,48.997212],[-97.229039,49.000687],[-96.93096,48.999984],[-96.405408,48.999984],[-95.97539,48.999984],[-95.368698,48.998729],[-95.355819,48.998735],[-95.340962,48.99874],[-95.322946,48.998767],[-95.319895,48.998769],[-95.153711,48.998903],[-95.153309,49.18488],[-95.153424,49.249995],[-95.153333,49.305655],[-95.153319,49.30772],[-95.153331,49.308442],[-95.15333,49.309287],[-95.153284,49.343409],[-95.153344,49.343662],[-95.153407,49.354397],[-95.15333,49.365886],[-95.153259,49.367691],[-95.153293,49.369107],[-95.15335,49.383079],[-95.153314,49.384358],[-95.150235,49.382964],[-95.149747,49.380565],[-95.145306,49.37828],[-95.141808,49.378301],[-95.126467,49.369439],[-95.115866,49.366518],[-95.109535,49.366315],[-95.105057,49.364962],[-95.102818,49.363554],[-95.089806,49.361114],[-95.058404,49.35317],[-95.049382,49.353056],[-95.014415,49.356405],[-94.988908,49.368897],[-94.974286,49.367738],[-94.957465,49.370186],[-94.952111,49.368679],[-94.909273,49.350176],[-94.907036,49.348508],[-94.878454,49.333193],[-94.854245,49.324154],[-94.836876,49.324068],[-94.816222,49.320987],[-94.824291,49.308834],[-94.82516,49.294283],[-94.797244,49.214284],[-94.797527,49.197791],[-94.774228,49.124994],[-94.773223,49.120733],[-94.750221,49.099763],[-94.750218,48.999992],[-94.718932,48.999991],[-94.683069,48.883929],[-94.683127,48.883376],[-94.684217,48.872399],[-94.692527,48.86895],[-94.690302,48.863711],[-94.690246,48.863363],[-94.693044,48.853392],[-94.685681,48.840119],[-94.697055,48.835731],[-94.701968,48.831778],[-94.704284,48.824284],[-94.694974,48.809206],[-94.695975,48.799771],[-94.694312,48.789352],[-94.690889,48.778066],[-94.690863,48.778047],[-94.687951,48.775896],[-94.672812,48.769315],[-94.66711,48.766115],[-94.660063,48.760288],[-94.651765,48.755913],[-94.645164,48.749975],[-94.646256,48.749975],[-94.64515,48.748991],[-94.645083,48.744143],[-94.640803,48.741171],[-94.61901,48.737374],[-94.610539,48.731893],[-94.601384,48.728356],[-94.595855,48.724222],[-94.591018,48.719494],[-94.58715,48.717599],[-94.568368,48.715522],[-94.555835,48.716207],[-94.549069,48.714653],[-94.545514,48.712185],[-94.538372,48.70284],[-94.533057,48.701262],[-94.5246,48.701556],[-94.508862,48.700362],[-94.500203,48.698175],[-94.486503,48.698054],[-94.472938,48.696849],[-94.464481,48.695503],[-94.452332,48.692444],[-94.446604,48.6929],[-94.438701,48.694889],[-94.430303,48.70095],[-94.424203,48.705352],[-94.421405,48.708756],[-94.418919,48.710172],[-94.416191,48.710948],[-94.406318,48.710535],[-94.388848,48.711945],[-94.384221,48.711806],[-94.378216,48.710272],[-94.368583,48.706434],[-94.353046,48.704132],[-94.342758,48.703382],[-94.328434,48.704481],[-94.308446,48.710239],[-94.290737,48.707747],[-94.281797,48.705255],[-94.274345,48.699882],[-94.264473,48.698919],[-94.260541,48.696381],[-94.25813,48.691834],[-94.252753,48.686325],[-94.251169,48.683514],[-94.250623,48.678236],[-94.254643,48.663888],[-94.254577,48.661375],[-94.250497,48.656654],[-94.250191,48.656323],[-94.246841,48.654224],[-94.244394,48.653442],[-94.233575,48.652336],[-94.224276,48.649527],[-94.214448,48.649382],[-94.199517,48.650996],[-94.188581,48.650402],[-94.167725,48.648104],[-94.157387,48.645766],[-94.138682,48.645714],[-94.126336,48.644447],[-94.110031,48.644192],[-94.099898,48.645863],[-94.091244,48.643669],[-94.076675,48.644203],[-94.071357,48.645895],[-94.065775,48.646104],[-94.064243,48.643717],[-94.060267,48.643115],[-94.052452,48.64402],[-94.043187,48.643416],[-94.035616,48.641018],[-94.029491,48.640861],[-94.006933,48.643193],[-94.000675,48.642777],[-93.990082,48.639738],[-93.976535,48.637573],[-93.963375,48.637151],[-93.960632,48.636496],[-93.954413,48.633744],[-93.944221,48.632294],[-93.927004,48.63122],[-93.916649,48.632156],[-93.915494,48.632667],[-93.914357,48.63432],[-93.91153,48.634673],[-93.886934,48.630779],[-93.851618,48.630108],[-93.844008,48.629395],[-93.840754,48.628548],[-93.837392,48.627098],[-93.834323,48.624954],[-93.827959,48.613001],[-93.824144,48.610724],[-93.822644,48.609067],[-93.820067,48.603755],[-93.818518,48.595314],[-93.812037,48.584944],[-93.807984,48.580297],[-93.806763,48.577616],[-93.80527,48.570299],[-93.805369,48.568393],[-93.806748,48.561779],[-93.808973,48.555897],[-93.812098,48.550664],[-93.812278,48.549111],[-93.811303,48.545543],[-93.811201,48.542385],[-93.812223,48.540509],[-93.817572,48.535833],[-93.818375,48.534442],[-93.818853,48.532669],[-93.818253,48.530046],[-93.815178,48.526508],[-93.812149,48.524778],[-93.80152,48.520551],[-93.797436,48.518356],[-93.794454,48.516021],[-93.784657,48.51549],[-93.771741,48.515825],[-93.763176,48.516118],[-93.756483,48.515366],[-93.752942,48.51512],[-93.741843,48.517347],[-93.732139,48.517995],[-93.72368,48.517329],[-93.709147,48.518029],[-93.703303,48.51715],[-93.694676,48.514774],[-93.690901,48.514588],[-93.674568,48.516297],[-93.656652,48.515731],[-93.645397,48.517281],[-93.643091,48.518294],[-93.64144,48.519238],[-93.638199,48.522533],[-93.635476,48.527702],[-93.632327,48.530092],[-93.628865,48.53121],[-93.626447,48.530985],[-93.622333,48.52651],[-93.618321,48.52397],[-93.612844,48.521876],[-93.610618,48.521661],[-93.60587,48.522472],[-93.603752,48.523326],[-93.598212,48.527154],[-93.594379,48.528793],[-93.587957,48.528881],[-93.580711,48.526667],[-93.578333,48.52652],[-93.562062,48.528897],[-93.547191,48.528684],[-93.540369,48.529877],[-93.532087,48.532453],[-93.518691,48.533997],[-93.515457,48.534792],[-93.500153,48.541202],[-93.481471,48.543146],[-93.467504,48.545664],[-93.465392,48.546668],[-93.460798,48.550552],[-93.458246,48.555291],[-93.456675,48.561834],[-93.457046,48.567199],[-93.461731,48.57403],[-93.466007,48.587291],[-93.465199,48.590659],[-93.464308,48.591792],[-93.438494,48.59338],[-93.434141,48.595138],[-93.428328,48.599777],[-93.425483,48.6013],[-93.414026,48.605605],[-93.40856,48.608415],[-93.405269,48.609344],[-93.404205,48.609351],[-93.40366,48.607593],[-93.398974,48.603905],[-93.395022,48.603303],[-93.383807,48.605149],[-93.371156,48.605085],[-93.367666,48.60702],[-93.367025,48.608283],[-93.362132,48.613832],[-93.35641,48.611778],[-93.35541,48.611595],[-93.354135,48.61235],[-93.35324,48.613378],[-93.353138,48.615709],[-93.349095,48.624935],[-93.348183,48.626414],[-93.347528,48.62662],[-93.254854,48.642784],[-93.207398,48.642474],[-93.184091,48.628375],[-93.17999,48.624926],[-93.178095,48.623339],[-93.14242,48.624924],[-93.088438,48.627597],[-92.984963,48.623731],[-92.954876,48.631493],[-92.95012,48.630419],[-92.949839,48.608269],[-92.929614,48.606874],[-92.909947,48.596313],[-92.894687,48.594915],[-92.728046,48.53929],[-92.657881,48.546263],[-92.634931,48.542873],[-92.627833,48.522167],[-92.625739,48.518189],[-92.625541,48.517549],[-92.626639,48.514374],[-92.626365,48.51362],[-92.625151,48.513048],[-92.625374,48.512916],[-92.631117,48.508252],[-92.631137,48.508077],[-92.631463,48.50679],[-92.629126,48.505303],[-92.627237,48.503383],[-92.630644,48.500917],[-92.636696,48.499428],[-92.647114,48.499905],[-92.654039,48.501635],[-92.661418,48.496557],[-92.684866,48.497611],[-92.698824,48.494892],[-92.701298,48.484586],[-92.709267,48.473091],[-92.708647,48.470349],[-92.712562,48.463013],[-92.687998,48.443889],[-92.663271,48.440184],[-92.656027,48.436709],[-92.575636,48.440827],[-92.537202,48.447703],[-92.51491,48.448313],[-92.507285,48.447875],[-92.492078,48.433709],[-92.48919,48.430328],[-92.484074,48.42953],[-92.482082,48.428662],[-92.480844,48.426583],[-92.481152,48.425349],[-92.475585,48.418793],[-92.456325,48.414204],[-92.456389,48.401134],[-92.47675,48.37176],[-92.469948,48.351836],[-92.453691,48.329514],[-92.441286,48.315597],[-92.437825,48.309839],[-92.432003,48.305063],[-92.428919,48.305771],[-92.426077,48.304491],[-92.416285,48.295463],[-92.406706,48.279351],[-92.397645,48.265546],[-92.393781,48.260562],[-92.389305,48.253316],[-92.387049,48.249268],[-92.388112,48.246732],[-92.387191,48.244606],[-92.386438,48.244194],[-92.383906,48.244696],[-92.384387,48.242914],[-92.384355,48.24072],[-92.383161,48.238367],[-92.378922,48.235782],[-92.378343,48.233383],[-92.378449,48.230801],[-92.377903,48.229635],[-92.372802,48.223717],[-92.369174,48.220268],[-92.362097,48.222876],[-92.353177,48.230328],[-92.349177,48.231404],[-92.341207,48.23248],[-92.33943,48.234537],[-92.336831,48.235383],[-92.335394,48.2352],[-92.333649,48.233898],[-92.332247,48.233876],[-92.325304,48.23703],[-92.321746,48.237304],[-92.314665,48.240527],[-92.280727,48.244269],[-92.269742,48.248241],[-92.273706,48.256747],[-92.290368,48.265527],[-92.294541,48.27156],[-92.292999,48.276404],[-92.295053,48.276587],[-92.295668,48.278118],[-92.301451,48.288608],[-92.294527,48.306454],[-92.306309,48.316442],[-92.304561,48.322977],[-92.295412,48.323957],[-92.288994,48.342991],[-92.26228,48.354933],[-92.222813,48.349203],[-92.219658,48.34813],[-92.216983,48.345114],[-92.206803,48.345596],[-92.207009,48.346891],[-92.207729,48.347812],[-92.203684,48.352063],[-92.194874,48.350396],[-92.194188,48.348728],[-92.193571,48.348613],[-92.178418,48.351881],[-92.178897,48.355285],[-92.177354,48.357228],[-92.162161,48.363279],[-92.145049,48.365651],[-92.143583,48.356121],[-92.092256,48.354617],[-92.083513,48.353865],[-92.077961,48.358253],[-92.066269,48.359602],[-92.055228,48.359213],[-92.048648,48.348861],[-92.045734,48.347901],[-92.045152,48.345776],[-92.047655,48.343766],[-92.046562,48.33474],[-92.037721,48.333183],[-92.030872,48.325824],[-92.000133,48.321355],[-92.01298,48.297391],[-92.012066,48.287268],[-92.007246,48.280388],[-92.006577,48.265421],[-91.989545,48.260214],[-91.980772,48.247801],[-91.977555,48.24714],[-91.977486,48.24634],[-91.977725,48.245723],[-91.976903,48.244626],[-91.975809,48.244535],[-91.971056,48.247667],[-91.970371,48.249358],[-91.972565,48.250396],[-91.971779,48.252977],[-91.97024,48.253594],[-91.959565,48.253551],[-91.954432,48.251678],[-91.954397,48.251199],[-91.953806,48.249412],[-91.952095,48.247131],[-91.952209,48.244394],[-91.957683,48.242683],[-91.957798,48.23949],[-91.959166,48.236296],[-91.957798,48.232989],[-91.953398,48.232978],[-91.951297,48.232647],[-91.945155,48.230442],[-91.941838,48.230602],[-91.940709,48.232019],[-91.937356,48.234213],[-91.929045,48.235834],[-91.920802,48.236747],[-91.915772,48.238871],[-91.907597,48.238183],[-91.906967,48.23777],[-91.905991,48.237132],[-91.903767,48.23704],[-91.89347,48.237699],[-91.884691,48.227321],[-91.867882,48.219095],[-91.864382,48.207031],[-91.845821,48.208636],[-91.839463,48.209643],[-91.834404,48.209804],[-91.831975,48.209302],[-91.815772,48.211748],[-91.814473,48.208664],[-91.809038,48.206013],[-91.798252,48.202858],[-91.798099,48.202813],[-91.79181,48.202492],[-91.789011,48.196549],[-91.78614,48.196412],[-91.781182,48.200432],[-91.764672,48.200586],[-91.763236,48.201499],[-91.760874,48.204789],[-91.756637,48.205022],[-91.753939,48.201198],[-91.749075,48.198844],[-91.744973,48.198458],[-91.741932,48.199122],[-91.742313,48.204491],[-91.738861,48.204173],[-91.714931,48.19913],[-91.710519,48.193898],[-91.711611,48.1891],[-91.71243,48.1875],[-91.721413,48.180255],[-91.722574,48.178335],[-91.724584,48.170657],[-91.723285,48.169263],[-91.717548,48.171801],[-91.709383,48.172717],[-91.705318,48.170775],[-91.705109,48.159716],[-91.70726,48.153661],[-91.708523,48.152701],[-91.703569,48.14539],[-91.701691,48.144773],[-91.699336,48.144728],[-91.698448,48.143791],[-91.698174,48.141643],[-91.699981,48.13184],[-91.704143,48.124894],[-91.708099,48.122985],[-91.712226,48.116883],[-91.712498,48.115718],[-91.711986,48.114713],[-91.703524,48.113548],[-91.692843,48.11636],[-91.691512,48.117617],[-91.692366,48.11933],[-91.682845,48.122118],[-91.683801,48.117731],[-91.687623,48.111698],[-91.680902,48.108111],[-91.676876,48.107264],[-91.671519,48.10836],[-91.667527,48.108359],[-91.665208,48.107011],[-91.663092,48.108861],[-91.662647,48.111489],[-91.653261,48.114137],[-91.652204,48.113725],[-91.651624,48.112742],[-91.653571,48.109567],[-91.640175,48.096926],[-91.615255,48.101906],[-91.588953,48.102166],[-91.575853,48.106509],[-91.559272,48.108268],[-91.552962,48.103012],[-91.569746,48.093348],[-91.575471,48.066294],[-91.573015,48.057292],[-91.575672,48.048791],[-91.567254,48.043719],[-91.542512,48.053268],[-91.488646,48.068065],[-91.465499,48.06677],[-91.45033,48.068806],[-91.44658,48.06739],[-91.447125,48.063186],[-91.438093,48.052104],[-91.438877,48.049979],[-91.437582,48.049248],[-91.429642,48.048608],[-91.413862,48.053518],[-91.391128,48.057075],[-91.379463,48.065295],[-91.370872,48.06941],[-91.365143,48.066968],[-91.350521,48.07168],[-91.340159,48.073236],[-91.336715,48.070884],[-91.336578,48.069627],[-91.332589,48.069331],[-91.330033,48.069811],[-91.328738,48.070588],[-91.327886,48.071388],[-91.324784,48.072599],[-91.314693,48.073422],[-91.311829,48.072942],[-91.302625,48.073033],[-91.290215,48.073945],[-91.275961,48.078488],[-91.26638,48.078713],[-91.250112,48.084087],[-91.234932,48.095923],[-91.226203,48.099671],[-91.214428,48.10294],[-91.190461,48.124891],[-91.183207,48.122235],[-91.176181,48.125811],[-91.156107,48.140475],[-91.137733,48.14915],[-91.138311,48.151024],[-91.138482,48.151458],[-91.139402,48.153186],[-91.139402,48.154738],[-91.13858,48.155844],[-91.120047,48.160412],[-91.117965,48.162081],[-91.114862,48.166057],[-91.108887,48.168436],[-91.097892,48.171157],[-91.092258,48.173101],[-91.088708,48.177351],[-91.082731,48.180756],[-91.08116,48.180414],[-91.080408,48.179272],[-91.07566,48.179204],[-91.065549,48.181215],[-91.062918,48.185213],[-91.056562,48.187566],[-91.043613,48.189163],[-91.035858,48.189436],[-91.03555,48.189459],[-91.0348,48.188956],[-91.031761,48.188479],[-91.031589,48.188452],[-91.024208,48.190072],[-91.022667,48.19247],[-91.012411,48.198062],[-91.003353,48.200183],[-91.004239,48.202628],[-90.976955,48.219452],[-90.925092,48.229897],[-90.914971,48.230603],[-90.906829,48.237339],[-90.88548,48.245784],[-90.881451,48.240459],[-90.875107,48.237784],[-90.867079,48.238177],[-90.847352,48.244443],[-90.843624,48.243576],[-90.839176,48.239511],[-90.837772,48.234714],[-90.83982,48.228294],[-90.839615,48.2277],[-90.8377,48.226512],[-90.837323,48.225621],[-90.834854,48.202161],[-90.834166,48.18866],[-90.836313,48.176963],[-90.832589,48.173765],[-90.826135,48.177147],[-90.825418,48.181237],[-90.825726,48.183567],[-90.821115,48.184709],[-90.819304,48.182699],[-90.817698,48.179569],[-90.810628,48.179661],[-90.804207,48.177833],[-90.800693,48.163235],[-90.796596,48.159373],[-90.785874,48.160902],[-90.78338,48.163939],[-90.781263,48.164693],[-90.777917,48.163801],[-90.776279,48.161927],[-90.777512,48.156696],[-90.778031,48.148723],[-90.785781,48.145504],[-90.796809,48.139521],[-90.79797,48.136894],[-90.795308,48.135523],[-90.793841,48.135569],[-90.790312,48.135788],[-90.788101,48.135081],[-90.787305,48.134196],[-90.787305,48.133665],[-90.787563,48.132872],[-90.789919,48.129902],[-90.787122,48.127709],[-90.783471,48.126885],[-90.776814,48.124103],[-90.776133,48.122481],[-90.775962,48.122229],[-90.774225,48.118894],[-90.774191,48.118575],[-90.772998,48.117523],[-90.76911,48.116585],[-90.767615,48.110302],[-90.761555,48.100133],[-90.761625,48.098283],[-90.751608,48.090968],[-90.74152,48.094583],[-90.703702,48.096009],[-90.686617,48.10051],[-90.641596,48.103515],[-90.626886,48.111846],[-90.62035,48.111895],[-90.616154,48.112491],[-90.606402,48.115966],[-90.59146,48.117546],[-90.590574,48.119762],[-90.582217,48.123784],[-90.579897,48.123922],[-90.577065,48.121272],[-90.575905,48.120907],[-90.570481,48.121501],[-90.566113,48.12262],[-90.55929,48.121683],[-90.555845,48.117069],[-90.569763,48.106951],[-90.567482,48.101178],[-90.564341,48.098773],[-90.556838,48.096008],[-90.517075,48.099402],[-90.510871,48.097389],[-90.508141,48.099238],[-90.505485,48.099644],[-90.496148,48.098781],[-90.495637,48.099444],[-90.495398,48.099787],[-90.493797,48.101318],[-90.489873,48.099012],[-90.487077,48.099082],[-90.483361,48.100363],[-90.480294,48.102099],[-90.477635,48.105458],[-90.471019,48.106076],[-90.467712,48.108818],[-90.465495,48.108659],[-90.46321,48.107357],[-90.452022,48.105006],[-90.447384,48.10343],[-90.443462,48.100575],[-90.438449,48.098747],[-90.410347,48.105048],[-90.403219,48.105114],[-90.393469,48.100359],[-90.390162,48.100061],[-90.386413,48.098209],[-90.385597,48.095833],[-90.384575,48.094599],[-90.382258,48.093182],[-90.374542,48.090942],[-90.373042,48.091217],[-90.372261,48.093639],[-90.367658,48.094577],[-90.353713,48.095016],[-90.346689,48.094104],[-90.344234,48.094447],[-90.343484,48.095064],[-90.342939,48.09559],[-90.338438,48.096207],[-90.337177,48.099771],[-90.330052,48.102399],[-90.31723,48.103793],[-90.312386,48.1053],[-90.305634,48.105117],[-90.298099,48.102512],[-90.293326,48.099131],[-90.289337,48.098993],[-90.274636,48.10326],[-90.264986,48.103301],[-90.25387,48.102245],[-90.233797,48.107071],[-90.224692,48.108148],[-90.216404,48.106505],[-90.211426,48.106278],[-90.19509,48.108381],[-90.188679,48.107947],[-90.176605,48.112445],[-90.164227,48.109725],[-90.150721,48.110269],[-90.14523,48.111637],[-90.143762,48.112641],[-90.136191,48.112136],[-90.132645,48.111768],[-90.128647,48.108436],[-90.12509,48.107702],[-90.1239,48.107131],[-90.122603,48.105602],[-90.116259,48.104303],[-90.091639,48.10463],[-90.073873,48.101138],[-90.057644,48.096364],[-90.04902,48.091681],[-90.045577,48.09136],[-90.029626,48.087588],[-90.023595,48.084708],[-90.018835,48.072032],[-90.015057,48.067188],[-90.010866,48.067917],[-90.010013,48.068853],[-90.008446,48.068396],[-89.997852,48.057567],[-89.993822,48.049027],[-89.995994,48.041649],[-89.996702,48.035391],[-89.994687,48.030733],[-89.99305,48.028404],[-89.988894,48.025666],[-89.987293,48.025484],[-89.985217,48.026215],[-89.984332,48.026079],[-89.97718,48.023501],[-89.973433,48.02035],[-89.968255,48.014482],[-89.96349,48.014643],[-89.954605,48.011516],[-89.95059,48.015901],[-89.934489,48.015628],[-89.932991,48.013161],[-89.932617,48.010398],[-89.930745,48.00816],[-89.921633,47.999886],[-89.915341,47.994866],[-89.911258,47.993267],[-89.904828,47.992261],[-89.903501,47.991667],[-89.900237,47.988765],[-89.897414,47.987599],[-89.886528,47.986305],[-89.88071,47.986405],[-89.873286,47.985419],[-89.871245,47.985945],[-89.868153,47.989898],[-89.847571,47.992442],[-89.846244,47.992717],[-89.842709,47.997422],[-89.842568,48.001368],[-89.842629,48.001945],[-89.842629,48.002391],[-89.842183,48.002773],[-89.841673,48.0029],[-89.838689,48.002214],[-89.834049,47.999516],[-89.831825,47.9994],[-89.830385,48.000284],[-89.822594,48.010737],[-89.820483,48.014665],[-89.819802,48.015099],[-89.807445,48.017224],[-89.806016,48.014026],[-89.804926,48.013775],[-89.797744,48.014505],[-89.796212,48.01487],[-89.795224,48.017154],[-89.794237,48.017656],[-89.791853,48.018204],[-89.782696,48.017837],[-89.779427,48.018361],[-89.773944,48.021694],[-89.763967,48.022969],[-89.749314,48.023325],[-89.744206,48.022186],[-89.743046,48.019971],[-89.742569,48.019834],[-89.739131,48.020384],[-89.736851,48.021321],[-89.7313,48.019747],[-89.731163,48.018788],[-89.724048,48.018996],[-89.723571,48.019156],[-89.724117,48.020207],[-89.723164,48.020481],[-89.72221,48.020162],[-89.721038,48.017965],[-89.721569,48.017499],[-89.723019,48.017553],[-89.724318,48.016485],[-89.724044,48.013675],[-89.721287,48.01443],[-89.719245,48.016349],[-89.717102,48.017172],[-89.716114,48.016441],[-89.716417,48.010251],[-89.715906,48.009246],[-89.713183,48.010024],[-89.708145,48.010162],[-89.70709,48.009522],[-89.706068,48.007992],[-89.702528,48.006325],[-89.701438,48.006211],[-89.688879,48.01078],[-89.686495,48.010643],[-89.685986,48.009798],[-89.684931,48.009821],[-89.67979,48.010278],[-89.676896,48.011237],[-89.673798,48.01151],[-89.671892,48.010939],[-89.67162,48.010162],[-89.669374,48.008312],[-89.667128,48.007421],[-89.664813,48.0079],[-89.663212,48.010618],[-89.657051,48.009954],[-89.655793,48.007532],[-89.653208,48.004608],[-89.651065,48.003625],[-89.649057,48.003853],[-89.64783,48.005132],[-89.645447,48.006204],[-89.641465,48.005906],[-89.639833,48.003964],[-89.637995,48.00378],[-89.63728,48.0041],[-89.637177,48.004945],[-89.637652,48.006658],[-89.638774,48.008166],[-89.637173,48.009308],[-89.625087,48.011517],[-89.620454,48.01074],[-89.617867,48.010947],[-89.616133,48.012364],[-89.614161,48.015495],[-89.611678,48.017529],[-89.610351,48.01778],[-89.609396,48.016684],[-89.608507,48.012482],[-89.60973,48.009398],[-89.607821,48.006566],[-89.601659,48.004764],[-89.594749,48.004332],[-89.588996,48.001821],[-89.586,47.999885],[-89.582117,47.996314],[-89.581007,47.995899],[-89.570671,47.99802],[-89.564288,48.00293],[-89.489226,48.014528],[-89.491739,48.005212],[-89.495344,48.002356],[-89.541521,47.992841],[-89.551555,47.987305],[-89.552939,47.980731],[-89.555015,47.974849],[-89.572315,47.967238],[-89.58823,47.9662],[-89.59589,47.971046],[-89.611412,47.980731],[-89.624559,47.983153],[-89.631825,47.980039],[-89.637015,47.973465],[-89.640129,47.96793],[-89.639844,47.959826],[-89.638285,47.954275],[-89.639545,47.95359],[-89.660616,47.951216],[-89.697619,47.941288],[-89.72973,47.925245],[-89.737539,47.918183],[-89.758714,47.906993],[-89.793539,47.891358],[-89.85396,47.873997],[-89.87158,47.874194],[-89.923649,47.862062],[-89.930844,47.857723],[-89.92752,47.850825],[-89.933899,47.84676],[-89.974296,47.830514],[-90.01373,47.821373],[-90.042761,47.817568],[-90.072025,47.811105],[-90.072241,47.807727],[-90.075559,47.803303],[-90.082354,47.803619],[-90.08816,47.803041],[-90.1168,47.79538],[-90.132078,47.79572],[-90.16079,47.792807],[-90.178755,47.786414],[-90.187636,47.77813],[-90.229145,47.776198],[-90.248794,47.772763],[-90.295952,47.759054],[-90.30634,47.756627],[-90.313958,47.756681],[-90.323446,47.753771],[-90.330254,47.750892],[-90.332686,47.746387],[-90.386234,47.7411],[-90.393823,47.738271],[-90.42139,47.73515],[-90.437712,47.731612],[-90.441912,47.726404],[-90.458365,47.7214],[-90.537105,47.703055],[-90.551291,47.690266],[-90.584954,47.68074],[-90.647837,47.656176],[-90.686382,47.643594],[-90.735927,47.624343],[-90.86827,47.5569],[-90.907494,47.532873],[-90.910127,47.530178],[-90.909801,47.526215],[-90.914247,47.522639],[-90.919375,47.519784],[-90.927975,47.519008],[-90.939072,47.514532],[-91.023124,47.464964],[-91.023125,47.464964],[-91.032945,47.458236],[-91.045646,47.456525],[-91.077712,47.428767],[-91.097569,47.413888],[-91.106218,47.411806],[-91.128131,47.399619],[-91.131268,47.393567],[-91.146958,47.381464],[-91.156513,47.378816],[-91.170037,47.366266],[-91.188772,47.340082],[-91.206248,47.329182],[-91.238658,47.304976],[-91.250163,47.29049],[-91.262512,47.27929],[-91.26595,47.279479],[-91.270697,47.277134],[-91.288478,47.26596],[-91.326019,47.238993],[-91.35385,47.212686],[-91.357803,47.206743],[-91.374191,47.1978],[-91.387021,47.187293],[-91.398455,47.183916],[-91.418805,47.172152],[-91.452031,47.145158],[-91.456965,47.139156],[-91.477351,47.125667],[-91.497902,47.122579],[-91.506998,47.118489],[-91.518793,47.108121],[-91.573817,47.089917],[-91.591508,47.068684],[-91.600969,47.063425],[-91.604949,47.063309],[-91.613173,47.059192],[-91.626824,47.049953],[-91.637164,47.040429],[-91.644564,47.026491],[-91.660248,47.019288],[-91.666477,47.014297],[-91.704649,47.005246],[-91.737098,46.982853],[-91.7773,46.951799],[-91.780675,46.945881],[-91.794039,46.939676],[-91.806851,46.933727],[-91.826068,46.927199],[-91.834852,46.927135],[-91.841349,46.925215],[-91.871286,46.908352],[-91.883238,46.905728],[-91.906483,46.891236],[-91.914984,46.883836],[-91.952985,46.867037],[-91.985086,46.849637],[-91.997987,46.838737],[-92.013405,46.833727],[-92.058888,46.809938],[-92.062088,46.804038],[-92.086089,46.794339],[-92.094089,46.787839],[-92.088289,46.773639],[-92.06449,46.745439],[-92.025789,46.710839],[-92.01529,46.706469],[-92.020289,46.704039],[-92.02472,46.705624],[-92.03399,46.708939],[-92.08949,46.74924],[-92.10819,46.74914],[-92.108777,46.749105],[-92.112242,46.748899],[-92.11659,46.74864],[-92.13789,46.73954],[-92.14329,46.73464],[-92.143391,46.72814],[-92.141291,46.72524],[-92.144917,46.718496],[-92.144959,46.718418],[-92.146291,46.71594],[-92.148691,46.71514],[-92.155191,46.71594],[-92.167291,46.719941],[-92.167955,46.719685],[-92.170046,46.718878],[-92.174291,46.717241],[-92.178891,46.716741],[-92.189091,46.717541],[-92.191491,46.716241],[-92.191594,46.715955],[-92.191764,46.715483],[-92.193291,46.711241],[-92.197391,46.707641],[-92.200922,46.706212],[-92.201481,46.705985],[-92.201591,46.705941],[-92.201901,46.705751],[-92.202421,46.705432],[-92.204691,46.704041]]]}}]} diff --git a/Where/RegionKit/Sources/Resources/regions/us-MO.geojson b/Where/RegionKit/Sources/Resources/regions/us-MO.geojson new file mode 100644 index 00000000..be05403b --- /dev/null +++ b/Where/RegionKit/Sources/Resources/regions/us-MO.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"region":"us-MO","name":"Missouri"},"geometry":{"type":"Polygon","coordinates":[[[-89.545006,36.336809],[-89.560439,36.337746],[-89.581636,36.342357],[-89.600544,36.342985],[-89.605668,36.342234],[-89.610689,36.340442],[-89.615841,36.336085],[-89.6198,36.329546],[-89.620255,36.323006],[-89.619242,36.320726],[-89.611819,36.309088],[-89.58982,36.296814],[-89.584337,36.29334],[-89.578492,36.288317],[-89.554289,36.277751],[-89.549219,36.27875],[-89.546577,36.280439],[-89.544797,36.280458],[-89.539487,36.277368],[-89.537675,36.275279],[-89.535529,36.270541],[-89.534507,36.261802],[-89.534745,36.252576],[-89.539229,36.248821],[-89.541621,36.247891],[-89.544743,36.247484],[-89.548952,36.2482],[-89.553563,36.250341],[-89.557991,36.251037],[-89.562206,36.250909],[-89.564997,36.250067],[-89.573928,36.243843],[-89.577544,36.242262],[-89.587326,36.239484],[-89.602374,36.238106],[-89.60651,36.238328],[-89.611145,36.239271],[-89.624416,36.243305],[-89.63679,36.248079],[-89.642182,36.249486],[-89.652518,36.250692],[-89.678046,36.248284],[-89.686229,36.249507],[-89.691308,36.252079],[-89.695235,36.252766],[-89.698568,36.250591],[-89.699817,36.248384],[-89.703511,36.243412],[-89.705328,36.239898],[-89.705545,36.238136],[-89.70525,36.236568],[-89.704459,36.235468],[-89.699677,36.230821],[-89.69263,36.224959],[-89.679548,36.215911],[-89.664144,36.20652],[-89.654876,36.20153],[-89.64479,36.194101],[-89.636893,36.188951],[-89.629452,36.185382],[-89.623804,36.183128],[-89.618228,36.179966],[-89.607004,36.171179],[-89.600871,36.164558],[-89.594397,36.155457],[-89.592206,36.15012],[-89.591605,36.144096],[-89.592102,36.135637],[-89.59307,36.129699],[-89.594,36.12719],[-89.598946,36.121778],[-89.601936,36.11947],[-89.615128,36.113816],[-89.625078,36.108131],[-89.628305,36.106853],[-89.64302,36.10362],[-89.657709,36.099128],[-89.666598,36.095802],[-89.672463,36.091837],[-89.678821,36.084636],[-89.680029,36.082494],[-89.681946,36.072336],[-89.684439,36.051719],[-89.687254,36.034048],[-89.688577,36.029238],[-89.692437,36.020507],[-89.703571,36.00804],[-89.705677,36.005018],[-89.706932,36.000981],[-89.733095,36.000608],[-89.737564,36.000522],[-89.737648,36.000567],[-89.769973,36.000536],[-89.770255,36.000524],[-89.86901,35.99964],[-89.87459,35.999575],[-89.875085,35.999578],[-89.875586,35.999562],[-89.896508,35.999432],[-89.901183,35.999365],[-89.959375,35.99902],[-89.959377,35.99902],[-89.959893,35.99902],[-89.961075,35.999135],[-89.965327,35.998813],[-89.972563,35.998994],[-90.103842,35.998143],[-90.12635,35.997596],[-90.127331,35.997635],[-90.158812,35.997375],[-90.2888,35.996419],[-90.288947,35.996418],[-90.292376,35.996397],[-90.339434,35.996033],[-90.342616,35.995895],[-90.368718,35.995812],[-90.37789,35.995683],[-90.36443,36.013625],[-90.35739,36.01825],[-90.351732,36.025347],[-90.35131,36.02688],[-90.351818,36.028436],[-90.350974,36.031572],[-90.348297,36.035074],[-90.34909,36.040131],[-90.347908,36.041939],[-90.339343,36.047112],[-90.337146,36.047754],[-90.335466,36.061714],[-90.333261,36.067504],[-90.320746,36.071326],[-90.318491,36.075514],[-90.318378,36.076658],[-90.318745,36.079313],[-90.32007,36.081234],[-90.320662,36.087138],[-90.319168,36.089976],[-90.312373,36.094507],[-90.306255,36.094758],[-90.29991,36.098236],[-90.297991,36.103201],[-90.297878,36.104826],[-90.298413,36.106748],[-90.294492,36.112949],[-90.293109,36.114368],[-90.278724,36.117406],[-90.272378,36.11809],[-90.266256,36.120559],[-90.260645,36.127409],[-90.258755,36.127591],[-90.255596,36.127086],[-90.253198,36.127383],[-90.248808,36.129835],[-90.245961,36.132857],[-90.244317,36.136502],[-90.240887,36.137321],[-90.235585,36.139474],[-90.231386,36.147348],[-90.231445,36.153868],[-90.23537,36.159153],[-90.230324,36.167072],[-90.231284,36.169246],[-90.229339,36.17364],[-90.220425,36.184764],[-90.21574,36.184582],[-90.213509,36.183232],[-90.21128,36.183392],[-90.204449,36.18694],[-90.200582,36.192181],[-90.201712,36.193187],[-90.201655,36.19607],[-90.199905,36.196848],[-90.197167,36.196002],[-90.195247,36.200257],[-90.194259,36.200692],[-90.193017,36.20044],[-90.190415,36.201364],[-90.190053,36.201493],[-90.188189,36.20536],[-90.18579,36.204674],[-90.182853,36.205108],[-90.179695,36.208262],[-90.173281,36.210301],[-90.167745,36.21332],[-90.161166,36.215767],[-90.159415,36.215424],[-90.157383,36.213821],[-90.15614,36.213706],[-90.152497,36.215582],[-90.151422,36.219174],[-90.14224,36.227522],[-90.138089,36.227245],[-90.134785,36.226397],[-90.132356,36.226442],[-90.126366,36.229367],[-90.124673,36.233787],[-90.12466,36.235549],[-90.127264,36.236347],[-90.130114,36.240307],[-90.130565,36.242092],[-90.129716,36.243235],[-90.125958,36.243416],[-90.124476,36.244198],[-90.118219,36.253491],[-90.114922,36.265595],[-90.112945,36.266557],[-90.110317,36.26697],[-90.105231,36.266835],[-90.100175,36.268988],[-90.091247,36.271256],[-90.086471,36.271531],[-90.083731,36.272332],[-90.075934,36.281485],[-90.0778,36.288349],[-90.070085,36.29471],[-90.06398,36.303038],[-90.069266,36.313152],[-90.076504,36.319237],[-90.077296,36.319329],[-90.079077,36.318414],[-90.079981,36.318619],[-90.081961,36.322097],[-90.081425,36.325644],[-90.07888,36.327977],[-90.076986,36.330791],[-90.075572,36.33404],[-90.075884,36.335184],[-90.078231,36.336511],[-90.077185,36.341339],[-90.075064,36.341774],[-90.074074,36.342895],[-90.074668,36.344794],[-90.077695,36.348478],[-90.077723,36.349484],[-90.075376,36.350148],[-90.070653,36.356097],[-90.066297,36.3593],[-90.063891,36.372982],[-90.064514,36.382085],[-90.068907,36.38866],[-90.072897,36.393007],[-90.074227,36.393304],[-90.076689,36.395867],[-90.078671,36.399116],[-90.080426,36.400763],[-90.094353,36.403963],[-90.103644,36.40472],[-90.109495,36.404073],[-90.114677,36.406039],[-90.115839,36.408235],[-90.121445,36.410931],[-90.128719,36.411659],[-90.131038,36.415069],[-90.135002,36.413721],[-90.138512,36.413952],[-90.138653,36.414547],[-90.136218,36.415346],[-90.134915,36.416902],[-90.134231,36.422827],[-90.134797,36.42324],[-90.13559,36.422897],[-90.137771,36.421205],[-90.139499,36.421457],[-90.143743,36.424433],[-90.144139,36.425806],[-90.143798,36.428483],[-90.14272,36.43116],[-90.139039,36.431273],[-90.137565,36.431913],[-90.134136,36.436602],[-90.133993,36.437906],[-90.136029,36.442941],[-90.137323,36.455411],[-90.140041,36.457883],[-90.141399,36.459874],[-90.141568,36.460766],[-90.141101,36.461791],[-90.14153,36.462993],[-90.142475,36.463422],[-90.143162,36.46368],[-90.143849,36.46325],[-90.14462,36.462789],[-90.155804,36.463555],[-90.1557,36.466103],[-90.152888,36.47093],[-90.146327,36.46952],[-90.142222,36.470554],[-90.142269,36.472138],[-90.143683,36.476029],[-90.145382,36.47651],[-90.148329,36.476168],[-90.158838,36.479558],[-90.159376,36.480084],[-90.15946,36.481343],[-90.157136,36.484317],[-90.159305,36.485834],[-90.159462,36.487609],[-90.156369,36.487748],[-90.155997,36.490385],[-90.158568,36.491574],[-90.159305,36.492446],[-90.159048,36.493734],[-90.157358,36.494223],[-90.155012,36.493648],[-90.153871,36.495344],[-90.154409,36.496832],[-90.152481,36.497952],[-90.193943,36.497823],[-90.217323,36.497797],[-90.220702,36.497858],[-90.220732,36.497858],[-90.228943,36.497771],[-90.339892,36.498213],[-90.494575,36.498368],[-90.495027,36.498371],[-90.50016,36.498399],[-90.576112,36.498446],[-90.57618,36.498446],[-90.585342,36.498497],[-90.5943,36.498459],[-90.60545,36.498459],[-90.612554,36.498559],[-90.648494,36.498447],[-90.653246,36.498488],[-90.693005,36.49851],[-90.711226,36.498318],[-90.765672,36.498494],[-90.782454,36.498523],[-90.784398,36.498524],[-90.850434,36.498548],[-90.873775,36.498074],[-90.876567,36.498313],[-90.876867,36.498423],[-90.87922,36.498378],[-90.960648,36.498426],[-90.963063,36.498418],[-91.008558,36.49827],[-91.017974,36.498062],[-91.09588,36.49787],[-91.096277,36.497893],[-91.126529,36.497712],[-91.21736,36.497511],[-91.218645,36.497564],[-91.227398,36.497617],[-91.404915,36.49712],[-91.405141,36.497165],[-91.407137,36.497112],[-91.407261,36.497123],[-91.433298,36.497262],[-91.436502,36.497377],[-91.446284,36.497469],[-91.450004,36.497562],[-91.50014,36.498812],[-91.529774,36.499022],[-91.53687,36.499156],[-91.539359,36.499116],[-91.549163,36.499161],[-91.596213,36.499162],[-91.601317,36.499343],[-91.631439,36.499198],[-91.64259,36.499335],[-91.672343,36.499463],[-91.686026,36.499374],[-91.687615,36.499397],[-91.726663,36.499209],[-91.766111,36.499114],[-91.784713,36.499074],[-91.7995,36.498952],[-91.80204,36.498963],[-91.805981,36.498987],[-91.864385,36.498789],[-91.865995,36.498783],[-91.985802,36.498431],[-91.988751,36.498498],[-92.019375,36.498524],[-92.028847,36.498642],[-92.055789,36.49867],[-92.057178,36.49867],[-92.074934,36.498761],[-92.098356,36.498803],[-92.120306,36.498864],[-92.120415,36.498863],[-92.137741,36.498706],[-92.150295,36.498634],[-92.199396,36.498351],[-92.211449,36.498395],[-92.214143,36.498372],[-92.216412,36.498417],[-92.309424,36.497894],[-92.318415,36.497711],[-92.350277,36.497787],[-92.375159,36.497199],[-92.384927,36.497845],[-92.420383,36.497914],[-92.444129,36.498526],[-92.516836,36.498738],[-92.529128,36.498609],[-92.564238,36.49824],[-92.772333,36.497772],[-92.772341,36.497772],[-92.838621,36.498079],[-92.838876,36.498033],[-92.854049,36.497983],[-92.894001,36.49785],[-92.894336,36.497867],[-93.013742,36.49813],[-93.068455,36.49825],[-93.069512,36.498242],[-93.087635,36.498239],[-93.088988,36.498184],[-93.125969,36.497851],[-93.296117,36.498351],[-93.315324,36.498408],[-93.315337,36.498408],[-93.394718,36.498519],[-93.396079,36.498669],[-93.426989,36.498585],[-93.507408,36.498911],[-93.514512,36.498881],[-93.584281,36.498896],[-93.584282,36.498896],[-93.700171,36.499135],[-93.709956,36.499179],[-93.718893,36.499178],[-93.727552,36.499055],[-93.728022,36.499037],[-93.866758,36.498789],[-93.906128,36.498718],[-93.92184,36.498718],[-93.95919,36.498717],[-93.96392,36.498717],[-94.077089,36.49873],[-94.098588,36.498676],[-94.100252,36.49867],[-94.110673,36.498587],[-94.111473,36.498597],[-94.361203,36.4996],[-94.519478,36.499214],[-94.55929,36.499496],[-94.617919,36.499414],[-94.617877,36.514999],[-94.617883,36.517799],[-94.617997,36.53428],[-94.617868,36.53609],[-94.617897,36.536983],[-94.617814,36.577732],[-94.617853,36.59912],[-94.617865,36.606851],[-94.617815,36.612604],[-94.618019,36.667921],[-94.618025,36.66943],[-94.61813,36.701423],[-94.618307,36.76656],[-94.61838,36.84732],[-94.618658,36.880064],[-94.618243,36.897027],[-94.618282,36.911472],[-94.618207,36.926236],[-94.618295,36.929647],[-94.618166,36.937584],[-94.618109,36.946564],[-94.618026,36.950158],[-94.618031,36.994704],[-94.618049,36.996208],[-94.61808,36.998135],[-94.617995,37.009016],[-94.617965,37.040537],[-94.617875,37.056797],[-94.617875,37.056798],[-94.617982,37.075077],[-94.61812,37.085934],[-94.618082,37.086432],[-94.61809,37.093494],[-94.618088,37.093671],[-94.618059,37.096676],[-94.618151,37.103968],[-94.618212,37.113169],[-94.618075,37.129755],[-94.618072,37.132345],[-94.618351,37.160211],[-94.618473,37.174782],[-94.618505,37.181184],[-94.618319,37.188774],[-94.618305,37.207337],[-94.618219,37.207772],[-94.61815,37.228121],[-94.618123,37.229334],[-94.618158,37.237597],[-94.618075,37.240436],[-94.617648,37.323589],[-94.617695,37.336842],[-94.617636,37.338415],[-94.617636,37.338417],[-94.617538,37.364167],[-94.617537,37.364355],[-94.617626,37.367445],[-94.617625,37.367576],[-94.617557,37.396375],[-94.617511,37.410909],[-94.617265,37.425536],[-94.617132,37.439818],[-94.617201,37.454788],[-94.617205,37.460373],[-94.617222,37.460476],[-94.61718,37.465203],[-94.617183,37.469665],[-94.617023,37.483765],[-94.616789,37.52151],[-94.616908,37.527804],[-94.617186,37.553485],[-94.61716,37.557308],[-94.617081,37.567013],[-94.617315,37.571499],[-94.617283,37.571896],[-94.617428,37.609522],[-94.6173,37.610495],[-94.617477,37.63717],[-94.617575,37.653577],[-94.617576,37.653671],[-94.617734,37.673105],[-94.617734,37.673127],[-94.617885,37.682214],[-94.617687,37.686653],[-94.617651,37.687671],[-94.617805,37.690178],[-94.617975,37.722176],[-94.617808,37.729707],[-94.617721,37.77297],[-94.616862,37.819456],[-94.61645,37.83756],[-94.616426,37.845282],[-94.616,37.863126],[-94.615834,37.87251],[-94.615921,37.878331],[-94.615706,37.886843],[-94.615469,37.901775],[-94.615393,37.906392],[-94.615181,37.915944],[-94.614778,37.9342],[-94.614835,37.9367],[-94.614754,37.940769],[-94.614612,37.944362],[-94.614594,37.949978],[-94.614562,37.951517],[-94.614557,37.971037],[-94.614465,37.987799],[-94.614212,37.992462],[-94.613981,38.036949],[-94.613981,38.037057],[-94.614055,38.060056],[-94.614055,38.060088],[-94.614089,38.065901],[-94.614061,38.067343],[-94.613856,38.149769],[-94.613748,38.160633],[-94.613422,38.167908],[-94.613073,38.190552],[-94.612848,38.200714],[-94.612822,38.203918],[-94.612658,38.217649],[-94.612659,38.219251],[-94.612635,38.226987],[-94.612614,38.237766],[-94.612692,38.270394],[-94.612849,38.289914],[-94.612844,38.291423],[-94.612673,38.302527],[-94.612673,38.314832],[-94.612788,38.320142],[-94.612825,38.324387],[-94.613,38.335801],[-94.613312,38.364407],[-94.613329,38.369618],[-94.613275,38.388718],[-94.613265,38.392426],[-94.613365,38.403422],[-94.612866,38.477571],[-94.612865,38.477602],[-94.612696,38.483154],[-94.612726,38.484367],[-94.612644,38.491644],[-94.612272,38.547917],[-94.612157,38.549817],[-94.612176,38.576546],[-94.611902,38.58011],[-94.611887,38.580139],[-94.611908,38.609272],[-94.611858,38.620485],[-94.611465,38.625011],[-94.611602,38.635384],[-94.609509,38.738102],[-94.609456,38.7407],[-94.609399,38.74244],[-94.609039,38.760611],[-94.608041,38.811064],[-94.607625,38.82756],[-94.608033,38.847207],[-94.608033,38.855007],[-94.608033,38.861207],[-94.607993,38.867271],[-94.608033,38.868107],[-94.608033,38.869207],[-94.608033,38.883807],[-94.607978,38.93687],[-94.607866,38.937398],[-94.608134,38.940006],[-94.608134,38.942006],[-94.608334,38.981806],[-94.607517,39.044086],[-94.607234,39.065704],[-94.607334,39.081704],[-94.607234,39.089604],[-94.607354,39.113444],[-94.607034,39.119404],[-94.605734,39.122204],[-94.600434,39.128503],[-94.592533,39.135903],[-94.589933,39.140403],[-94.591933,39.155003],[-94.596033,39.157703],[-94.601733,39.159603],[-94.608834,39.160503],[-94.615834,39.160003],[-94.623934,39.156603],[-94.640035,39.153103],[-94.650735,39.154103],[-94.662435,39.157603],[-94.660315,39.168051],[-94.663835,39.179103],[-94.669135,39.182003],[-94.680336,39.184303],[-94.687236,39.183503],[-94.696332,39.178563],[-94.714137,39.170403],[-94.723637,39.169003],[-94.736537,39.169203],[-94.741938,39.170203],[-94.752338,39.173203],[-94.763138,39.179903],[-94.770338,39.190002],[-94.775538,39.200602],[-94.775543,39.200609],[-94.777838,39.203522],[-94.781518,39.206146],[-94.783838,39.207154],[-94.787343,39.207666],[-94.799663,39.206018],[-94.811663,39.206594],[-94.820687,39.208626],[-94.823791,39.209874],[-94.831679,39.215938],[-94.833552,39.217794],[-94.835056,39.220658],[-94.834896,39.223842],[-94.827791,39.234001],[-94.826111,39.238289],[-94.825663,39.241729],[-94.827487,39.249889],[-94.831471,39.256273],[-94.837855,39.262417],[-94.84632,39.268481],[-94.857072,39.273825],[-94.867568,39.277841],[-94.87832,39.281136],[-94.882576,39.283328],[-94.887056,39.28648],[-94.895217,39.294208],[-94.900049,39.300192],[-94.903137,39.306272],[-94.905329,39.311952],[-94.908065,39.323663],[-94.910641,39.348335],[-94.910017,39.352543],[-94.909409,39.354255],[-94.907297,39.356735],[-94.902497,39.360383],[-94.899024,39.362431],[-94.896832,39.363135],[-94.890928,39.364031],[-94.885216,39.366911],[-94.88136,39.370383],[-94.879088,39.375703],[-94.879281,39.37978],[-94.880979,39.383899],[-94.885026,39.389801],[-94.888972,39.392432],[-94.891845,39.393313],[-94.894979,39.393565],[-94.901823,39.392798],[-94.909581,39.388865],[-94.915859,39.386348],[-94.919225,39.385174],[-94.92311,39.384492],[-94.933652,39.385546],[-94.937158,39.386531],[-94.939697,39.38795],[-94.942039,39.389499],[-94.945577,39.393851],[-94.946227,39.395648],[-94.946662,39.399717],[-94.946293,39.405646],[-94.947864,39.408604],[-94.951209,39.411707],[-94.954817,39.413844],[-94.966066,39.417288],[-94.968849,39.419073],[-94.972952,39.421705],[-94.976606,39.426701],[-94.978798,39.436241],[-94.982144,39.440552],[-94.990172,39.446192],[-94.995768,39.448174],[-95.015825,39.452809],[-95.028498,39.458287],[-95.033408,39.460876],[-95.0375,39.463689],[-95.04078,39.466387],[-95.045716,39.472459],[-95.047133,39.474971],[-95.04837,39.48042],[-95.049845,39.494415],[-95.050552,39.497514],[-95.052177,39.499996],[-95.05638,39.503972],[-95.059461,39.506143],[-95.077441,39.513552],[-95.082714,39.516712],[-95.092704,39.524241],[-95.102888,39.533347],[-95.106596,39.537657],[-95.109304,39.542285],[-95.113557,39.553941],[-95.113077,39.559133],[-95.107454,39.573843],[-95.106406,39.575252],[-95.103228,39.577783],[-95.099095,39.579691],[-95.095736,39.580618],[-95.089515,39.581028],[-95.076688,39.576764],[-95.07216,39.576122],[-95.069315,39.576218],[-95.064519,39.577115],[-95.059519,39.579132],[-95.056897,39.580567],[-95.054804,39.582488],[-95.049277,39.589583],[-95.047165,39.595117],[-95.046361,39.599557],[-95.046445,39.601606],[-95.047911,39.606288],[-95.053012,39.613965],[-95.05339,39.615324],[-95.055152,39.621657],[-95.054925,39.624995],[-95.053367,39.630347],[-95.049518,39.637876],[-95.044554,39.64437],[-95.039049,39.649639],[-95.037464,39.652905],[-95.027644,39.665454],[-95.024595,39.668485],[-95.018318,39.672869],[-95.01531,39.674262],[-95.009023,39.675765],[-95.001379,39.676479],[-94.993557,39.67657],[-94.984149,39.67785],[-94.981557,39.678634],[-94.976325,39.68137],[-94.971317,39.68641],[-94.969909,39.68905],[-94.968981,39.692954],[-94.968453,39.707402],[-94.971078,39.723146],[-94.971206,39.729305],[-94.970422,39.732121],[-94.965318,39.739065],[-94.960086,39.743065],[-94.955286,39.745689],[-94.95263,39.745961],[-94.948726,39.745593],[-94.944741,39.744377],[-94.939221,39.741578],[-94.930005,39.73537],[-94.918324,39.728794],[-94.910068,39.725786],[-94.902612,39.724202],[-94.899316,39.724042],[-94.891744,39.724894],[-94.884143,39.726794],[-94.875643,39.730494],[-94.870143,39.734594],[-94.862943,39.742994],[-94.860371,39.74953],[-94.859443,39.753694],[-94.860743,39.763094],[-94.863143,39.767294],[-94.865243,39.770094],[-94.867143,39.771694],[-94.869644,39.772894],[-94.871144,39.772994],[-94.881422,39.771258],[-94.88146,39.771258],[-94.883924,39.770186],[-94.893646,39.764208],[-94.893724,39.76416],[-94.893919,39.76404],[-94.894071,39.763946],[-94.895041,39.76335],[-94.895268,39.76321],[-94.899156,39.761258],[-94.906244,39.759418],[-94.912293,39.759338],[-94.916789,39.760938],[-94.926229,39.76649],[-94.929653,39.769098],[-94.934262,39.773642],[-94.935302,39.77561],[-94.935782,39.778906],[-94.935206,39.78313],[-94.932726,39.786282],[-94.929654,39.788282],[-94.925605,39.789754],[-94.892965,39.791098],[-94.890292,39.791626],[-94.884084,39.794234],[-94.880932,39.797338],[-94.876344,39.806894],[-94.875944,39.813294],[-94.876544,39.820594],[-94.877044,39.823754],[-94.878677,39.826522],[-94.881013,39.828922],[-94.886933,39.833098],[-94.889493,39.834026],[-94.892677,39.834378],[-94.903157,39.83385],[-94.909942,39.834426],[-94.916918,39.836138],[-94.92615,39.841322],[-94.937655,39.849786],[-94.939767,39.85193],[-94.942567,39.856602],[-94.942407,39.861066],[-94.940743,39.86441],[-94.938791,39.866954],[-94.931463,39.872602],[-94.928466,39.876344],[-94.927252,39.880258],[-94.927359,39.883966],[-94.927897,39.886112],[-94.929574,39.888754],[-94.934493,39.893366],[-94.943867,39.89813],[-94.95154,39.900533],[-94.959276,39.901671],[-94.963345,39.901136],[-94.977749,39.897472],[-94.986975,39.89667],[-94.990284,39.89701],[-94.99341,39.897793],[-95.003819,39.900401],[-95.00844,39.900596],[-95.013152,39.899953],[-95.018743,39.897372],[-95.024389,39.891202],[-95.02524,39.8897],[-95.025947,39.886747],[-95.025119,39.878833],[-95.025422,39.876711],[-95.027931,39.871522],[-95.032053,39.868337],[-95.037767,39.865542],[-95.042142,39.864805],[-95.052535,39.864374],[-95.081534,39.861718],[-95.085003,39.861883],[-95.090158,39.86314],[-95.105912,39.869164],[-95.128166,39.874165],[-95.134747,39.876852],[-95.137092,39.878351],[-95.140601,39.881688],[-95.142718,39.885889],[-95.143403,39.889356],[-95.142445,39.89542],[-95.142563,39.897992],[-95.143802,39.901918],[-95.146055,39.904183],[-95.149657,39.905948],[-95.156024,39.907243],[-95.159834,39.906984],[-95.172296,39.902026],[-95.179453,39.900062],[-95.189565,39.899959],[-95.193816,39.90069],[-95.199347,39.902709],[-95.201935,39.904053],[-95.205733,39.908275],[-95.206196,39.909557],[-95.206326,39.912121],[-95.205745,39.915169],[-95.20201,39.922438],[-95.20069,39.928155],[-95.201277,39.934194],[-95.204428,39.938949],[-95.213737,39.943206],[-95.21644,39.943953],[-95.220212,39.944433],[-95.231114,39.943784],[-95.236761,39.943931],[-95.241383,39.944949],[-95.250254,39.948644],[-95.257652,39.954886],[-95.261854,39.960618],[-95.269886,39.969396],[-95.274757,39.972115],[-95.289715,39.977706],[-95.302507,39.984357],[-95.307111,39.989114],[-95.30778,39.990618],[-95.308404,39.993758],[-95.30829,39.999998],[-95.308469,40.002194],[-95.311163,40.007806],[-95.312211,40.009395],[-95.315271,40.01207],[-95.318015,40.013216],[-95.328501,40.015657],[-95.336242,40.019104],[-95.346573,40.028272],[-95.348777,40.029297],[-95.356876,40.031522],[-95.363983,40.031498],[-95.382957,40.027112],[-95.387195,40.02677],[-95.391527,40.027058],[-95.395858,40.028038],[-95.402665,40.030567],[-95.40726,40.033112],[-95.413588,40.038424],[-95.416824,40.043235],[-95.41932,40.048442],[-95.42164,40.058952],[-95.420643,40.062599],[-95.418345,40.066509],[-95.414734,40.06982],[-95.409856,40.07432],[-95.408455,40.079158],[-95.409243,40.084166],[-95.410643,40.091531],[-95.407591,40.09803],[-95.400139,40.103238],[-95.397146,40.105183],[-95.394216,40.108263],[-95.393062,40.111175],[-95.39284,40.115887],[-95.393347,40.119212],[-95.395369,40.122811],[-95.398667,40.126419],[-95.404395,40.129018],[-95.409481,40.130052],[-95.419186,40.130586],[-95.42478,40.132765],[-95.428749,40.135577],[-95.431022,40.138411],[-95.432165,40.141025],[-95.433374,40.146114],[-95.433822,40.152935],[-95.434817,40.156017],[-95.436348,40.15872],[-95.440694,40.162282],[-95.442818,40.163261],[-95.454919,40.166577],[-95.460746,40.169173],[-95.471054,40.17691],[-95.476301,40.181988],[-95.479193,40.185652],[-95.48102,40.188524],[-95.48254,40.192283],[-95.482757,40.197346],[-95.482319,40.200667],[-95.477948,40.208643],[-95.473469,40.213482],[-95.471393,40.217333],[-95.470061,40.221507],[-95.469718,40.227908],[-95.470349,40.230819],[-95.472548,40.236078],[-95.477501,40.24272],[-95.482778,40.246273],[-95.485994,40.247825],[-95.490333,40.248966],[-95.50026,40.249629],[-95.515455,40.248505],[-95.521925,40.24947],[-95.54716,40.259066],[-95.552473,40.261904],[-95.554324,40.263395],[-95.554817,40.26446],[-95.556325,40.267714],[-95.556275,40.270761],[-95.551488,40.281061],[-95.550966,40.285947],[-95.55162,40.288666],[-95.553292,40.291158],[-95.558732,40.295774],[-95.562157,40.297359],[-95.56814,40.299129],[-95.581787,40.29958],[-95.587371,40.301649],[-95.590165,40.303199],[-95.598657,40.309809],[-95.60511,40.312559],[-95.610439,40.31397],[-95.613479,40.314233],[-95.617931,40.313728],[-95.623213,40.312469],[-95.63631,40.307675],[-95.642262,40.306025],[-95.645329,40.305693],[-95.651507,40.306684],[-95.654294,40.307906],[-95.657328,40.310856],[-95.658025,40.3127],[-95.657764,40.315788],[-95.656612,40.319465],[-95.653729,40.322582],[-95.647931,40.325556],[-95.633807,40.329297],[-95.629936,40.330994],[-95.625204,40.334288],[-95.623182,40.338367],[-95.622704,40.340856],[-95.623728,40.346567],[-95.624815,40.349214],[-95.627124,40.3528],[-95.631481,40.35731],[-95.636991,40.36136],[-95.641027,40.366399],[-95.642414,40.369829],[-95.642679,40.375001],[-95.642147,40.378243],[-95.643934,40.386849],[-95.649418,40.396149],[-95.659134,40.40869],[-95.661463,40.415947],[-95.660721,40.418841],[-95.65831,40.424538],[-95.656288,40.428765],[-95.65563,40.434736],[-95.65819,40.44188],[-95.665413,40.451182],[-95.671742,40.456695],[-95.677174,40.460158],[-95.684363,40.463366],[-95.693133,40.469396],[-95.694651,40.471452],[-95.696365,40.475897],[-95.696756,40.478849],[-95.696206,40.482113],[-95.695247,40.486587],[-95.694726,40.493602],[-95.695945,40.499051],[-95.699969,40.505275],[-95.695604,40.506473],[-95.692083,40.508133],[-95.667981,40.51496],[-95.661687,40.517309],[-95.655674,40.523557],[-95.652262,40.538114],[-95.65341,40.541893],[-95.655848,40.546609],[-95.662097,40.549959],[-95.665486,40.556686],[-95.671754,40.562626],[-95.678718,40.56256],[-95.687109,40.560664],[-95.694147,40.556942],[-95.694881,40.55072],[-95.696673,40.545137],[-95.697281,40.536985],[-95.69505,40.533124],[-95.69721,40.528477],[-95.708591,40.521551],[-95.709974,40.523798],[-95.714291,40.527208],[-95.722444,40.528118],[-95.725214,40.527773],[-95.731179,40.525436],[-95.73725,40.52393],[-95.74868,40.524275],[-95.75711,40.52599],[-95.762857,40.528371],[-95.76692,40.531563],[-95.768693,40.534106],[-95.769281,40.536656],[-95.768412,40.540347],[-95.764696,40.545721],[-95.763624,40.548298],[-95.763366,40.550797],[-95.763833,40.553873],[-95.76503,40.556921],[-95.771776,40.566133],[-95.774704,40.573574],[-95.773549,40.578205],[-95.768527,40.583296],[-95.765645,40.585208],[-95.746443,40.584935],[-95.6875,40.584381],[-95.687442,40.58438],[-95.64184,40.584234],[-95.611069,40.583495],[-95.574046,40.582963],[-95.554959,40.582629],[-95.533182,40.582249],[-95.526682,40.582136],[-95.525392,40.58209],[-95.469319,40.58154],[-95.415406,40.581014],[-95.373923,40.580501],[-95.373893,40.580501],[-95.357802,40.5801],[-95.335588,40.579871],[-95.221525,40.578827],[-95.218783,40.578781],[-95.217455,40.578759],[-95.213327,40.578689],[-95.212715,40.578679],[-95.21159,40.578654],[-95.211408,40.57865],[-95.202264,40.578528],[-95.164058,40.578017],[-95.154499,40.57786],[-95.120829,40.577413],[-95.112222,40.577228],[-95.110663,40.577206],[-95.110303,40.57716],[-95.107213,40.577116],[-95.097607,40.577168],[-95.079742,40.577007],[-95.068921,40.57688],[-94.991661,40.575692],[-94.966491,40.575839],[-94.955134,40.575669],[-94.914896,40.575068],[-94.901451,40.574877],[-94.896801,40.574738],[-94.823758,40.573942],[-94.819978,40.573714],[-94.811188,40.573532],[-94.773988,40.572977],[-94.716665,40.572201],[-94.714925,40.572201],[-94.682601,40.571787],[-94.632035,40.571186],[-94.632032,40.571186],[-94.594001,40.570966],[-94.542154,40.570809],[-94.541828,40.570809],[-94.538318,40.570763],[-94.537058,40.570763],[-94.533878,40.570739],[-94.48928,40.570707],[-94.471213,40.570825],[-94.470648,40.57083],[-94.460088,40.570947],[-94.429725,40.571041],[-94.358307,40.571363],[-94.336706,40.571452],[-94.336556,40.571475],[-94.324765,40.571477],[-94.310724,40.571524],[-94.294813,40.571341],[-94.28735,40.571521],[-94.23224,40.571907],[-94.091085,40.572897],[-94.089194,40.572806],[-94.080463,40.572899],[-94.080223,40.572899],[-94.034134,40.573585],[-94.015492,40.573914],[-93.976766,40.574635],[-93.963863,40.574754],[-93.939857,40.575192],[-93.938627,40.575284],[-93.937097,40.575421],[-93.936317,40.575284],[-93.935687,40.57533],[-93.913961,40.575672],[-93.900877,40.575874],[-93.899317,40.575942],[-93.898327,40.576011],[-93.853656,40.576606],[-93.84093,40.576791],[-93.818725,40.577086],[-93.815485,40.577278],[-93.774344,40.577584],[-93.770231,40.577615],[-93.750223,40.57772],[-93.742759,40.577518],[-93.737259,40.577542],[-93.728355,40.577547],[-93.722443,40.577641],[-93.690333,40.577875],[-93.677099,40.578127],[-93.668845,40.578241],[-93.661913,40.578354],[-93.659272,40.57833],[-93.656211,40.578352],[-93.597352,40.579496],[-93.566189,40.580117],[-93.56581,40.580075],[-93.56524,40.580143],[-93.560798,40.580304],[-93.558938,40.580189],[-93.556899,40.580235],[-93.553986,40.580303],[-93.548284,40.580417],[-93.528177,40.580367],[-93.527607,40.580436],[-93.524124,40.580481],[-93.466887,40.580072],[-93.465297,40.580164],[-93.441767,40.579916],[-93.374386,40.580334],[-93.345442,40.580514],[-93.317605,40.580671],[-93.260612,40.580797],[-93.135802,40.582854],[-93.098507,40.583973],[-93.097296,40.584014],[-93.085517,40.584403],[-92.957747,40.58743],[-92.941595,40.587743],[-92.903544,40.58786],[-92.889796,40.588039],[-92.879178,40.588341],[-92.863034,40.588175],[-92.857391,40.58836],[-92.835074,40.588484],[-92.827992,40.588515],[-92.828061,40.588593],[-92.757407,40.588908],[-92.742232,40.589207],[-92.714598,40.589564],[-92.689854,40.589884],[-92.686693,40.589809],[-92.639223,40.590825],[-92.637898,40.590853],[-92.580278,40.592151],[-92.484588,40.594924],[-92.482394,40.594894],[-92.481692,40.594941],[-92.461609,40.595355],[-92.453745,40.595288],[-92.379691,40.596509],[-92.350807,40.597273],[-92.350776,40.597274],[-92.331445,40.597714],[-92.331205,40.597805],[-92.298754,40.598469],[-92.236484,40.599531],[-92.217603,40.599832],[-92.201669,40.59998],[-92.196162,40.600069],[-92.17978,40.600529],[-92.096387,40.60183],[-92.092875,40.602082],[-92.0832,40.602244],[-92.082339,40.602176],[-92.069521,40.602772],[-92.067904,40.602648],[-92.029649,40.603713],[-91.998683,40.604433],[-91.970988,40.605112],[-91.947708,40.605471],[-91.943113,40.605842],[-91.939292,40.60615],[-91.868401,40.608059],[-91.832481,40.609797],[-91.824826,40.610191],[-91.813968,40.610526],[-91.800133,40.610953],[-91.795374,40.611101],[-91.785916,40.611488],[-91.729115,40.61364],[-91.720058,40.601527],[-91.716769,40.59853],[-91.712025,40.595046],[-91.696359,40.588148],[-91.68882,40.583409],[-91.686357,40.580875],[-91.685381,40.578892],[-91.685723,40.576785],[-91.691557,40.564867],[-91.691591,40.562222],[-91.690804,40.559893],[-91.6887,40.55739],[-91.681714,40.553035],[-91.670993,40.550937],[-91.654345,40.549189],[-91.638082,40.545541],[-91.625161,40.5435],[-91.6219,40.542292],[-91.620071,40.540817],[-91.618999,40.539084],[-91.618028,40.53403],[-91.618793,40.526286],[-91.622196,40.51704],[-91.622362,40.514362],[-91.621353,40.510072],[-91.619486,40.507134],[-91.616948,40.504794],[-91.612821,40.502377],[-91.608347,40.50004],[-91.594644,40.494997],[-91.590817,40.492292],[-91.586884,40.487233],[-91.583315,40.479118],[-91.582437,40.474703],[-91.581528,40.472876],[-91.580355,40.471015],[-91.574746,40.465664],[-91.567743,40.46229],[-91.563844,40.460988],[-91.552691,40.458769],[-91.543785,40.458149],[-91.5286,40.459002],[-91.526155,40.458625],[-91.52509,40.457845],[-91.523864,40.456331],[-91.523072,40.452254],[-91.523271,40.450061],[-91.524053,40.448437],[-91.526108,40.446634],[-91.531912,40.44273],[-91.533548,40.440804],[-91.533623,40.43832],[-91.532807,40.436784],[-91.529132,40.434272],[-91.525,40.433483],[-91.519935,40.433673],[-91.519134,40.432822],[-91.519012,40.431298],[-91.521388,40.426488],[-91.526555,40.419872],[-91.527057,40.416689],[-91.526425,40.413404],[-91.524612,40.410765],[-91.522333,40.409648],[-91.518392,40.408682],[-91.513993,40.408537],[-91.509063,40.406775],[-91.507427,40.405524],[-91.506745,40.404335],[-91.505272,40.403512],[-91.498093,40.401926],[-91.493644,40.402433],[-91.489816,40.404317],[-91.488481,40.404317],[-91.487829,40.403866],[-91.487955,40.402465],[-91.488597,40.400009],[-91.490816,40.395225],[-91.490977,40.393484],[-91.484507,40.3839],[-91.482322,40.382057],[-91.480251,40.381783],[-91.471967,40.382884],[-91.465116,40.385257],[-91.464681,40.380949],[-91.465891,40.378365],[-91.465009,40.376223],[-91.463895,40.375659],[-91.452458,40.375501],[-91.448441,40.378914],[-91.441243,40.386255],[-91.425662,40.382491],[-91.422324,40.380939],[-91.419422,40.378264],[-91.426632,40.371988],[-91.429442,40.370386],[-91.439342,40.366569],[-91.444833,40.36317],[-91.446308,40.361823],[-91.447835,40.359129],[-91.452237,40.35367],[-91.46214,40.342414],[-91.466603,40.334461],[-91.469656,40.322409],[-91.471826,40.31734],[-91.486078,40.293426],[-91.489868,40.286048],[-91.492727,40.278217],[-91.493061,40.275262],[-91.492891,40.269923],[-91.490525,40.264814],[-91.489969,40.26234],[-91.490524,40.259498],[-91.497263,40.248761],[-91.498104,40.247422],[-91.500855,40.245722],[-91.503231,40.243474],[-91.505828,40.238839],[-91.506501,40.236304],[-91.505968,40.234305],[-91.504289,40.231712],[-91.504282,40.224299],[-91.506947,40.21555],[-91.507269,40.209338],[-91.506664,40.204758],[-91.505225,40.200485],[-91.504477,40.198262],[-91.505495,40.195606],[-91.509551,40.191338],[-91.511073,40.188794],[-91.512974,40.181062],[-91.513079,40.178537],[-91.511956,40.170441],[-91.508224,40.157665],[-91.508324,40.156326],[-91.51159,40.149269],[-91.511749,40.147091],[-91.510322,40.127994],[-91.509245,40.121876],[-91.506006,40.108126],[-91.500823,40.090956],[-91.497663,40.078257],[-91.495365,40.070951],[-91.489606,40.057435],[-91.494878,40.036453],[-91.487351,40.023201],[-91.484064,40.019332],[-91.477298,40.008993],[-91.469247,39.995327],[-91.467294,39.990631],[-91.466682,39.987253],[-91.465315,39.983995],[-91.463683,39.981845],[-91.459533,39.979892],[-91.458852,39.979015],[-91.454647,39.971306],[-91.449806,39.965278],[-91.447236,39.959502],[-91.44156,39.951299],[-91.43709,39.946417],[-91.435478,39.945278],[-91.429055,39.940741],[-91.425782,39.937765],[-91.421832,39.932973],[-91.41936,39.927717],[-91.418807,39.922126],[-91.41988,39.916533],[-91.420878,39.914865],[-91.428956,39.907729],[-91.443513,39.893583],[-91.446922,39.883034],[-91.447844,39.877951],[-91.446385,39.870394],[-91.436051,39.84551],[-91.432919,39.840554],[-91.429519,39.837801],[-91.414513,39.829984],[-91.406223,39.826472],[-91.397853,39.821122],[-91.385773,39.815553],[-91.377971,39.811273],[-91.375148,39.80886],[-91.367966,39.800403],[-91.363444,39.792804],[-91.361571,39.787548],[-91.361744,39.785079],[-91.364848,39.779388],[-91.365694,39.77491],[-91.365906,39.764956],[-91.365125,39.758723],[-91.366047,39.755955],[-91.367406,39.75388],[-91.369953,39.745042],[-91.370009,39.732524],[-91.367753,39.729029],[-91.352749,39.715279],[-91.3453,39.709402],[-91.331603,39.700433],[-91.317814,39.692591],[-91.306682,39.684881],[-91.305348,39.683957],[-91.302485,39.679631],[-91.293788,39.674766],[-91.283329,39.670134],[-91.27614,39.665759],[-91.266765,39.656993],[-91.260475,39.649024],[-91.248779,39.64088],[-91.245914,39.637311],[-91.24356,39.633064],[-91.241225,39.630067],[-91.229317,39.620853],[-91.223328,39.617603],[-91.21664,39.615124],[-91.185921,39.605119],[-91.181936,39.602677],[-91.178012,39.598196],[-91.174651,39.593313],[-91.174232,39.591975],[-91.171641,39.581899],[-91.16982,39.569555],[-91.168419,39.564928],[-91.163634,39.558566],[-91.158606,39.553048],[-91.153628,39.548248],[-91.148275,39.545798],[-91.126638,39.542227],[-91.114305,39.541098],[-91.100307,39.538695],[-91.092869,39.529275],[-91.086292,39.517141],[-91.079769,39.507728],[-91.075309,39.502845],[-91.064305,39.494643],[-91.062414,39.474122],[-91.059439,39.46886],[-91.053058,39.462122],[-91.03827,39.448436],[-91.02361,39.438694],[-91.011954,39.432661],[-91.003692,39.427603],[-90.993789,39.422959],[-90.98302,39.420462],[-90.977618,39.41829],[-90.972465,39.414144],[-90.96748,39.411948],[-90.957459,39.408996],[-90.948299,39.407502],[-90.940766,39.403984],[-90.939025,39.402744],[-90.937419,39.400803],[-90.936778,39.399487],[-90.935729,39.397331],[-90.934007,39.392127],[-90.928745,39.387544],[-90.924601,39.385136],[-90.920976,39.383687],[-90.914658,39.381956],[-90.907999,39.380812],[-90.904862,39.379403],[-90.902905,39.377534],[-90.902656,39.375366],[-90.900095,39.372354],[-90.893777,39.367343],[-90.859113,39.35137],[-90.8475,39.345272],[-90.840106,39.340438],[-90.821306,39.323659],[-90.816851,39.320496],[-90.799346,39.313087],[-90.793461,39.309498],[-90.791689,39.306957],[-90.790675,39.302908],[-90.783789,39.297164],[-90.775673,39.292811],[-90.773887,39.290544],[-90.767648,39.280025],[-90.751599,39.265432],[-90.748877,39.264126],[-90.739087,39.261893],[-90.733976,39.259098],[-90.72996,39.255894],[-90.726981,39.251173],[-90.721593,39.23273],[-90.721188,39.230176],[-90.721835,39.224108],[-90.717113,39.213912],[-90.716597,39.210414],[-90.716677,39.206723],[-90.717427,39.202791],[-90.717404,39.197414],[-90.71437,39.185308],[-90.71048,39.176366],[-90.709953,39.172924],[-90.709146,39.155111],[-90.707902,39.15086],[-90.705168,39.143152],[-90.702923,39.138749],[-90.700464,39.135439],[-90.694945,39.12968],[-90.686051,39.117785],[-90.684518,39.113567],[-90.681086,39.10059],[-90.681994,39.090066],[-90.682744,39.088348],[-90.700424,39.071787],[-90.701187,39.070408],[-90.702136,39.065568],[-90.712541,39.057064],[-90.713585,39.055567],[-90.713629,39.053977],[-90.71158,39.046798],[-90.707885,39.042262],[-90.700595,39.029074],[-90.692403,39.016656],[-90.69,39.012169],[-90.688813,39.007342],[-90.687719,39.005374],[-90.683683,39.000049],[-90.682068,38.998778],[-90.678193,38.991851],[-90.676397,38.984096],[-90.676417,38.965812],[-90.675949,38.96214],[-90.671844,38.952296],[-90.669229,38.948176],[-90.66557,38.934198],[-90.665565,38.934179],[-90.663372,38.928042],[-90.6614,38.924989],[-90.657254,38.92027],[-90.653164,38.916141],[-90.647988,38.912106],[-90.639917,38.908272],[-90.635896,38.903941],[-90.628485,38.891617],[-90.625122,38.888654],[-90.595354,38.87505],[-90.583388,38.86903],[-90.576719,38.868336],[-90.566557,38.868847],[-90.555693,38.870785],[-90.545872,38.874008],[-90.54403,38.87505],[-90.531118,38.887078],[-90.516963,38.898818],[-90.507451,38.902767],[-90.500117,38.910408],[-90.486974,38.925982],[-90.482725,38.934712],[-90.483452,38.940436],[-90.483339,38.942133],[-90.482419,38.94446],[-90.472122,38.958838],[-90.467784,38.961809],[-90.462411,38.964322],[-90.45081,38.967759],[-90.450792,38.967764],[-90.440078,38.967364],[-90.433745,38.965526],[-90.424726,38.963785],[-90.413108,38.96333],[-90.406367,38.962554],[-90.395816,38.960037],[-90.385768,38.956408],[-90.383126,38.955453],[-90.346442,38.94079],[-90.333533,38.933489],[-90.324179,38.929827],[-90.317572,38.927912],[-90.309454,38.92412],[-90.306113,38.923525],[-90.298711,38.923395],[-90.283712,38.924048],[-90.277471,38.923716],[-90.275825,38.923465],[-90.269872,38.922556],[-90.262792,38.920344],[-90.256993,38.920763],[-90.254033,38.920489],[-90.250248,38.919344],[-90.241703,38.914828],[-90.230336,38.91086],[-90.223041,38.907389],[-90.213519,38.900454],[-90.209221,38.896994],[-90.19761,38.887648],[-90.19521,38.886748],[-90.190309,38.886248],[-90.186909,38.885048],[-90.166409,38.876348],[-90.151508,38.867148],[-90.113327,38.849306],[-90.109407,38.843548],[-90.109107,38.837448],[-90.114707,38.815048],[-90.117707,38.805748],[-90.123107,38.798048],[-90.146708,38.783049],[-90.166409,38.772649],[-90.171309,38.766549],[-90.175109,38.760249],[-90.176309,38.754449],[-90.183409,38.746849],[-90.191309,38.742949],[-90.20521,38.73215],[-90.20991,38.72605],[-90.21141,38.72135],[-90.21191,38.71795],[-90.21201,38.71175],[-90.20921,38.70275],[-90.20221,38.69345],[-90.19521,38.68755],[-90.18641,38.67475],[-90.18261,38.66535],[-90.181325,38.660381],[-90.18111,38.65955],[-90.17771,38.64275],[-90.17801,38.63375],[-90.17881,38.62915],[-90.182443,38.617932],[-90.18451,38.611551],[-90.191811,38.598951],[-90.196011,38.594451],[-90.202511,38.588651],[-90.210111,38.583951],[-90.216712,38.578751],[-90.222112,38.576451],[-90.224212,38.575051],[-90.248913,38.544752],[-90.257773,38.532008],[-90.260314,38.528352],[-90.263723,38.520755],[-90.263814,38.520552],[-90.268814,38.506152],[-90.271314,38.496052],[-90.274914,38.486253],[-90.275915,38.479553],[-90.279215,38.472453],[-90.284015,38.451053],[-90.285215,38.443453],[-90.288815,38.438453],[-90.295316,38.426753],[-90.322317,38.401753],[-90.328517,38.398153],[-90.340757,38.387506],[-90.343118,38.385453],[-90.346118,38.381853],[-90.349743,38.377609],[-90.356318,38.360354],[-90.368219,38.340254],[-90.370819,38.333554],[-90.372519,38.323354],[-90.371719,38.304354],[-90.373819,38.294454],[-90.373929,38.281853],[-90.371869,38.273926],[-90.370892,38.267441],[-90.367764,38.255807],[-90.367013,38.250054],[-90.363926,38.236355],[-90.359559,38.224525],[-90.356176,38.217501],[-90.353902,38.213855],[-90.334258,38.189932],[-90.331554,38.18758],[-90.322353,38.181593],[-90.316839,38.179456],[-90.31063,38.178572],[-90.30049,38.175246],[-90.290765,38.170453],[-90.283091,38.164447],[-90.274928,38.157615],[-90.252665,38.127813],[-90.252484,38.127571],[-90.250118,38.125054],[-90.243116,38.112669],[-90.218708,38.094365],[-90.206684,38.087969],[-90.17222,38.069636],[-90.163411,38.074347],[-90.161562,38.07489],[-90.158533,38.074735],[-90.144553,38.069023],[-90.130788,38.062341],[-90.128159,38.059644],[-90.126396,38.054897],[-90.126006,38.05057],[-90.126612,38.043981],[-90.126194,38.040702],[-90.117423,38.031708],[-90.11052,38.026547],[-90.093774,38.017833],[-90.08826,38.015772],[-90.080959,38.015428],[-90.072283,38.017001],[-90.065045,38.016875],[-90.059367,38.015543],[-90.057269,38.014362],[-90.055399,38.011953],[-90.053541,38.00844],[-90.052883,38.005907],[-90.051357,38.003584],[-90.049106,38.001715],[-90.045908,38.000052],[-90.03241,37.995258],[-90.008353,37.970179],[-90.00011,37.964563],[-89.997103,37.963225],[-89.986296,37.962198],[-89.978919,37.962791],[-89.95491,37.966647],[-89.942099,37.970121],[-89.93774,37.964994],[-89.93693,37.961042],[-89.935886,37.959581],[-89.933797,37.959143],[-89.925085,37.960021],[-89.924811,37.955823],[-89.925389,37.95413],[-89.932467,37.947497],[-89.937927,37.946193],[-89.947429,37.940336],[-89.959646,37.940196],[-89.962273,37.934363],[-89.968365,37.931456],[-89.974918,37.926719],[-89.974221,37.919217],[-89.973642,37.917661],[-89.971649,37.91526],[-89.952499,37.883218],[-89.950594,37.881526],[-89.938191,37.875111],[-89.937383,37.874693],[-89.923185,37.870672],[-89.913317,37.869641],[-89.901832,37.869822],[-89.897301,37.871605],[-89.881475,37.879591],[-89.876594,37.883294],[-89.866988,37.893519],[-89.862949,37.896906],[-89.851048,37.90398],[-89.844786,37.905572],[-89.842649,37.905196],[-89.836254,37.901802],[-89.813647,37.88771],[-89.803913,37.882985],[-89.799333,37.881517],[-89.798041,37.879655],[-89.797678,37.874202],[-89.799835,37.871367],[-89.80036,37.868625],[-89.796087,37.859505],[-89.793718,37.857054],[-89.786369,37.851734],[-89.782035,37.855092],[-89.779828,37.853896],[-89.774306,37.852123],[-89.765222,37.851782],[-89.761992,37.850657],[-89.757363,37.847613],[-89.754104,37.846358],[-89.749961,37.846984],[-89.739873,37.84693],[-89.736439,37.843494],[-89.732737,37.838507],[-89.729426,37.835081],[-89.71748,37.825724],[-89.702844,37.816812],[-89.696559,37.814337],[-89.68285,37.807789],[-89.677605,37.805066],[-89.67439,37.802989],[-89.669644,37.799922],[-89.663982,37.790801],[-89.66132,37.788204],[-89.66038,37.786296],[-89.660227,37.781032],[-89.66119,37.775732],[-89.66413,37.76851],[-89.666474,37.764195],[-89.667993,37.759484],[-89.665546,37.752095],[-89.663352,37.750052],[-89.658455,37.74771],[-89.64953,37.745498],[-89.645429,37.746108],[-89.63337,37.745782],[-89.62801,37.748135],[-89.624023,37.74912],[-89.617278,37.74972],[-89.616389,37.749167],[-89.615933,37.748184],[-89.616194,37.744283],[-89.615586,37.74235],[-89.612478,37.740036],[-89.608757,37.739684],[-89.602406,37.736492],[-89.596566,37.732886],[-89.591289,37.723599],[-89.587213,37.71751],[-89.583316,37.713261],[-89.573516,37.709065],[-89.566704,37.707189],[-89.538652,37.701054],[-89.531427,37.700334],[-89.52573,37.698441],[-89.521948,37.696475],[-89.516685,37.692762],[-89.514255,37.689923],[-89.512009,37.685525],[-89.51204,37.680985],[-89.513927,37.676575],[-89.516146,37.667975],[-89.516827,37.656089],[-89.515903,37.650803],[-89.51586,37.645555],[-89.517136,37.643789],[-89.517718,37.641217],[-89.515649,37.636446],[-89.510526,37.631755],[-89.506563,37.62505],[-89.485792,37.607157],[-89.478399,37.598869],[-89.476514,37.595554],[-89.475932,37.592998],[-89.47603,37.590226],[-89.477548,37.585885],[-89.481118,37.582973],[-89.486062,37.580853],[-89.494051,37.580116],[-89.509542,37.584147],[-89.513943,37.584815],[-89.516538,37.584504],[-89.519808,37.582748],[-89.520804,37.581155],[-89.521274,37.578971],[-89.521517,37.572152],[-89.52173,37.56621],[-89.521925,37.560735],[-89.521093,37.553805],[-89.517051,37.537278],[-89.516447,37.535558],[-89.5124,37.52981],[-89.507459,37.524322],[-89.502917,37.51787],[-89.500231,37.512954],[-89.497689,37.504948],[-89.492051,37.494008],[-89.475525,37.471388],[-89.471201,37.466473],[-89.450969,37.450069],[-89.443493,37.442129],[-89.439769,37.4372],[-89.43413,37.426847],[-89.42594,37.407471],[-89.422465,37.397132],[-89.42132,37.392077],[-89.421054,37.387668],[-89.422037,37.38053],[-89.428185,37.356158],[-89.429738,37.351956],[-89.432836,37.347056],[-89.43604,37.344441],[-89.447556,37.340475],[-89.454723,37.339283],[-89.474569,37.338165],[-89.484211,37.335646],[-89.48593,37.334829],[-89.489005,37.333368],[-89.491194,37.331361],[-89.49516,37.324795],[-89.49909,37.32149],[-89.508174,37.315662],[-89.509699,37.31426],[-89.511842,37.310825],[-89.514042,37.303776],[-89.514605,37.299323],[-89.515741,37.295362],[-89.517692,37.29204],[-89.518393,37.289354],[-89.51834,37.285497],[-89.517032,37.28192],[-89.513905,37.277164],[-89.506773,37.268537],[-89.502303,37.263738],[-89.496386,37.258474],[-89.489915,37.251315],[-89.488728,37.251507],[-89.479205,37.253052],[-89.470525,37.253357],[-89.46266,37.25152],[-89.460692,37.250577],[-89.458827,37.248661],[-89.458246,37.247066],[-89.457832,37.242594],[-89.458302,37.240368],[-89.4675,37.221844],[-89.467631,37.2182],[-89.462676,37.203351],[-89.461862,37.199517],[-89.456105,37.18812],[-89.438275,37.161287],[-89.435202,37.15209],[-89.42558,37.138235],[-89.414471,37.12505],[-89.41173,37.122507],[-89.407451,37.119307],[-89.393427,37.111197],[-89.38805,37.107481],[-89.384175,37.103267],[-89.37871,37.094586],[-89.375615,37.085936],[-89.375712,37.080505],[-89.378889,37.070499],[-89.385186,37.057748],[-89.385434,37.05513],[-89.384681,37.048251],[-89.383937,37.046441],[-89.381644,37.04301],[-89.378277,37.039605],[-89.362397,37.030156],[-89.345996,37.025521],[-89.331164,37.019936],[-89.322982,37.01609],[-89.317168,37.012767],[-89.312642,37.009047],[-89.29213,36.992189],[-89.278628,36.98867],[-89.274198,36.990495],[-89.269564,36.993401],[-89.266242,36.996302],[-89.263527,37.00005],[-89.257608,37.015496],[-89.260003,37.023288],[-89.266286,37.028683],[-89.277715,37.03614],[-89.291185,37.040408],[-89.301368,37.044982],[-89.304752,37.047565],[-89.307397,37.050432],[-89.309401,37.053769],[-89.310819,37.057897],[-89.30829,37.068371],[-89.307726,37.069654],[-89.294036,37.067345],[-89.283685,37.066736],[-89.283488,37.065811],[-89.280375,37.065224],[-89.264484,37.064814],[-89.259936,37.064071],[-89.25493,37.072014],[-89.245648,37.057783],[-89.238253,37.042853],[-89.234053,37.037277],[-89.225482,37.031077],[-89.205038,37.020047],[-89.200793,37.016164],[-89.198488,37.011723],[-89.195029,37.000051],[-89.195039,36.989768],[-89.192097,36.979995],[-89.185491,36.973518],[-89.177235,36.970885],[-89.170008,36.970298],[-89.161767,36.972768],[-89.149882,36.977636],[-89.14411,36.979133],[-89.140814,36.979416],[-89.132685,36.9822],[-89.128868,36.983265],[-89.125069,36.983499],[-89.1183,36.981879],[-89.11503,36.980335],[-89.109498,36.976563],[-89.102879,36.9697],[-89.099594,36.964543],[-89.099007,36.961389],[-89.098843,36.95785],[-89.100762,36.944002],[-89.100766,36.943973],[-89.102137,36.939154],[-89.109377,36.920066],[-89.117567,36.887356],[-89.119813,36.882792],[-89.126702,36.872073],[-89.131944,36.857437],[-89.137969,36.847349],[-89.147674,36.847148],[-89.153513,36.8466],[-89.15733,36.843305],[-89.159466,36.842505],[-89.166841,36.842529],[-89.1704,36.841522],[-89.173419,36.839806],[-89.177177,36.835779],[-89.178153,36.834586],[-89.178888,36.831368],[-89.178574,36.816554],[-89.179229,36.812915],[-89.178749,36.809928],[-89.177417,36.807269],[-89.171069,36.798119],[-89.168458,36.795571],[-89.160877,36.790914],[-89.155891,36.789126],[-89.144208,36.788353],[-89.13321,36.788228],[-89.128923,36.787677],[-89.12353,36.785309],[-89.123481,36.785258],[-89.120437,36.782071],[-89.116847,36.775607],[-89.116067,36.772423],[-89.116563,36.767557],[-89.119198,36.759802],[-89.12243,36.754844],[-89.126134,36.751735],[-89.130399,36.751702],[-89.135518,36.751956],[-89.142313,36.755369],[-89.151756,36.756264],[-89.15699,36.755968],[-89.166888,36.759633],[-89.169106,36.759473],[-89.179545,36.756132],[-89.184523,36.753638],[-89.191553,36.747217],[-89.197808,36.739412],[-89.199798,36.734217],[-89.201047,36.725772],[-89.200732,36.720141],[-89.19948,36.716045],[-89.19604,36.712017],[-89.184356,36.701238],[-89.174836,36.69396],[-89.169522,36.688878],[-89.168016,36.685514],[-89.167961,36.678189],[-89.169467,36.674596],[-89.171882,36.672526],[-89.168723,36.671892],[-89.15908,36.666352],[-89.164601,36.660132],[-89.174682,36.650473],[-89.174741,36.650416],[-89.183321,36.644694],[-89.187749,36.641115],[-89.192542,36.635997],[-89.197654,36.628936],[-89.199136,36.625649],[-89.200902,36.618177],[-89.202607,36.601576],[-89.213563,36.580119],[-89.217447,36.576159],[-89.227319,36.569375],[-89.236542,36.566824],[-89.258318,36.564948],[-89.259994,36.565149],[-89.268057,36.568908],[-89.27171,36.571387],[-89.278935,36.577699],[-89.294637,36.593729],[-89.301502,36.604138],[-89.313405,36.62012],[-89.318154,36.625059],[-89.326731,36.632186],[-89.327589,36.632194],[-89.334046,36.63225],[-89.343753,36.630991],[-89.35651,36.628439],[-89.365548,36.625059],[-89.371002,36.62084],[-89.375453,36.615719],[-89.376367,36.613868],[-89.378012,36.608096],[-89.380643,36.59113],[-89.382762,36.583603],[-89.395909,36.559649],[-89.396627,36.556429],[-89.396811,36.551975],[-89.398685,36.542329],[-89.405654,36.528165],[-89.417293,36.499033],[-89.41977,36.493896],[-89.422942,36.489381],[-89.429311,36.481875],[-89.436763,36.474432],[-89.448468,36.46442],[-89.453081,36.461285],[-89.460436,36.45814],[-89.464153,36.457189],[-89.471718,36.457001],[-89.476532,36.457846],[-89.486215,36.46162],[-89.49067,36.465528],[-89.493198,36.470124],[-89.494074,36.473225],[-89.494248,36.475972],[-89.493495,36.4787],[-89.48671,36.494954],[-89.485106,36.497692],[-89.482474,36.502131],[-89.477186,36.50707],[-89.47246,36.513741],[-89.468668,36.521291],[-89.465888,36.529946],[-89.465445,36.536163],[-89.467761,36.546847],[-89.473341,36.559918],[-89.479093,36.568206],[-89.480893,36.569771],[-89.484836,36.571821],[-89.500076,36.576305],[-89.514468,36.577803],[-89.518702,36.578698],[-89.522338,36.58018],[-89.527583,36.581147],[-89.542459,36.580566],[-89.546113,36.579989],[-89.55264,36.577178],[-89.558089,36.573514],[-89.563185,36.568749],[-89.566817,36.564216],[-89.569807,36.558119],[-89.571509,36.552569],[-89.571241,36.547343],[-89.570071,36.544387],[-89.565804,36.536988],[-89.560344,36.525436],[-89.558349,36.522099],[-89.554321,36.517022],[-89.542955,36.504957],[-89.5391,36.498201],[-89.534524,36.491432],[-89.522674,36.481305],[-89.520642,36.478668],[-89.519501,36.475419],[-89.51972,36.467002],[-89.521021,36.461934],[-89.523427,36.456572],[-89.52519,36.453991],[-89.527274,36.451545],[-89.540868,36.441559],[-89.543406,36.43877],[-89.545061,36.434915],[-89.545503,36.4307],[-89.545255,36.427079],[-89.544221,36.423684],[-89.542337,36.420103],[-89.525293,36.400446],[-89.513956,36.384891],[-89.51038,36.378356],[-89.509558,36.375065],[-89.509722,36.373626],[-89.513178,36.359897],[-89.519,36.3486],[-89.522695,36.344789],[-89.527029,36.341679],[-89.531822,36.339246],[-89.538079,36.337496],[-89.545006,36.336809]]]}}]} diff --git a/Where/RegionKit/Sources/Resources/regions/us-MS.geojson b/Where/RegionKit/Sources/Resources/regions/us-MS.geojson new file mode 100644 index 00000000..8b75d51c --- /dev/null +++ b/Where/RegionKit/Sources/Resources/regions/us-MS.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"region":"us-MS","name":"Mississippi"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-89.095623,30.231767],[-89.077259,30.23168],[-89.067128,30.250199],[-89.063989,30.246299],[-89.065097,30.239929],[-89.073538,30.223318],[-89.091469,30.202305],[-89.118222,30.223343],[-89.156738,30.230699],[-89.095623,30.231767]]],[[[-88.90037,30.224576],[-88.909752,30.220405],[-88.945498,30.209646],[-88.974672,30.207391],[-88.980239,30.207962],[-88.984249,30.21032],[-88.982219,30.211627],[-88.976811,30.210987],[-88.947872,30.214179],[-88.920511,30.220578],[-88.908885,30.225437],[-88.889797,30.239665],[-88.877824,30.242442],[-88.87366,30.241748],[-88.90037,30.224576]]],[[[-88.710719,30.250799],[-88.656804,30.233956],[-88.573044,30.22264],[-88.568056,30.222732],[-88.562067,30.227476],[-88.565576,30.222847],[-88.569138,30.221357],[-88.587424,30.219154],[-88.633743,30.226342],[-88.665857,30.228847],[-88.71183,30.242662],[-88.740647,30.238665],[-88.752782,30.238803],[-88.764022,30.241488],[-88.771991,30.245523],[-88.73255,30.246322],[-88.718104,30.252931],[-88.710719,30.250799]]],[[[-88.506999,30.214348],[-88.500011,30.214044],[-88.465713,30.20254],[-88.453444,30.201236],[-88.442654,30.202314],[-88.430332,30.208548],[-88.401466,30.210172],[-88.404581,30.206162],[-88.428301,30.198511],[-88.453654,30.196584],[-88.493523,30.205945],[-88.502752,30.210506],[-88.506999,30.214348]]],[[[-90.309297,34.995694],[-89.893402,34.994356],[-89.883365,34.994261],[-89.848488,34.994193],[-89.795187,34.994293],[-89.741785,34.995194],[-89.724324,34.995212],[-89.644282,34.995293],[-89.511153,34.994755],[-89.493739,34.994361],[-89.486897,34.993975],[-89.434954,34.993754],[-89.35268,34.994123],[-89.217433,34.994729],[-89.198288,34.994484],[-89.156827,34.993926],[-89.139136,34.994307],[-89.138997,34.99433],[-89.02654,34.994956],[-89.017127,34.994945],[-88.925241,34.994842],[-88.886979,34.995868],[-88.851037,34.995085],[-88.823049,34.995158],[-88.786612,34.995252],[-88.469877,34.996033],[-88.469801,34.996052],[-88.380508,34.99561],[-88.363531,34.99559],[-88.258111,34.995463],[-88.253825,34.995553],[-88.200064,34.995634],[-88.198811,34.991192],[-88.187429,34.974909],[-88.179973,34.967466],[-88.176106,34.962519],[-88.172102,34.955213],[-88.161594,34.933456],[-88.154617,34.922392],[-88.146335,34.914374],[-88.139721,34.909631],[-88.136692,34.907592],[-88.125038,34.902227],[-88.099999,34.894095],[-88.097888,34.892202],[-88.10756,34.811628],[-88.116418,34.746303],[-88.118407,34.724292],[-88.134263,34.62266],[-88.138719,34.589215],[-88.139246,34.587795],[-88.139988,34.581703],[-88.156292,34.463214],[-88.165634,34.383102],[-88.16591,34.380926],[-88.173632,34.321054],[-88.175867,34.302171],[-88.176889,34.293858],[-88.186667,34.220952],[-88.18762,34.204778],[-88.190678,34.190123],[-88.192128,34.175351],[-88.200196,34.115948],[-88.203784,34.086554],[-88.207229,34.058333],[-88.210741,34.029199],[-88.226428,33.912875],[-88.226517,33.911665],[-88.226517,33.911551],[-88.235492,33.847203],[-88.240054,33.810879],[-88.243025,33.79568],[-88.244142,33.781673],[-88.248937,33.744974],[-88.252257,33.719568],[-88.254445,33.698779],[-88.254622,33.69578],[-88.256131,33.68286],[-88.256343,33.682053],[-88.267005,33.594229],[-88.267148,33.591989],[-88.26816,33.58504],[-88.269076,33.576929],[-88.269532,33.572894],[-88.27005,33.570819],[-88.274619,33.534008],[-88.276805,33.516463],[-88.277421,33.512436],[-88.291078,33.399055],[-88.304417,33.288318],[-88.312535,33.220923],[-88.315235,33.203323],[-88.317135,33.184123],[-88.330934,33.073125],[-88.340432,32.991199],[-88.34785,32.929078],[-88.354292,32.87513],[-88.368349,32.747656],[-88.373338,32.711825],[-88.382985,32.626954],[-88.383039,32.626679],[-88.388857,32.578123],[-88.399966,32.485415],[-88.403789,32.449885],[-88.403789,32.44977],[-88.4125,32.380025],[-88.413819,32.373922],[-88.421453,32.30868],[-88.428278,32.250143],[-88.431294,32.227655],[-88.43865,32.172806],[-88.43871,32.172078],[-88.454959,32.040576],[-88.455039,32.039719],[-88.46866,31.933173],[-88.468879,31.930262],[-88.473227,31.893856],[-88.472642,31.875153],[-88.471214,31.851385],[-88.471106,31.850949],[-88.468669,31.790722],[-88.465107,31.722312],[-88.464427,31.697952],[-88.464425,31.697881],[-88.459722,31.624002],[-88.459478,31.621652],[-88.453013,31.500164],[-88.451575,31.481533],[-88.451045,31.459448],[-88.44957,31.435835],[-88.44866,31.421277],[-88.448686,31.420888],[-88.445209,31.355969],[-88.445182,31.355855],[-88.43878,31.252654],[-88.43898,31.246896],[-88.438211,31.231252],[-88.438104,31.23006],[-88.432007,31.114298],[-88.425807,31.001123],[-88.425729,31.000183],[-88.425636,30.998301],[-88.419562,30.875186],[-88.41863,30.866528],[-88.412451,30.735598],[-88.41227,30.731771],[-88.412209,30.730395],[-88.41155,30.712956],[-88.411339,30.706334],[-88.409571,30.668731],[-88.40807,30.63697],[-88.407462,30.631653],[-88.407484,30.622736],[-88.404013,30.54506],[-88.403931,30.543359],[-88.403547,30.5331],[-88.402283,30.510852],[-88.395023,30.369425],[-88.397236,30.367689],[-88.399062,30.360744],[-88.397082,30.354785],[-88.39415,30.352493],[-88.39398,30.349307],[-88.401181,30.344382],[-88.409927,30.342115],[-88.418811,30.353911],[-88.433891,30.354652],[-88.446495,30.347753],[-88.446625,30.337671],[-88.45381,30.329626],[-88.471875,30.32002],[-88.480117,30.318345],[-88.504802,30.321472],[-88.506226,30.322393],[-88.506334,30.327398],[-88.522494,30.340092],[-88.536214,30.343299],[-88.579483,30.34419],[-88.596349,30.358365],[-88.599249,30.358933],[-88.601762,30.355876],[-88.613745,30.353108],[-88.624523,30.358713],[-88.66382,30.362099],[-88.679575,30.35571],[-88.692164,30.347302],[-88.700587,30.343689],[-88.714077,30.342186],[-88.728893,30.342671],[-88.746945,30.347622],[-88.771742,30.365403],[-88.811615,30.384907],[-88.812576,30.38768],[-88.810127,30.391298],[-88.810227,30.394698],[-88.823724,30.402376],[-88.841328,30.409598],[-88.845609,30.405266],[-88.857828,30.392898],[-88.851442,30.375355],[-88.880526,30.3866],[-88.883789,30.389172],[-88.884829,30.391998],[-88.89393,30.393398],[-88.922031,30.393798],[-88.971233,30.390798],[-89.016334,30.383898],[-89.083237,30.368097],[-89.18684,30.331197],[-89.220442,30.322497],[-89.271833,30.305491],[-89.285744,30.303097],[-89.291444,30.303296],[-89.294444,30.307596],[-89.291844,30.328096],[-89.287844,30.333196],[-89.281564,30.33198],[-89.279818,30.34979],[-89.292499,30.365635],[-89.315067,30.375408],[-89.335942,30.374016],[-89.340947,30.372896],[-89.349447,30.370995],[-89.353248,30.368795],[-89.363848,30.357395],[-89.366116,30.352169],[-89.345934,30.343573],[-89.338847,30.342995],[-89.332546,30.337895],[-89.322345,30.319296],[-89.322545,30.314896],[-89.329946,30.302896],[-89.344746,30.293196],[-89.358546,30.288896],[-89.365747,30.284896],[-89.379547,30.270396],[-89.383747,30.267796],[-89.419348,30.25432],[-89.424624,30.245391],[-89.424493,30.239092],[-89.430428,30.223218],[-89.447465,30.205098],[-89.44791,30.185352],[-89.461275,30.174745],[-89.463595,30.173943],[-89.469792,30.176278],[-89.475824,30.191561],[-89.480214,30.193751],[-89.490099,30.187677],[-89.503231,30.183051],[-89.522814,30.183076],[-89.524504,30.180753],[-89.527952,30.188697],[-89.530452,30.192197],[-89.533352,30.194797],[-89.538652,30.195797],[-89.541453,30.195397],[-89.546953,30.193097],[-89.549053,30.191597],[-89.550853,30.189197],[-89.554653,30.185797],[-89.562253,30.182397],[-89.570154,30.180297],[-89.574454,30.181697],[-89.580754,30.186197],[-89.585754,30.192096],[-89.587354,30.195196],[-89.588854,30.200296],[-89.596655,30.211796],[-89.601255,30.216096],[-89.607655,30.217096],[-89.610655,30.218096],[-89.612556,30.219496],[-89.615856,30.223195],[-89.616956,30.225595],[-89.617056,30.227495],[-89.615856,30.235295],[-89.614056,30.241495],[-89.614156,30.244595],[-89.616156,30.247395],[-89.623856,30.249895],[-89.626922,30.251745],[-89.631789,30.256924],[-89.632225,30.260137],[-89.631215,30.261704],[-89.630649,30.262084],[-89.629757,30.267195],[-89.63052,30.276562],[-89.631411,30.279662],[-89.637647,30.285032],[-89.64344,30.287682],[-89.641705,30.303799],[-89.640401,30.306755],[-89.639872,30.307281],[-89.634208,30.308256],[-89.631643,30.309332],[-89.626221,30.314255],[-89.626606,30.315457],[-89.629877,30.321017],[-89.630399,30.332933],[-89.629727,30.339287],[-89.636299,30.34397],[-89.645199,30.348126],[-89.645617,30.351314],[-89.6467,30.3525],[-89.652693,30.355536],[-89.657191,30.356515],[-89.660274,30.363487],[-89.662204,30.371267],[-89.670134,30.382429],[-89.672762,30.389276],[-89.679153,30.399991],[-89.683686,30.405873],[-89.684118,30.412646],[-89.68232,30.412991],[-89.681165,30.411492],[-89.680134,30.4114],[-89.678514,30.414012],[-89.680515,30.428924],[-89.681946,30.434073],[-89.683521,30.434959],[-89.684816,30.439511],[-89.682829,30.44581],[-89.68341,30.451793],[-89.689779,30.459278],[-89.690102,30.459657],[-89.695864,30.463269],[-89.701799,30.465115],[-89.705538,30.47235],[-89.709551,30.477853],[-89.710164,30.478308],[-89.712493,30.47751],[-89.715886,30.477797],[-89.719652,30.483166],[-89.721181,30.488608],[-89.724614,30.491902],[-89.726154,30.49256],[-89.734615,30.494723],[-89.742396,30.497316],[-89.742816,30.498704],[-89.746435,30.502619],[-89.752931,30.502493],[-89.758133,30.505404],[-89.758575,30.505942],[-89.758862,30.513062],[-89.76057,30.515761],[-89.768133,30.51502],[-89.769996,30.521896],[-89.770744,30.527819],[-89.771643,30.530249],[-89.775355,30.538848],[-89.779565,30.544345],[-89.780246,30.544607],[-89.783994,30.544075],[-89.788542,30.544464],[-89.791046,30.545046],[-89.793818,30.545935],[-89.795335,30.546563],[-89.795388,30.547452],[-89.795231,30.548132],[-89.793989,30.548283],[-89.79196,30.548788],[-89.791664,30.551524],[-89.794532,30.556554],[-89.802789,30.557903],[-89.803831,30.558888],[-89.803887,30.560581],[-89.802833,30.562879],[-89.801494,30.563703],[-89.800277,30.563695],[-89.796697,30.561718],[-89.79243,30.563087],[-89.790078,30.565333],[-89.789695,30.56658],[-89.790318,30.567524],[-89.794495,30.569653],[-89.799947,30.569351],[-89.803753,30.568148],[-89.806182,30.567543],[-89.808027,30.567998],[-89.808184,30.568795],[-89.806843,30.572039],[-89.809739,30.584714],[-89.807762,30.585825],[-89.807118,30.587337],[-89.812109,30.591473],[-89.816396,30.591646],[-89.818527,30.592688],[-89.819838,30.59534],[-89.819696,30.596785],[-89.817202,30.600891],[-89.814563,30.606152],[-89.81392,30.607721],[-89.81538,30.608566],[-89.816905,30.60862],[-89.821286,30.60713],[-89.823278,30.60823],[-89.822389,30.614462],[-89.820868,30.618254],[-89.821424,30.619815],[-89.823261,30.622803],[-89.818081,30.634019],[-89.821868,30.644024],[-89.824986,30.649423],[-89.833261,30.657516],[-89.836047,30.657298],[-89.840988,30.658515],[-89.851889,30.661199],[-89.852263,30.662934],[-89.85055,30.664781],[-89.848879,30.665202],[-89.846917,30.663952],[-89.845642,30.663569],[-89.843355,30.663699],[-89.841787,30.665557],[-89.838804,30.66909],[-89.837894,30.672514],[-89.838868,30.673731],[-89.840597,30.67288],[-89.84135,30.671963],[-89.842344,30.669724],[-89.843816,30.668761],[-89.845807,30.668931],[-89.847201,30.670038],[-89.844965,30.674691],[-89.836797,30.690573],[-89.835478,30.691166],[-89.835848,30.699555],[-89.838065,30.704036],[-89.839312,30.704143],[-89.84173,30.702713],[-89.843605,30.702511],[-89.845926,30.704157],[-89.846576,30.706209],[-89.845801,30.707314],[-89.836257,30.716185],[-89.831961,30.715384],[-89.83006,30.71631],[-89.828061,30.725018],[-89.833065,30.726759],[-89.836331,30.727197],[-89.836945,30.728201],[-89.83687,30.734661],[-89.835437,30.73626],[-89.833818,30.736972],[-89.826175,30.736594],[-89.821535,30.736618],[-89.81748,30.737305],[-89.816499,30.737946],[-89.816075,30.739366],[-89.816764,30.740076],[-89.819548,30.740671],[-89.823492,30.740988],[-89.826053,30.742322],[-89.825774,30.747305],[-89.827886,30.758419],[-89.831537,30.76761],[-89.824395,30.779629],[-89.82113,30.788609],[-89.821486,30.791183],[-89.821078,30.792523],[-89.819164,30.795229],[-89.817559,30.796054],[-89.816418,30.796054],[-89.813946,30.793782],[-89.813535,30.792035],[-89.81261,30.789876],[-89.812096,30.788437],[-89.810657,30.788026],[-89.806763,30.789069],[-89.805107,30.790596],[-89.804696,30.791624],[-89.804901,30.792549],[-89.806237,30.793371],[-89.807071,30.793908],[-89.808601,30.794913],[-89.810863,30.797379],[-89.811479,30.797996],[-89.811171,30.798921],[-89.810143,30.799846],[-89.808176,30.800562],[-89.804632,30.802511],[-89.804065,30.803247],[-89.800422,30.810425],[-89.799673,30.815172],[-89.800049,30.819078],[-89.798654,30.820855],[-89.797491,30.821478],[-89.796634,30.821648],[-89.791745,30.820387],[-89.785894,30.815962],[-89.782404,30.817975],[-89.781168,30.820123],[-89.783985,30.827385],[-89.786837,30.830642],[-89.789426,30.83047],[-89.790432,30.830985],[-89.790805,30.832131],[-89.790121,30.837983],[-89.7875,30.844112],[-89.782649,30.845264],[-89.7806,30.845508],[-89.780228,30.846235],[-89.780947,30.848542],[-89.783791,30.852131],[-89.784416,30.853744],[-89.784073,30.85527],[-89.783384,30.856022],[-89.781643,30.856613],[-89.778755,30.8558],[-89.774739,30.853254],[-89.772587,30.85366],[-89.771722,30.854677],[-89.767955,30.863858],[-89.767789,30.865577],[-89.768237,30.866392],[-89.778005,30.873411],[-89.779194,30.875185],[-89.778583,30.878903],[-89.77711,30.881088],[-89.775458,30.881497],[-89.770027,30.882254],[-89.772011,30.89024],[-89.773553,30.896862],[-89.773099,30.898338],[-89.771986,30.899127],[-89.770269,30.89939],[-89.765101,30.896919],[-89.760701,30.896306],[-89.758719,30.897319],[-89.757024,30.898947],[-89.756671,30.901069],[-89.759803,30.906216],[-89.761593,30.906591],[-89.763622,30.907732],[-89.764451,30.910276],[-89.764202,30.911906],[-89.7626,30.913736],[-89.759403,30.915134],[-89.757417,30.914993],[-89.754086,30.9128],[-89.750073,30.91293],[-89.746718,30.915805],[-89.744789,30.918933],[-89.744448,30.920577],[-89.745161,30.922416],[-89.748208,30.923369],[-89.750073,30.929815],[-89.748851,30.932816],[-89.748897,30.933888],[-89.750073,30.935763],[-89.755835,30.939543],[-89.756554,30.941949],[-89.756333,30.943498],[-89.751196,30.951439],[-89.743592,30.958482],[-89.743134,30.959993],[-89.735686,30.966573],[-89.733933,30.966919],[-89.731393,30.96613],[-89.729327,30.966242],[-89.728041,30.966518],[-89.727072,30.967395],[-89.727086,30.969707],[-89.728382,30.971141],[-89.736086,30.974446],[-89.737149,30.976081],[-89.736883,30.977122],[-89.735912,30.977865],[-89.732168,30.978088],[-89.730501,30.979707],[-89.72993,30.98209],[-89.727698,30.993329],[-89.728563,30.994396],[-89.732035,30.994409],[-89.734227,30.995602],[-89.73554,30.999715],[-89.73,30.999749],[-89.728126,31.000956],[-89.728145,31.0023],[-89.728147,31.002431],[-89.729616,31.003927],[-89.732504,31.004831],[-89.741821,31.003441],[-89.745215,31.002252],[-89.747229,31.000184],[-89.749189,30.999555],[-89.751481,30.99969],[-89.752133,31.000183],[-89.752642,31.001853],[-89.816429,31.002084],[-89.824617,31.00206],[-89.835542,31.002059],[-89.835908,31.002059],[-89.856862,31.002075],[-89.892708,31.001759],[-89.897516,31.001913],[-89.923119,31.001446],[-89.927161,31.001437],[-89.972802,31.001392],[-89.97543,31.001692],[-90.005332,31.001364],[-90.022185,31.001302],[-90.029574,31.00119],[-90.050706,31.001215],[-90.128406,31.001047],[-90.131395,31.000924],[-90.164278,31.001025],[-90.164676,31.00098],[-90.259555,31.000657],[-90.346007,31.000363],[-90.34723,31.000359],[-90.347241,31.000359],[-90.369371,31.000335],[-90.380536,30.999872],[-90.422117,30.99981],[-90.426849,30.999776],[-90.437351,30.99973],[-90.441725,30.999729],[-90.442479,30.999722],[-90.474094,30.999798],[-90.475928,30.99974],[-90.477284,30.999717],[-90.485876,30.99974],[-90.486749,30.999693],[-90.547615,30.999723],[-90.567195,30.999733],[-90.583518,30.999698],[-90.584448,30.999698],[-90.587373,30.999604],[-90.588676,30.99965],[-90.648721,30.999486],[-90.651193,30.99951],[-90.734473,30.999214],[-90.734552,30.999222],[-90.758775,30.999583],[-90.769333,30.999374],[-90.775981,30.999491],[-90.779858,30.999457],[-90.783745,30.999447],[-90.825829,30.99936],[-90.826027,30.99936],[-90.89473,30.99963],[-91.060213,30.998953],[-91.06827,30.99892],[-91.080814,30.998909],[-91.108114,30.998857],[-91.108291,30.99888],[-91.17614,30.999144],[-91.176209,30.999144],[-91.224068,30.999183],[-91.224839,30.999183],[-91.24649,30.999474],[-91.423621,30.998984],[-91.425749,30.999007],[-91.49739,30.999006],[-91.500116,30.998691],[-91.538727,30.999388],[-91.625118,30.999167],[-91.636942,30.999416],[-91.625118,31.005374],[-91.60649,31.011216],[-91.590463,31.01727],[-91.578413,31.02403],[-91.571695,31.029782],[-91.564397,31.038965],[-91.561232,31.046225],[-91.560365,31.049508],[-91.559907,31.054119],[-91.561283,31.060906],[-91.56415,31.06683],[-91.567648,31.070186],[-91.594693,31.091444],[-91.609523,31.101557],[-91.614763,31.104357],[-91.61857,31.107328],[-91.621535,31.110257],[-91.625994,31.116896],[-91.626476,31.119125],[-91.625707,31.128763],[-91.625118,31.131879],[-91.624217,31.133729],[-91.621671,31.13687],[-91.604197,31.154545],[-91.599732,31.159592],[-91.597062,31.163492],[-91.591502,31.173118],[-91.589046,31.178586],[-91.588695,31.181025],[-91.588939,31.188959],[-91.589451,31.19114],[-91.590051,31.193693],[-91.595029,31.201969],[-91.601616,31.208573],[-91.625119,31.226071],[-91.644356,31.234414],[-91.652019,31.242691],[-91.654907,31.250175],[-91.655009,31.251815],[-91.654027,31.255753],[-91.651369,31.259528],[-91.648669,31.262238],[-91.641253,31.266917],[-91.637672,31.26768],[-91.621358,31.267811],[-91.606672,31.2659],[-91.587749,31.262563],[-91.574493,31.261289],[-91.564192,31.261633],[-91.553905,31.26305],[-91.537734,31.267369],[-91.518578,31.275283],[-91.515614,31.27821],[-91.512085,31.284177],[-91.508858,31.291644],[-91.508296,31.295829],[-91.507977,31.312943],[-91.50866,31.315131],[-91.510049,31.316822],[-91.518509,31.323332],[-91.531657,31.331801],[-91.533206,31.333225],[-91.536061,31.338355],[-91.545617,31.343762],[-91.548967,31.347255],[-91.548894,31.353998],[-91.550869,31.360574],[-91.551002,31.363645],[-91.549915,31.376315],[-91.546607,31.381198],[-91.546207,31.38248],[-91.552432,31.385658],[-91.55568,31.386413],[-91.560524,31.384559],[-91.562555,31.383219],[-91.568953,31.377629],[-91.571234,31.384664],[-91.573931,31.390886],[-91.578334,31.399067],[-91.578246,31.403859],[-91.576265,31.410498],[-91.570092,31.419487],[-91.565179,31.423447],[-91.554805,31.42857],[-91.55275,31.430692],[-91.548465,31.432668],[-91.545013,31.433026],[-91.541626,31.431706],[-91.540647,31.430758],[-91.537137,31.424161],[-91.537002,31.423184],[-91.539504,31.41791],[-91.539458,31.414021],[-91.532336,31.390275],[-91.52695,31.380855],[-91.521836,31.37517],[-91.515978,31.370286],[-91.508075,31.366276],[-91.504163,31.36495],[-91.47887,31.364955],[-91.472465,31.371326],[-91.471098,31.376917],[-91.471992,31.382143],[-91.472149,31.391434],[-91.472065,31.395925],[-91.476926,31.397796],[-91.48023,31.404391],[-91.49004,31.412716],[-91.500046,31.42052],[-91.506423,31.43146],[-91.510356,31.438928],[-91.513366,31.444396],[-91.51513,31.449206],[-91.516999,31.460574],[-91.518148,31.483483],[-91.51714,31.498394],[-91.515157,31.50338],[-91.514917,31.510113],[-91.516759,31.511772],[-91.520579,31.513207],[-91.522862,31.517493],[-91.52292,31.519841],[-91.522536,31.522078],[-91.521445,31.523912],[-91.51581,31.530894],[-91.513963,31.532084],[-91.511217,31.532612],[-91.506719,31.532966],[-91.500118,31.532616],[-91.489618,31.534266],[-91.483918,31.532566],[-91.481318,31.530666],[-91.479718,31.530366],[-91.450017,31.539666],[-91.443916,31.542466],[-91.437616,31.546166],[-91.426416,31.554566],[-91.414915,31.562166],[-91.407915,31.569366],[-91.406615,31.571966],[-91.405415,31.576466],[-91.403915,31.589766],[-91.413015,31.595365],[-91.417115,31.596265],[-91.422716,31.597065],[-91.430716,31.596465],[-91.436316,31.594965],[-91.457517,31.587566],[-91.466317,31.586066],[-91.479418,31.585466],[-91.485218,31.586166],[-91.488618,31.587466],[-91.494118,31.590165],[-91.502783,31.595727],[-91.51301,31.606885],[-91.516567,31.611818],[-91.517233,31.61346],[-91.517921,31.618642],[-91.516659,31.627332],[-91.515462,31.630372],[-91.512336,31.634722],[-91.50731,31.639068],[-91.499278,31.644658],[-91.497665,31.645371],[-91.494478,31.645013],[-91.492748,31.644279],[-91.490027,31.641],[-91.487518,31.637065],[-91.482618,31.631565],[-91.479818,31.628965],[-91.474318,31.625365],[-91.463817,31.620365],[-91.436716,31.612665],[-91.429616,31.611365],[-91.421116,31.611565],[-91.416498,31.613133],[-91.401015,31.620365],[-91.398315,31.626265],[-91.396115,31.639265],[-91.395715,31.644165],[-91.398015,31.662665],[-91.400115,31.688164],[-91.400015,31.697864],[-91.397915,31.709364],[-91.397115,31.711364],[-91.380915,31.732464],[-91.380239,31.733242],[-91.371804,31.742948],[-91.365034,31.748184],[-91.356394,31.749106],[-91.338663,31.750005],[-91.319816,31.749989],[-91.317861,31.749792],[-91.310734,31.749071],[-91.291723,31.74526],[-91.275545,31.745515],[-91.263406,31.754468],[-91.259611,31.76129],[-91.263043,31.766995],[-91.273874,31.771178],[-91.286045,31.772062],[-91.301315,31.766748],[-91.325973,31.76151],[-91.355214,31.758063],[-91.365529,31.761628],[-91.363714,31.780363],[-91.359514,31.799362],[-91.345714,31.842861],[-91.343014,31.846861],[-91.338414,31.851261],[-91.333814,31.853261],[-91.326914,31.854961],[-91.294713,31.86046],[-91.293413,31.86016],[-91.289312,31.846861],[-91.290135,31.833658],[-91.289412,31.828661],[-91.287812,31.824161],[-91.284912,31.818362],[-91.282212,31.814762],[-91.280212,31.813162],[-91.276712,31.811362],[-91.269212,31.809162],[-91.262011,31.809362],[-91.255611,31.812662],[-91.250111,31.817762],[-91.247367,31.822323],[-91.245047,31.831447],[-91.245624,31.833165],[-91.261144,31.846119],[-91.266612,31.851161],[-91.268112,31.853061],[-91.268812,31.855161],[-91.269012,31.858661],[-91.267712,31.86266],[-91.266512,31.86426],[-91.264412,31.86546],[-91.248144,31.869848],[-91.234899,31.876863],[-91.226951,31.885105],[-91.20881,31.900459],[-91.20511,31.904159],[-91.20281,31.907959],[-91.20101,31.909159],[-91.19751,31.908659],[-91.19381,31.909559],[-91.19261,31.910159],[-91.19081,31.912959],[-91.18921,31.914259],[-91.18321,31.916159],[-91.18061,31.917959],[-91.18111,31.920059],[-91.18491,31.923759],[-91.18371,31.933158],[-91.18471,31.935058],[-91.19111,31.934158],[-91.19291,31.934958],[-91.19321,31.935658],[-91.18951,31.946358],[-91.18881,31.953158],[-91.18911,31.957458],[-91.18831,31.960958],[-91.18481,31.965557],[-91.17741,31.973257],[-91.17021,31.979057],[-91.16441,31.982557],[-91.117409,31.987057],[-91.104108,31.990357],[-91.096108,31.994857],[-91.090105,32.000157],[-91.075908,32.016828],[-91.079928,32.018316],[-91.080808,32.023456],[-91.082608,32.028656],[-91.084408,32.031456],[-91.088108,32.034455],[-91.095508,32.037455],[-91.125109,32.042855],[-91.14511,32.046555],[-91.15141,32.049255],[-91.15631,32.052655],[-91.15901,32.055955],[-91.16131,32.059755],[-91.16201,32.062355],[-91.16201,32.065354],[-91.16161,32.067754],[-91.16031,32.070354],[-91.15581,32.075554],[-91.14881,32.080154],[-91.14511,32.081354],[-91.139309,32.081754],[-91.134909,32.080354],[-91.128609,32.076554],[-91.124109,32.071854],[-91.114309,32.058255],[-91.103708,32.050255],[-91.098708,32.048355],[-91.082308,32.047555],[-91.080208,32.048355],[-91.079108,32.050255],[-91.081708,32.075754],[-91.081508,32.077754],[-91.080008,32.079154],[-91.066679,32.08533],[-91.038607,32.098254],[-91.034707,32.101053],[-91.030507,32.108153],[-91.030706,32.114337],[-91.030907,32.120552],[-91.030799,32.120566],[-91.027007,32.121053],[-91.020006,32.123553],[-91.017606,32.125153],[-91.011806,32.131153],[-91.006406,32.139952],[-91.005006,32.142852],[-91.004106,32.146152],[-91.00619,32.156957],[-91.016606,32.160852],[-91.025007,32.162552],[-91.031907,32.167851],[-91.041807,32.174551],[-91.050207,32.178451],[-91.057647,32.177354],[-91.058907,32.171251],[-91.055707,32.163752],[-91.049707,32.157352],[-91.048507,32.150152],[-91.050207,32.145252],[-91.051207,32.144152],[-91.053175,32.124237],[-91.061555,32.126907],[-91.069081,32.131478],[-91.077043,32.133493],[-91.08163,32.133992],[-91.091656,32.133604],[-91.101181,32.131136],[-91.103696,32.130007],[-91.111294,32.125036],[-91.113866,32.125731],[-91.131403,32.126213],[-91.136566,32.127371],[-91.1444,32.13039],[-91.155043,32.132243],[-91.162822,32.132694],[-91.165452,32.13429],[-91.171702,32.14425],[-91.173495,32.149009],[-91.174552,32.154978],[-91.173664,32.164231],[-91.171046,32.176526],[-91.168073,32.186635],[-91.164171,32.196888],[-91.162062,32.199035],[-91.158026,32.201956],[-91.133587,32.213432],[-91.130197,32.213666],[-91.128495,32.213169],[-91.124043,32.211104],[-91.11727,32.206668],[-91.114084,32.206697],[-91.113009,32.20655],[-91.108509,32.20815],[-91.100409,32.21785],[-91.092108,32.22385],[-91.083708,32.22645],[-91.075108,32.22705],[-91.071108,32.22605],[-91.061408,32.21865],[-91.055107,32.22475],[-91.053107,32.22795],[-91.051807,32.234449],[-91.050307,32.237949],[-91.046507,32.241149],[-91.039007,32.242349],[-91.034307,32.241549],[-91.026607,32.238749],[-91.021507,32.236149],[-91.009606,32.22615],[-91.006106,32.22405],[-91.004769,32.22105],[-91.002469,32.215812],[-91.001192,32.215173],[-90.999531,32.214662],[-90.997359,32.213896],[-90.994293,32.213768],[-90.991227,32.214662],[-90.988672,32.215812],[-90.985989,32.217856],[-90.983434,32.221305],[-90.983263,32.226201],[-90.983135,32.231371],[-90.98029,32.243601],[-90.976139,32.248092],[-90.970016,32.25168],[-90.969403,32.25252],[-90.971344,32.257742],[-90.979663,32.265252],[-90.981028,32.266733],[-90.982985,32.270294],[-90.984077,32.279954],[-90.980747,32.29141],[-90.979475,32.293702],[-90.976199,32.29645],[-90.974602,32.297122],[-90.971643,32.297497],[-90.964149,32.296872],[-90.963079,32.296285],[-90.961171,32.293288],[-90.955405,32.286241],[-90.953008,32.284043],[-90.951351,32.283199],[-90.947834,32.283486],[-90.933991,32.290343],[-90.922231,32.298639],[-90.916157,32.303582],[-90.905173,32.315497],[-90.902558,32.319587],[-90.90124,32.323386],[-90.90072,32.330379],[-90.882161,32.357552],[-90.875631,32.372434],[-90.878289,32.374548],[-90.888947,32.373246],[-90.89206,32.370579],[-90.897762,32.35436],[-90.907756,32.343611],[-90.912363,32.339454],[-90.92117,32.342073],[-90.934897,32.344967],[-90.942981,32.345956],[-90.954583,32.345859],[-90.986672,32.35176],[-90.993625,32.354047],[-91.000106,32.357695],[-91.003506,32.362145],[-91.004506,32.364744],[-91.004506,32.368144],[-91.000606,32.381644],[-90.996237,32.388061],[-90.994686,32.392277],[-90.99378,32.396778],[-90.99408,32.403862],[-90.980723,32.408243],[-90.974461,32.412001],[-90.971141,32.414636],[-90.967767,32.418279],[-90.966255,32.421027],[-90.965986,32.424806],[-90.966457,32.433868],[-90.966869,32.435499],[-90.96856,32.438084],[-90.96959,32.43949],[-90.978547,32.447032],[-90.983423,32.449077],[-90.993863,32.45085],[-90.998974,32.450165],[-91.004806,32.445741],[-91.016506,32.440342],[-91.026306,32.434442],[-91.029606,32.433542],[-91.052907,32.438442],[-91.070207,32.445141],[-91.081807,32.450441],[-91.095308,32.458741],[-91.108808,32.47204],[-91.112108,32.47614],[-91.116008,32.48314],[-91.117308,32.495039],[-91.116708,32.500139],[-91.106985,32.514934],[-91.101304,32.525599],[-91.098756,32.532968],[-91.097949,32.537214],[-91.097878,32.544752],[-91.093741,32.549128],[-91.074817,32.533467],[-91.070467,32.528171],[-91.060516,32.512361],[-91.050907,32.500139],[-91.045807,32.495539],[-91.038106,32.49044],[-91.033906,32.48854],[-91.024106,32.48524],[-91.017106,32.48374],[-91.004206,32.48214],[-90.999223,32.482615],[-90.996388,32.483925],[-90.990703,32.487749],[-90.988278,32.49119],[-90.987831,32.49419],[-90.988174,32.496796],[-90.989826,32.500139],[-90.994481,32.506331],[-91.005468,32.513842],[-91.011275,32.516596],[-91.051168,32.53089],[-91.061685,32.536448],[-91.075373,32.546718],[-91.080398,32.556442],[-91.069786,32.562793],[-91.069354,32.563052],[-91.049312,32.573624],[-91.043451,32.57627],[-91.03617,32.579556],[-91.030991,32.583347],[-91.022943,32.591848],[-91.016231,32.596953],[-91.013723,32.598419],[-91.010228,32.601927],[-91.004599,32.60978],[-91.002997,32.614678],[-91.002962,32.622555],[-91.0035,32.624845],[-91.00682,32.631261],[-91.014286,32.640482],[-91.019115,32.643845],[-91.025769,32.646573],[-91.030181,32.644052],[-91.038415,32.636443],[-91.040401,32.632521],[-91.041448,32.625135],[-91.043263,32.620779],[-91.0489,32.613556],[-91.049796,32.607188],[-91.061354,32.605372],[-91.079506,32.60068],[-91.087784,32.59707],[-91.105704,32.590879],[-91.112764,32.590186],[-91.118641,32.585139],[-91.119854,32.584795],[-91.125108,32.585187],[-91.127912,32.586493],[-91.13528,32.591651],[-91.141148,32.597209],[-91.144074,32.600613],[-91.146204,32.604144],[-91.151318,32.615919],[-91.153556,32.626181],[-91.153821,32.631282],[-91.153744,32.635228],[-91.152699,32.640757],[-91.152081,32.641508],[-91.149753,32.644041],[-91.144347,32.648029],[-91.142038,32.649265],[-91.138712,32.649774],[-91.137638,32.650621],[-91.130928,32.65887],[-91.127723,32.665343],[-91.118258,32.674075],[-91.104443,32.682434],[-91.098762,32.685291],[-91.081145,32.691127],[-91.076061,32.693751],[-91.063946,32.702926],[-91.057043,32.712576],[-91.054749,32.719229],[-91.054481,32.722259],[-91.056999,32.72558],[-91.060766,32.727494],[-91.077176,32.732534],[-91.090573,32.7361],[-91.113652,32.73997],[-91.123152,32.742798],[-91.131691,32.743107],[-91.150244,32.741786],[-91.154461,32.742339],[-91.15861,32.743449],[-91.163389,32.747009],[-91.165328,32.751301],[-91.165814,32.757842],[-91.164968,32.761984],[-91.157614,32.776033],[-91.156918,32.780343],[-91.158583,32.781096],[-91.164397,32.785821],[-91.161412,32.800004],[-91.161669,32.812465],[-91.158336,32.822304],[-91.157155,32.823823],[-91.152174,32.826673],[-91.149704,32.83122],[-91.145002,32.84287],[-91.143559,32.844739],[-91.13789,32.848975],[-91.127886,32.855059],[-91.124725,32.854861],[-91.116091,32.855641],[-91.105631,32.858396],[-91.086683,32.873392],[-91.070602,32.888659],[-91.068186,32.891929],[-91.064449,32.901064],[-91.063809,32.903709],[-91.063684,32.906364],[-91.064854,32.91652],[-91.063875,32.922692],[-91.064804,32.926464],[-91.070547,32.936036],[-91.072075,32.937832],[-91.080431,32.943206],[-91.081913,32.944768],[-91.083084,32.947909],[-91.081892,32.949435],[-91.080507,32.950123],[-91.078904,32.951818],[-91.080355,32.962794],[-91.086802,32.976266],[-91.090887,32.981174],[-91.094265,32.984371],[-91.09693,32.986412],[-91.106581,32.988938],[-91.111757,32.988361],[-91.125107,32.984669],[-91.134414,32.980533],[-91.135517,32.979657],[-91.138585,32.971352],[-91.137524,32.96955],[-91.13305,32.966541],[-91.130947,32.963815],[-91.130721,32.962257],[-91.131243,32.960928],[-91.133335,32.959056],[-91.136628,32.957349],[-91.137167,32.95652],[-91.137863,32.952756],[-91.135507,32.946164],[-91.131289,32.930049],[-91.131304,32.926919],[-91.132115,32.923122],[-91.134041,32.917676],[-91.145076,32.905494],[-91.15169,32.901935],[-91.159975,32.899879],[-91.170235,32.899391],[-91.175405,32.899998],[-91.181631,32.901446],[-91.196785,32.906784],[-91.199775,32.908512],[-91.208263,32.915354],[-91.211597,32.919624],[-91.212837,32.922104],[-91.213972,32.927198],[-91.214027,32.93032],[-91.21282,32.936076],[-91.210705,32.939845],[-91.20744,32.944393],[-91.199415,32.952314],[-91.20119,32.954982],[-91.20203,32.957332],[-91.201842,32.961212],[-91.199646,32.963561],[-91.197433,32.96482],[-91.186983,32.976194],[-91.182158,32.978639],[-91.173308,32.986088],[-91.168973,32.992132],[-91.166195,33.002238],[-91.166073,33.004106],[-91.166282,33.011331],[-91.162363,33.019684],[-91.15616,33.02358],[-91.149758,33.026312],[-91.142424,33.027231],[-91.137439,33.028736],[-91.129088,33.033554],[-91.125656,33.038276],[-91.123441,33.046577],[-91.120379,33.05453],[-91.120293,33.055921],[-91.121195,33.059166],[-91.124639,33.064127],[-91.149823,33.081603],[-91.160656,33.085596],[-91.165918,33.086174],[-91.171514,33.087818],[-91.173546,33.089318],[-91.174723,33.09164],[-91.180836,33.098364],[-91.195953,33.104561],[-91.200167,33.10693],[-91.201125,33.108185],[-91.201462,33.109638],[-91.202089,33.121249],[-91.20178,33.125121],[-91.195296,33.134731],[-91.193174,33.136734],[-91.188718,33.139811],[-91.183662,33.141691],[-91.169406,33.142639],[-91.161651,33.141781],[-91.160298,33.141216],[-91.153015,33.135093],[-91.151853,33.131802],[-91.150362,33.130695],[-91.143334,33.129785],[-91.131659,33.129101],[-91.114087,33.129834],[-91.104317,33.131598],[-91.093201,33.136726],[-91.089862,33.139655],[-91.087589,33.145177],[-91.085562,33.155822],[-91.084889,33.1618],[-91.084366,33.180856],[-91.086963,33.198509],[-91.089909,33.210194],[-91.091711,33.220813],[-91.085984,33.221644],[-91.082878,33.221621],[-91.079635,33.223225],[-91.079227,33.223889],[-91.079227,33.2265],[-91.077673,33.227485],[-91.074103,33.226821],[-91.070697,33.227302],[-91.071079,33.230096],[-91.068708,33.232936],[-91.065629,33.232982],[-91.063912,33.237356],[-91.054126,33.246105],[-91.050407,33.251202],[-91.047648,33.259989],[-91.045191,33.265404],[-91.043985,33.269835],[-91.043624,33.274636],[-91.045141,33.279015],[-91.04815,33.282796],[-91.052369,33.285415],[-91.05873,33.286901],[-91.067035,33.28718],[-91.072567,33.285885],[-91.07853,33.283306],[-91.081244,33.28125],[-91.083694,33.278557],[-91.086137,33.273652],[-91.090342,33.257325],[-91.091489,33.254838],[-91.094748,33.250499],[-91.096931,33.241628],[-91.099093,33.238173],[-91.1001,33.238125],[-91.106142,33.241799],[-91.110561,33.24593],[-91.114325,33.252953],[-91.117223,33.260685],[-91.118208,33.262071],[-91.128078,33.268502],[-91.125528,33.274732],[-91.125539,33.280255],[-91.140057,33.296618],[-91.141615,33.299539],[-91.141475,33.314318],[-91.143667,33.328398],[-91.143353,33.33052],[-91.141893,33.332963],[-91.140968,33.336493],[-91.142219,33.348989],[-91.141793,33.350076],[-91.140192,33.351452],[-91.125108,33.360099],[-91.120409,33.363809],[-91.106758,33.381141],[-91.101456,33.38719],[-91.090852,33.395781],[-91.075293,33.405966],[-91.062281,33.421238],[-91.058152,33.428705],[-91.057621,33.445341],[-91.059828,33.450257],[-91.064701,33.453775],[-91.067623,33.455104],[-91.074555,33.455811],[-91.077814,33.455648],[-91.081834,33.454188],[-91.086498,33.451576],[-91.091566,33.446319],[-91.094279,33.442671],[-91.096723,33.437603],[-91.097531,33.433725],[-91.097474,33.431733],[-91.095335,33.425684],[-91.095211,33.417488],[-91.099277,33.408244],[-91.10717,33.399078],[-91.113764,33.393124],[-91.123623,33.387526],[-91.140938,33.380477],[-91.154017,33.378914],[-91.166304,33.379709],[-91.171968,33.38103],[-91.176942,33.382841],[-91.191127,33.389634],[-91.204758,33.398823],[-91.208113,33.402007],[-91.209032,33.403633],[-91.20922,33.40629],[-91.208702,33.408719],[-91.205272,33.414231],[-91.20258,33.416832],[-91.199354,33.418321],[-91.191973,33.417728],[-91.184427,33.419576],[-91.179368,33.417151],[-91.17628,33.416979],[-91.163387,33.422157],[-91.147663,33.427172],[-91.144877,33.427706],[-91.13915,33.426955],[-91.131885,33.430063],[-91.130561,33.4319],[-91.130552,33.433263],[-91.128589,33.436284],[-91.1211,33.443563],[-91.118495,33.449116],[-91.117975,33.453807],[-91.119667,33.46023],[-91.125109,33.472842],[-91.136656,33.481323],[-91.157319,33.492923],[-91.160142,33.494829],[-91.164019,33.497448],[-91.167403,33.498304],[-91.172213,33.496691],[-91.175488,33.49077],[-91.177148,33.48617],[-91.176984,33.478899],[-91.175635,33.471761],[-91.171799,33.462342],[-91.16936,33.452629],[-91.177293,33.443638],[-91.181787,33.44078],[-91.186979,33.438592],[-91.194658,33.436358],[-91.206807,33.433846],[-91.210275,33.433796],[-91.217374,33.434699],[-91.235181,33.438972],[-91.235928,33.440611],[-91.23431,33.4423],[-91.233422,33.444038],[-91.232587,33.453958],[-91.231661,33.4571],[-91.223338,33.462764],[-91.220192,33.463045],[-91.215508,33.46478],[-91.208535,33.468606],[-91.206753,33.470308],[-91.205661,33.473553],[-91.199593,33.483125],[-91.195634,33.488468],[-91.189375,33.493005],[-91.185637,33.496399],[-91.18307,33.498613],[-91.182901,33.502379],[-91.184612,33.507364],[-91.187367,33.510552],[-91.215671,33.529423],[-91.219297,33.532364],[-91.226325,33.5412],[-91.229834,33.547047],[-91.232295,33.552788],[-91.232537,33.557454],[-91.231418,33.560593],[-91.230858,33.561372],[-91.228489,33.564667],[-91.224121,33.567369],[-91.221466,33.568166],[-91.203151,33.570758],[-91.198285,33.572061],[-91.188942,33.576225],[-91.181068,33.58152],[-91.17822,33.582607],[-91.175979,33.582968],[-91.160755,33.581352],[-91.157429,33.581372],[-91.152148,33.582721],[-91.138418,33.590896],[-91.134043,33.594489],[-91.13245,33.596989],[-91.131588,33.59945],[-91.130445,33.606034],[-91.130902,33.610919],[-91.134389,33.619512],[-91.139209,33.625658],[-91.150499,33.633013],[-91.164212,33.643278],[-91.171168,33.647766],[-91.178311,33.651109],[-91.185455,33.653604],[-91.211284,33.658526],[-91.219048,33.661503],[-91.223001,33.664794],[-91.226537,33.668665],[-91.228228,33.671326],[-91.229015,33.677543],[-91.227857,33.683073],[-91.225279,33.687749],[-91.22057,33.692923],[-91.212077,33.698249],[-91.205377,33.700819],[-91.200712,33.701535],[-91.190113,33.70186],[-91.17573,33.703116],[-91.165846,33.705133],[-91.162464,33.70684],[-91.160866,33.707096],[-91.144188,33.689596],[-91.133416,33.67679],[-91.13045,33.674522],[-91.10098,33.660551],[-91.09404,33.658351],[-91.088202,33.657387],[-91.084126,33.657322],[-91.078507,33.658283],[-91.06711,33.662689],[-91.059182,33.6664],[-91.050523,33.668064],[-91.046412,33.668272],[-91.03684,33.671316],[-91.034565,33.673018],[-91.03146,33.678142],[-91.030332,33.681622],[-91.030402,33.687766],[-91.033366,33.688773],[-91.03612,33.689113],[-91.03715,33.692907],[-91.039025,33.696595],[-91.041261,33.699933],[-91.046778,33.706313],[-91.055562,33.712486],[-91.059891,33.714816],[-91.063752,33.715892],[-91.06829,33.716477],[-91.075389,33.714403],[-91.089873,33.707364],[-91.101101,33.705007],[-91.107646,33.704679],[-91.117733,33.705342],[-91.125527,33.70878],[-91.132338,33.714246],[-91.144732,33.726803],[-91.145792,33.728924],[-91.146618,33.732456],[-91.146523,33.736503],[-91.143287,33.747141],[-91.144539,33.749338],[-91.144571,33.751607],[-91.141553,33.755957],[-91.140756,33.759735],[-91.141304,33.760835],[-91.143634,33.762095],[-91.144812,33.763996],[-91.145112,33.76734],[-91.14201,33.77382],[-91.139869,33.777117],[-91.137351,33.779923],[-91.133854,33.782814],[-91.132185,33.78342],[-91.128222,33.783447],[-91.123466,33.782106],[-91.117836,33.779026],[-91.111494,33.774568],[-91.107318,33.770619],[-91.088996,33.775801],[-91.08551,33.77641],[-91.060524,33.77764],[-91.053886,33.778701],[-91.026782,33.763642],[-91.023285,33.762991],[-91.01277,33.764675],[-91.000106,33.769165],[-90.993842,33.773601],[-90.99122,33.776791],[-90.989444,33.780576],[-90.988466,33.78453],[-90.989299,33.788016],[-90.991747,33.792597],[-91.000107,33.799549],[-91.007767,33.802591],[-91.020098,33.804447],[-91.025173,33.805953],[-91.042448,33.812855],[-91.046849,33.815365],[-91.049679,33.818729],[-91.052819,33.824181],[-91.056692,33.828935],[-91.064977,33.837126],[-91.067511,33.840443],[-91.071195,33.849539],[-91.073011,33.857449],[-91.072798,33.862396],[-91.070883,33.866714],[-91.061247,33.877505],[-91.055309,33.883035],[-91.036674,33.898531],[-91.026382,33.90798],[-91.017481,33.919083],[-91.010831,33.925552],[-91.01004,33.927003],[-91.010318,33.929352],[-91.012994,33.932276],[-91.020097,33.937127],[-91.035961,33.943758],[-91.046725,33.947406],[-91.078496,33.95406],[-91.084095,33.956179],[-91.086758,33.95827],[-91.088696,33.961334],[-91.089787,33.966004],[-91.089756,33.969721],[-91.089119,33.972653],[-91.087921,33.975335],[-91.083187,33.979865],[-91.079254,33.982101],[-91.075378,33.983586],[-91.071203,33.984473],[-91.062264,33.985083],[-91.048367,33.985078],[-91.042751,33.986811],[-91.039589,33.989297],[-91.033765,33.995323],[-91.01889,34.003151],[-91.01361,33.994495],[-91.004981,33.977011],[-91.002986,33.970902],[-91.000108,33.966428],[-90.994856,33.963118],[-90.987653,33.960793],[-90.983359,33.960186],[-90.976864,33.960503],[-90.970856,33.961868],[-90.967632,33.963324],[-90.965187,33.965461],[-90.96372,33.967688],[-90.961222,33.976151],[-90.961548,33.979945],[-90.970947,33.991885],[-90.977489,33.996554],[-90.979945,34.000106],[-90.987948,34.019038],[-90.982742,34.020469],[-90.976918,34.021335],[-90.970726,34.02162],[-90.958456,34.020254],[-90.950311,34.017822],[-90.942662,34.01805],[-90.934896,34.019262],[-90.923745,34.023143],[-90.922017,34.023216],[-90.914642,34.021885],[-90.899467,34.023796],[-90.89242,34.02686],[-90.888956,34.029788],[-90.887413,34.032505],[-90.886991,34.035094],[-90.887394,34.039845],[-90.889058,34.046362],[-90.888627,34.052419],[-90.887837,34.055403],[-90.886351,34.058564],[-90.882115,34.063903],[-90.874541,34.072041],[-90.87194,34.076362],[-90.870528,34.080516],[-90.870461,34.082739],[-90.871923,34.086652],[-90.876606,34.092911],[-90.878912,34.094573],[-90.882628,34.096615],[-90.888085,34.09781],[-90.893526,34.097795],[-90.90113,34.094667],[-90.914066,34.092756],[-90.918395,34.093054],[-90.921273,34.093958],[-90.946323,34.109374],[-90.948514,34.111269],[-90.955004,34.118973],[-90.955974,34.120125],[-90.958467,34.125105],[-90.959317,34.13035],[-90.9543,34.138498],[-90.938064,34.148754],[-90.91001,34.165508],[-90.903577,34.164332],[-90.894385,34.160953],[-90.883073,34.151502],[-90.876836,34.14813],[-90.86788,34.142146],[-90.86458,34.140555],[-90.853471,34.137511],[-90.847168,34.136884],[-90.836099,34.137876],[-90.830285,34.139813],[-90.825708,34.142011],[-90.822593,34.144054],[-90.815878,34.149879],[-90.810884,34.155903],[-90.807813,34.161474],[-90.807164,34.16746],[-90.808685,34.175878],[-90.810016,34.178437],[-90.812374,34.180767],[-90.816572,34.183023],[-90.828388,34.184784],[-90.838205,34.183804],[-90.847108,34.186053],[-90.8556,34.18688],[-90.859087,34.186288],[-90.864566,34.183882],[-90.869651,34.182965],[-90.87383,34.18322],[-90.877475,34.185633],[-90.882701,34.184364],[-90.887884,34.18198],[-90.891871,34.184766],[-90.9118,34.193897],[-90.916048,34.196916],[-90.93268,34.214824],[-90.93522,34.21905],[-90.936988,34.227041],[-90.937152,34.23411],[-90.936404,34.236698],[-90.933511,34.240218],[-90.929015,34.244541],[-90.923152,34.24653],[-90.912396,34.245932],[-90.907082,34.244492],[-90.905934,34.243529],[-90.904279,34.24096],[-90.900078,34.229621],[-90.898286,34.227253],[-90.89456,34.22438],[-90.87912,34.21545],[-90.867064,34.212141],[-90.856708,34.211598],[-90.852764,34.209403],[-90.847808,34.20653],[-90.844824,34.210999],[-90.842151,34.21688],[-90.840009,34.223077],[-90.839509,34.226201],[-90.840128,34.230104],[-90.839981,34.236114],[-90.836972,34.250104],[-90.832407,34.267491],[-90.830612,34.271245],[-90.828267,34.27365],[-90.824478,34.27624],[-90.820919,34.27784],[-90.812829,34.279438],[-90.802928,34.282465],[-90.797569,34.282402],[-90.772266,34.279943],[-90.765165,34.280524],[-90.755271,34.286848],[-90.752681,34.289266],[-90.743082,34.302257],[-90.740889,34.306538],[-90.74061,34.313469],[-90.742694,34.320263],[-90.744713,34.324872],[-90.748942,34.331045],[-90.765174,34.342818],[-90.767108,34.345264],[-90.767732,34.346872],[-90.768445,34.353469],[-90.767061,34.360271],[-90.765764,34.362109],[-90.762085,34.364754],[-90.756197,34.367256],[-90.750107,34.367919],[-90.741616,34.367225],[-90.729131,34.364206],[-90.724909,34.363659],[-90.712088,34.363805],[-90.700147,34.365855],[-90.690497,34.368606],[-90.683222,34.368817],[-90.681921,34.365998],[-90.680512,34.362529],[-90.68162,34.35291],[-90.691551,34.338618],[-90.693686,34.32968],[-90.693129,34.32257],[-90.690005,34.318584],[-90.686003,34.315771],[-90.678097,34.313031],[-90.669343,34.31302],[-90.661395,34.315398],[-90.657488,34.322231],[-90.657371,34.327287],[-90.660404,34.33576],[-90.666862,34.348569],[-90.666788,34.35582],[-90.655346,34.371846],[-90.658542,34.375705],[-90.641398,34.383869],[-90.63494,34.386363],[-90.631586,34.387193],[-90.61848,34.388767],[-90.613944,34.390723],[-90.580677,34.410554],[-90.575336,34.415152],[-90.571145,34.420319],[-90.568397,34.424805],[-90.566505,34.429528],[-90.565826,34.434379],[-90.56733,34.440383],[-90.573959,34.451875],[-90.576893,34.454351],[-90.583717,34.458829],[-90.585477,34.461247],[-90.588346,34.470562],[-90.589921,34.484793],[-90.588942,34.491097],[-90.586525,34.500103],[-90.58353,34.504085],[-90.581062,34.512818],[-90.578493,34.516296],[-90.569347,34.524867],[-90.555276,34.531012],[-90.545728,34.53775],[-90.543633,34.540378],[-90.541282,34.545331],[-90.540736,34.548085],[-90.540951,34.550853],[-90.545891,34.563257],[-90.549244,34.568101],[-90.557666,34.576929],[-90.564866,34.582602],[-90.570133,34.587457],[-90.574787,34.595243],[-90.581693,34.604227],[-90.587224,34.615732],[-90.588255,34.626616],[-90.58344,34.641389],[-90.58302,34.642679],[-90.583088,34.64361],[-90.585031,34.647072],[-90.586336,34.651689],[-90.587323,34.665407],[-90.588536,34.668646],[-90.588419,34.670963],[-90.582006,34.680235],[-90.578745,34.683844],[-90.573106,34.686425],[-90.567334,34.693371],[-90.563391,34.695876],[-90.555627,34.697946],[-90.552317,34.697087],[-90.549856,34.695478],[-90.548071,34.693169],[-90.542761,34.688781],[-90.540074,34.684981],[-90.538856,34.682463],[-90.538061,34.673232],[-90.539409,34.670902],[-90.550158,34.663445],[-90.552642,34.659707],[-90.553962,34.655018],[-90.555104,34.646236],[-90.554129,34.640871],[-90.551761,34.636484],[-90.547614,34.631656],[-90.543696,34.629559],[-90.537165,34.627767],[-90.532188,34.627487],[-90.524481,34.628504],[-90.517168,34.630928],[-90.5081,34.636682],[-90.503061,34.64079],[-90.496639,34.648117],[-90.48789,34.654881],[-90.479718,34.659934],[-90.469821,34.669436],[-90.466041,34.674312],[-90.462816,34.684074],[-90.462552,34.687576],[-90.463734,34.691093],[-90.467064,34.695643],[-90.471185,34.699066],[-90.475194,34.700826],[-90.480041,34.701515],[-90.486966,34.701477],[-90.496552,34.700578],[-90.509847,34.698003],[-90.522084,34.696605],[-90.529211,34.696819],[-90.538974,34.698783],[-90.546053,34.702076],[-90.565646,34.721053],[-90.567482,34.723292],[-90.568081,34.724802],[-90.568172,34.727384],[-90.56724,34.733463],[-90.565437,34.736536],[-90.563544,34.738671],[-90.559895,34.740788],[-90.556308,34.741541],[-90.553186,34.741912],[-90.550284,34.742804],[-90.547606,34.744367],[-90.54582,34.745929],[-90.543811,34.749277],[-90.542695,34.752626],[-90.542631,34.764396],[-90.546225,34.773443],[-90.547859,34.779194],[-90.54817,34.78189],[-90.547612,34.784589],[-90.544067,34.791159],[-90.540222,34.795768],[-90.53651,34.798572],[-90.53133,34.800584],[-90.522892,34.802265],[-90.514706,34.801768],[-90.512761,34.796488],[-90.503679,34.780136],[-90.501523,34.774795],[-90.500994,34.771187],[-90.501325,34.769931],[-90.505494,34.764568],[-90.516522,34.758333],[-90.520556,34.753388],[-90.5219,34.748463],[-90.5219,34.743537],[-90.521004,34.738612],[-90.518317,34.73279],[-90.514735,34.729656],[-90.501667,34.724236],[-90.488865,34.723731],[-90.479704,34.724793],[-90.469897,34.72703],[-90.45795,34.732946],[-90.454968,34.735557],[-90.452479,34.739898],[-90.451257,34.744485],[-90.45117,34.747787],[-90.453038,34.753352],[-90.458883,34.764267],[-90.470411,34.780877],[-90.473527,34.788835],[-90.47459,34.7932],[-90.473877,34.798399],[-90.47228,34.802465],[-90.470544,34.805036],[-90.465367,34.810592],[-90.459024,34.81444],[-90.456761,34.820395],[-90.456935,34.823383],[-90.463795,34.834923],[-90.474403,34.849495],[-90.481955,34.857805],[-90.483876,34.861333],[-90.485038,34.869252],[-90.484558,34.875096],[-90.483969,34.877176],[-90.479872,34.883264],[-90.475686,34.88631],[-90.466154,34.890989],[-90.459819,34.891946],[-90.453916,34.891122],[-90.444806,34.887994],[-90.441254,34.886313],[-90.438313,34.884581],[-90.436561,34.882731],[-90.430096,34.871212],[-90.42898,34.867168],[-90.429115,34.865087],[-90.431722,34.858913],[-90.431741,34.855051],[-90.430828,34.848982],[-90.428754,34.8414],[-90.423879,34.834606],[-90.422355,34.833675],[-90.414864,34.831846],[-90.410666,34.832028],[-90.407991,34.832998],[-90.401633,34.835305],[-90.379837,34.845931],[-90.352174,34.853196],[-90.348218,34.855113],[-90.34038,34.860357],[-90.332298,34.85253],[-90.323067,34.846391],[-90.319198,34.844854],[-90.311312,34.844223],[-90.307384,34.846195],[-90.303944,34.850517],[-90.302669,34.854366],[-90.302523,34.856471],[-90.303698,34.859704],[-90.304419,34.860589],[-90.313476,34.871698],[-90.310005,34.875097],[-90.301957,34.880053],[-90.279364,34.890077],[-90.250095,34.90732],[-90.248308,34.909739],[-90.246546,34.914168],[-90.244725,34.921031],[-90.244476,34.937596],[-90.246116,34.944316],[-90.247832,34.947916],[-90.250056,34.951196],[-90.253969,34.954988],[-90.259663,34.957793],[-90.27824,34.965077],[-90.282234,34.967661],[-90.287239,34.972531],[-90.293083,34.974574],[-90.296422,34.976346],[-90.302471,34.982077],[-90.304425,34.984939],[-90.309297,34.995694]]]]}}]} diff --git a/Where/RegionKit/Sources/Resources/regions/us-MT.geojson b/Where/RegionKit/Sources/Resources/regions/us-MT.geojson new file mode 100644 index 00000000..14c31187 --- /dev/null +++ b/Where/RegionKit/Sources/Resources/regions/us-MT.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"region":"us-MT","name":"Montana"},"geometry":{"type":"Polygon","coordinates":[[[-105.038405,45.000345],[-105.076607,45.000347],[-105.848065,45.000396],[-105.913382,45.000941],[-105.914258,44.999986],[-105.928184,44.993647],[-106.024814,44.993688],[-106.263586,44.993788],[-106.888773,44.995885],[-106.892875,44.995947],[-107.050801,44.996424],[-107.074996,44.997004],[-107.084939,44.996599],[-107.105685,44.998734],[-107.125633,44.999388],[-107.13418,45.000109],[-107.351441,45.001407],[-107.49205,45.00148],[-107.607824,45.000929],[-107.608854,45.00086],[-107.750654,45.000778],[-107.911743,45.001292],[-107.997353,45.001565],[-108.000663,45.001223],[-108.14939,45.001062],[-108.218479,45.000541],[-108.238139,45.000206],[-108.249345,44.999458],[-108.271201,45.000251],[-108.500679,44.999691],[-108.565921,45.000578],[-108.578484,45.000484],[-108.621313,45.000408],[-109.062262,44.999623],[-109.08301,44.99961],[-109.103445,45.005904],[-109.263431,45.005345],[-109.269294,45.005283],[-109.375713,45.00461],[-109.386432,45.004887],[-109.574321,45.002631],[-109.663673,45.002536],[-109.75073,45.001605],[-109.798687,45.002188],[-109.875735,45.003275],[-109.99505,45.003174],[-110.025544,45.003602],[-110.026347,45.003665],[-110.110103,45.003905],[-110.199503,44.996188],[-110.28677,44.99685],[-110.324441,44.999156],[-110.342131,44.999053],[-110.362698,45.000593],[-110.402927,44.99381],[-110.48807,44.992361],[-110.547165,44.992459],[-110.552433,44.992237],[-110.705272,44.992324],[-110.750767,44.997948],[-110.761554,44.999934],[-110.785008,45.002952],[-111.044275,45.001345],[-111.055199,45.001321],[-111.056207,44.935901],[-111.055629,44.933578],[-111.056888,44.866658],[-111.056416,44.749928],[-111.055511,44.725343],[-111.055333,44.666263],[-111.055208,44.624927],[-111.048974,44.474072],[-111.062729,44.476073],[-111.122654,44.493659],[-111.131379,44.499925],[-111.139455,44.517112],[-111.143557,44.535732],[-111.15959,44.546376],[-111.166892,44.54722],[-111.175747,44.552219],[-111.182551,44.566874],[-111.189617,44.571062],[-111.201459,44.575696],[-111.225208,44.581006],[-111.23018,44.587025],[-111.231227,44.606915],[-111.224161,44.623402],[-111.25268,44.651092],[-111.262839,44.649658],[-111.276956,44.655626],[-111.26875,44.668279],[-111.29626,44.702271],[-111.323669,44.724474],[-111.341351,44.7293],[-111.348184,44.725459],[-111.355768,44.727602],[-111.366723,44.738361],[-111.36627,44.742234],[-111.37476,44.750295],[-111.377709,44.751686],[-111.385005,44.755128],[-111.393854,44.752549],[-111.397805,44.746738],[-111.394459,44.744578],[-111.398575,44.723343],[-111.414271,44.710741],[-111.424214,44.714024],[-111.429604,44.720149],[-111.438793,44.720546],[-111.480393,44.70919],[-111.486019,44.707654],[-111.489339,44.704946],[-111.490228,44.700221],[-111.484898,44.687578],[-111.47798,44.682393],[-111.468833,44.679335],[-111.473178,44.665479],[-111.50494,44.635746],[-111.521688,44.613371],[-111.525764,44.604883],[-111.524213,44.595585],[-111.519126,44.582916],[-111.492024,44.56081],[-111.469185,44.552044],[-111.467736,44.544521],[-111.471682,44.540824],[-111.500792,44.540062],[-111.518095,44.544177],[-111.524006,44.548385],[-111.546637,44.557099],[-111.556577,44.554495],[-111.562814,44.555209],[-111.585763,44.562843],[-111.591768,44.561502],[-111.601249,44.55421],[-111.614405,44.548991],[-111.617348,44.549467],[-111.681571,44.559864],[-111.704218,44.560205],[-111.709553,44.550206],[-111.715474,44.543543],[-111.737191,44.54306],[-111.746401,44.540766],[-111.758966,44.533766],[-111.761904,44.529841],[-111.806512,44.516264],[-111.807914,44.511716],[-111.821488,44.509286],[-111.842542,44.526069],[-111.849293,44.539837],[-111.870504,44.564033],[-111.887852,44.563413],[-111.903566,44.55723],[-111.947941,44.556776],[-111.951522,44.550062],[-111.980833,44.536682],[-111.995231,44.535444],[-112.01385,44.542348],[-112.032707,44.546642],[-112.035025,44.542691],[-112.034133,44.537716],[-112.036943,44.530323],[-112.053434,44.535089],[-112.069011,44.537104],[-112.093304,44.530002],[-112.096299,44.523212],[-112.101564,44.520847],[-112.106755,44.520829],[-112.125101,44.528527],[-112.129078,44.5363],[-112.136454,44.539911],[-112.164597,44.541666],[-112.179703,44.533021],[-112.183937,44.533067],[-112.221698,44.543519],[-112.229477,44.549494],[-112.226841,44.555239],[-112.230117,44.562759],[-112.242785,44.568091],[-112.258665,44.569516],[-112.286187,44.568472],[-112.307642,44.557651],[-112.312899,44.553536],[-112.315047,44.550049],[-112.315008,44.5419],[-112.319198,44.53911],[-112.348794,44.538691],[-112.35421,44.535638],[-112.358917,44.528847],[-112.3566,44.493127],[-112.358926,44.48628],[-112.368764,44.467153],[-112.387389,44.448058],[-112.435342,44.462216],[-112.460347,44.47571],[-112.473207,44.480027],[-112.50031,44.463051],[-112.511713,44.466445],[-112.512036,44.47042],[-112.518871,44.475784],[-112.541989,44.483971],[-112.550557,44.484928],[-112.573513,44.480983],[-112.584197,44.481368],[-112.601863,44.491015],[-112.660696,44.485756],[-112.664485,44.48645],[-112.671169,44.491265],[-112.707815,44.503023],[-112.71911,44.504344],[-112.735084,44.499159],[-112.749011,44.491233],[-112.781294,44.484888],[-112.797863,44.466112],[-112.828191,44.442472],[-112.836034,44.422653],[-112.821896,44.407436],[-112.812608,44.392275],[-112.81324,44.378103],[-112.814156,44.377198],[-112.820489,44.370946],[-112.844859,44.358221],[-112.855395,44.359975],[-112.881769,44.380315],[-112.886041,44.395874],[-112.915602,44.402699],[-112.951146,44.416699],[-112.981682,44.434279],[-113.003544,44.450814],[-113.020917,44.493827],[-113.018636,44.520064],[-113.019777,44.528505],[-113.032722,44.537137],[-113.04282,44.546757],[-113.042363,44.565237],[-113.061071,44.577329],[-113.083819,44.60222],[-113.07376,44.613928],[-113.065593,44.617391],[-113.05677,44.618657],[-113.053529,44.621187],[-113.049349,44.62938],[-113.051504,44.63695],[-113.065589,44.649371],[-113.068306,44.656374],[-113.07042,44.667844],[-113.067756,44.672807],[-113.06776,44.679474],[-113.081906,44.691392],[-113.098064,44.697477],[-113.101154,44.708578],[-113.102138,44.729027],[-113.116874,44.738104],[-113.134824,44.752763],[-113.137704,44.760109],[-113.131387,44.764738],[-113.131453,44.772837],[-113.140618,44.776698],[-113.158206,44.780847],[-113.163806,44.778921],[-113.179366,44.787142],[-113.183395,44.793565],[-113.19436,44.802151],[-113.209624,44.80907],[-113.238729,44.814144],[-113.247166,44.82295],[-113.278382,44.812706],[-113.29683,44.803358],[-113.301508,44.798985],[-113.341704,44.784853],[-113.354034,44.791745],[-113.354763,44.795468],[-113.346692,44.798898],[-113.3461,44.800611],[-113.356062,44.819798],[-113.377153,44.834858],[-113.383984,44.8374],[-113.422376,44.842595],[-113.455071,44.865424],[-113.474573,44.910846],[-113.491121,44.927548],[-113.498745,44.942314],[-113.494446,44.948597],[-113.480836,44.95031],[-113.474781,44.948795],[-113.467467,44.948061],[-113.448958,44.953544],[-113.443782,44.95989],[-113.444862,44.976141],[-113.447013,44.984637],[-113.446884,44.998545],[-113.437726,45.006967],[-113.449909,45.035167],[-113.44912,45.046098],[-113.45197,45.059247],[-113.460578,45.064879],[-113.465073,45.062755],[-113.47377,45.0617],[-113.485278,45.063519],[-113.520134,45.093033],[-113.510819,45.099902],[-113.506638,45.107288],[-113.513342,45.115225],[-113.538037,45.11503],[-113.546488,45.112285],[-113.554744,45.112901],[-113.57467,45.128411],[-113.594632,45.166034],[-113.589891,45.176986],[-113.599506,45.191114],[-113.636889,45.212983],[-113.647399,45.228282],[-113.650064,45.23471],[-113.657027,45.241436],[-113.665633,45.246265],[-113.674409,45.249411],[-113.678749,45.24927],[-113.684946,45.253706],[-113.692039,45.265191],[-113.691557,45.270912],[-113.688077,45.276407],[-113.689359,45.28355],[-113.735601,45.325265],[-113.738729,45.329741],[-113.7402,45.34559],[-113.73553,45.364738],[-113.73239,45.385058],[-113.733092,45.390173],[-113.734402,45.392353],[-113.750546,45.40272],[-113.760924,45.406501],[-113.765203,45.410601],[-113.768058,45.418147],[-113.763368,45.427732],[-113.764591,45.431403],[-113.783272,45.451839],[-113.78416,45.454946],[-113.759986,45.480735],[-113.766022,45.520621],[-113.778361,45.523415],[-113.796579,45.523462],[-113.802849,45.523159],[-113.809144,45.519908],[-113.834555,45.520729],[-113.819868,45.566326],[-113.804796,45.580358],[-113.803261,45.584193],[-113.802955,45.592631],[-113.806729,45.602146],[-113.823068,45.612486],[-113.861404,45.62366],[-113.886006,45.61702],[-113.904691,45.622007],[-113.902539,45.636945],[-113.898883,45.644167],[-113.900588,45.648259],[-113.903582,45.651165],[-113.919752,45.658536],[-113.930403,45.671878],[-113.93422,45.682232],[-113.9426,45.686362],[-113.971565,45.700636],[-113.986656,45.704564],[-114.015633,45.696127],[-114.019315,45.692937],[-114.020533,45.681223],[-114.02007,45.670332],[-114.013786,45.658238],[-114.014973,45.654008],[-114.018731,45.648616],[-114.033456,45.648629],[-114.067619,45.627706],[-114.08179,45.611329],[-114.083149,45.603996],[-114.0821,45.596958],[-114.086584,45.59118],[-114.100308,45.586354],[-114.122322,45.58426],[-114.131469,45.574444],[-114.132359,45.572531],[-114.128601,45.568996],[-114.129099,45.565491],[-114.135249,45.557465],[-114.154837,45.552916],[-114.180043,45.551432],[-114.18647,45.545539],[-114.192802,45.536596],[-114.203665,45.53557],[-114.227942,45.546423],[-114.248121,45.545877],[-114.251836,45.537812],[-114.248183,45.533226],[-114.247824,45.524283],[-114.261616,45.495816],[-114.270717,45.486116],[-114.279217,45.480616],[-114.333218,45.459316],[-114.345019,45.459916],[-114.360719,45.474116],[-114.36562,45.490416],[-114.36852,45.492716],[-114.388618,45.502903],[-114.415804,45.509753],[-114.438991,45.536076],[-114.450863,45.54253],[-114.456764,45.543983],[-114.460542,45.561283],[-114.473759,45.563278],[-114.498176,45.555473],[-114.506341,45.559216],[-114.517761,45.568129],[-114.526075,45.570771],[-114.549508,45.56059],[-114.559038,45.565706],[-114.558253,45.585104],[-114.553999,45.591279],[-114.538132,45.606834],[-114.544905,45.616673],[-114.553937,45.619299],[-114.563305,45.631612],[-114.563652,45.637412],[-114.561046,45.639906],[-114.53577,45.650613],[-114.529678,45.65232],[-114.522142,45.64934],[-114.507645,45.658949],[-114.499637,45.669035],[-114.495421,45.703321],[-114.497553,45.710677],[-114.504869,45.722176],[-114.535634,45.739095],[-114.566172,45.773864],[-114.562509,45.779927],[-114.555487,45.786249],[-114.544692,45.791447],[-114.512973,45.828825],[-114.51704,45.833148],[-114.517143,45.835993],[-114.514596,45.840785],[-114.509303,45.845531],[-114.498809,45.850676],[-114.470296,45.851343],[-114.455532,45.855012],[-114.44868,45.858891],[-114.422963,45.855381],[-114.409477,45.85164],[-114.388243,45.88234],[-114.387166,45.889164],[-114.395059,45.901458],[-114.404314,45.903497],[-114.413168,45.911479],[-114.431159,45.935737],[-114.431328,45.938023],[-114.427717,45.939625],[-114.423681,45.9441],[-114.415977,45.947891],[-114.411933,45.952358],[-114.404708,45.9559],[-114.402261,45.961489],[-114.403712,45.967049],[-114.409353,45.97141],[-114.411892,45.977883],[-114.419899,45.981106],[-114.425843,45.984984],[-114.441185,45.988453],[-114.470965,45.995742],[-114.47729,46.000802],[-114.477922,46.009025],[-114.473811,46.016614],[-114.480241,46.030325],[-114.485793,46.030022],[-114.490572,46.032427],[-114.493418,46.03717],[-114.494683,46.042546],[-114.492153,46.04729],[-114.468529,46.062484],[-114.461864,46.078571],[-114.460049,46.097104],[-114.474415,46.112515],[-114.488303,46.113106],[-114.5213,46.125287],[-114.527096,46.146218],[-114.514706,46.167726],[-114.489254,46.167684],[-114.478333,46.160876],[-114.472643,46.162202],[-114.457549,46.170231],[-114.445928,46.173933],[-114.443215,46.202943],[-114.445497,46.220227],[-114.449819,46.237119],[-114.451912,46.241253],[-114.468254,46.248796],[-114.470479,46.26732],[-114.465024,46.273127],[-114.453257,46.270939],[-114.441326,46.2738],[-114.43544,46.27661],[-114.427309,46.283624],[-114.425587,46.287899],[-114.433478,46.305502],[-114.431708,46.310744],[-114.413758,46.335945],[-114.410682,46.360673],[-114.411592,46.366688],[-114.422458,46.387097],[-114.408974,46.400438],[-114.384756,46.411784],[-114.376413,46.442983],[-114.379338,46.460166],[-114.383051,46.466402],[-114.394447,46.469549],[-114.400068,46.47718],[-114.403019,46.498675],[-114.400257,46.502143],[-114.395204,46.503148],[-114.385871,46.50437],[-114.375348,46.501855],[-114.35874,46.505306],[-114.351655,46.508119],[-114.342072,46.519679],[-114.349208,46.529514],[-114.348733,46.533792],[-114.34534,46.548444],[-114.339533,46.564039],[-114.33175,46.571914],[-114.331338,46.577781],[-114.333931,46.582732],[-114.334992,46.588154],[-114.333931,46.592162],[-114.322519,46.611066],[-114.322912,46.642938],[-114.320665,46.646963],[-114.32456,46.653579],[-114.332887,46.660756],[-114.360709,46.669059],[-114.394514,46.664846],[-114.403383,46.659633],[-114.410907,46.657466],[-114.424424,46.660648],[-114.453239,46.649266],[-114.45425,46.640974],[-114.466902,46.631695],[-114.486218,46.632829],[-114.498007,46.637655],[-114.547321,46.644485],[-114.561582,46.642043],[-114.583385,46.633227],[-114.593292,46.632848],[-114.595213,46.633456],[-114.615036,46.639733],[-114.616354,46.643646],[-114.611676,46.647704],[-114.614716,46.655256],[-114.621483,46.658143],[-114.635713,46.659375],[-114.642713,46.673145],[-114.641745,46.679286],[-114.631898,46.68397],[-114.623198,46.691511],[-114.620859,46.707415],[-114.626695,46.712889],[-114.632954,46.715495],[-114.649388,46.73289],[-114.674997,46.737052],[-114.696656,46.740572],[-114.699008,46.740223],[-114.710425,46.717704],[-114.713516,46.715138],[-114.727445,46.714604],[-114.740115,46.711771],[-114.747758,46.702649],[-114.749257,46.699688],[-114.751921,46.697207],[-114.76689,46.696901],[-114.787065,46.711255],[-114.788656,46.714033],[-114.779668,46.730411],[-114.773765,46.731805],[-114.76718,46.738828],[-114.765127,46.745383],[-114.765106,46.758153],[-114.79004,46.778729],[-114.808587,46.78235],[-114.818161,46.781139],[-114.829117,46.782503],[-114.835917,46.791111],[-114.844794,46.794305],[-114.856874,46.801633],[-114.860067,46.804988],[-114.861376,46.81196],[-114.864342,46.813858],[-114.880588,46.811791],[-114.888146,46.808573],[-114.897857,46.813184],[-114.904505,46.822851],[-114.920459,46.827697],[-114.927837,46.83599],[-114.92845,46.843242],[-114.92349,46.847594],[-114.928615,46.854815],[-114.940398,46.85605],[-114.947413,46.859324],[-114.943281,46.867971],[-114.938713,46.869021],[-114.931608,46.876799],[-114.931058,46.882108],[-114.936805,46.897378],[-114.935035,46.901749],[-114.927948,46.909948],[-114.927432,46.914185],[-114.929997,46.919625],[-114.960597,46.93001],[-114.963978,46.932889],[-114.986539,46.952099],[-115.00091,46.967703],[-115.001274,46.971901],[-115.028386,46.975659],[-115.028994,46.973159],[-115.031651,46.971548],[-115.047857,46.969533],[-115.049538,46.970774],[-115.057098,46.986758],[-115.066223,46.996375],[-115.071254,47.022083],[-115.087806,47.045519],[-115.098136,47.048897],[-115.102681,47.047239],[-115.107132,47.049041],[-115.120917,47.061237],[-115.136671,47.078276],[-115.139515,47.08456],[-115.140375,47.093013],[-115.170436,47.106265],[-115.172938,47.112881],[-115.189451,47.131032],[-115.200547,47.139154],[-115.223246,47.148974],[-115.243707,47.150347],[-115.255146,47.162876],[-115.255786,47.174725],[-115.261885,47.181742],[-115.286353,47.18327],[-115.300504,47.188139],[-115.300805,47.19393],[-115.295986,47.205658],[-115.29211,47.209861],[-115.294785,47.220914],[-115.298794,47.225245],[-115.307239,47.229892],[-115.311875,47.229673],[-115.317124,47.233305],[-115.324832,47.244841],[-115.326903,47.255912],[-115.339201,47.261623],[-115.3593,47.259461],[-115.36628,47.261485],[-115.371825,47.265213],[-115.410685,47.264228],[-115.421645,47.271736],[-115.423173,47.276222],[-115.428359,47.278722],[-115.443566,47.277309],[-115.457077,47.277794],[-115.470959,47.284873],[-115.487314,47.286518],[-115.51186,47.295219],[-115.526751,47.303219],[-115.531971,47.314121],[-115.548658,47.332213],[-115.551079,47.349856],[-115.556318,47.353076],[-115.564766,47.353476],[-115.570887,47.356375],[-115.578619,47.367007],[-115.609492,47.380799],[-115.617247,47.382521],[-115.639186,47.378605],[-115.644341,47.381826],[-115.648479,47.390293],[-115.657681,47.400651],[-115.69057,47.415059],[-115.71034,47.417784],[-115.718934,47.420967],[-115.72148,47.424469],[-115.728801,47.428925],[-115.731348,47.433381],[-115.728801,47.445159],[-115.718247,47.45316],[-115.69293,47.457237],[-115.671188,47.45439],[-115.663867,47.456936],[-115.654318,47.468077],[-115.653044,47.476035],[-115.655272,47.477944],[-115.686704,47.485596],[-115.694106,47.498634],[-115.708748,47.51264],[-115.71034,47.52951],[-115.717024,47.532693],[-115.741371,47.538645],[-115.747263,47.543197],[-115.748536,47.549245],[-115.746945,47.555293],[-115.734674,47.567401],[-115.721207,47.576323],[-115.706473,47.577299],[-115.689404,47.595402],[-115.694284,47.62346],[-115.708537,47.635356],[-115.715193,47.63634],[-115.72993,47.642442],[-115.73627,47.654762],[-115.726613,47.672093],[-115.72377,47.696671],[-115.730764,47.704426],[-115.752349,47.716743],[-115.758623,47.719041],[-115.763424,47.717313],[-115.77177,47.717412],[-115.776219,47.719818],[-115.783504,47.729305],[-115.780441,47.743447],[-115.797299,47.75752],[-115.803917,47.75848],[-115.824597,47.752154],[-115.831755,47.755785],[-115.835365,47.760957],[-115.835069,47.77006],[-115.837438,47.774846],[-115.84044,47.780172],[-115.847487,47.785227],[-115.848509,47.809331],[-115.845474,47.814967],[-115.852291,47.827991],[-115.870861,47.834939],[-115.875262,47.843272],[-115.881522,47.849672],[-115.900934,47.843064],[-115.906409,47.846261],[-115.919291,47.857406],[-115.939993,47.883153],[-115.959946,47.898142],[-115.965153,47.910131],[-115.969076,47.914256],[-115.982791,47.915994],[-115.993678,47.926183],[-115.995121,47.933827],[-115.998236,47.938779],[-116.007246,47.950087],[-116.030751,47.973349],[-116.03834,47.971318],[-116.048421,47.97682],[-116.04882,47.97716],[-116.04885,47.977186],[-116.049153,47.999923],[-116.048739,48.060093],[-116.04932,48.066644],[-116.049415,48.07722],[-116.048911,48.12493],[-116.049764,48.215095],[-116.049977,48.237604],[-116.049353,48.249936],[-116.049735,48.274668],[-116.048948,48.309847],[-116.050003,48.413492],[-116.049155,48.481247],[-116.049157,48.502058],[-116.049193,49.000912],[-116.00103,49.00127],[-115.990685,49.000909],[-115.501016,49.000694],[-115.207912,48.999228],[-114.728212,49.000584],[-114.678217,49.000725],[-114.674398,49.000679],[-114.375977,49.00139],[-114.250971,49.000905],[-114.224912,48.999687],[-114.201107,48.999249],[-114.180211,48.999703],[-114.068153,48.998919],[-114.059188,48.998856],[-113.907487,48.998858],[-113.864127,48.998276],[-113.692982,48.997632],[-113.576118,48.998478],[-113.375925,48.998562],[-113.356874,48.998224],[-113.19474,48.998909],[-113.116356,48.998462],[-113.110155,48.99855],[-113.106891,48.998501],[-113.103212,48.99853],[-113.098147,48.998494],[-113.095436,48.998533],[-113.092055,48.998543],[-113.087863,48.998557],[-113.085576,48.998581],[-113.011041,48.998643],[-113.009895,48.998619],[-112.193588,48.9989],[-112.143769,48.998917],[-112.003866,48.99857],[-112.000878,48.998921],[-111.854088,48.998067],[-111.85409,48.998039],[-111.761679,48.997614],[-111.761613,48.99765],[-111.500812,48.996963],[-111.270701,48.997229],[-111.003916,48.997537],[-110.887459,48.998087],[-110.886706,48.998124],[-110.743211,48.998557],[-110.592465,48.999012],[-110.531615,48.99839],[-110.438151,48.999188],[-110.216135,48.999239],[-110.215516,48.999197],[-110.171595,48.999262],[-109.995618,48.999642],[-109.500737,49.00044],[-109.489694,49.000604],[-109.454023,49.001132],[-109.437397,49.000631],[-109.384762,49.000397],[-109.384068,49.000374],[-109.285975,49.000479],[-109.250722,49.000011],[-109.06057,48.999666],[-109.060292,48.999621],[-109.000708,48.999234],[-108.994722,48.999237],[-108.543194,48.999377],[-108.488063,48.999368],[-108.236496,48.99953],[-107.704696,48.999872],[-107.441017,48.999363],[-107.363582,49.000019],[-107.179864,48.999925],[-106.625597,48.99964],[-106.617539,48.999583],[-106.518201,48.999564],[-106.500592,48.999756],[-106.500592,48.999443],[-106.479609,48.999372],[-106.374616,48.999617],[-106.368151,48.999503],[-106.274267,48.999312],[-106.24621,48.999258],[-106.243154,48.999373],[-106.233987,48.999423],[-106.112108,48.999279],[-106.050543,48.999207],[-105.966197,48.999445],[-105.834181,48.999707],[-105.775808,48.999637],[-105.65027,48.999444],[-105.612577,48.999703],[-105.607542,48.999624],[-105.578616,48.999673],[-105.522636,48.999591],[-105.411972,48.999582],[-105.407909,48.99948],[-105.391379,48.999475],[-105.38749,48.999382],[-105.355888,48.999357],[-105.277521,48.999457],[-105.265192,48.9995],[-105.057514,48.999229],[-104.875527,48.998991],[-104.647389,48.999344],[-104.543636,48.999541],[-104.048736,48.999877],[-104.048478,48.987007],[-104.048616,48.966736],[-104.048555,48.963772],[-104.0488,48.958997],[-104.048627,48.957124],[-104.048698,48.951823],[-104.048872,48.94963],[-104.04877,48.943301],[-104.048701,48.940331],[-104.048807,48.933636],[-104.048744,48.912113],[-104.048746,48.906858],[-104.048643,48.902609],[-104.048719,48.879921],[-104.048893,48.875739],[-104.048883,48.874008],[-104.048824,48.867539],[-104.048652,48.865734],[-104.0489,48.847387],[-104.048569,48.797052],[-104.048537,48.788552],[-104.048233,48.765636],[-104.048548,48.751356],[-104.04834,48.747133],[-104.047883,48.664191],[-104.047849,48.663163],[-104.047861,48.658856],[-104.047865,48.65745],[-104.047887,48.649911],[-104.047819,48.648631],[-104.047582,48.633984],[-104.047582,48.633976],[-104.04762,48.627015],[-104.047586,48.625644],[-104.04793,48.62019],[-104.048212,48.599055],[-104.047974,48.591606],[-104.047811,48.56277],[-104.047783,48.539737],[-104.047648,48.531489],[-104.047876,48.530798],[-104.047513,48.525913],[-104.047675,48.517852],[-104.048054,48.500025],[-104.047555,48.49414],[-104.047392,48.467086],[-104.047259,48.452941],[-104.047294,48.452529],[-104.047192,48.447251],[-104.04709,48.445903],[-104.04696,48.421065],[-104.047134,48.411057],[-104.046969,48.390675],[-104.046913,48.389433],[-104.046913,48.389429],[-104.046654,48.374773],[-104.046371,48.374154],[-104.046332,48.34229],[-104.046039,48.256761],[-104.045861,48.255097],[-104.045645,48.246179],[-104.045729,48.244586],[-104.045692,48.241415],[-104.04556,48.193913],[-104.045424,48.192473],[-104.045498,48.176249],[-104.045399,48.16439],[-104.04412,47.996107],[-104.044162,47.992836],[-104.043933,47.971515],[-104.043497,47.95449],[-104.043329,47.949554],[-104.04223,47.891031],[-104.041662,47.862282],[-104.041869,47.841699],[-104.042567,47.808237],[-104.042432,47.805358],[-104.042384,47.803256],[-104.043199,47.747292],[-104.043242,47.747106],[-104.043742,47.625016],[-104.044241,47.612288],[-104.043912,47.603229],[-104.044109,47.523595],[-104.044621,47.45938],[-104.044797,47.438445],[-104.045069,47.397461],[-104.044863,47.375015],[-104.045333,47.343452],[-104.045313,47.331955],[-104.045307,47.330128],[-104.045121,47.276969],[-104.045155,47.27393],[-104.045088,47.271406],[-104.045057,47.266868],[-104.045091,47.265953],[-104.045159,47.263874],[-104.045517,47.215666],[-104.044788,47.12743],[-104.045081,47.092813],[-104.045018,47.081202],[-104.045354,47.078574],[-104.045259,47.063901],[-104.045227,47.057502],[-104.045195,47.053639],[-104.045052,47.040863],[-104.045076,47.037589],[-104.045566,46.941231],[-104.045535,46.934009],[-104.045542,46.933887],[-104.045901,46.83079],[-104.045402,46.725423],[-104.045403,46.722177],[-104.04537,46.721332],[-104.045572,46.713881],[-104.045474,46.708738],[-104.045271,46.641449],[-104.045271,46.641443],[-104.045098,46.540929],[-104.045045,46.509788],[-104.046103,46.383916],[-104.045481,46.366871],[-104.045462,46.341895],[-104.045469,46.324545],[-104.045417,46.280188],[-104.045237,46.125002],[-104.045759,46.123946],[-104.046822,46.000199],[-104.045443,45.94531],[-104.04403,45.881975],[-104.04403,45.881971],[-104.044009,45.871974],[-104.043814,45.868385],[-104.042597,45.749998],[-104.041937,45.557915],[-104.041647,45.550691],[-104.041717,45.539122],[-104.041145,45.503367],[-104.041274,45.499994],[-104.041764,45.490789],[-104.040816,45.462708],[-104.04041,45.393474],[-104.040114,45.374214],[-104.040265,45.345356],[-104.040358,45.335946],[-104.040136,45.212891],[-104.039977,45.124988],[-104.039563,45.124039],[-104.040128,44.999987],[-104.039681,44.998041],[-104.057698,44.997431],[-104.250145,44.99822],[-104.470117,44.998453],[-104.470422,44.998453],[-104.663882,44.998869],[-104.665171,44.998618],[-104.72637,44.999518],[-104.759855,44.999066],[-104.765063,44.999183],[-105.01824,45.000437],[-105.019284,45.000329],[-105.025266,45.00029],[-105.038405,45.000345]]]}}]} diff --git a/Where/RegionKit/Sources/Resources/regions/us-NC.geojson b/Where/RegionKit/Sources/Resources/regions/us-NC.geojson new file mode 100644 index 00000000..2b8daaa3 --- /dev/null +++ b/Where/RegionKit/Sources/Resources/regions/us-NC.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"region":"us-NC","name":"North Carolina"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-75.753765,35.199612],[-75.74522,35.20303],[-75.734171,35.204347],[-75.718015,35.209377],[-75.708947,35.213912],[-75.698972,35.221166],[-75.694437,35.22298],[-75.68749,35.231171],[-75.684006,35.232913],[-75.681916,35.232913],[-75.675394,35.228421],[-75.664512,35.227514],[-75.640934,35.233862],[-75.630358,35.238487],[-75.615378,35.248938],[-75.599005,35.256253],[-75.598312,35.261067],[-75.59796,35.266704],[-75.596915,35.269491],[-75.585419,35.266356],[-75.581935,35.263917],[-75.561033,35.266008],[-75.535741,35.272856],[-75.529393,35.288272],[-75.523952,35.318198],[-75.518511,35.336335],[-75.51261,35.362853],[-75.506722,35.387118],[-75.500374,35.424298],[-75.494933,35.454224],[-75.487678,35.485056],[-75.488585,35.497752],[-75.489618,35.508471],[-75.487528,35.525889],[-75.482237,35.53856],[-75.47861,35.553069],[-75.47861,35.599318],[-75.48133,35.622896],[-75.487678,35.648287],[-75.498675,35.666281],[-75.507385,35.680564],[-75.515745,35.721671],[-75.515397,35.73038],[-75.533512,35.773577],[-75.528992,35.776289],[-75.522232,35.774178],[-75.502427,35.742913],[-75.496086,35.728515],[-75.479128,35.678634],[-75.458659,35.596597],[-75.460061,35.581314],[-75.462491,35.553556],[-75.471355,35.479615],[-75.486771,35.391652],[-75.502188,35.320012],[-75.52592,35.233839],[-75.533627,35.225825],[-75.544809,35.228421],[-75.560225,35.232048],[-75.580176,35.231142],[-75.610101,35.227514],[-75.635493,35.22026],[-75.672673,35.208471],[-75.728897,35.190334],[-75.749406,35.185207],[-75.757916,35.183079],[-75.769705,35.180359],[-75.789655,35.172197],[-75.840438,35.15134],[-75.912985,35.1196],[-75.944725,35.105091],[-75.963768,35.092395],[-75.982812,35.081513],[-76.00151,35.06723],[-76.013145,35.061855],[-76.014954,35.065349],[-76.013561,35.068832],[-76.000949,35.084234],[-75.99188,35.092395],[-75.989175,35.100882],[-75.990569,35.108546],[-75.989175,35.115165],[-75.98395,35.120042],[-75.973499,35.121087],[-75.966489,35.117787],[-75.9547,35.1196],[-75.923867,35.135017],[-75.910265,35.142271],[-75.893942,35.150433],[-75.839531,35.172197],[-75.819172,35.176826],[-75.812902,35.178568],[-75.801444,35.183079],[-75.793283,35.18852],[-75.785729,35.194244],[-75.754289,35.199402],[-75.753765,35.199612]]],[[[-75.675245,35.929024],[-75.65954,35.919564],[-75.662938,35.916166],[-75.662019,35.906522],[-75.653478,35.904686],[-75.648519,35.906982],[-75.64512,35.905788],[-75.62767,35.883149],[-75.616833,35.856331],[-75.619772,35.847606],[-75.614361,35.815659],[-75.620454,35.809253],[-75.624235,35.809387],[-75.63898,35.818639],[-75.667891,35.82354],[-75.675054,35.830204],[-75.660086,35.83861],[-75.660598,35.862541],[-75.663356,35.869835],[-75.67283,35.882423],[-75.681415,35.88398],[-75.697672,35.901639],[-75.696871,35.909556],[-75.702165,35.915428],[-75.723782,35.925569],[-75.727251,35.93362],[-75.726807,35.935844],[-75.718266,35.939714],[-75.705323,35.939403],[-75.69115,35.936932],[-75.686358,35.932973],[-75.675245,35.929024]]],[[[-76.12236,36.550621],[-76.034751,36.550653],[-76.02675,36.550553],[-75.957648,36.550553],[-75.955748,36.550553],[-75.953447,36.550553],[-75.952847,36.550553],[-75.922046,36.550654],[-75.911446,36.550654],[-75.909046,36.550654],[-75.904745,36.550654],[-75.903445,36.550654],[-75.894145,36.550754],[-75.893245,36.550654],[-75.891945,36.550754],[-75.886545,36.550754],[-75.885945,36.550754],[-75.880644,36.550754],[-75.879744,36.550754],[-75.867044,36.550754],[-75.856901,36.500155],[-75.834975,36.42265],[-75.818735,36.357579],[-75.79641,36.290351],[-75.773329,36.231529],[-75.77251,36.22944],[-75.759637,36.204705],[-75.738431,36.154282],[-75.71831,36.113674],[-75.696742,36.077497],[-75.658537,36.02043],[-75.569794,35.863301],[-75.552299,35.822173],[-75.538739,35.797396],[-75.533012,35.787377],[-75.536428,35.780118],[-75.543259,35.779691],[-75.546675,35.787377],[-75.553934,35.799332],[-75.566238,35.813072],[-75.573083,35.828867],[-75.588878,35.844926],[-75.60125,35.867302],[-75.619151,35.889415],[-75.617045,35.906],[-75.617552,35.914186],[-75.620114,35.925288],[-75.631215,35.941512],[-75.648899,35.965758],[-75.668379,35.978394],[-75.671801,35.985238],[-75.678909,35.993925],[-75.723662,36.003139],[-75.727084,36.01051],[-75.726558,36.02104],[-75.722082,36.03236],[-75.722609,36.037362],[-75.726821,36.040521],[-75.737088,36.040784],[-75.74051,36.046839],[-75.741563,36.055526],[-75.739457,36.066846],[-75.73972,36.07527],[-75.75025,36.121076],[-75.750479,36.131208],[-75.752226,36.140817],[-75.75572,36.153922],[-75.775814,36.201097],[-75.783676,36.215949],[-75.793286,36.226432],[-75.794371,36.227336],[-75.798528,36.2308],[-75.80369,36.235853],[-75.811588,36.244014],[-75.811851,36.247699],[-75.808165,36.259545],[-75.814483,36.285344],[-75.822907,36.291662],[-75.833964,36.292188],[-75.837913,36.294558],[-75.845284,36.305614],[-75.841335,36.328517],[-75.831858,36.339047],[-75.831595,36.346418],[-75.836201,36.363135],[-75.843046,36.371032],[-75.847258,36.372085],[-75.85147,36.379456],[-75.852523,36.384721],[-75.85147,36.415785],[-75.864106,36.430527],[-75.880428,36.435792],[-75.888325,36.441583],[-75.891484,36.460537],[-75.899908,36.482124],[-75.907279,36.485809],[-75.913071,36.486336],[-75.917283,36.485809],[-75.924127,36.482124],[-75.927333,36.482815],[-75.935473,36.490601],[-75.960069,36.495025],[-75.972545,36.494671],[-76.003708,36.506235],[-76.019261,36.503506],[-76.023627,36.500778],[-76.029221,36.494365],[-76.031949,36.482496],[-76.020216,36.45862],[-76.012337,36.447462],[-76.003912,36.441864],[-75.989869,36.436808],[-75.98005,36.435464],[-75.962285,36.41724],[-75.940676,36.41885],[-75.936446,36.423079],[-75.932694,36.427627],[-75.928369,36.428588],[-75.923601,36.425788],[-75.916409,36.38901],[-75.916949,36.383167],[-75.923511,36.367796],[-75.923331,36.361863],[-75.917758,36.353593],[-75.915331,36.352335],[-75.895285,36.319615],[-75.888211,36.293414],[-75.882154,36.284674],[-75.872721,36.28277],[-75.864933,36.284674],[-75.86052,36.280607],[-75.861818,36.266415],[-75.867356,36.252483],[-75.864154,36.235522],[-75.858703,36.222628],[-75.848838,36.21657],[-75.838367,36.200129],[-75.841222,36.193812],[-75.839924,36.17711],[-75.823915,36.158332],[-75.822531,36.145957],[-75.813444,36.136871],[-75.800378,36.112728],[-75.791637,36.082267],[-75.793974,36.07171],[-75.799779,36.07264],[-75.836084,36.092616],[-75.847785,36.10199],[-75.867792,36.127262],[-75.866323,36.14141],[-75.863914,36.159226],[-75.882987,36.186807],[-75.910658,36.212157],[-75.922344,36.244122],[-75.94984,36.25787],[-75.959382,36.255651],[-75.96462,36.254433],[-75.957058,36.247903],[-75.945372,36.222468],[-75.956027,36.198065],[-75.936436,36.18088],[-75.917188,36.172631],[-75.904999,36.164188],[-75.920028,36.164853],[-75.924654,36.163591],[-75.939047,36.165518],[-75.995191,36.178072],[-76.016984,36.186367],[-76.018936,36.188318],[-76.029086,36.202036],[-76.043838,36.210126],[-76.054308,36.229162],[-76.08148,36.237935],[-76.132005,36.287773],[-76.161384,36.291028],[-76.184702,36.298166],[-76.185951,36.292903],[-76.188717,36.281242],[-76.171378,36.265806],[-76.149486,36.263902],[-76.115851,36.214219],[-76.080106,36.19944],[-76.06545,36.165224],[-76.05992,36.15514],[-76.05927,36.149285],[-76.064224,36.143775],[-76.071672,36.140183],[-76.092555,36.135794],[-76.178946,36.123424],[-76.206873,36.137521],[-76.228183,36.158487],[-76.236932,36.170389],[-76.247877,36.175148],[-76.254064,36.18419],[-76.268741,36.189764],[-76.273316,36.189062],[-76.274051,36.188949],[-76.27699,36.184952],[-76.263582,36.171817],[-76.247401,36.161823],[-76.228527,36.130647],[-76.191715,36.107197],[-76.216599,36.095409],[-76.238712,36.098568],[-76.265037,36.104886],[-76.329921,36.133396],[-76.373571,36.138208],[-76.3935,36.163251],[-76.447812,36.192514],[-76.454414,36.189901],[-76.456061,36.183577],[-76.375892,36.12042],[-76.346418,36.121023],[-76.334965,36.110903],[-76.298733,36.1012],[-76.303998,36.092776],[-76.323478,36.084879],[-76.331902,36.083826],[-76.337168,36.086458],[-76.355069,36.086458],[-76.410878,36.078034],[-76.411844,36.075376],[-76.412984,36.072243],[-76.420881,36.06066],[-76.442994,36.042758],[-76.451418,36.039073],[-76.458789,36.028016],[-76.459316,36.024331],[-76.491959,36.018013],[-76.514335,36.00564],[-76.547505,36.009852],[-76.5633,36.009852],[-76.575936,36.006167],[-76.580674,36.00722],[-76.589625,36.015644],[-76.60384,36.033018],[-76.615423,36.037757],[-76.631745,36.038283],[-76.653332,36.035124],[-76.676484,36.043612],[-76.721445,36.147838],[-76.719401,36.199441],[-76.675462,36.266882],[-76.69091,36.276846],[-76.693253,36.278357],[-76.720181,36.243827],[-76.744436,36.212725],[-76.7521,36.147328],[-76.722996,36.066585],[-76.683869,36.000375],[-76.679657,35.991951],[-76.684922,35.983001],[-76.695452,35.973524],[-76.70019,35.964573],[-76.697558,35.951937],[-76.692376,35.945342],[-76.691766,35.944566],[-76.673865,35.935089],[-76.667547,35.933509],[-76.657017,35.935089],[-76.608052,35.936668],[-76.60384,35.939827],[-76.586992,35.941933],[-76.528551,35.944039],[-76.507491,35.949831],[-76.496961,35.955096],[-76.473795,35.960888],[-76.460632,35.970365],[-76.398242,35.984317],[-76.389818,35.980105],[-76.38192,35.971681],[-76.381394,35.96273],[-76.36521,35.944697],[-76.362966,35.942197],[-76.340327,35.94325],[-76.317687,35.946935],[-76.272408,35.972734],[-76.213966,35.988002],[-76.176585,35.993267],[-76.093697,35.993001],[-76.083131,35.989845],[-76.062071,35.993004],[-76.024162,35.970891],[-76.014685,35.960361],[-76.014159,35.957202],[-76.01995,35.934036],[-76.014353,35.920746],[-76.037116,35.88991],[-76.063203,35.853433],[-76.050485,35.806689],[-76.046813,35.717935],[-76.036393,35.690344],[-76.043341,35.668542],[-76.044394,35.665238],[-76.046361,35.659067],[-76.04015,35.65131],[-76.029863,35.649443],[-76.013808,35.669103],[-76.013021,35.670065],[-75.9869,35.768194],[-75.987148,35.836967],[-75.97783,35.897181],[-75.966247,35.899287],[-75.962562,35.901393],[-75.94782,35.920347],[-75.934131,35.928244],[-75.929919,35.928771],[-75.927286,35.93193],[-75.92676,35.940354],[-75.937816,35.950884],[-75.943608,35.952464],[-75.946767,35.955623],[-75.947293,35.959835],[-75.938343,35.9651],[-75.899382,35.977209],[-75.879374,35.978789],[-75.86042,35.978262],[-75.84989,35.976156],[-75.80935,35.959308],[-75.805138,35.954043],[-75.800926,35.944566],[-75.782498,35.935615],[-75.782498,35.928244],[-75.778813,35.918241],[-75.768809,35.901393],[-75.751961,35.878227],[-75.753014,35.871382],[-75.748276,35.852428],[-75.734587,35.839266],[-75.727216,35.822703],[-75.726689,35.811361],[-75.732612,35.790666],[-75.738233,35.778301],[-75.739357,35.770994],[-75.735422,35.767622],[-75.724743,35.742892],[-75.719123,35.714227],[-75.715188,35.708045],[-75.71294,35.69849],[-75.713502,35.693993],[-75.741605,35.672073],[-75.742167,35.655212],[-75.737109,35.63835],[-75.729802,35.628795],[-75.729802,35.625985],[-75.747225,35.610248],[-75.762963,35.603503],[-75.778138,35.592262],[-75.775328,35.579335],[-75.797248,35.574276],[-75.837154,35.570904],[-75.851767,35.578773],[-75.859636,35.586641],[-75.869869,35.582743],[-75.895045,35.573152],[-75.906848,35.559101],[-75.908534,35.555166],[-75.908534,35.546174],[-75.916403,35.538305],[-75.94563,35.53437],[-75.950126,35.530998],[-75.954623,35.526502],[-75.964178,35.511326],[-75.96474,35.504582],[-75.961929,35.496713],[-75.963053,35.493903],[-75.987222,35.484348],[-75.995652,35.475355],[-75.994528,35.463552],[-75.997901,35.453435],[-76.009704,35.442194],[-76.012514,35.432639],[-76.01139,35.423084],[-76.014762,35.416902],[-76.020945,35.410719],[-76.025441,35.408471],[-76.037244,35.414091],[-76.050171,35.415778],[-76.059726,35.410157],[-76.063661,35.405099],[-76.063661,35.398354],[-76.06085,35.392733],[-76.059726,35.383741],[-76.069281,35.370813],[-76.092887,35.361259],[-76.123238,35.351142],[-76.132793,35.349455],[-76.14291,35.338776],[-76.14291,35.32866],[-76.149655,35.326411],[-76.165392,35.328659],[-76.168764,35.332032],[-76.182254,35.336528],[-76.20586,35.336528],[-76.235087,35.350017],[-76.253072,35.350017],[-76.257569,35.344397],[-76.265437,35.343273],[-76.282299,35.345521],[-76.304781,35.355638],[-76.327263,35.356762],[-76.335132,35.355638],[-76.340752,35.346645],[-76.349745,35.345521],[-76.365483,35.348893],[-76.374475,35.355638],[-76.382344,35.356762],[-76.387965,35.356762],[-76.399206,35.348893],[-76.408199,35.350017],[-76.409323,35.35339],[-76.420564,35.35901],[-76.431805,35.362383],[-76.436301,35.37812],[-76.448666,35.383741],[-76.455411,35.383741],[-76.462156,35.380368],[-76.472273,35.371375],[-76.485762,35.371375],[-76.499251,35.381492],[-76.540292,35.410657],[-76.586349,35.508957],[-76.476706,35.511707],[-76.456427,35.550546],[-76.467763,35.555818],[-76.471207,35.55742],[-76.48358,35.538172],[-76.55679,35.528892],[-76.600441,35.538516],[-76.634468,35.510332],[-76.601472,35.460838],[-76.580187,35.387113],[-76.606041,35.387113],[-76.710083,35.427155],[-76.759234,35.418906],[-76.830897,35.447949],[-76.942022,35.473529],[-77.023912,35.514802],[-77.024593,35.515145],[-77.02626,35.495108],[-77.026638,35.490569],[-76.967214,35.438296],[-76.966661,35.43781],[-76.891938,35.433649],[-76.664027,35.345696],[-76.606753,35.337138],[-76.602669,35.336528],[-76.588055,35.333156],[-76.554332,35.332032],[-76.548712,35.328659],[-76.500375,35.321915],[-76.482389,35.314046],[-76.472273,35.294936],[-76.467776,35.276951],[-76.467776,35.261213],[-76.477893,35.243228],[-76.483514,35.240979],[-76.490258,35.233111],[-76.491382,35.220745],[-76.494755,35.212877],[-76.504872,35.207256],[-76.521733,35.192643],[-76.536346,35.174657],[-76.539719,35.166788],[-76.536346,35.149927],[-76.536346,35.142058],[-76.546463,35.122948],[-76.557704,35.116204],[-76.561077,35.108335],[-76.568945,35.097094],[-76.57569,35.092598],[-76.60042,35.067867],[-76.61391,35.061123],[-76.622902,35.061123],[-76.631895,35.056626],[-76.639764,35.051006],[-76.801426,34.964369],[-76.958465,35.047647],[-76.982904,35.060607],[-76.989778,35.045484],[-76.977404,35.004926],[-76.910748,34.967227],[-76.89354,34.957495],[-76.847793,34.944493],[-76.762931,34.920374],[-76.685697,34.961897],[-76.635072,34.989116],[-76.588055,34.991428],[-76.566697,34.998173],[-76.539719,35.000421],[-76.502623,35.007166],[-76.495879,35.011662],[-76.491382,35.017283],[-76.490258,35.034144],[-76.480141,35.05213],[-76.474521,35.070116],[-76.468796,35.075345],[-76.463468,35.076411],[-76.435762,35.057941],[-76.432565,35.049061],[-76.431855,35.030945],[-76.425461,35.001464],[-76.406281,34.987256],[-76.398466,34.9766],[-76.395625,34.975179],[-76.332044,34.970917],[-76.326361,34.976245],[-76.329557,34.986901],[-76.350159,35.016737],[-76.360815,35.025973],[-76.364367,35.031301],[-76.364367,35.034853],[-76.35229,35.033077],[-76.318546,35.020645],[-76.293682,35.009633],[-76.288354,35.005726],[-76.288709,34.997201],[-76.29093,34.994285],[-76.293851,34.991948],[-76.296188,34.98669],[-76.296524,34.976245],[-76.290691,34.969059],[-76.275567,34.960971],[-76.274856,34.953867],[-76.277698,34.940014],[-76.284092,34.936817],[-76.311442,34.910177],[-76.319967,34.897745],[-76.33382,34.882116],[-76.347673,34.872171],[-76.368274,34.872881],[-76.377154,34.867553],[-76.379641,34.86258],[-76.395269,34.855476],[-76.400242,34.855476],[-76.411609,34.841268],[-76.463016,34.785076],[-76.524712,34.681964],[-76.586236,34.698805],[-76.582421,34.767757],[-76.604796,34.787482],[-76.620606,34.784389],[-76.616567,34.714059],[-76.673619,34.71491],[-76.673537,34.70757],[-76.523303,34.652271],[-76.383827,34.807906],[-76.373247,34.817115],[-76.362591,34.824219],[-76.341279,34.842689],[-76.322808,34.86116],[-76.273986,34.897298],[-76.233672,34.925926],[-76.194936,34.962747],[-76.160127,34.991163],[-76.11182,35.034497],[-76.093349,35.048705],[-76.069906,35.075701],[-76.064933,35.077121],[-76.043621,35.070017],[-76.038648,35.065045],[-76.035933,35.058987],[-76.073,35.030509],[-76.137269,34.987858],[-76.233088,34.905477],[-76.31021,34.852309],[-76.386804,34.784579],[-76.450454,34.71445],[-76.494068,34.66197],[-76.524199,34.615416],[-76.535946,34.588577],[-76.555196,34.615993],[-76.553806,34.628252],[-76.550423,34.630789],[-76.549343,34.645585],[-76.579467,34.660174],[-76.618719,34.67255],[-76.642939,34.677618],[-76.662645,34.685524],[-76.676312,34.693151],[-76.693751,34.692509],[-76.726969,34.69669],[-76.770044,34.696899],[-76.817453,34.693722],[-76.906257,34.68282],[-76.990262,34.669623],[-77.031105,34.661184],[-77.1128,34.639352],[-77.136843,34.632926],[-77.169701,34.622023],[-77.209161,34.605032],[-77.240991,34.587507],[-77.322524,34.535574],[-77.462922,34.471354],[-77.491796,34.456098],[-77.51796,34.440483],[-77.556943,34.417218],[-77.582323,34.400506],[-77.635034,34.359555],[-77.661673,34.341868],[-77.687226,34.320444],[-77.713322,34.294879],[-77.715916,34.292719],[-77.740136,34.272546],[-77.764022,34.245641],[-77.829209,34.162618],[-77.841785,34.140747],[-77.870327,34.079221],[-77.874384,34.075671],[-77.878161,34.067963],[-77.915536,33.971723],[-77.927926,33.945265],[-77.937313,33.928645],[-77.946568,33.912261],[-77.956881,33.87779],[-77.960172,33.853315],[-77.970606,33.844517],[-78.006765,33.858704],[-78.009973,33.861406],[-78.009426,33.867823],[-78.018689,33.888289],[-78.095429,33.906031],[-78.136952,33.912178],[-78.17772,33.914272],[-78.276147,33.912364],[-78.383964,33.901946],[-78.509042,33.865515],[-78.541087,33.851112],[-78.580378,33.884925],[-78.615932,33.915523],[-78.621369,33.920073],[-78.650329,33.944309],[-78.651629,33.945397],[-78.66253,33.95452],[-78.702771,33.989268],[-78.710141,33.994688],[-78.712206,33.996732],[-78.769483,34.045242],[-78.81171,34.081006],[-78.855385,34.117996],[-78.874747,34.134395],[-78.909881,34.163881],[-78.963692,34.209041],[-78.99576,34.235954],[-79.071169,34.29924],[-79.143242,34.359817],[-79.151485,34.366753],[-79.190739,34.399751],[-79.192041,34.40104],[-79.198982,34.406699],[-79.215993,34.421129],[-79.244886,34.445637],[-79.249763,34.449774],[-79.286703,34.482664],[-79.306653,34.500426],[-79.323249,34.514634],[-79.324854,34.516282],[-79.331328,34.521869],[-79.358317,34.545358],[-79.450034,34.621036],[-79.459766,34.629027],[-79.461318,34.630126],[-79.461754,34.630432],[-79.468717,34.635323],[-79.471599,34.6372],[-79.479305,34.64464],[-79.490201,34.653819],[-79.519043,34.677321],[-79.520269,34.678327],[-79.554454,34.706363],[-79.561691,34.711996],[-79.631577,34.768835],[-79.634216,34.771012],[-79.675299,34.804744],[-79.688088,34.804897],[-79.690201,34.804937],[-79.692948,34.804973],[-79.744116,34.805651],[-79.744925,34.805686],[-79.772829,34.805954],[-79.773607,34.805931],[-79.870693,34.805378],[-79.891443,34.805807],[-79.927618,34.806555],[-80.000541,34.808141],[-80.027464,34.808726],[-80.042764,34.809097],[-80.072912,34.809736],[-80.077223,34.809716],[-80.098022,34.810147],[-80.098994,34.810147],[-80.131169,34.810811],[-80.159252,34.81139],[-80.229705,34.812843],[-80.23396,34.812931],[-80.283627,34.813589],[-80.30469,34.813868],[-80.320402,34.814076],[-80.350068,34.814469],[-80.399871,34.815128],[-80.417014,34.815508],[-80.418433,34.815622],[-80.419586,34.815581],[-80.425902,34.81581],[-80.434843,34.815968],[-80.448766,34.816332],[-80.45166,34.816396],[-80.485234,34.816732],[-80.485684,34.816737],[-80.491814,34.816798],[-80.499788,34.817261],[-80.561657,34.817481],[-80.561674,34.817481],[-80.621222,34.818174],[-80.625993,34.818239],[-80.626077,34.818217],[-80.644656,34.818568],[-80.646601,34.818592],[-80.684074,34.818907],[-80.771792,34.819646],[-80.777712,34.819697],[-80.797543,34.819786],[-80.796997,34.823874],[-80.795109,34.837999],[-80.782042,34.935782],[-80.806461,34.962894],[-80.806784,34.963249],[-80.82156,34.979695],[-80.840383,35.001636],[-80.884887,35.05351],[-80.906416,35.076616],[-80.906553,35.076763],[-80.93495,35.107409],[-80.95787,35.092639],[-80.98416,35.077568],[-81.041489,35.044703],[-81.050018,35.055246],[-81.055695,35.060121],[-81.057648,35.062433],[-81.058029,35.07319],[-81.057236,35.086129],[-81.052078,35.096276],[-81.050079,35.098817],[-81.046524,35.100617],[-81.037369,35.102541],[-81.034958,35.104105],[-81.032806,35.108049],[-81.032471,35.110033],[-81.033005,35.113747],[-81.036759,35.122552],[-81.038968,35.126299],[-81.05042,35.131048],[-81.051037,35.131654],[-81.051204,35.133237],[-81.047826,35.143743],[-81.047091,35.145157],[-81.044391,35.147918],[-81.043407,35.14839],[-81.04287,35.149248],[-81.043625,35.149877],[-81.077253,35.152047],[-81.109295,35.154115],[-81.11084,35.154185],[-81.138207,35.155417],[-81.239358,35.159974],[-81.241686,35.160081],[-81.269199,35.16114],[-81.290672,35.161967],[-81.32802,35.163404],[-81.366599,35.164889],[-81.366691,35.164893],[-81.445627,35.168024],[-81.452398,35.168293],[-81.461408,35.168657],[-81.493401,35.169951],[-81.494265,35.169882],[-81.54515,35.171744],[-81.581681,35.17308],[-81.614877,35.174504],[-81.646707,35.175869],[-81.680801,35.177331],[-81.716259,35.178852],[-81.738492,35.179511],[-81.768062,35.180387],[-81.772351,35.180514],[-81.802081,35.181395],[-81.857832,35.183489],[-81.874433,35.184113],[-81.925612,35.185505],[-81.969326,35.187228],[-82.001422,35.188493],[-82.039651,35.189449],[-82.089586,35.190698],[-82.138947,35.193122],[-82.167676,35.193699],[-82.176874,35.19379],[-82.185513,35.194355],[-82.195483,35.194951],[-82.216217,35.196044],[-82.230517,35.196764],[-82.230915,35.196784],[-82.257515,35.198636],[-82.27492,35.200071],[-82.282516,35.199858],[-82.288453,35.198605],[-82.295354,35.194965],[-82.307166,35.193012],[-82.314863,35.191089],[-82.315871,35.190678],[-82.317871,35.187858],[-82.32335,35.184789],[-82.326917,35.185056],[-82.330549,35.186767],[-82.330779,35.189032],[-82.332975,35.190645],[-82.333934,35.190661],[-82.338013,35.18901],[-82.339508,35.18893],[-82.340133,35.189188],[-82.341194,35.19151],[-82.344554,35.193115],[-82.350086,35.192858],[-82.353508,35.192249],[-82.361469,35.190831],[-82.363256,35.189639],[-82.363554,35.188001],[-82.363479,35.186214],[-82.364299,35.184725],[-82.36899,35.181747],[-82.371298,35.181449],[-82.373218,35.182201],[-82.376808,35.184427],[-82.379712,35.186884],[-82.380903,35.189565],[-82.381201,35.191203],[-82.380605,35.193586],[-82.379191,35.195894],[-82.378744,35.198053],[-82.380524,35.202276],[-82.383776,35.207646],[-82.384029,35.210542],[-82.390439,35.215395],[-82.39293,35.215402],[-82.395697,35.213214],[-82.403348,35.204473],[-82.411301,35.202483],[-82.417597,35.200131],[-82.419744,35.198613],[-82.424461,35.193092],[-82.428,35.183224],[-82.434126,35.170784],[-82.435689,35.167715],[-82.439595,35.165863],[-82.448969,35.165037],[-82.451201,35.16526],[-82.452931,35.168999],[-82.452764,35.172626],[-82.452987,35.17469],[-82.455609,35.177425],[-82.460092,35.178143],[-82.467991,35.174633],[-82.472313,35.174619],[-82.476136,35.175486],[-82.483937,35.173798],[-82.487357,35.172494],[-82.490766,35.169715],[-82.495506,35.164312],[-82.499843,35.163675],[-82.506137,35.163894],[-82.516044,35.163442],[-82.51691,35.163029],[-82.517284,35.162643],[-82.51921,35.161044],[-82.521403,35.158851],[-82.52593,35.156749],[-82.529973,35.155617],[-82.53256,35.155617],[-82.534662,35.156911],[-82.535967,35.158664],[-82.536218,35.159259],[-82.540483,35.160306],[-82.544525,35.160306],[-82.547436,35.160306],[-82.550508,35.159498],[-82.552934,35.158042],[-82.554227,35.156911],[-82.554871,35.154639],[-82.554874,35.152868],[-82.556168,35.151736],[-82.558593,35.150928],[-82.560807,35.151644],[-82.563767,35.151575],[-82.566193,35.150119],[-82.567486,35.147694],[-82.569912,35.145268],[-82.574215,35.143648],[-82.578316,35.142104],[-82.580687,35.141742],[-82.581836,35.142352],[-82.586035,35.143142],[-82.588158,35.142928],[-82.59243,35.139002],[-82.59814,35.137729],[-82.602358,35.139036],[-82.609706,35.139039],[-82.612444,35.138234],[-82.613866,35.137529],[-82.614402,35.136701],[-82.617993,35.13527],[-82.621185,35.134635],[-82.624847,35.130432],[-82.626436,35.127903],[-82.629031,35.126155],[-82.632574,35.125833],[-82.634668,35.126317],[-82.63821,35.128088],[-82.642237,35.129215],[-82.645296,35.12841],[-82.648694,35.12677],[-82.651416,35.124867],[-82.65351,35.121968],[-82.657858,35.119392],[-82.662381,35.118123],[-82.669614,35.118103],[-82.672513,35.119392],[-82.673318,35.121002],[-82.675089,35.123257],[-82.676861,35.12535],[-82.680887,35.126155],[-82.683625,35.125833],[-82.68604,35.124545],[-82.686496,35.121822],[-82.686738,35.11979],[-82.687641,35.119287],[-82.688939,35.118103],[-82.690549,35.116171],[-82.691194,35.114721],[-82.691355,35.113272],[-82.690711,35.111501],[-82.688778,35.108602],[-82.688456,35.106347],[-82.689634,35.104117],[-82.694898,35.098456],[-82.698602,35.097168],[-82.701017,35.09749],[-82.703916,35.097651],[-82.707152,35.096542],[-82.715297,35.092943],[-82.720442,35.093265],[-82.723462,35.094341],[-82.72701,35.094142],[-82.728961,35.091978],[-82.729517,35.09059],[-82.729683,35.087827],[-82.730971,35.086378],[-82.735904,35.082701],[-82.738379,35.079453],[-82.741761,35.078326],[-82.746431,35.079131],[-82.749491,35.078487],[-82.751102,35.075749],[-82.751265,35.073463],[-82.754162,35.069629],[-82.757704,35.068019],[-82.764464,35.068177],[-82.770046,35.065476],[-82.777376,35.064143],[-82.781973,35.066817],[-82.780546,35.069043],[-82.779928,35.070435],[-82.779928,35.072206],[-82.779116,35.073674],[-82.777407,35.076885],[-82.776357,35.081349],[-82.778651,35.083575],[-82.781062,35.084492],[-82.78113,35.084585],[-82.783283,35.0856],[-82.787867,35.085024],[-82.809766,35.078748],[-82.897499,35.056021],[-82.999867,35.02995],[-83.008639,35.027595],[-83.108535,35.000771],[-83.108714,35.000768],[-83.19041,34.999456],[-83.322768,34.995874],[-83.482908,34.993484],[-83.549381,34.992492],[-83.620185,34.992091],[-83.619985,34.986592],[-83.749893,34.987691],[-83.831097,34.987289],[-83.936413,34.987485],[-83.936646,34.987485],[-84.005457,34.98744],[-84.021357,34.98743],[-84.029954,34.987321],[-84.129455,34.987504],[-84.129555,34.987504],[-84.321869,34.988408],[-84.310022,35.078883],[-84.308576,35.092761],[-84.308437,35.093173],[-84.304809,35.121702],[-84.298006,35.167468],[-84.295238,35.182442],[-84.292321,35.206677],[-84.29024,35.225572],[-84.289621,35.224677],[-84.287982,35.224468],[-84.28322,35.226577],[-84.28252,35.227877],[-84.27542,35.234777],[-84.260319,35.241877],[-84.257719,35.246177],[-84.252819,35.249477],[-84.243019,35.253178],[-84.240219,35.255178],[-84.231818,35.264778],[-84.227818,35.267878],[-84.223718,35.269078],[-84.216318,35.267978],[-84.211818,35.266078],[-84.205517,35.259679],[-84.205317,35.258279],[-84.202879,35.255772],[-84.201717,35.247779],[-84.200117,35.244679],[-84.199117,35.243679],[-84.192217,35.243079],[-84.188417,35.239979],[-84.178516,35.240679],[-84.177016,35.242379],[-84.170416,35.245779],[-84.168616,35.24578],[-84.161316,35.24348],[-84.160416,35.24388],[-84.158916,35.24588],[-84.155316,35.24648],[-84.143124,35.246879],[-84.139715,35.24618],[-84.136415,35.24478],[-84.133299,35.243679],[-84.13057,35.243364],[-84.12889,35.243679],[-84.127315,35.244414],[-84.126815,35.246481],[-84.125615,35.249381],[-84.124915,35.24983],[-84.12115,35.250644],[-84.115279,35.250438],[-84.115048,35.249765],[-84.114414,35.249081],[-84.113314,35.248981],[-84.108449,35.25033],[-84.103135,35.248781],[-84.10227,35.248115],[-84.097508,35.247382],[-84.092213,35.249981],[-84.082913,35.257082],[-84.082813,35.258882],[-84.081117,35.261146],[-84.074713,35.263182],[-84.070612,35.263782],[-84.063712,35.266682],[-84.055712,35.268182],[-84.052612,35.269982],[-84.042711,35.278383],[-84.036011,35.288683],[-84.02911,35.292176],[-84.02791,35.292783],[-84.02351,35.295783],[-84.02141,35.301383],[-84.02651,35.309283],[-84.02871,35.310383],[-84.03501,35.311983],[-84.03571,35.312883],[-84.03551,35.317783],[-84.032479,35.325318],[-84.03245,35.32653],[-84.032209,35.328583],[-84.030409,35.330483],[-84.029377,35.333197],[-84.031272,35.336438],[-84.03243,35.336845],[-84.038081,35.348363],[-84.037494,35.34985],[-84.035343,35.350833],[-84.024756,35.353896],[-84.023456,35.354217],[-84.020188,35.357503],[-84.019193,35.359569],[-84.015121,35.364868],[-84.007586,35.371661],[-84.008307,35.378883],[-84.009807,35.382683],[-84.011207,35.384383],[-84.010607,35.386183],[-84.008207,35.389683],[-84.008207,35.390383],[-84.014107,35.397783],[-84.015207,35.398483],[-84.018107,35.399083],[-84.018807,35.399783],[-84.021507,35.404183],[-84.021782,35.407418],[-84.020633,35.409843],[-84.017607,35.411183],[-84.014707,35.411983],[-84.011706,35.415383],[-84.005306,35.420883],[-84.00225,35.422548],[-83.999906,35.425201],[-83.999242,35.42614],[-83.998154,35.430786],[-83.996619,35.433761],[-83.992568,35.438065],[-83.983233,35.44235],[-83.978286,35.44782],[-83.973057,35.448921],[-83.973171,35.452582],[-83.971439,35.455145],[-83.969845,35.455443],[-83.966656,35.454941],[-83.965229,35.455399],[-83.9614,35.459496],[-83.961054,35.462838],[-83.961056,35.463738],[-83.961053,35.464143],[-83.957821,35.464211],[-83.955416,35.463456],[-83.952882,35.460635],[-83.952814,35.460645],[-83.949389,35.461164],[-83.942987,35.465084],[-83.942172,35.467254],[-83.937015,35.471511],[-83.929743,35.47333],[-83.924895,35.473884],[-83.919564,35.473367],[-83.916801,35.473612],[-83.911773,35.476028],[-83.909265,35.479714],[-83.90804,35.484397],[-83.905612,35.48906],[-83.901527,35.491026],[-83.900338,35.493095],[-83.9002,35.494191],[-83.901403,35.495278],[-83.901381,35.496553],[-83.895669,35.501868],[-83.893031,35.502253],[-83.892074,35.503089],[-83.884262,35.512754],[-83.882563,35.517182],[-83.880074,35.518745],[-83.87263,35.521145],[-83.866413,35.52091],[-83.859261,35.521851],[-83.853898,35.521059],[-83.848502,35.519259],[-83.840203,35.52156],[-83.831895,35.524766],[-83.827428,35.524653],[-83.82559,35.523829],[-83.809798,35.53431],[-83.808713,35.536415],[-83.802434,35.541588],[-83.786802,35.5472],[-83.780129,35.550387],[-83.773092,35.557465],[-83.771736,35.562118],[-83.764606,35.561538],[-83.759675,35.562492],[-83.756917,35.563604],[-83.749894,35.561146],[-83.735669,35.565455],[-83.732947,35.563149],[-83.723459,35.561874],[-83.720787,35.563347],[-83.707199,35.568533],[-83.703846,35.568476],[-83.702099,35.567634],[-83.700663,35.567621],[-83.697827,35.568352],[-83.684154,35.568848],[-83.676268,35.570289],[-83.673093,35.568974],[-83.666272,35.569389],[-83.662957,35.569138],[-83.660925,35.568207],[-83.657933,35.569211],[-83.653159,35.568309],[-83.645481,35.565825],[-83.640498,35.566075],[-83.637182,35.567096],[-83.635832,35.568169],[-83.632358,35.569093],[-83.629734,35.567889],[-83.615312,35.574026],[-83.608889,35.579451],[-83.604806,35.57934],[-83.601854,35.578228],[-83.59427,35.572912],[-83.587827,35.566963],[-83.58714,35.564017],[-83.58559,35.562941],[-83.582,35.562684],[-83.576345,35.564019],[-83.572424,35.565518],[-83.56609,35.565993],[-83.559264,35.564796],[-83.552167,35.564346],[-83.540826,35.565702],[-83.534169,35.564668],[-83.520469,35.565602],[-83.517564,35.562871],[-83.498335,35.562981],[-83.491647,35.566867],[-83.485527,35.568204],[-83.480617,35.576633],[-83.478523,35.579202],[-83.479317,35.582764],[-83.479082,35.583316],[-83.475367,35.584775],[-83.472684,35.586552],[-83.472668,35.589125],[-83.471362,35.590304],[-83.462678,35.5926],[-83.455722,35.598045],[-83.452431,35.602918],[-83.447137,35.608664],[-83.445802,35.611803],[-83.441197,35.611739],[-83.432298,35.609941],[-83.421576,35.611186],[-83.420964,35.611596],[-83.42037,35.613467],[-83.411852,35.61692],[-83.406061,35.620185],[-83.403569,35.621313],[-83.396626,35.62272],[-83.392652,35.625095],[-83.388602,35.632352],[-83.388722,35.633584],[-83.380251,35.634705],[-83.377984,35.634496],[-83.376785,35.636638],[-83.373712,35.638935],[-83.372174,35.63931],[-83.370369,35.638204],[-83.368162,35.638202],[-83.366941,35.638728],[-83.358209,35.647277],[-83.356202,35.650019],[-83.355367,35.652338],[-83.355537,35.654632],[-83.353776,35.657478],[-83.35156,35.659858],[-83.349255,35.660854],[-83.347262,35.660474],[-83.337683,35.663074],[-83.334965,35.665471],[-83.321101,35.662815],[-83.317905,35.659015],[-83.312757,35.654809],[-83.31049,35.654452],[-83.302279,35.656064],[-83.297154,35.65775],[-83.293676,35.661919],[-83.291075,35.667131],[-83.290682,35.672638],[-83.289165,35.674509],[-83.281178,35.677802],[-83.27548,35.679463],[-83.271378,35.681476],[-83.269277,35.685403],[-83.26539,35.687535],[-83.261252,35.689165],[-83.258117,35.691924],[-83.25561,35.696061],[-83.255126,35.701493],[-83.256111,35.703961],[-83.255108,35.707096],[-83.25423,35.709478],[-83.254481,35.712362],[-83.255489,35.714974],[-83.255351,35.71623],[-83.251247,35.719916],[-83.243501,35.722533],[-83.242132,35.723638],[-83.240669,35.72676],[-83.232042,35.726098],[-83.222627,35.726138],[-83.219981,35.726601],[-83.216972,35.725752],[-83.214501,35.724434],[-83.203752,35.726553],[-83.200126,35.725331],[-83.198267,35.725494],[-83.18837,35.729798],[-83.185685,35.72989],[-83.182097,35.735492],[-83.180836,35.738882],[-83.177499,35.743913],[-83.171867,35.745978],[-83.170173,35.746107],[-83.16477,35.754618],[-83.165427,35.7587],[-83.164909,35.759965],[-83.161537,35.763363],[-83.159208,35.764892],[-83.15408,35.76428],[-83.14808,35.764295],[-83.14697,35.765124],[-83.127707,35.768093],[-83.120183,35.766234],[-83.113662,35.770211],[-83.110491,35.770913],[-83.104805,35.77348],[-83.104584,35.77423],[-83.10232,35.775071],[-83.100233,35.774745],[-83.100329,35.774804],[-83.100225,35.774765],[-83.097193,35.776067],[-83.086054,35.783627],[-83.085205,35.785794],[-83.078732,35.789472],[-83.07403,35.790016],[-83.072221,35.78831],[-83.063975,35.786643],[-83.061507,35.786774],[-83.05834,35.788241],[-83.052677,35.789548],[-83.04853,35.787706],[-83.046307,35.785853],[-83.044108,35.785347],[-83.042666,35.785407],[-83.03951,35.786777],[-83.036209,35.787405],[-83.012377,35.779818],[-83.006067,35.778404],[-83.001473,35.773752],[-82.995803,35.773128],[-82.992053,35.773948],[-82.98397,35.77801],[-82.978414,35.78261],[-82.974463,35.78679],[-82.969648,35.789663],[-82.964088,35.78998],[-82.962818,35.791853],[-82.962206,35.792755],[-82.962842,35.795126],[-82.961724,35.800491],[-82.95895,35.803323],[-82.956127,35.807874],[-82.955751,35.809802],[-82.952026,35.816183],[-82.945515,35.824662],[-82.94383,35.825638],[-82.937437,35.82732],[-82.933221,35.832915],[-82.931859,35.836351],[-82.927569,35.838586],[-82.923358,35.839273],[-82.920171,35.841664],[-82.919108,35.844851],[-82.920974,35.851073],[-82.919374,35.860523],[-82.918312,35.863977],[-82.916452,35.866102],[-82.901301,35.872593],[-82.899718,35.874602],[-82.899186,35.877524],[-82.899718,35.879914],[-82.901046,35.882305],[-82.903968,35.885492],[-82.903702,35.887617],[-82.901843,35.890274],[-82.901843,35.89293],[-82.904543,35.897011],[-82.906917,35.907397],[-82.911671,35.914711],[-82.911936,35.921618],[-82.911405,35.925868],[-82.910608,35.92693],[-82.906358,35.927196],[-82.903436,35.928524],[-82.902374,35.929852],[-82.901577,35.931446],[-82.901713,35.937713],[-82.898506,35.9451],[-82.898505,35.945101],[-82.896947,35.944624],[-82.892659,35.945182],[-82.883933,35.949192],[-82.874159,35.952698],[-82.870666,35.95199],[-82.869315,35.950565],[-82.860724,35.94743],[-82.852554,35.949089],[-82.849849,35.947772],[-82.841259,35.941721],[-82.839994,35.940166],[-82.833268,35.934993],[-82.830112,35.932972],[-82.828933,35.932932],[-82.826045,35.929721],[-82.82257,35.922531],[-82.821861,35.921839],[-82.81613,35.923986],[-82.811067,35.926801],[-82.809038,35.927241],[-82.804997,35.927168],[-82.802892,35.929013],[-82.802769,35.930129],[-82.805771,35.935316],[-82.806174,35.936908],[-82.805851,35.937938],[-82.800431,35.944155],[-82.787465,35.952163],[-82.785191,35.959231],[-82.785356,35.96253],[-82.784536,35.963905],[-82.783085,35.964982],[-82.777751,35.966912],[-82.774905,35.971978],[-82.776434,35.973886],[-82.778625,35.974792],[-82.780319,35.974365],[-82.781809,35.974562],[-82.785558,35.977795],[-82.785267,35.987927],[-82.779397,35.992511],[-82.778589,35.997001],[-82.777283,35.998811],[-82.776001,36.000103],[-82.765365,36.003003],[-82.759165,36.004203],[-82.754465,36.004304],[-82.750065,36.006004],[-82.731865,36.017604],[-82.727865,36.018504],[-82.725065,36.018204],[-82.715965,36.022804],[-82.715365,36.024253],[-82.715565,36.026904],[-82.715165,36.028604],[-82.707465,36.030104],[-82.703165,36.032404],[-82.701065,36.034404],[-82.688865,36.038604],[-82.685565,36.042004],[-82.684765,36.045004],[-82.683565,36.046104],[-82.672965,36.050405],[-82.668365,36.052905],[-82.662665,36.055005],[-82.657249,36.056636],[-82.654815,36.056225],[-82.650165,36.057805],[-82.643565,36.062805],[-82.637165,36.065805],[-82.632265,36.065705],[-82.628365,36.062105],[-82.618664,36.056105],[-82.617264,36.054205],[-82.618064,36.051205],[-82.618164,36.047005],[-82.613563,36.046406],[-82.609663,36.044906],[-82.606163,36.041006],[-82.602877,36.039833],[-82.600741,36.037422],[-82.598785,36.034162],[-82.596177,36.03188],[-82.594873,36.029598],[-82.595525,36.026012],[-82.600089,36.021774],[-82.604327,36.018187],[-82.611862,36.006206],[-82.613862,36.004706],[-82.614362,36.003506],[-82.615062,36.000306],[-82.613028,35.994],[-82.612604,35.993488],[-82.606944,35.99217],[-82.604239,35.987319],[-82.60674,35.984446],[-82.610885,35.974442],[-82.611602,35.971418],[-82.610889,35.967409],[-82.607761,35.966023],[-82.60037,35.964626],[-82.59486,35.965347],[-82.591977,35.966385],[-82.581003,35.965557],[-82.577719,35.964196],[-82.576678,35.959255],[-82.57517,35.958384],[-82.567503,35.955552],[-82.557874,35.953901],[-82.553192,35.960627],[-82.549682,35.964275],[-82.542463,35.967994],[-82.539273,35.969115],[-82.534763,35.969887],[-82.531292,35.972188],[-82.522702,35.973436],[-82.52066,35.974633],[-82.516444,35.975958],[-82.512598,35.975664],[-82.507068,35.977475],[-82.505384,35.97768],[-82.500206,35.982561],[-82.487451,35.991557],[-82.487411,35.991634],[-82.484678,35.992849],[-82.483666,35.993866],[-82.483498,35.996284],[-82.482292,35.997823],[-82.47419,36.000108],[-82.464558,36.006508],[-82.460658,36.007809],[-82.416671,36.072758],[-82.409458,36.083409],[-82.404458,36.087609],[-82.389958,36.096909],[-82.380458,36.099309],[-82.378758,36.102809],[-82.375558,36.105609],[-82.371383,36.106388],[-82.366566,36.10765],[-82.360919,36.110614],[-82.360357,36.111609],[-82.355157,36.115609],[-82.349957,36.117109],[-82.348422,36.115929],[-82.346857,36.115209],[-82.336756,36.114909],[-82.332289,36.116935],[-82.329177,36.117427],[-82.325169,36.119363],[-82.321448,36.119551],[-82.318156,36.12091],[-82.308655,36.12651],[-82.307255,36.12851],[-82.302855,36.13131],[-82.297655,36.13351],[-82.289455,36.13571],[-82.288455,36.13541],[-82.280354,36.12881],[-82.278654,36.12851],[-82.274054,36.12941],[-82.270954,36.12761],[-82.26875,36.12704],[-82.26569,36.127614],[-82.263354,36.13011],[-82.260353,36.13371],[-82.256319,36.133925],[-82.253253,36.13371],[-82.251853,36.13221],[-82.247521,36.130865],[-82.244461,36.132777],[-82.243353,36.134311],[-82.241553,36.137111],[-82.237737,36.139189],[-82.236415,36.139926],[-82.235479,36.140748],[-82.234807,36.14172],[-82.228288,36.146622],[-82.224852,36.150011],[-82.223232,36.154772],[-82.222052,36.156911],[-82.218451,36.157832],[-82.213852,36.159112],[-82.211251,36.159012],[-82.204872,36.157067],[-82.201812,36.154963],[-82.199251,36.152713],[-82.19535,36.150013],[-82.19195,36.148813],[-82.18785,36.147886],[-82.18475,36.145414],[-82.18365,36.144414],[-82.182549,36.143714],[-82.178861,36.143296],[-82.17561,36.14387],[-82.173849,36.145314],[-82.172149,36.146414],[-82.169249,36.146614],[-82.160883,36.146548],[-82.155948,36.148115],[-82.147948,36.149516],[-82.144147,36.144216],[-82.140847,36.136216],[-82.136547,36.128817],[-82.136546,36.123717],[-82.137974,36.119576],[-82.130646,36.106417],[-82.127146,36.104417],[-82.115245,36.104618],[-82.109145,36.107218],[-82.105444,36.108119],[-82.101644,36.106219],[-82.098544,36.105719],[-82.085943,36.10602],[-82.080303,36.105728],[-82.080143,36.10572],[-82.079743,36.10652],[-82.067142,36.11202],[-82.061342,36.113121],[-82.056042,36.120721],[-82.056042,36.123921],[-82.054142,36.126821],[-82.043941,36.125421],[-82.037941,36.121122],[-82.033141,36.120422],[-82.02874,36.124322],[-82.02634,36.129222],[-82.02664,36.130222],[-81.960101,36.228131],[-81.938897,36.256067],[-81.932994,36.264881],[-81.918113,36.28711],[-81.908137,36.302013],[-81.897701,36.307446],[-81.894569,36.307183],[-81.887243,36.309193],[-81.879382,36.313767],[-81.876182,36.316075],[-81.874336,36.31919],[-81.863148,36.330209],[-81.857333,36.334787],[-81.850889,36.3375],[-81.845638,36.34036],[-81.841268,36.343321],[-81.833202,36.347339],[-81.822493,36.348819],[-81.812904,36.351066],[-81.808255,36.354121],[-81.800812,36.358073],[-81.795269,36.357849],[-81.791877,36.354797],[-81.790181,36.351744],[-81.787468,36.348692],[-81.784077,36.347674],[-81.781318,36.347656],[-81.777972,36.346318],[-81.768977,36.341042],[-81.766102,36.338517],[-81.762371,36.338856],[-81.760675,36.338178],[-81.757962,36.3375],[-81.75442,36.337044],[-81.747842,36.337356],[-81.744461,36.337778],[-81.739498,36.339757],[-81.7349,36.340891],[-81.730976,36.341187],[-81.725938,36.340364],[-81.721015,36.338645],[-81.717186,36.336169],[-81.713194,36.334108],[-81.707438,36.335171],[-81.705966,36.338496],[-81.705299,36.341852],[-81.707785,36.346007],[-81.713873,36.34937],[-81.718282,36.350388],[-81.721334,36.353101],[-81.722691,36.354797],[-81.723708,36.358527],[-81.724047,36.360901],[-81.724047,36.364293],[-81.726082,36.368893],[-81.731178,36.374062],[-81.732865,36.376502],[-81.732187,36.379894],[-81.730737,36.382943],[-81.729813,36.388033],[-81.730491,36.390407],[-81.731509,36.392103],[-81.733877,36.39457],[-81.737952,36.39719],[-81.739648,36.401599],[-81.739648,36.406686],[-81.738292,36.410756],[-81.734312,36.413342],[-81.729924,36.415422],[-81.720734,36.422537],[-81.717939,36.428762],[-81.716925,36.43314],[-81.715229,36.436532],[-81.715229,36.438567],[-81.715569,36.44128],[-81.715229,36.444332],[-81.714212,36.447045],[-81.714277,36.450978],[-81.715082,36.453365],[-81.71489,36.45722],[-81.708247,36.462217],[-81.701076,36.464212],[-81.699223,36.463959],[-81.697975,36.464741],[-81.695311,36.467912],[-81.694533,36.473283],[-81.694829,36.474463],[-81.696281,36.475499],[-81.697287,36.484738],[-81.695907,36.49158],[-81.696835,36.493393],[-81.697261,36.496141],[-81.698265,36.497221],[-81.699928,36.498018],[-81.700238,36.500475],[-81.699923,36.500865],[-81.69797,36.504063],[-81.69729,36.504887],[-81.697829,36.507544],[-81.697744,36.508448],[-81.699446,36.511504],[-81.699601,36.512883],[-81.700093,36.514158],[-81.700553,36.51519],[-81.702543,36.520317],[-81.707573,36.526101],[-81.708262,36.532113],[-81.707963,36.536209],[-81.699962,36.536829],[-81.699962,36.539714],[-81.697539,36.544359],[-81.693844,36.549083],[-81.69003,36.552154],[-81.689115,36.555912],[-81.690132,36.559643],[-81.692167,36.562695],[-81.692506,36.565748],[-81.690236,36.568718],[-81.686436,36.567918],[-81.679936,36.568618],[-81.677036,36.570718],[-81.677236,36.574406],[-81.679036,36.578918],[-81.680137,36.585518],[-81.677535,36.588117],[-81.600934,36.587019],[-81.521032,36.58052],[-81.499831,36.57982],[-81.489387,36.579026],[-81.47643,36.580421],[-81.442228,36.576822],[-81.374824,36.574673],[-81.353322,36.574723],[-81.353169,36.574724],[-81.307511,36.575024],[-81.262303,36.573924],[-81.249816,36.573225],[-81.176712,36.571926],[-81.171212,36.571026],[-81.14181,36.569527],[-81.124809,36.569227],[-81.083206,36.567328],[-81.061866,36.56702],[-81.058844,36.566976],[-81.011402,36.564429],[-81.003802,36.563629],[-80.945988,36.563196],[-80.944338,36.563058],[-80.901836,36.561754],[-80.901726,36.561751],[-80.837954,36.559131],[-80.837641,36.559118],[-80.837089,36.559154],[-80.80392,36.560813],[-80.773663,36.560307],[-80.730351,36.562349],[-80.704831,36.562319],[-80.653349,36.559221],[-80.624788,36.558408],[-80.612045,36.557871],[-80.4401,36.55063],[-80.432628,36.550302],[-80.431605,36.550219],[-80.295243,36.543973],[-80.228263,36.543867],[-80.225408,36.543748],[-80.171636,36.543219],[-80.169535,36.54319],[-80.122183,36.542646],[-80.053458,36.542537],[-80.027269,36.542495],[-79.967511,36.542502],[-79.966979,36.542475],[-79.920238,36.542447],[-79.904662,36.542438],[-79.887262,36.542838],[-79.71484,36.542002],[-79.667309,36.541772],[-79.666827,36.541772],[-79.510961,36.54074],[-79.510647,36.540738],[-79.470047,36.541025],[-79.445961,36.541195],[-79.445687,36.541218],[-79.342686,36.541176],[-79.24974,36.541139],[-79.218636,36.541491],[-79.20948,36.541594],[-79.208686,36.541571],[-79.137936,36.541739],[-79.126078,36.541533],[-79.124736,36.541568],[-78.971814,36.542123],[-78.970577,36.542154],[-78.942254,36.542079],[-78.942009,36.542113],[-78.91542,36.541974],[-78.914543,36.541972],[-78.7963,36.541713],[-78.76543,36.541727],[-78.758392,36.541852],[-78.734122,36.541902],[-78.670051,36.542035],[-78.663317,36.542011],[-78.605304,36.541092],[-78.533013,36.541004],[-78.529722,36.540981],[-78.509965,36.541065],[-78.471022,36.542307],[-78.470792,36.542316],[-78.45697,36.542474],[-78.441199,36.542687],[-78.436333,36.542666],[-78.323912,36.543809],[-78.246681,36.544341],[-78.245462,36.544411],[-78.133323,36.543847],[-78.132911,36.543811],[-78.046202,36.544168],[-78.03942,36.544196],[-78.038938,36.544173],[-77.899771,36.544663],[-77.882357,36.544737],[-77.87528,36.544754],[-77.767117,36.545414],[-77.749706,36.54552],[-77.296875,36.544739],[-77.205156,36.544581],[-77.190175,36.546164],[-77.16966,36.547315],[-77.1645,36.54633],[-77.152691,36.544078],[-77.124812,36.543986],[-77.095062,36.544626],[-76.916048,36.543815],[-76.917318,36.546046],[-76.916989,36.550742],[-76.915897,36.552093],[-76.807078,36.550606],[-76.781296,36.550659],[-76.749678,36.550381],[-76.738329,36.550985],[-76.575496,36.550744],[-76.541687,36.550312],[-76.541394,36.550314],[-76.491483,36.550732],[-76.465268,36.550951],[-76.313215,36.550551],[-76.313196,36.550551],[-76.12236,36.550621]]]]}}]} diff --git a/Where/RegionKit/Sources/Resources/regions/us-ND.geojson b/Where/RegionKit/Sources/Resources/regions/us-ND.geojson new file mode 100644 index 00000000..2418ca01 --- /dev/null +++ b/Where/RegionKit/Sources/Resources/regions/us-ND.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"region":"us-ND","name":"North Dakota"},"geometry":{"type":"Polygon","coordinates":[[[-98.724375,45.938686],[-98.904429,45.93952],[-98.905477,45.93952],[-99.005642,45.939944],[-99.005754,45.939944],[-99.092868,45.940184],[-99.102372,45.940158],[-99.212571,45.940108],[-99.213644,45.940116],[-99.221672,45.940069],[-99.222269,45.940071],[-99.257745,45.94006],[-99.276266,45.940188],[-99.283968,45.940195],[-99.297272,45.940165],[-99.317875,45.940263],[-99.344774,45.940299],[-99.34496,45.940299],[-99.378486,45.940403],[-99.385565,45.940407],[-99.40126,45.940367],[-99.490254,45.940362],[-99.49314,45.940383],[-99.58878,45.941104],[-99.61116,45.941098],[-99.671938,45.941062],[-99.692975,45.940949],[-99.718071,45.940907],[-99.718073,45.940907],[-99.74787,45.940933],[-99.749325,45.940935],[-99.749494,45.940956],[-99.750396,45.940935],[-99.83868,45.941293],[-99.880062,45.94167],[-99.880292,45.941672],[-99.965775,45.941822],[-100.005486,45.94195],[-100.06902,45.94217],[-100.084163,45.942301],[-100.108471,45.942391],[-100.110339,45.942367],[-100.14173,45.942506],[-100.152084,45.942486],[-100.170826,45.942514],[-100.274762,45.942945],[-100.275614,45.942922],[-100.284134,45.942951],[-100.285345,45.94313],[-100.294126,45.943269],[-100.410386,45.943453],[-100.420162,45.943533],[-100.424438,45.943569],[-100.430597,45.943638],[-100.462838,45.943566],[-100.499354,45.943632],[-100.511793,45.943654],[-100.511949,45.943654],[-100.627681,45.943642],[-100.65082,45.94368],[-100.720865,45.944024],[-100.750407,45.943649],[-100.762072,45.943803],[-100.76211,45.943767],[-100.769751,45.943766],[-100.890176,45.943861],[-100.935582,45.943757],[-100.938989,45.943848],[-100.964411,45.943822],[-100.976565,45.943864],[-100.980693,45.944068],[-101.101334,45.943841],[-101.106826,45.943984],[-101.142571,45.943841],[-101.146076,45.943842],[-101.163241,45.943915],[-101.171074,45.943959],[-101.175693,45.943983],[-101.179103,45.943896],[-101.203787,45.943895],[-101.224006,45.944025],[-101.271524,45.944209],[-101.287223,45.944107],[-101.313272,45.944164],[-101.333871,45.944166],[-101.365283,45.944092],[-101.37069,45.944198],[-101.373769,45.944265],[-101.41989,45.943763],[-101.557276,45.9441],[-101.562156,45.944237],[-101.628597,45.944293],[-101.657631,45.944387],[-101.680574,45.944329],[-101.681819,45.944444],[-101.708785,45.944348],[-101.72338,45.944187],[-101.730069,45.944356],[-101.758611,45.944478],[-101.764277,45.944412],[-101.765293,45.944367],[-101.766177,45.944322],[-101.790054,45.944442],[-101.794606,45.944397],[-101.832991,45.944464],[-101.852642,45.944457],[-101.886838,45.944559],[-101.957439,45.944484],[-101.973749,45.944456],[-101.989501,45.944472],[-101.992187,45.944471],[-101.998618,45.944556],[-101.998703,45.944557],[-102.000425,45.944581],[-102.000656,45.944515],[-102.000679,45.944515],[-102.06093,45.944622],[-102.085122,45.944642],[-102.087555,45.944598],[-102.124628,45.944813],[-102.125429,45.944652],[-102.135269,45.944586],[-102.145356,45.944659],[-102.156393,45.944663],[-102.157965,45.944641],[-102.159439,45.944641],[-102.176698,45.944622],[-102.176993,45.944622],[-102.217867,45.944711],[-102.32823,45.944806],[-102.353384,45.944984],[-102.354283,45.944901],[-102.392696,45.944951],[-102.392767,45.944979],[-102.396359,45.944916],[-102.398575,45.944868],[-102.406176,45.944997],[-102.410346,45.945079],[-102.420173,45.94507],[-102.425358,45.94499],[-102.425397,45.945041],[-102.446419,45.945083],[-102.459586,45.945081],[-102.467563,45.945159],[-102.476024,45.945183],[-102.550947,45.945015],[-102.558579,45.945129],[-102.642555,45.945404],[-102.65162,45.94545],[-102.666684,45.945307],[-102.672474,45.945244],[-102.674077,45.945274],[-102.704871,45.945072],[-102.880252,45.945069],[-102.920482,45.945038],[-102.94207,45.945092],[-102.989902,45.945211],[-102.995345,45.945166],[-102.995668,45.945167],[-103.026058,45.945307],[-103.047779,45.945335],[-103.078477,45.945289],[-103.097872,45.945262],[-103.140939,45.945257],[-103.161251,45.945309],[-103.210634,45.945222],[-103.218396,45.945208],[-103.284092,45.945149],[-103.284109,45.945152],[-103.369148,45.945152],[-103.37546,45.944797],[-103.411325,45.945264],[-103.41804,45.945186],[-103.432393,45.945313],[-103.434851,45.945291],[-103.55871,45.945131],[-103.577083,45.945283],[-103.660779,45.945231],[-103.660779,45.945241],[-103.668479,45.945242],[-104.045443,45.94531],[-104.046822,46.000199],[-104.045759,46.123946],[-104.045237,46.125002],[-104.045417,46.280188],[-104.045469,46.324545],[-104.045462,46.341895],[-104.045481,46.366871],[-104.046103,46.383916],[-104.045045,46.509788],[-104.045098,46.540929],[-104.045271,46.641443],[-104.045271,46.641449],[-104.045474,46.708738],[-104.045572,46.713881],[-104.04537,46.721332],[-104.045403,46.722177],[-104.045402,46.725423],[-104.045901,46.83079],[-104.045542,46.933887],[-104.045535,46.934009],[-104.045566,46.941231],[-104.045076,47.037589],[-104.045052,47.040863],[-104.045195,47.053639],[-104.045227,47.057502],[-104.045259,47.063901],[-104.045354,47.078574],[-104.045018,47.081202],[-104.045081,47.092813],[-104.044788,47.12743],[-104.045517,47.215666],[-104.045159,47.263874],[-104.045091,47.265953],[-104.045057,47.266868],[-104.045088,47.271406],[-104.045155,47.27393],[-104.045121,47.276969],[-104.045307,47.330128],[-104.045313,47.331955],[-104.045333,47.343452],[-104.044863,47.375015],[-104.045069,47.397461],[-104.044797,47.438445],[-104.044621,47.45938],[-104.044109,47.523595],[-104.043912,47.603229],[-104.044241,47.612288],[-104.043742,47.625016],[-104.043242,47.747106],[-104.043199,47.747292],[-104.042384,47.803256],[-104.042432,47.805358],[-104.042567,47.808237],[-104.041869,47.841699],[-104.041662,47.862282],[-104.04223,47.891031],[-104.043329,47.949554],[-104.043497,47.95449],[-104.043933,47.971515],[-104.044162,47.992836],[-104.04412,47.996107],[-104.045399,48.16439],[-104.045498,48.176249],[-104.045424,48.192473],[-104.04556,48.193913],[-104.045692,48.241415],[-104.045729,48.244586],[-104.045645,48.246179],[-104.045861,48.255097],[-104.046039,48.256761],[-104.046332,48.34229],[-104.046371,48.374154],[-104.046654,48.374773],[-104.046913,48.389429],[-104.046913,48.389433],[-104.046969,48.390675],[-104.047134,48.411057],[-104.04696,48.421065],[-104.04709,48.445903],[-104.047192,48.447251],[-104.047294,48.452529],[-104.047259,48.452941],[-104.047392,48.467086],[-104.047555,48.49414],[-104.048054,48.500025],[-104.047675,48.517852],[-104.047513,48.525913],[-104.047876,48.530798],[-104.047648,48.531489],[-104.047783,48.539737],[-104.047811,48.56277],[-104.047974,48.591606],[-104.048212,48.599055],[-104.04793,48.62019],[-104.047586,48.625644],[-104.04762,48.627015],[-104.047582,48.633976],[-104.047582,48.633984],[-104.047819,48.648631],[-104.047887,48.649911],[-104.047865,48.65745],[-104.047861,48.658856],[-104.047849,48.663163],[-104.047883,48.664191],[-104.04834,48.747133],[-104.048548,48.751356],[-104.048233,48.765636],[-104.048537,48.788552],[-104.048569,48.797052],[-104.0489,48.847387],[-104.048652,48.865734],[-104.048824,48.867539],[-104.048883,48.874008],[-104.048893,48.875739],[-104.048719,48.879921],[-104.048643,48.902609],[-104.048746,48.906858],[-104.048744,48.912113],[-104.048807,48.933636],[-104.048701,48.940331],[-104.04877,48.943301],[-104.048872,48.94963],[-104.048698,48.951823],[-104.048627,48.957124],[-104.0488,48.958997],[-104.048555,48.963772],[-104.048616,48.966736],[-104.048478,48.987007],[-104.048736,48.999877],[-103.992467,48.999567],[-103.988925,48.99958],[-103.983786,48.999604],[-103.982361,48.999615],[-103.980868,48.999581],[-103.976459,48.999605],[-103.969479,48.999525],[-103.968611,48.999525],[-103.923261,48.999562],[-103.921976,48.999551],[-103.918921,48.999551],[-103.917428,48.999585],[-103.876905,48.999544],[-103.865336,48.999591],[-103.862738,48.999639],[-103.858363,48.999606],[-103.856072,48.999572],[-103.852287,48.999561],[-103.375467,48.998951],[-103.355491,48.999584],[-102.938777,48.999458],[-102.850455,48.999431],[-102.216993,48.998553],[-102.211301,48.998554],[-102.151847,48.998798],[-102.131614,48.998842],[-102.021144,48.999015],[-101.625438,48.999168],[-101.500437,48.99967],[-101.496735,48.99964],[-101.456737,48.99932],[-101.225915,48.999531],[-101.225187,48.999566],[-101.220754,48.999455],[-101.216182,48.999469],[-101.125434,48.999078],[-100.920577,48.99956],[-100.917939,48.999571],[-100.913634,48.999662],[-100.907107,48.999593],[-100.433981,48.99941],[-100.434351,48.99957],[-100.431642,48.999604],[-100.431676,48.999398],[-100.182707,48.99923],[-99.91378,48.999049],[-99.913705,48.999049],[-99.861488,48.999156],[-99.861454,48.999202],[-99.5257,48.999309],[-99.376068,48.999357],[-98.999803,48.999986],[-98.869037,49.000205],[-97.950205,49.000515],[-97.77575,49.000574],[-97.411216,49.00051],[-97.229039,49.000687],[-97.231397,48.997212],[-97.23149,48.995995],[-97.230403,48.993366],[-97.230833,48.991303],[-97.234214,48.988966],[-97.237297,48.985696],[-97.238387,48.982631],[-97.238025,48.975143],[-97.239209,48.968684],[-97.238882,48.966573],[-97.237541,48.965341],[-97.232491,48.963897],[-97.23146,48.962437],[-97.230859,48.960891],[-97.230859,48.958229],[-97.232319,48.950501],[-97.232147,48.948955],[-97.227854,48.945864],[-97.226823,48.943545],[-97.226394,48.938651],[-97.224505,48.9341],[-97.218666,48.931781],[-97.217549,48.929892],[-97.217463,48.927659],[-97.219185,48.92486],[-97.219095,48.922078],[-97.217992,48.919735],[-97.212926,48.918033],[-97.211161,48.916649],[-97.210809,48.91395],[-97.212553,48.90986],[-97.212706,48.908143],[-97.210541,48.90439],[-97.207688,48.902629],[-97.198857,48.899831],[-97.197982,48.898332],[-97.198107,48.893959],[-97.199981,48.891086],[-97.197857,48.886838],[-97.197982,48.884839],[-97.198857,48.882215],[-97.197982,48.880341],[-97.190486,48.875594],[-97.187737,48.874594],[-97.186238,48.87347],[-97.185738,48.87222],[-97.187362,48.867598],[-97.187113,48.866098],[-97.185488,48.864849],[-97.182365,48.863725],[-97.180116,48.861601],[-97.179071,48.856866],[-97.175618,48.853105],[-97.175618,48.849857],[-97.176993,48.847733],[-97.177243,48.846483],[-97.174355,48.842619],[-97.173811,48.838309],[-97.174275,48.837261],[-97.175727,48.836158],[-97.180366,48.834365],[-97.181116,48.832741],[-97.180991,48.828992],[-97.177747,48.824815],[-97.180028,48.81845],[-97.178611,48.815839],[-97.177045,48.814124],[-97.174045,48.812108],[-97.168497,48.811002],[-97.165624,48.809627],[-97.164874,48.808253],[-97.164874,48.807129],[-97.165921,48.805273],[-97.165921,48.803792],[-97.163699,48.799513],[-97.163535,48.79507],[-97.162959,48.79293],[-97.161231,48.791778],[-97.158102,48.791145],[-97.157093,48.790024],[-97.157797,48.78768],[-97.157804,48.784104],[-97.157067,48.78312],[-97.154116,48.781891],[-97.153256,48.781031],[-97.153871,48.777712],[-97.154854,48.776728],[-97.155223,48.775499],[-97.154854,48.774515],[-97.153871,48.773286],[-97.152588,48.772602],[-97.147478,48.766033],[-97.147478,48.763698],[-97.151289,48.757428],[-97.151043,48.755707],[-97.15006,48.754724],[-97.143176,48.750913],[-97.139488,48.746611],[-97.139611,48.738129],[-97.138996,48.736654],[-97.135341,48.73456],[-97.134847,48.733324],[-97.135094,48.72974],[-97.136083,48.727763],[-97.135588,48.726403],[-97.134229,48.725167],[-97.126398,48.721101],[-97.124328,48.719166],[-97.121253,48.713593],[-97.116185,48.709348],[-97.116926,48.705022],[-97.119027,48.703292],[-97.118286,48.700573],[-97.108655,48.691484],[-97.098697,48.687534],[-97.097584,48.686298],[-97.097337,48.685186],[-97.097708,48.68395],[-97.100056,48.681355],[-97.100674,48.679624],[-97.099811,48.671377],[-97.100009,48.667926],[-97.101539,48.666771],[-97.102652,48.664793],[-97.100674,48.661951],[-97.100551,48.658614],[-97.10179,48.656294],[-97.104566,48.654416],[-97.10591,48.652632],[-97.107814,48.647728],[-97.111179,48.644525],[-97.111921,48.642918],[-97.109651,48.638888],[-97.108276,48.634396],[-97.108466,48.632658],[-97.109515,48.631453],[-97.111559,48.630266],[-97.115043,48.629821],[-97.120819,48.631053],[-97.125269,48.629694],[-97.125887,48.629076],[-97.125887,48.626975],[-97.124175,48.625387],[-97.124033,48.623267],[-97.124774,48.621537],[-97.125639,48.620919],[-97.130089,48.621166],[-97.131325,48.619065],[-97.130707,48.616593],[-97.131448,48.613998],[-97.132931,48.61338],[-97.136145,48.613256],[-97.137504,48.612268],[-97.138246,48.609301],[-97.13738,48.607324],[-97.138246,48.604234],[-97.140841,48.600032],[-97.142818,48.598425],[-97.143684,48.597066],[-97.143931,48.594594],[-97.142237,48.592595],[-97.141585,48.59082],[-97.142915,48.583733],[-97.143654,48.582358],[-97.144922,48.581452],[-97.148429,48.581028],[-97.14974,48.579516],[-97.149616,48.576921],[-97.148874,48.575067],[-97.148998,48.571977],[-97.149616,48.569876],[-97.151638,48.56763],[-97.157402,48.565921],[-97.158638,48.564067],[-97.158762,48.560112],[-97.158267,48.558753],[-97.156413,48.557146],[-97.153942,48.556034],[-97.152211,48.553933],[-97.152459,48.552326],[-97.153447,48.551214],[-97.155791,48.551173],[-97.160863,48.549236],[-97.162099,48.548124],[-97.162717,48.546765],[-97.16309,48.543964],[-97.163105,48.543855],[-97.161277,48.542505],[-97.159697,48.541339],[-97.153942,48.539102],[-97.150481,48.536877],[-97.148874,48.534282],[-97.149122,48.532305],[-97.151964,48.529215],[-97.153076,48.524148],[-97.148133,48.503384],[-97.147638,48.501531],[-97.146279,48.499677],[-97.140347,48.496834],[-97.138864,48.494362],[-97.139276,48.48631],[-97.140291,48.484722],[-97.143869,48.48293],[-97.144981,48.481571],[-97.144611,48.478975],[-97.142757,48.477987],[-97.141397,48.476256],[-97.142015,48.47465],[-97.143745,48.473661],[-97.144116,48.469212],[-97.143127,48.466246],[-97.141768,48.464021],[-97.134229,48.461178],[-97.132746,48.459942],[-97.132622,48.456482],[-97.133611,48.45228],[-97.137072,48.449067],[-97.137689,48.447583],[-97.137689,48.444247],[-97.137319,48.443505],[-97.135094,48.442269],[-97.134229,48.439797],[-97.13497,48.436337],[-97.136206,48.434606],[-97.139296,48.432011],[-97.139173,48.430528],[-97.137813,48.428056],[-97.1356,48.426524],[-97.1356,48.424369],[-97.136971,48.422018],[-97.142066,48.42045],[-97.142849,48.419471],[-97.142457,48.416727],[-97.138343,48.415944],[-97.1356,48.411829],[-97.135012,48.406735],[-97.135795,48.404187],[-97.140106,48.399289],[-97.143829,48.397134],[-97.145201,48.395566],[-97.145592,48.394195],[-97.145201,48.388904],[-97.143633,48.386161],[-97.14089,48.384006],[-97.140106,48.382242],[-97.140106,48.380479],[-97.142066,48.374209],[-97.144221,48.37127],[-97.146376,48.37029],[-97.147356,48.368723],[-97.147748,48.366959],[-97.147748,48.359905],[-97.143861,48.354503],[-97.139851,48.353425],[-97.137822,48.352003],[-97.137492,48.350602],[-97.138481,48.34747],[-97.137904,48.344585],[-97.131722,48.341123],[-97.131145,48.339722],[-97.131969,48.335518],[-97.134854,48.331314],[-97.134772,48.328677],[-97.133751,48.327847],[-97.131227,48.327935],[-97.127766,48.326781],[-97.127436,48.325709],[-97.127601,48.323319],[-97.129826,48.320516],[-97.13125,48.319543],[-97.131697,48.318324],[-97.132443,48.315489],[-97.131921,48.312728],[-97.130951,48.311609],[-97.127146,48.310192],[-97.126176,48.309147],[-97.126176,48.303701],[-97.122296,48.301388],[-97.122072,48.300865],[-97.12252,48.299299],[-97.123341,48.298627],[-97.127295,48.298478],[-97.128638,48.297657],[-97.129086,48.295792],[-97.128862,48.292882],[-97.127236,48.291827],[-97.125348,48.291855],[-97.12216,48.290056],[-97.117726,48.283488],[-97.116717,48.281246],[-97.11657,48.279661],[-97.12408,48.27125],[-97.125348,48.270452],[-97.13028,48.269305],[-97.131846,48.267589],[-97.131921,48.266023],[-97.130951,48.265276],[-97.128551,48.264816],[-97.127146,48.262889],[-97.127146,48.260874],[-97.129384,48.258785],[-97.129533,48.257815],[-97.129235,48.256398],[-97.127594,48.254383],[-97.127276,48.253323],[-97.127967,48.251474],[-97.129384,48.250429],[-97.133434,48.249873],[-97.138033,48.246236],[-97.138765,48.244991],[-97.138618,48.242429],[-97.135617,48.238988],[-97.135763,48.237596],[-97.13979,48.235913],[-97.141254,48.234668],[-97.140815,48.232032],[-97.139311,48.230187],[-97.136304,48.228984],[-97.136003,48.228082],[-97.136304,48.226176],[-97.13769,48.225126],[-97.138154,48.223104],[-97.137522,48.221713],[-97.135617,48.220904],[-97.135201,48.219156],[-97.135177,48.217243],[-97.137407,48.215245],[-97.137006,48.212537],[-97.134372,48.210434],[-97.134738,48.207506],[-97.13774,48.206188],[-97.138765,48.20465],[-97.139131,48.20282],[-97.138007,48.197587],[-97.141233,48.193602],[-97.141518,48.192518],[-97.146233,48.186054],[-97.146013,48.18459],[-97.144622,48.183199],[-97.142938,48.182686],[-97.14184,48.181734],[-97.141474,48.179099],[-97.14162,48.177781],[-97.142352,48.176609],[-97.145243,48.174046],[-97.145702,48.173223],[-97.146672,48.171484],[-97.146745,48.168556],[-97.144242,48.16249],[-97.14195,48.160202],[-97.139643,48.159111],[-97.138911,48.157793],[-97.138911,48.155304],[-97.139497,48.153108],[-97.140295,48.150894],[-97.142279,48.148056],[-97.142133,48.144981],[-97.141401,48.14359],[-97.134299,48.141833],[-97.131956,48.139563],[-97.13252,48.137641],[-97.132176,48.135829],[-97.129453,48.133133],[-97.128279,48.127185],[-97.126862,48.124277],[-97.121586,48.116925],[-97.120702,48.114987],[-97.120592,48.113365],[-97.12104,48.112281],[-97.123135,48.109497],[-97.123666,48.108004],[-97.123205,48.106648],[-97.119773,48.105381],[-97.113194,48.106188],[-97.11147,48.105913],[-97.109535,48.104723],[-97.108428,48.099824],[-97.104872,48.097851],[-97.10395,48.096184],[-97.103879,48.094517],[-97.105475,48.09278],[-97.105616,48.091362],[-97.105226,48.09044],[-97.102165,48.089122],[-97.099798,48.085884],[-97.099431,48.082106],[-97.100771,48.077452],[-97.104154,48.074578],[-97.104697,48.073094],[-97.104483,48.072428],[-97.103052,48.071669],[-97.097772,48.07108],[-97.086986,48.058222],[-97.082895,48.055794],[-97.075641,48.052725],[-97.074015,48.051212],[-97.072257,48.048068],[-97.070411,48.041765],[-97.068711,48.027694],[-97.068987,48.026267],[-97.071911,48.021395],[-97.072239,48.019107],[-97.070654,48.016918],[-97.069284,48.016176],[-97.064927,48.015658],[-97.063289,48.014989],[-97.063012,48.013179],[-97.065411,48.011337],[-97.066762,48.009558],[-97.064289,47.998508],[-97.062257,47.995948],[-97.054945,47.992924],[-97.053553,47.991612],[-97.053089,47.990252],[-97.053537,47.987948],[-97.056481,47.980556],[-97.059153,47.97538],[-97.059353,47.97398],[-97.057153,47.97048],[-97.057854,47.96898],[-97.061554,47.96588],[-97.061854,47.96448],[-97.061454,47.96358],[-97.059054,47.96208],[-97.054054,47.959679],[-97.052454,47.957179],[-97.052554,47.954779],[-97.055154,47.950779],[-97.055554,47.949079],[-97.054554,47.946279],[-97.051054,47.943379],[-97.044954,47.941079],[-97.039154,47.940479],[-97.036054,47.939379],[-97.035554,47.936579],[-97.037354,47.933279],[-97.035754,47.930179],[-97.029654,47.927578],[-97.017754,47.919778],[-97.018054,47.918078],[-97.023754,47.915878],[-97.017254,47.913078],[-97.015354,47.910278],[-97.015054,47.907178],[-97.017254,47.905678],[-97.020355,47.906378],[-97.023555,47.908478],[-97.024955,47.908178],[-97.024155,47.905278],[-97.020255,47.902178],[-97.020155,47.900478],[-97.023955,47.898078],[-97.024955,47.894978],[-97.018955,47.891078],[-97.019155,47.889778],[-97.024955,47.886878],[-97.025355,47.884278],[-97.023355,47.882078],[-97.019355,47.880278],[-97.017955,47.878478],[-97.018955,47.876878],[-97.023156,47.874978],[-97.023156,47.873978],[-97.021256,47.872578],[-97.017356,47.871578],[-97.005356,47.870177],[-97.002456,47.868677],[-97.001556,47.867377],[-97.003356,47.865877],[-97.005857,47.865277],[-97.005557,47.863977],[-97.001759,47.861266],[-97.000356,47.860915],[-96.998144,47.858882],[-96.996816,47.854405],[-96.996364,47.844398],[-96.99789,47.843163],[-96.998295,47.841724],[-96.992963,47.837911],[-96.986685,47.837639],[-96.981725,47.830421],[-96.982272,47.826668],[-96.981683,47.825785],[-96.979327,47.824533],[-96.979327,47.821809],[-96.980137,47.821441],[-96.980726,47.820411],[-96.980391,47.815662],[-96.977946,47.811619],[-96.978894,47.809882],[-96.980947,47.808337],[-96.981168,47.806792],[-96.980579,47.805614],[-96.976176,47.801544],[-96.976088,47.799577],[-96.975131,47.798326],[-96.973585,47.797884],[-96.971698,47.798255],[-96.966068,47.797297],[-96.963523,47.794601],[-96.95786,47.792021],[-96.957216,47.79097],[-96.957283,47.790147],[-96.961554,47.788707],[-96.963521,47.78729],[-96.96535,47.784937],[-96.965316,47.783474],[-96.9644,47.782995],[-96.961926,47.783292],[-96.956501,47.779798],[-96.956635,47.776188],[-96.949585,47.775228],[-96.939179,47.768397],[-96.936909,47.764536],[-96.938435,47.762411],[-96.937859,47.760195],[-96.935555,47.758276],[-96.932684,47.756804],[-96.932648,47.755315],[-96.934209,47.754517],[-96.934463,47.752956],[-96.934173,47.752412],[-96.929051,47.750331],[-96.928505,47.748037],[-96.928506,47.744884],[-96.929319,47.742988],[-96.933011,47.739949],[-96.933316,47.738716],[-96.932809,47.737139],[-96.930574,47.734352],[-96.925089,47.729051],[-96.919131,47.724731],[-96.918556,47.723863],[-96.919471,47.722515],[-96.92348,47.719809],[-96.923544,47.718201],[-96.920391,47.716527],[-96.919811,47.714339],[-96.920321,47.712394],[-96.920119,47.710383],[-96.9155,47.707968],[-96.914856,47.707003],[-96.914405,47.704814],[-96.915242,47.703527],[-96.915242,47.702369],[-96.913762,47.701468],[-96.912846,47.701746],[-96.911527,47.700512],[-96.909769,47.697313],[-96.907604,47.695119],[-96.907266,47.693976],[-96.910144,47.691235],[-96.909909,47.689522],[-96.908928,47.688722],[-96.907236,47.688493],[-96.905273,47.689246],[-96.902971,47.691576],[-96.901719,47.691621],[-96.900264,47.690775],[-96.899352,47.689473],[-96.896724,47.674758],[-96.895271,47.67357],[-96.891922,47.673157],[-96.891042,47.672149],[-96.889726,47.670643],[-96.889627,47.668587],[-96.887126,47.666369],[-96.885573,47.663443],[-96.88571,47.661547],[-96.887607,47.658853],[-96.88697,47.653049],[-96.882882,47.650168],[-96.882376,47.649025],[-96.882857,47.641714],[-96.884515,47.640755],[-96.888166,47.63973],[-96.888573,47.63845],[-96.882393,47.633489],[-96.879496,47.620576],[-96.876355,47.619181],[-96.870871,47.618042],[-96.8706,47.617563],[-96.871005,47.616832],[-96.874078,47.614774],[-96.873671,47.613654],[-96.860255,47.612175],[-96.857112,47.61076],[-96.855421,47.60875],[-96.854812,47.606328],[-96.856903,47.602329],[-96.855618,47.60089],[-96.853785,47.599808],[-96.852826,47.597891],[-96.853114,47.596836],[-96.854456,47.596261],[-96.854743,47.594728],[-96.851964,47.591469],[-96.851293,47.589264],[-96.853273,47.579483],[-96.856373,47.575749],[-96.855894,47.573352],[-96.854073,47.57201],[-96.853689,47.570381],[-96.856661,47.567889],[-96.858769,47.56741],[-96.859153,47.566355],[-96.858673,47.564534],[-96.857236,47.564055],[-96.856852,47.563288],[-96.857427,47.561658],[-96.859153,47.559741],[-96.859057,47.558591],[-96.858002,47.556578],[-96.855092,47.554598],[-96.853755,47.552497],[-96.854328,47.550491],[-96.856238,47.548963],[-96.85662,47.548103],[-96.856429,47.546957],[-96.854423,47.545333],[-96.854232,47.544665],[-96.854614,47.54285],[-96.856716,47.540271],[-96.856429,47.538456],[-96.855092,47.53731],[-96.85471,47.535973],[-96.860524,47.529536],[-96.862379,47.529055],[-96.864739,47.527663],[-96.866363,47.525944],[-96.866363,47.524893],[-96.863551,47.520304],[-96.863245,47.517266],[-96.861422,47.515873],[-96.858454,47.514892],[-96.854204,47.514368],[-96.853468,47.513813],[-96.853181,47.511425],[-96.851749,47.510088],[-96.851367,47.509037],[-96.851749,47.507891],[-96.853052,47.506828],[-96.853286,47.503881],[-96.853317,47.501322],[-96.851844,47.49939],[-96.851791,47.498752],[-96.851653,47.497098],[-96.857002,47.493468],[-96.857957,47.492513],[-96.85853,47.490889],[-96.85853,47.489934],[-96.855856,47.48831],[-96.855665,47.48726],[-96.856142,47.48554],[-96.857957,47.484681],[-96.85853,47.483917],[-96.85853,47.482484],[-96.858148,47.481624],[-96.854996,47.479618],[-96.85471,47.478281],[-96.855856,47.475702],[-96.859103,47.472837],[-96.859868,47.470926],[-96.859555,47.466865],[-96.856811,47.46319],[-96.85748,47.460229],[-96.859581,47.4587],[-96.859963,47.457363],[-96.859677,47.456026],[-96.858148,47.454498],[-96.858244,47.453351],[-96.859239,47.451557],[-96.859537,47.445662],[-96.85748,47.441603],[-96.85748,47.440457],[-96.859772,47.437209],[-96.860059,47.435681],[-96.85853,47.433389],[-96.860823,47.430237],[-96.861014,47.428995],[-96.860632,47.427658],[-96.858721,47.426129],[-96.859581,47.424028],[-96.862924,47.422309],[-96.864261,47.420972],[-96.864261,47.419539],[-96.863593,47.418775],[-96.861231,47.41781],[-96.861095,47.417056],[-96.86207,47.415159],[-96.861833,47.414337],[-96.858094,47.410317],[-96.853325,47.408889],[-96.852656,47.407647],[-96.852739,47.405909],[-96.848071,47.403158],[-96.84511,47.400483],[-96.844919,47.399815],[-96.845874,47.396185],[-96.845492,47.394179],[-96.841767,47.39246],[-96.840717,47.391314],[-96.840621,47.389881],[-96.841099,47.38415],[-96.845588,47.381571],[-96.846925,47.376891],[-96.848931,47.375363],[-96.852676,47.374973],[-96.853754,47.373405],[-96.852035,47.371876],[-96.848907,47.370565],[-96.848597,47.369584],[-96.849552,47.368247],[-96.852226,47.367291],[-96.852417,47.366241],[-96.849456,47.363662],[-96.849265,47.359841],[-96.848119,47.358026],[-96.846877,47.356785],[-96.844298,47.356021],[-96.843439,47.354397],[-96.845158,47.34943],[-96.844012,47.346182],[-96.840586,47.340956],[-96.836609,47.338684],[-96.835845,47.335914],[-96.83852,47.33238],[-96.838329,47.331043],[-96.836036,47.329706],[-96.835177,47.32856],[-96.835177,47.326267],[-96.836609,47.323975],[-96.835845,47.321014],[-96.836036,47.320059],[-96.836991,47.318817],[-96.841194,47.317575],[-96.841958,47.316907],[-96.842531,47.312418],[-96.841003,47.311558],[-96.837045,47.311391],[-96.835735,47.310843],[-96.832884,47.307069],[-96.832884,47.30449],[-96.843922,47.29302],[-96.844088,47.289981],[-96.841465,47.284041],[-96.84022,47.276981],[-96.840353,47.275496],[-96.842245,47.273351],[-96.8432,47.270486],[-96.842531,47.269531],[-96.839761,47.268767],[-96.838997,47.267716],[-96.839857,47.265997],[-96.842054,47.265328],[-96.842627,47.263991],[-96.842531,47.262845],[-96.84129,47.262463],[-96.840717,47.261221],[-96.841003,47.259215],[-96.841672,47.258164],[-96.840048,47.256159],[-96.839857,47.25549],[-96.840525,47.253866],[-96.840143,47.253102],[-96.835368,47.250428],[-96.834699,47.248135],[-96.83489,47.246416],[-96.837278,47.244219],[-96.838233,47.242882],[-96.838233,47.241831],[-96.83766,47.240876],[-96.833589,47.238037],[-96.832946,47.237588],[-96.832693,47.236196],[-96.833362,47.23505],[-96.836036,47.233999],[-96.837564,47.231802],[-96.837374,47.229254],[-96.835654,47.227217],[-96.835654,47.226549],[-96.838806,47.22502],[-96.839284,47.223874],[-96.838329,47.222059],[-96.835941,47.221009],[-96.835654,47.219289],[-96.836514,47.216137],[-96.833553,47.212794],[-96.833362,47.211457],[-96.833648,47.210406],[-96.835463,47.208401],[-96.835177,47.207445],[-96.833457,47.20649],[-96.83212,47.204866],[-96.832789,47.203911],[-96.83766,47.201141],[-96.838615,47.199613],[-96.838806,47.197894],[-96.838233,47.196366],[-96.8368,47.195028],[-96.833075,47.193596],[-96.83126,47.191781],[-96.831165,47.190826],[-96.832502,47.188342],[-96.832407,47.187483],[-96.831451,47.185572],[-96.830401,47.184617],[-96.828299,47.183948],[-96.826962,47.182802],[-96.826676,47.181561],[-96.826962,47.180128],[-96.829446,47.177262],[-96.829828,47.176307],[-96.829637,47.17497],[-96.825147,47.172295],[-96.824288,47.170863],[-96.824479,47.167042],[-96.822091,47.165036],[-96.822377,47.162744],[-96.824288,47.16112],[-96.824861,47.159783],[-96.82467,47.159019],[-96.822707,47.157668],[-96.822405,47.156914],[-96.822706,47.156229],[-96.828013,47.153956],[-96.83126,47.1509],[-96.83121,47.150522],[-96.831069,47.149467],[-96.830114,47.148512],[-96.830114,47.146793],[-96.832407,47.143736],[-96.831547,47.142017],[-96.828597,47.1398],[-96.827631,47.136572],[-96.827631,47.134758],[-96.828777,47.13151],[-96.827631,47.129504],[-96.824476,47.127188],[-96.824807,47.124968],[-96.82544,47.123354],[-96.826712,47.122852],[-96.827726,47.121481],[-96.827344,47.120144],[-96.821189,47.115723],[-96.820619,47.113712],[-96.822192,47.111679],[-96.822694,47.109622],[-96.82159,47.108457],[-96.818843,47.107154],[-96.817984,47.106007],[-96.818175,47.104193],[-96.81999,47.100849],[-96.819894,47.099321],[-96.818557,47.097888],[-96.818366,47.093304],[-96.820085,47.091393],[-96.820563,47.08977],[-96.819034,47.087573],[-96.82065,47.083619],[-96.820216,47.082111],[-96.819078,47.081152],[-96.819479,47.078181],[-96.821613,47.076302],[-96.820849,47.073818],[-96.821231,47.07315],[-96.823715,47.071717],[-96.824097,47.070666],[-96.823491,47.065911],[-96.821804,47.064362],[-96.821327,47.06293],[-96.822186,47.06207],[-96.824097,47.061497],[-96.824479,47.059682],[-96.822568,47.055861],[-96.819321,47.0529],[-96.818843,47.047074],[-96.820849,47.041438],[-96.820563,47.039528],[-96.818748,47.037618],[-96.818557,47.035516],[-96.818843,47.034179],[-96.821422,47.032842],[-96.821613,47.031505],[-96.821231,47.029977],[-96.818557,47.02778],[-96.817984,47.026538],[-96.819416,47.024914],[-96.826358,47.023205],[-96.829499,47.021537],[-96.833038,47.016029],[-96.832303,47.015184],[-96.833504,47.01011],[-96.834508,47.008867],[-96.834603,47.007721],[-96.834221,47.006671],[-96.831798,47.004353],[-96.827489,47.001611],[-96.826198,47.001895],[-96.82318,46.999965],[-96.823189,46.998026],[-96.82447,46.996173],[-96.824598,46.993309],[-96.822566,46.990141],[-96.819894,46.977357],[-96.822043,46.971091],[-96.821852,46.969372],[-96.819558,46.967453],[-96.809814,46.9639],[-96.802749,46.965933],[-96.801316,46.965933],[-96.79931,46.964118],[-96.798737,46.962399],[-96.79991,46.959228],[-96.799606,46.954316],[-96.798758,46.952988],[-96.799358,46.947355],[-96.797734,46.9464],[-96.792863,46.946018],[-96.791558,46.944464],[-96.790058,46.937664],[-96.791558,46.934264],[-96.791621,46.931213],[-96.791048,46.929876],[-96.79038,46.929398],[-96.786845,46.928921],[-96.785126,46.925769],[-96.78312,46.925482],[-96.780258,46.928263],[-96.775157,46.930863],[-96.763257,46.935063],[-96.761757,46.934663],[-96.760292,46.93341],[-96.760292,46.932073],[-96.762011,46.929303],[-96.762011,46.928347],[-96.761725,46.927297],[-96.759528,46.925769],[-96.760961,46.923858],[-96.761343,46.922234],[-96.760865,46.920897],[-96.759337,46.91956],[-96.759241,46.918223],[-96.762871,46.916886],[-96.763973,46.912507],[-96.763557,46.909463],[-96.765657,46.905063],[-96.767458,46.905163],[-96.770458,46.906763],[-96.773558,46.903563],[-96.776558,46.895663],[-96.773558,46.884763],[-96.771858,46.884063],[-96.769758,46.884763],[-96.768058,46.884763],[-96.767358,46.883663],[-96.768458,46.879563],[-96.769758,46.877563],[-96.771258,46.877463],[-96.775558,46.879163],[-96.780358,46.880163],[-96.781358,46.879363],[-96.780358,46.877063],[-96.779258,46.875963],[-96.779302,46.872699],[-96.780758,46.867163],[-96.782881,46.86459],[-96.782881,46.862585],[-96.781353,46.860483],[-96.781067,46.859146],[-96.781162,46.857809],[-96.781926,46.856472],[-96.782022,46.853415],[-96.780876,46.852269],[-96.779061,46.851696],[-96.777915,46.850741],[-96.777915,46.849594],[-96.779729,46.847302],[-96.780207,46.845392],[-96.779347,46.843672],[-96.779347,46.842144],[-96.780398,46.841189],[-96.783359,46.840807],[-96.783837,46.840234],[-96.784028,46.838897],[-96.783264,46.837464],[-96.78355,46.835936],[-96.785365,46.834025],[-96.789377,46.833166],[-96.789663,46.832306],[-96.787275,46.829059],[-96.787657,46.827817],[-96.789377,46.827435],[-96.791559,46.827864],[-96.79796,46.822364],[-96.80016,46.819664],[-96.799336,46.815436],[-96.80036,46.8135],[-96.802013,46.812464],[-96.802544,46.811521],[-96.801446,46.810401],[-96.796488,46.808709],[-96.795756,46.807795],[-96.796992,46.791572],[-96.796195,46.789881],[-96.793102,46.7877],[-96.791478,46.785694],[-96.791096,46.783688],[-96.792624,46.780632],[-96.792433,46.778913],[-96.792051,46.778339],[-96.788803,46.777575],[-96.788135,46.776238],[-96.78909,46.773373],[-96.788612,46.771271],[-96.784983,46.768788],[-96.784314,46.767546],[-96.784314,46.766973],[-96.785651,46.766113],[-96.785556,46.764394],[-96.783646,46.762579],[-96.784601,46.761338],[-96.786129,46.760956],[-96.787466,46.758472],[-96.787466,46.756753],[-96.783646,46.753123],[-96.783455,46.750353],[-96.784568,46.748669],[-96.785269,46.746246],[-96.784601,46.743094],[-96.781216,46.740944],[-96.781617,46.737197],[-96.784279,46.732993],[-96.781544,46.730104],[-96.77992,46.729149],[-96.779252,46.727429],[-96.779899,46.722915],[-96.784751,46.720495],[-96.786184,46.71284],[-96.791204,46.703747],[-96.790906,46.70297],[-96.787801,46.700446],[-96.786654,46.695861],[-96.786845,46.692805],[-96.787801,46.691181],[-96.786941,46.68822],[-96.785068,46.687636],[-96.784205,46.686768],[-96.784339,46.685054],[-96.788159,46.681879],[-96.787801,46.679815],[-96.788947,46.678382],[-96.792958,46.677427],[-96.79334,46.676854],[-96.793723,46.674943],[-96.792576,46.672173],[-96.793914,46.669212],[-96.798357,46.665314],[-96.798823,46.658071],[-96.796767,46.653363],[-96.790663,46.649112],[-96.789405,46.641639],[-96.789572,46.639079],[-96.790523,46.63688],[-96.791096,46.633155],[-96.78995,46.631531],[-96.784815,46.629439],[-96.784792,46.62943],[-96.784123,46.628666],[-96.783837,46.627329],[-96.784505,46.625418],[-96.783932,46.621598],[-96.779061,46.620834],[-96.778201,46.619305],[-96.778965,46.617873],[-96.778488,46.616153],[-96.774954,46.614625],[-96.774094,46.613288],[-96.775622,46.609276],[-96.774763,46.607461],[-96.772088,46.606315],[-96.771802,46.605742],[-96.772476,46.603716],[-96.772457,46.601491],[-96.772446,46.600129],[-96.770226,46.598148],[-96.766596,46.597957],[-96.763865,46.594595],[-96.762584,46.593946],[-96.76182,46.592991],[-96.762393,46.589743],[-96.76182,46.588501],[-96.757999,46.586878],[-96.756662,46.585827],[-96.756949,46.583534],[-96.755421,46.582866],[-96.752746,46.58277],[-96.752078,46.582197],[-96.753033,46.57895],[-96.752746,46.577517],[-96.7516,46.576371],[-96.748161,46.575798],[-96.746442,46.574078],[-96.744436,46.56596],[-96.746633,46.560706],[-96.748161,46.559847],[-96.74883,46.558127],[-96.748161,46.556408],[-96.746824,46.555071],[-96.744532,46.551346],[-96.744341,46.550104],[-96.746347,46.546283],[-96.743577,46.54485],[-96.742812,46.543609],[-96.743003,46.54294],[-96.745009,46.541698],[-96.745105,46.541125],[-96.745009,46.540457],[-96.742335,46.538546],[-96.742239,46.536827],[-96.744341,46.53463],[-96.744341,46.533006],[-96.74202,46.529036],[-96.738475,46.525793],[-96.737408,46.517636],[-96.736147,46.513478],[-96.738562,46.509366],[-96.735888,46.50631],[-96.735888,46.504973],[-96.737702,46.50077],[-96.735499,46.497932],[-96.733612,46.497224],[-96.73457,46.494254],[-96.737798,46.489785],[-96.737989,46.487875],[-96.737129,46.485965],[-96.735505,46.484914],[-96.735028,46.483863],[-96.73627,46.48138],[-96.736365,46.480138],[-96.735123,46.478897],[-96.726914,46.476432],[-96.726718,46.474121],[-96.724712,46.473166],[-96.72242,46.472784],[-96.72156,46.472115],[-96.720891,46.471446],[-96.721274,46.470014],[-96.720414,46.468008],[-96.717453,46.464474],[-96.715557,46.463232],[-96.714861,46.459132],[-96.715593,46.453867],[-96.718551,46.451913],[-96.718933,46.451054],[-96.718169,46.448666],[-96.717119,46.448093],[-96.716641,46.447233],[-96.716438,46.444567],[-96.717967,46.442021],[-96.718647,46.439974],[-96.718074,46.438255],[-96.715495,46.436153],[-96.71177,46.436153],[-96.709095,46.435294],[-96.707471,46.432715],[-96.706994,46.430231],[-96.706134,46.429754],[-96.703078,46.429467],[-96.701645,46.428607],[-96.701167,46.426506],[-96.702314,46.423832],[-96.702314,46.422685],[-96.701358,46.420584],[-96.69792,46.42068],[-96.696869,46.420011],[-96.696392,46.418483],[-96.696869,46.416859],[-96.696583,46.415617],[-96.69429,46.41428],[-96.688941,46.413134],[-96.688318,46.410948],[-96.688846,46.409409],[-96.688082,46.40788],[-96.684834,46.407021],[-96.682008,46.40784],[-96.680687,46.407383],[-96.678507,46.404823],[-96.669132,46.390037],[-96.669794,46.384644],[-96.667189,46.375458],[-96.666028,46.374566],[-96.658436,46.373391],[-96.658009,46.370512],[-96.655206,46.365964],[-96.650718,46.363655],[-96.646532,46.36251],[-96.646341,46.360982],[-96.647296,46.358499],[-96.645959,46.353532],[-96.644335,46.351908],[-96.640267,46.351585],[-96.631586,46.353752],[-96.629211,46.352654],[-96.629378,46.350529],[-96.628522,46.349569],[-96.62079,46.347607],[-96.618147,46.344295],[-96.620454,46.341346],[-96.619991,46.340135],[-96.614676,46.337418],[-96.608075,46.332576],[-96.601048,46.331139],[-96.599761,46.330386],[-96.60104,46.319554],[-96.598399,46.314482],[-96.598233,46.312563],[-96.60136,46.30413],[-96.60027,46.300406],[-96.599156,46.299183],[-96.598679,46.29775],[-96.600302,46.294407],[-96.599347,46.292879],[-96.596968,46.291838],[-96.596077,46.290536],[-96.5961,46.286097],[-96.598201,46.283136],[-96.598774,46.281417],[-96.598392,46.28008],[-96.595509,46.276689],[-96.595014,46.275135],[-96.596822,46.267913],[-96.599087,46.263701],[-96.599729,46.262123],[-96.59887,46.26069],[-96.595909,46.259926],[-96.594571,46.258302],[-96.593616,46.256679],[-96.593712,46.254959],[-96.594571,46.253335],[-96.594189,46.251712],[-96.59247,46.250757],[-96.590942,46.250183],[-96.590369,46.249515],[-96.590082,46.248655],[-96.590369,46.247891],[-96.591037,46.247222],[-96.592375,46.246076],[-96.594234,46.245329],[-96.598119,46.243112],[-96.598645,46.241626],[-96.59755,46.227733],[-96.59567,46.21985],[-96.591652,46.218183],[-96.586744,46.209912],[-96.584899,46.204383],[-96.584372,46.204155],[-96.583582,46.201047],[-96.584272,46.198053],[-96.584929,46.197231],[-96.587694,46.195262],[-96.587724,46.191838],[-96.588579,46.189689],[-96.588554,46.185233],[-96.587503,46.183609],[-96.587217,46.182749],[-96.587408,46.181221],[-96.587599,46.180075],[-96.587599,46.178928],[-96.587408,46.178164],[-96.586739,46.177305],[-96.585647,46.177309],[-96.584495,46.177123],[-96.583324,46.174154],[-96.583779,46.173563],[-96.582823,46.170905],[-96.580531,46.169186],[-96.57862,46.168135],[-96.577952,46.165843],[-96.577715,46.162797],[-96.580408,46.151234],[-96.579453,46.147601],[-96.577381,46.144951],[-96.574784,46.143146],[-96.56926,46.133686],[-96.570081,46.127037],[-96.571439,46.12572],[-96.570023,46.123756],[-96.563043,46.119512],[-96.562811,46.11625],[-96.56692,46.11475],[-96.565723,46.111963],[-96.563175,46.107995],[-96.559167,46.105024],[-96.557952,46.102442],[-96.556672,46.097232],[-96.556345,46.08688],[-96.554507,46.083978],[-96.558088,46.072096],[-96.558055,46.071159],[-96.556611,46.06892],[-96.556907,46.06483],[-96.559271,46.058272],[-96.560945,46.055415],[-96.566295,46.051416],[-96.573644,46.037911],[-96.57794,46.026874],[-96.577315,46.02356],[-96.576569,46.021846],[-96.574264,46.016545],[-96.575869,46.007999],[-96.574064,46.004434],[-96.573605,46.002309],[-96.572483,45.989577],[-96.572384,45.980231],[-96.57035,45.963595],[-96.564803,45.950349],[-96.562135,45.947718],[-96.561334,45.945655],[-96.562525,45.937087],[-96.56328,45.935238],[-96.576897,45.935259],[-96.597432,45.935209],[-96.607142,45.935301],[-96.618295,45.935407],[-96.639066,45.935318],[-96.659895,45.93556],[-96.680646,45.935716],[-96.701313,45.935807],[-96.791505,45.935857],[-96.805155,45.935431],[-96.998652,45.9357],[-97.000361,45.935233],[-97.019596,45.935382],[-97.103218,45.935991],[-97.118053,45.935485],[-97.144987,45.935278],[-97.228291,45.935141],[-97.228304,45.935141],[-97.228323,45.935141],[-97.312184,45.935077],[-97.318899,45.935054],[-97.481967,45.935138],[-97.491892,45.935111],[-97.518944,45.935304],[-97.519035,45.935304],[-97.542598,45.935258],[-97.696691,45.935352],[-97.77704,45.935393],[-97.784575,45.935327],[-97.958718,45.935878],[-97.978778,45.935937],[-97.986893,45.935961],[-98.008102,45.936095],[-98.008202,45.936096],[-98.070515,45.93618],[-98.184637,45.936183],[-98.18563,45.936185],[-98.414518,45.936504],[-98.625379,45.938228],[-98.724375,45.938686]]]}}]} diff --git a/Where/RegionKit/Sources/Resources/regions/us-NE.geojson b/Where/RegionKit/Sources/Resources/regions/us-NE.geojson new file mode 100644 index 00000000..071c523d --- /dev/null +++ b/Where/RegionKit/Sources/Resources/regions/us-NE.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"region":"us-NE","name":"Nebraska"},"geometry":{"type":"Polygon","coordinates":[[[-104.053249,41.001406],[-104.053158,41.016809],[-104.053097,41.018045],[-104.053177,41.089725],[-104.053025,41.090274],[-104.053083,41.104985],[-104.053142,41.114457],[-104.053514,41.157257],[-104.052666,41.275251],[-104.052574,41.278019],[-104.052453,41.278202],[-104.052568,41.316202],[-104.052476,41.320961],[-104.052324,41.321144],[-104.052687,41.330569],[-104.052288,41.393214],[-104.052287,41.393307],[-104.05216,41.407662],[-104.05234,41.417865],[-104.052478,41.515754],[-104.052476,41.522343],[-104.052686,41.539111],[-104.052692,41.541154],[-104.052584,41.55265],[-104.052531,41.552723],[-104.05254,41.564274],[-104.052859,41.592254],[-104.052735,41.613676],[-104.052975,41.622931],[-104.052945,41.638167],[-104.052913,41.64519],[-104.05283,41.697954],[-104.052774,41.733401],[-104.053026,41.885464],[-104.052931,41.906143],[-104.052991,41.914973],[-104.052734,41.973007],[-104.052856,41.975958],[-104.05283,41.9946],[-104.052761,41.994967],[-104.052699,41.998673],[-104.052704,42.001718],[-104.052729,42.016318],[-104.05288,42.021761],[-104.052967,42.075004],[-104.052954,42.089077],[-104.0526,42.124963],[-104.052738,42.133769],[-104.053001,42.137254],[-104.052547,42.166801],[-104.052761,42.170278],[-104.053125,42.249962],[-104.052793,42.249962],[-104.052776,42.25822],[-104.053107,42.499964],[-104.052775,42.610813],[-104.052775,42.61159],[-104.052773,42.611766],[-104.052586,42.630917],[-104.052741,42.633982],[-104.052583,42.650062],[-104.052809,42.749966],[-104.052863,42.754569],[-104.053127,43.000585],[-103.991077,43.001691],[-103.96627,43.001708],[-103.924921,43.000918],[-103.815573,43.001279],[-103.813939,43.001378],[-103.715084,43.000983],[-103.652919,43.001409],[-103.618334,43.000679],[-103.576966,43.000746],[-103.576329,43.000807],[-103.506556,43.000771],[-103.506151,43.000771],[-103.505219,43.00077],[-103.5051,43.00077],[-103.404579,43.000737],[-103.340829,43.000879],[-103.132955,43.000784],[-103.13174,43.000783],[-103.000897,43.000474],[-102.792111,42.99998],[-102.487329,42.999559],[-102.440547,42.999609],[-102.082546,42.999356],[-102.082486,42.999356],[-101.849982,42.999329],[-101.713573,42.99662],[-101.625424,42.996238],[-101.500424,42.997115],[-101.230325,42.997899],[-101.229203,42.997854],[-101.228104,42.997874],[-101.226853,42.997896],[-101.226494,42.997901],[-101.043147,42.99796],[-101.000429,42.99753],[-100.96419,42.997886],[-100.958365,42.997796],[-100.906714,42.99791],[-100.887898,42.997881],[-100.867473,42.998266],[-100.631728,42.998092],[-100.625414,42.998584],[-100.553131,42.998721],[-100.544018,42.998795],[-100.534335,42.999017],[-100.472742,42.999288],[-100.355406,42.99876],[-100.349548,42.99874],[-100.283713,42.998767],[-100.277793,42.998674],[-100.198434,42.998542],[-100.198413,42.998542],[-100.198412,42.998542],[-100.126896,42.998711],[-100.126427,42.99871],[-100.119297,42.998689],[-100.034389,42.998425],[-100.027815,42.998424],[-100.004757,42.998392],[-99.961204,42.998335],[-99.950921,42.998291],[-99.950411,42.998286],[-99.927645,42.998113],[-99.918401,42.998057],[-99.877697,42.998094],[-99.869885,42.998094],[-99.859945,42.997962],[-99.850037,42.998171],[-99.821868,42.997995],[-99.809373,42.998178],[-99.803328,42.998064],[-99.800306,42.997972],[-99.788247,42.998016],[-99.768524,42.998125],[-99.743138,42.997912],[-99.726788,42.997892],[-99.719177,42.997899],[-99.701446,42.997994],[-99.699234,42.99788],[-99.569277,42.997995],[-99.535375,42.998038],[-99.534049,42.998041],[-99.494287,42.998118],[-99.490798,42.998143],[-99.474531,42.998081],[-99.471353,42.997967],[-99.395568,42.99817],[-99.374268,42.998047],[-99.371121,42.998093],[-99.368628,42.99814],[-99.347283,42.998217],[-99.288045,42.998152],[-99.26271,42.998234],[-99.254454,42.99814],[-99.254297,42.998138],[-99.234462,42.998281],[-99.195199,42.998107],[-99.161388,42.998465],[-99.151143,42.998344],[-99.139045,42.998508],[-99.135961,42.998301],[-99.08188,42.998288],[-99.080011,42.998357],[-99.0223,42.998237],[-99.021909,42.998365],[-99.00037,42.998273],[-98.962081,42.998286],[-98.919234,42.998241],[-98.919136,42.998242],[-98.903154,42.998306],[-98.899944,42.998122],[-98.823989,42.99831],[-98.801304,42.998241],[-98.764378,42.998323],[-98.742394,42.998343],[-98.665613,42.998536],[-98.663712,42.998444],[-98.568936,42.998537],[-98.565072,42.9984],[-98.49855,42.99856],[-98.495747,42.988032],[-98.490483,42.977948],[-98.478919,42.963539],[-98.467356,42.947556],[-98.461673,42.944427],[-98.458515,42.943374],[-98.45222,42.938389],[-98.448309,42.936428],[-98.447047,42.935117],[-98.445861,42.93062],[-98.444145,42.929242],[-98.439743,42.928195],[-98.437285,42.928393],[-98.434503,42.929227],[-98.430934,42.931504],[-98.426287,42.9321],[-98.42074,42.931924],[-98.407824,42.92575],[-98.399298,42.922465],[-98.386445,42.918407],[-98.375358,42.913132],[-98.358047,42.907516],[-98.34623,42.902747],[-98.342408,42.900847],[-98.33799,42.89776],[-98.335846,42.895654],[-98.333497,42.891532],[-98.332423,42.890501],[-98.329663,42.888441],[-98.325864,42.8865],[-98.319513,42.88454],[-98.309769,42.88256],[-98.297465,42.880059],[-98.280007,42.874996],[-98.268363,42.874152],[-98.258276,42.87439],[-98.25181,42.872824],[-98.24982,42.871843],[-98.24683,42.868397],[-98.231922,42.86114],[-98.226512,42.857742],[-98.224231,42.855521],[-98.219826,42.853157],[-98.204506,42.846845],[-98.189765,42.841628],[-98.171113,42.837114],[-98.167523,42.836925],[-98.163262,42.837143],[-98.153079,42.839065],[-98.14806,42.840013],[-98.146933,42.839823],[-98.137912,42.832728],[-98.129038,42.821228],[-98.127489,42.820127],[-98.107688,42.810633],[-98.1047,42.808475],[-98.094574,42.799309],[-98.087819,42.795789],[-98.082782,42.794342],[-98.067388,42.784759],[-98.062913,42.781119],[-98.061254,42.777954],[-98.059838,42.772772],[-98.056625,42.770781],[-98.051624,42.768769],[-98.044688,42.768029],[-98.042011,42.767316],[-98.037114,42.765724],[-98.035034,42.764205],[-98.017228,42.762411],[-98.013046,42.762299],[-98.005739,42.764167],[-98.002532,42.763264],[-98.000348,42.763256],[-97.992507,42.765111],[-97.977588,42.769923],[-97.962044,42.768708],[-97.953492,42.76904],[-97.950147,42.769619],[-97.936716,42.775754],[-97.932962,42.778203],[-97.921434,42.788352],[-97.915947,42.789901],[-97.908983,42.794909],[-97.905001,42.798872],[-97.89439,42.811682],[-97.890241,42.815113],[-97.888562,42.817251],[-97.884864,42.826231],[-97.879878,42.835395],[-97.878976,42.843673],[-97.875849,42.847725],[-97.875651,42.850307],[-97.876887,42.852663],[-97.877003,42.854394],[-97.875345,42.858724],[-97.865695,42.86286],[-97.857957,42.865093],[-97.84527,42.867734],[-97.834172,42.868794],[-97.828496,42.868797],[-97.825804,42.867532],[-97.817075,42.861781],[-97.801344,42.858003],[-97.788462,42.853375],[-97.774456,42.849774],[-97.76473,42.8491],[-97.753801,42.849012],[-97.750343,42.849493],[-97.72045,42.847439],[-97.70103,42.843797],[-97.686506,42.842435],[-97.668294,42.843031],[-97.657846,42.844626],[-97.646719,42.847602],[-97.635412,42.851449],[-97.620276,42.856598],[-97.611811,42.858367],[-97.603762,42.858329],[-97.59926,42.856229],[-97.591916,42.853837],[-97.574551,42.849653],[-97.561928,42.847552],[-97.547473,42.848028],[-97.531867,42.850105],[-97.515948,42.853752],[-97.504847,42.858477],[-97.500341,42.85722],[-97.499088,42.855197],[-97.49623,42.853231],[-97.49149,42.851625],[-97.484921,42.850368],[-97.470529,42.850455],[-97.461666,42.849176],[-97.458772,42.848322],[-97.456383,42.846937],[-97.452177,42.846048],[-97.442279,42.846224],[-97.439114,42.84711],[-97.431951,42.851542],[-97.425543,42.856658],[-97.425087,42.858221],[-97.42319,42.861168],[-97.417066,42.865918],[-97.413422,42.867351],[-97.408315,42.868334],[-97.404442,42.86775],[-97.399303,42.864835],[-97.393966,42.86425],[-97.376695,42.865195],[-97.375337,42.862991],[-97.368643,42.858419],[-97.361784,42.855123],[-97.359569,42.854816],[-97.341181,42.855882],[-97.336156,42.856802],[-97.330749,42.858406],[-97.328511,42.859501],[-97.326348,42.861289],[-97.324457,42.861998],[-97.318066,42.863247],[-97.311091,42.865821],[-97.308853,42.867307],[-97.306677,42.867604],[-97.302075,42.86566],[-97.289859,42.855499],[-97.267946,42.852583],[-97.256752,42.853913],[-97.251764,42.855432],[-97.248556,42.855386],[-97.237868,42.853139],[-97.231929,42.851335],[-97.218825,42.845848],[-97.217411,42.843519],[-97.218269,42.829561],[-97.21783,42.827766],[-97.215059,42.822977],[-97.213957,42.820143],[-97.213084,42.813007],[-97.211654,42.810684],[-97.210126,42.809296],[-97.204726,42.806505],[-97.200431,42.805485],[-97.1876,42.804835],[-97.178488,42.80323],[-97.172083,42.802925],[-97.166978,42.802087],[-97.163857,42.801257],[-97.160352,42.799733],[-97.150763,42.795566],[-97.144595,42.790113],[-97.138216,42.783428],[-97.137028,42.780963],[-97.137101,42.778932],[-97.134461,42.774494],[-97.131331,42.771929],[-97.111622,42.76939],[-97.101265,42.769697],[-97.096128,42.76934],[-97.085463,42.770061],[-97.079356,42.771406],[-97.071849,42.772305],[-97.065592,42.772189],[-97.05218,42.770187],[-97.033229,42.765904],[-97.030189,42.763712],[-97.02485,42.76243],[-97.015825,42.761599],[-96.99282,42.759481],[-96.982197,42.760554],[-96.97912,42.76009],[-96.975339,42.758321],[-96.96888,42.754278],[-96.96123,42.740623],[-96.960866,42.739089],[-96.961291,42.736569],[-96.965833,42.727096],[-96.965679,42.724532],[-96.964776,42.722455],[-96.963531,42.720643],[-96.961576,42.719841],[-96.955862,42.719178],[-96.948902,42.719465],[-96.941111,42.721569],[-96.936773,42.723428],[-96.930247,42.726441],[-96.924156,42.730327],[-96.920494,42.731432],[-96.906797,42.7338],[-96.886845,42.725222],[-96.872789,42.724096],[-96.860436,42.720797],[-96.849956,42.715034],[-96.843419,42.712024],[-96.829554,42.708441],[-96.819452,42.707774],[-96.813148,42.706397],[-96.806223,42.704154],[-96.806219,42.704149],[-96.801652,42.698774],[-96.800485,42.692466],[-96.800193,42.684346],[-96.802178,42.672237],[-96.800986,42.669758],[-96.798745,42.668243],[-96.793238,42.666024],[-96.778182,42.662993],[-96.76406,42.661985],[-96.751239,42.66436],[-96.749372,42.665733],[-96.746949,42.666223],[-96.73546,42.667164],[-96.728024,42.666882],[-96.697639,42.659143],[-96.691269,42.6562],[-96.687669,42.653126],[-96.687082,42.652093],[-96.686982,42.649783],[-96.687788,42.645992],[-96.689083,42.644081],[-96.692599,42.64204],[-96.696852,42.637596],[-96.70729,42.625317],[-96.709485,42.621932],[-96.711312,42.617375],[-96.711546,42.614758],[-96.710995,42.608128],[-96.7093,42.603753],[-96.706416,42.599413],[-96.697313,42.590412],[-96.685746,42.577944],[-96.681369,42.574486],[-96.675952,42.5716],[-96.658754,42.566426],[-96.648135,42.560877],[-96.643589,42.557604],[-96.638033,42.55196],[-96.63533,42.54764],[-96.633321,42.540211],[-96.633343,42.531984],[-96.632882,42.528987],[-96.631494,42.524319],[-96.631494,42.524318],[-96.628179,42.516963],[-96.625958,42.513576],[-96.611489,42.506088],[-96.608883,42.505218],[-96.603468,42.50446],[-96.595992,42.504621],[-96.591121,42.50541],[-96.584348,42.507834],[-96.57251,42.515737],[-96.567896,42.517877],[-96.557775,42.52038],[-96.548791,42.520547],[-96.538036,42.518131],[-96.531616,42.51517],[-96.528753,42.513273],[-96.525142,42.510234],[-96.520683,42.504761],[-96.518752,42.500839],[-96.517557,42.496902],[-96.515891,42.49427],[-96.508587,42.486691],[-96.505704,42.484723],[-96.501321,42.482749],[-96.489497,42.480112],[-96.478792,42.479635],[-96.475565,42.480036],[-96.465671,42.483132],[-96.459709,42.486037],[-96.443408,42.489495],[-96.423892,42.48898],[-96.409408,42.487595],[-96.396107,42.484095],[-96.386007,42.474495],[-96.385407,42.473094],[-96.381307,42.461694],[-96.380107,42.451494],[-96.380707,42.446394],[-96.384307,42.437294],[-96.387608,42.432494],[-96.411808,42.410894],[-96.413609,42.407894],[-96.415509,42.400294],[-96.41498,42.393442],[-96.409153,42.381491],[-96.408436,42.376092],[-96.413994,42.365932],[-96.417093,42.361443],[-96.417918,42.3587],[-96.418168,42.354678],[-96.417786,42.351449],[-96.413895,42.343393],[-96.407998,42.337408],[-96.402957,42.334156],[-96.396269,42.330857],[-96.384169,42.325874],[-96.375307,42.318339],[-96.37179,42.314172],[-96.369969,42.310878],[-96.369212,42.308344],[-96.368507,42.303622],[-96.368454,42.291848],[-96.365792,42.285875],[-96.3608,42.279867],[-96.356406,42.276493],[-96.356389,42.27648],[-96.34145,42.269115],[-96.336003,42.264806],[-96.331331,42.25943],[-96.328905,42.254734],[-96.327706,42.249992],[-96.328955,42.241885],[-96.330004,42.240224],[-96.322868,42.233637],[-96.322827,42.231461],[-96.323723,42.229887],[-96.332044,42.221585],[-96.336323,42.218922],[-96.339086,42.218087],[-96.345055,42.21749],[-96.356591,42.215182],[-96.356655,42.215137],[-96.358141,42.214088],[-96.35987,42.210545],[-96.359087,42.207799],[-96.351515,42.200485],[-96.349166,42.197253],[-96.348066,42.194747],[-96.347243,42.186721],[-96.350323,42.17744],[-96.349688,42.172043],[-96.347752,42.166806],[-96.342395,42.160491],[-96.33798,42.157197],[-96.325872,42.151487],[-96.319528,42.146647],[-96.316979,42.143171],[-96.313819,42.136338],[-96.310085,42.132523],[-96.305884,42.129826],[-96.301023,42.128042],[-96.28567,42.125619],[-96.279203,42.12348],[-96.275002,42.120779],[-96.272299,42.118396],[-96.2689,42.11359],[-96.267318,42.110265],[-96.266594,42.103262],[-96.267636,42.096177],[-96.271777,42.088697],[-96.274135,42.085934],[-96.276758,42.081416],[-96.279079,42.074026],[-96.279342,42.07028],[-96.278445,42.060399],[-96.275548,42.051976],[-96.272901,42.047281],[-96.272877,42.047238],[-96.271427,42.044988],[-96.268637,42.042314],[-96.263886,42.039858],[-96.261132,42.038974],[-96.256087,42.03808],[-96.254542,42.039454],[-96.246832,42.041616],[-96.238392,42.041088],[-96.232125,42.039145],[-96.225656,42.035217],[-96.223822,42.033346],[-96.221901,42.029558],[-96.22173,42.026205],[-96.223611,42.022652],[-96.227867,42.018651],[-96.238859,42.012315],[-96.241932,42.006965],[-96.24238,42.002899],[-96.242035,42.000911],[-96.240713,41.999351],[-96.236487,41.996428],[-96.229739,41.99441],[-96.225463,41.994734],[-96.223896,41.995456],[-96.221813,41.997382],[-96.217637,42.003862],[-96.215225,42.006701],[-96.206083,42.009267],[-96.194556,42.008662],[-96.188067,42.006323],[-96.184644,42.002633],[-96.183568,41.999987],[-96.183801,41.99776],[-96.184784,41.99546],[-96.189516,41.989314],[-96.192141,41.984461],[-96.191549,41.982032],[-96.190602,41.980721],[-96.186265,41.977417],[-96.184243,41.976696],[-96.177203,41.976325],[-96.174154,41.976864],[-96.168071,41.978996],[-96.16068,41.980114],[-96.156538,41.980137],[-96.141228,41.978063],[-96.132537,41.974625],[-96.129505,41.971673],[-96.1289,41.969727],[-96.129186,41.965136],[-96.133318,41.955732],[-96.135393,41.952223],[-96.142597,41.945908],[-96.143603,41.944512],[-96.144583,41.941544],[-96.143493,41.937387],[-96.136613,41.927167],[-96.136133,41.92353],[-96.136743,41.920826],[-96.139653,41.916838],[-96.142265,41.915379],[-96.154301,41.912421],[-96.159098,41.910057],[-96.160767,41.908044],[-96.161988,41.905553],[-96.161756,41.90182],[-96.158204,41.897173],[-96.152179,41.892085],[-96.148826,41.888132],[-96.14735,41.884811],[-96.146757,41.877538],[-96.146083,41.874988],[-96.144483,41.871854],[-96.142045,41.868865],[-96.13901,41.866301],[-96.135253,41.863128],[-96.13062,41.860809],[-96.123215,41.85858],[-96.116202,41.854869],[-96.113962,41.853102],[-96.110246,41.84885],[-96.108029,41.844397],[-96.107911,41.840339],[-96.110907,41.830818],[-96.11081,41.828172],[-96.109347,41.823735],[-96.107592,41.820685],[-96.103749,41.817151],[-96.09827,41.814206],[-96.093835,41.812785],[-96.081026,41.810144],[-96.075548,41.807811],[-96.069662,41.803509],[-96.067329,41.800628],[-96.064879,41.79623],[-96.064537,41.793002],[-96.066413,41.788913],[-96.073197,41.783009],[-96.077543,41.777824],[-96.078939,41.771353],[-96.0783,41.761598],[-96.079915,41.757895],[-96.084673,41.753314],[-96.091687,41.750419],[-96.097511,41.749076],[-96.102772,41.746339],[-96.104622,41.744211],[-96.106425,41.73789],[-96.106326,41.734591],[-96.105582,41.731647],[-96.10261,41.728016],[-96.0876,41.72218],[-96.079682,41.717962],[-96.075151,41.713265],[-96.073376,41.710674],[-96.072494,41.708794],[-96.072321,41.706858],[-96.073063,41.705004],[-96.075955,41.701661],[-96.082429,41.698159],[-96.090579,41.697425],[-96.105119,41.699917],[-96.111968,41.697773],[-96.117751,41.694221],[-96.120157,41.69115],[-96.121401,41.688522],[-96.121712,41.68299],[-96.121726,41.68274],[-96.120983,41.677861],[-96.11812,41.674399],[-96.114978,41.67122],[-96.111483,41.668548],[-96.099837,41.66103],[-96.097933,41.658682],[-96.095415,41.652736],[-96.095046,41.647365],[-96.097728,41.639633],[-96.100701,41.635507],[-96.114146,41.623975],[-96.116233,41.621574],[-96.11795,41.617356],[-96.118105,41.613495],[-96.117558,41.609999],[-96.11583,41.60576],[-96.113833,41.602277],[-96.109387,41.596871],[-96.104465,41.593169],[-96.101496,41.59158],[-96.088683,41.58752],[-96.085771,41.585746],[-96.083417,41.583339],[-96.081843,41.580407],[-96.081152,41.577289],[-96.081178,41.574274],[-96.082406,41.571229],[-96.084786,41.567831],[-96.09182,41.561086],[-96.093613,41.558271],[-96.095851,41.55088],[-96.096186,41.547192],[-96.09409,41.539265],[-96.089714,41.531778],[-96.08822,41.530595],[-96.080493,41.528199],[-96.07307,41.525052],[-96.067527,41.52034],[-96.063638,41.516162],[-96.057935,41.51149],[-96.05369,41.508859],[-96.048118,41.507271],[-96.040701,41.507076],[-96.038101,41.50799],[-96.036603,41.509047],[-96.034305,41.512853],[-96.030593,41.527292],[-96.028439,41.539616],[-96.027289,41.541081],[-96.023182,41.544364],[-96.019686,41.545743],[-96.016474,41.546085],[-96.010028,41.545533],[-96.005079,41.544004],[-96.001161,41.541146],[-95.999529,41.538679],[-95.993891,41.523412],[-95.99267,41.51729],[-95.992599,41.514174],[-95.992833,41.512002],[-95.993943,41.509761],[-95.996175,41.506959],[-95.997903,41.504789],[-96.007334,41.497631],[-96.015986,41.492659],[-96.019224,41.489296],[-96.019817,41.48803],[-96.019542,41.486617],[-96.016389,41.481556],[-96.011757,41.476212],[-96.008833,41.474039],[-96.004708,41.472342],[-95.991018,41.470374],[-95.982962,41.469778],[-95.973449,41.467318],[-95.965481,41.46351],[-95.962329,41.46281],[-95.957017,41.462814],[-95.946465,41.466166],[-95.941969,41.466262],[-95.936801,41.46519],[-95.932921,41.463798],[-95.925713,41.459382],[-95.922529,41.455766],[-95.920281,41.451566],[-95.919865,41.447922],[-95.920577,41.444302],[-95.921833,41.442062],[-95.923905,41.439742],[-95.930705,41.433894],[-95.932193,41.431914],[-95.933169,41.42943],[-95.932297,41.422123],[-95.929889,41.415155],[-95.929721,41.411331],[-95.930778,41.406179],[-95.93689,41.396387],[-95.93749,41.393095],[-95.936931,41.390979],[-95.93519,41.384395],[-95.92929,41.374896],[-95.92879,41.370096],[-95.93099,41.364696],[-95.93549,41.360596],[-95.94099,41.357496],[-95.952191,41.353496],[-95.954891,41.351796],[-95.956791,41.349196],[-95.956691,41.345496],[-95.953091,41.339896],[-95.946891,41.334096],[-95.939291,41.328897],[-95.92569,41.322197],[-95.92209,41.321097],[-95.91379,41.320197],[-95.89929,41.321197],[-95.88869,41.319097],[-95.883089,41.316697],[-95.878189,41.312497],[-95.874689,41.307097],[-95.871489,41.295797],[-95.872889,41.289497],[-95.87689,41.285097],[-95.88239,41.281397],[-95.90249,41.273398],[-95.912491,41.279498],[-95.90429,41.293497],[-95.90429,41.299597],[-95.90589,41.300897],[-95.920291,41.301097],[-95.927491,41.298397],[-95.929591,41.292297],[-95.929591,41.285097],[-95.928691,41.281398],[-95.913991,41.271398],[-95.918791,41.269698],[-95.920391,41.268398],[-95.921891,41.264598],[-95.921291,41.258498],[-95.911391,41.237998],[-95.910891,41.233998],[-95.910891,41.231798],[-95.912591,41.226998],[-95.915091,41.222998],[-95.924891,41.211198],[-95.927491,41.202198],[-95.92599,41.195698],[-95.923219,41.191046],[-95.92319,41.190998],[-95.91829,41.186698],[-95.91459,41.185098],[-95.90969,41.184398],[-95.864789,41.188298],[-95.856788,41.187098],[-95.850188,41.184798],[-95.844088,41.180598],[-95.841288,41.174998],[-95.841888,41.171098],[-95.846188,41.166698],[-95.852788,41.165398],[-95.865072,41.167802],[-95.867344,41.168734],[-95.86964,41.16883],[-95.871912,41.168122],[-95.876289,41.165146],[-95.880936,41.160269],[-95.881289,41.159898],[-95.883489,41.154898],[-95.883389,41.150898],[-95.882088,41.143998],[-95.878888,41.138098],[-95.868688,41.124698],[-95.865888,41.117898],[-95.86545,41.101266],[-95.863268,41.093765],[-95.862587,41.088399],[-95.863839,41.083507],[-95.865463,41.080367],[-95.870631,41.075231],[-95.878103,41.069587],[-95.881375,41.065203],[-95.882415,41.060411],[-95.881855,41.057211],[-95.879487,41.053299],[-95.869807,41.045199],[-95.861782,41.039427],[-95.860462,41.037887],[-95.859654,41.035695],[-95.859102,41.031599],[-95.859918,41.025403],[-95.865878,41.017403],[-95.868374,41.012703],[-95.869486,41.009399],[-95.869198,41.005951],[-95.867286,41.001599],[-95.863492,40.99734],[-95.860116,40.995242],[-95.852547,40.991738],[-95.844351,40.989524],[-95.838908,40.986484],[-95.833537,40.98266],[-95.830297,40.978332],[-95.829074,40.975688],[-95.828329,40.972378],[-95.829829,40.963857],[-95.837951,40.950618],[-95.840275,40.939942],[-95.839743,40.93278],[-95.837774,40.924712],[-95.836438,40.921642],[-95.833041,40.917243],[-95.830699,40.915004],[-95.818709,40.906818],[-95.814302,40.902936],[-95.813458,40.901693],[-95.810886,40.897907],[-95.809775,40.895447],[-95.809474,40.891228],[-95.810709,40.886681],[-95.812083,40.884239],[-95.815933,40.879846],[-95.81959,40.877439],[-95.824989,40.875],[-95.838735,40.872191],[-95.842521,40.870266],[-95.844073,40.869248],[-95.846938,40.865745],[-95.847785,40.864328],[-95.84859,40.861061],[-95.84849,40.858607],[-95.847084,40.854174],[-95.841309,40.845604],[-95.837186,40.835347],[-95.837303,40.831164],[-95.838601,40.826175],[-95.843921,40.817686],[-95.844852,40.815307],[-95.845342,40.811324],[-95.843745,40.803783],[-95.835815,40.79063],[-95.834523,40.787778],[-95.834215,40.783784],[-95.834156,40.783016],[-95.835232,40.779151],[-95.836903,40.776477],[-95.838879,40.774545],[-95.842824,40.771093],[-95.84662,40.768619],[-95.852776,40.765631],[-95.861695,40.762871],[-95.869982,40.759645],[-95.873335,40.757616],[-95.879027,40.753081],[-95.883643,40.747831],[-95.88669,40.742101],[-95.888697,40.736292],[-95.888907,40.731855],[-95.885349,40.721093],[-95.883178,40.717579],[-95.877015,40.714287],[-95.87528,40.71412],[-95.870481,40.71248],[-95.859378,40.708055],[-95.852615,40.702262],[-95.849828,40.698147],[-95.847931,40.694197],[-95.846034,40.682605],[-95.844827,40.679867],[-95.842801,40.677496],[-95.832177,40.6712],[-95.822913,40.66724],[-95.81415,40.66557],[-95.804307,40.664886],[-95.795489,40.662384],[-95.789485,40.659388],[-95.786568,40.657253],[-95.781909,40.653272],[-95.776251,40.647463],[-95.772832,40.642496],[-95.771325,40.639393],[-95.770442,40.635285],[-95.770083,40.624425],[-95.768926,40.621264],[-95.766823,40.61878],[-95.764412,40.61709],[-95.758045,40.613759],[-95.751271,40.609057],[-95.749685,40.606842],[-95.748626,40.603355],[-95.748858,40.599965],[-95.750053,40.597052],[-95.753148,40.59284],[-95.758895,40.588973],[-95.765645,40.585208],[-95.768527,40.583296],[-95.773549,40.578205],[-95.774704,40.573574],[-95.771776,40.566133],[-95.76503,40.556921],[-95.763833,40.553873],[-95.763366,40.550797],[-95.763624,40.548298],[-95.764696,40.545721],[-95.768412,40.540347],[-95.769281,40.536656],[-95.768693,40.534106],[-95.76692,40.531563],[-95.762857,40.528371],[-95.75711,40.52599],[-95.74868,40.524275],[-95.73725,40.52393],[-95.731179,40.525436],[-95.725214,40.527773],[-95.722444,40.528118],[-95.714291,40.527208],[-95.709974,40.523798],[-95.708591,40.521551],[-95.69721,40.528477],[-95.69505,40.533124],[-95.697281,40.536985],[-95.696673,40.545137],[-95.694881,40.55072],[-95.694147,40.556942],[-95.687109,40.560664],[-95.678718,40.56256],[-95.671754,40.562626],[-95.665486,40.556686],[-95.662097,40.549959],[-95.655848,40.546609],[-95.65341,40.541893],[-95.652262,40.538114],[-95.655674,40.523557],[-95.661687,40.517309],[-95.667981,40.51496],[-95.692083,40.508133],[-95.695604,40.506473],[-95.699969,40.505275],[-95.695945,40.499051],[-95.694726,40.493602],[-95.695247,40.486587],[-95.696206,40.482113],[-95.696756,40.478849],[-95.696365,40.475897],[-95.694651,40.471452],[-95.693133,40.469396],[-95.684363,40.463366],[-95.677174,40.460158],[-95.671742,40.456695],[-95.665413,40.451182],[-95.65819,40.44188],[-95.65563,40.434736],[-95.656288,40.428765],[-95.65831,40.424538],[-95.660721,40.418841],[-95.661463,40.415947],[-95.659134,40.40869],[-95.649418,40.396149],[-95.643934,40.386849],[-95.642147,40.378243],[-95.642679,40.375001],[-95.642414,40.369829],[-95.641027,40.366399],[-95.636991,40.36136],[-95.631481,40.35731],[-95.627124,40.3528],[-95.624815,40.349214],[-95.623728,40.346567],[-95.622704,40.340856],[-95.623182,40.338367],[-95.625204,40.334288],[-95.629936,40.330994],[-95.633807,40.329297],[-95.647931,40.325556],[-95.653729,40.322582],[-95.656612,40.319465],[-95.657764,40.315788],[-95.658025,40.3127],[-95.657328,40.310856],[-95.654294,40.307906],[-95.651507,40.306684],[-95.645329,40.305693],[-95.642262,40.306025],[-95.63631,40.307675],[-95.623213,40.312469],[-95.617931,40.313728],[-95.613479,40.314233],[-95.610439,40.31397],[-95.60511,40.312559],[-95.598657,40.309809],[-95.590165,40.303199],[-95.587371,40.301649],[-95.581787,40.29958],[-95.56814,40.299129],[-95.562157,40.297359],[-95.558732,40.295774],[-95.553292,40.291158],[-95.55162,40.288666],[-95.550966,40.285947],[-95.551488,40.281061],[-95.556275,40.270761],[-95.556325,40.267714],[-95.554817,40.26446],[-95.554324,40.263395],[-95.552473,40.261904],[-95.54716,40.259066],[-95.521925,40.24947],[-95.515455,40.248505],[-95.50026,40.249629],[-95.490333,40.248966],[-95.485994,40.247825],[-95.482778,40.246273],[-95.477501,40.24272],[-95.472548,40.236078],[-95.470349,40.230819],[-95.469718,40.227908],[-95.470061,40.221507],[-95.471393,40.217333],[-95.473469,40.213482],[-95.477948,40.208643],[-95.482319,40.200667],[-95.482757,40.197346],[-95.48254,40.192283],[-95.48102,40.188524],[-95.479193,40.185652],[-95.476301,40.181988],[-95.471054,40.17691],[-95.460746,40.169173],[-95.454919,40.166577],[-95.442818,40.163261],[-95.440694,40.162282],[-95.436348,40.15872],[-95.434817,40.156017],[-95.433822,40.152935],[-95.433374,40.146114],[-95.432165,40.141025],[-95.431022,40.138411],[-95.428749,40.135577],[-95.42478,40.132765],[-95.419186,40.130586],[-95.409481,40.130052],[-95.404395,40.129018],[-95.398667,40.126419],[-95.395369,40.122811],[-95.393347,40.119212],[-95.39284,40.115887],[-95.393062,40.111175],[-95.394216,40.108263],[-95.397146,40.105183],[-95.400139,40.103238],[-95.407591,40.09803],[-95.410643,40.091531],[-95.409243,40.084166],[-95.408455,40.079158],[-95.409856,40.07432],[-95.414734,40.06982],[-95.418345,40.066509],[-95.420643,40.062599],[-95.42164,40.058952],[-95.41932,40.048442],[-95.416824,40.043235],[-95.413588,40.038424],[-95.40726,40.033112],[-95.402665,40.030567],[-95.395858,40.028038],[-95.391527,40.027058],[-95.387195,40.02677],[-95.382957,40.027112],[-95.363983,40.031498],[-95.356876,40.031522],[-95.348777,40.029297],[-95.346573,40.028272],[-95.336242,40.019104],[-95.328501,40.015657],[-95.318015,40.013216],[-95.315271,40.01207],[-95.312211,40.009395],[-95.311163,40.007806],[-95.308469,40.002194],[-95.30829,39.999998],[-95.339896,39.999999],[-95.375257,40.0],[-95.784575,40.000463],[-95.788024,40.000452],[-95.788111,40.000452],[-95.882524,40.00047],[-95.958139,40.000521],[-96.010678,40.000638],[-96.01068,40.000638],[-96.02409,40.000719],[-96.051691,40.000727],[-96.081395,40.000603],[-96.089781,40.000519],[-96.125788,40.000467],[-96.125937,40.000432],[-96.147167,40.000479],[-96.154246,40.00045],[-96.154365,40.000495],[-96.220171,40.00072],[-96.223839,40.000729],[-96.239172,40.000691],[-96.239208,40.000691],[-96.301066,40.000632],[-96.304555,40.000629],[-96.46364,40.000967],[-96.463713,40.000968],[-96.467536,40.001035],[-96.469945,40.000966],[-96.527111,40.001031],[-96.538977,40.000851],[-96.557863,40.000968],[-96.570854,40.001091],[-96.580852,40.000966],[-96.604884,40.000891],[-96.610349,40.000881],[-96.622401,40.001158],[-96.805768,40.001371],[-96.873812,40.00145],[-96.875057,40.001448],[-96.878253,40.001466],[-96.880459,40.001448],[-96.916093,40.001506],[-96.916407,40.001506],[-97.009165,40.001463],[-97.030803,40.001342],[-97.049663,40.001323],[-97.137866,40.001814],[-97.142448,40.001495],[-97.181775,40.00155],[-97.20019,40.001549],[-97.20231,40.001442],[-97.24508,40.001467],[-97.245169,40.001513],[-97.350272,40.001976],[-97.350896,40.00193],[-97.369103,40.00206],[-97.369199,40.00206],[-97.369199,40.00206],[-97.415833,40.002001],[-97.417826,40.002024],[-97.425443,40.002048],[-97.444662,40.001958],[-97.463285,40.002047],[-97.510264,40.001835],[-97.511381,40.001899],[-97.515308,40.001901],[-97.767746,40.001994],[-97.769204,40.001995],[-97.770776,40.001977],[-97.777155,40.002167],[-97.819426,40.001958],[-97.821496,40.002002],[-97.821598,40.002004],[-97.838379,40.00191],[-97.85745,40.002065],[-97.876261,40.002102],[-97.931811,40.00205],[-97.931826,40.00205],[-97.972186,40.002114],[-98.010157,40.002153],[-98.014412,40.002223],[-98.047469,40.002186],[-98.050057,40.002278],[-98.068701,40.002355],[-98.076034,40.002301],[-98.099659,40.002227],[-98.142031,40.002452],[-98.172269,40.002438],[-98.179315,40.002483],[-98.193483,40.002614],[-98.250008,40.002307],[-98.268218,40.00249],[-98.274015,40.002516],[-98.274017,40.002516],[-98.490533,40.002323],[-98.504455,40.002329],[-98.523053,40.002336],[-98.543186,40.002285],[-98.560578,40.002274],[-98.575219,40.00248],[-98.593342,40.002476],[-98.613755,40.0024],[-98.64071,40.002493],[-98.652494,40.002245],[-98.653833,40.002269],[-98.669724,40.00241],[-98.672819,40.002364],[-98.690287,40.002548],[-98.691443,40.002505],[-98.693096,40.002373],[-98.710404,40.00218],[-98.726295,40.002222],[-98.726373,40.002222],[-98.774941,40.002336],[-98.777203,40.002359],[-98.82059,40.002319],[-98.834456,40.002363],[-98.934792,40.002205],[-98.960919,40.002271],[-98.961009,40.002317],[-98.971721,40.002268],[-98.972287,40.002245],[-98.992135,40.002192],[-99.018701,40.002333],[-99.020338,40.002264],[-99.067022,40.00217],[-99.085597,40.002133],[-99.11351,40.002193],[-99.123033,40.002165],[-99.169816,40.001925],[-99.178965,40.001977],[-99.179133,40.001977],[-99.186962,40.001977],[-99.188905,40.002023],[-99.197592,40.002033],[-99.216376,40.002016],[-99.25037,40.001957],[-99.254012,40.002074],[-99.282967,40.001879],[-99.286656,40.002017],[-99.290703,40.001949],[-99.403389,40.001969],[-99.412645,40.001868],[-99.423565,40.00227],[-99.480728,40.001942],[-99.493465,40.001937],[-99.49766,40.001912],[-99.498999,40.001957],[-99.501792,40.002026],[-99.625324,40.001866],[-99.62598,40.001865],[-99.628255,40.001866],[-99.628346,40.001866],[-99.719639,40.001808],[-99.731959,40.001827],[-99.746628,40.00182],[-99.756835,40.001342],[-99.764214,40.001551],[-99.772121,40.001804],[-99.77564,40.001647],[-99.813401,40.0014],[-99.906658,40.001512],[-99.930433,40.001516],[-99.944417,40.001584],[-99.948167,40.001813],[-99.986611,40.00155],[-99.990926,40.001503],[-100.177795,40.001593],[-100.177823,40.001593],[-100.188181,40.001541],[-100.190323,40.001586],[-100.19359,40.001573],[-100.193597,40.001573],[-100.196959,40.001494],[-100.215406,40.001629],[-100.229479,40.001693],[-100.231652,40.001623],[-100.39008,40.001809],[-100.439081,40.001774],[-100.447072,40.001795],[-100.468773,40.001724],[-100.475854,40.001768],[-100.477018,40.001752],[-100.487159,40.001767],[-100.511065,40.00184],[-100.551886,40.001889],[-100.567238,40.001889],[-100.594757,40.001977],[-100.600945,40.001906],[-100.645445,40.001883],[-100.66023,40.002162],[-100.683435,40.002234],[-100.721128,40.002069],[-100.729904,40.002111],[-100.733296,40.00227],[-100.738826,40.002228],[-100.752183,40.002128],[-100.75883,40.002302],[-100.937427,40.002145],[-101.027686,40.002256],[-101.060317,40.002307],[-101.130907,40.002427],[-101.168704,40.002547],[-101.178805,40.002468],[-101.192219,40.002491],[-101.215033,40.002555],[-101.248673,40.002543],[-101.286555,40.002559],[-101.293991,40.002559],[-101.324036,40.002696],[-101.325514,40.002687],[-101.342859,40.00258],[-101.374326,40.002521],[-101.409953,40.002354],[-101.411043,40.002365],[-101.417209,40.002424],[-101.542273,40.002609],[-101.625809,40.002711],[-101.627071,40.00262],[-101.804862,40.002752],[-101.807687,40.002798],[-101.832161,40.002933],[-101.841025,40.002784],[-101.904176,40.003162],[-101.916696,40.003142],[-102.051744,40.003078],[-102.052001,40.148359],[-102.051909,40.162674],[-102.051894,40.229193],[-102.051922,40.235344],[-102.051309,40.338381],[-102.051553,40.349214],[-102.051798,40.360069],[-102.051572,40.39308],[-102.05184,40.396396],[-102.051465,40.440008],[-102.051519,40.520094],[-102.051725,40.537839],[-102.051398,40.697542],[-102.051292,40.749586],[-102.051292,40.749591],[-102.051614,41.002377],[-102.051718,41.002377],[-102.070598,41.002423],[-102.124972,41.002338],[-102.19121,41.002326],[-102.209361,41.002442],[-102.2122,41.002462],[-102.231931,41.002327],[-102.267812,41.002383],[-102.2721,41.002245],[-102.291354,41.002207],[-102.292553,41.002207],[-102.292622,41.00223],[-102.292833,41.002207],[-102.364066,41.002174],[-102.379593,41.002301],[-102.469223,41.002424],[-102.470537,41.002382],[-102.487955,41.002445],[-102.556789,41.002219],[-102.566048,41.0022],[-102.575496,41.0022],[-102.575738,41.002268],[-102.578696,41.002291],[-102.621033,41.002597],[-102.653463,41.002332],[-102.739624,41.00223],[-102.754617,41.002361],[-102.766723,41.002275],[-102.773546,41.002414],[-102.82728,41.002143],[-102.830303,41.002351],[-102.846455,41.002256],[-102.849263,41.002301],[-102.865784,41.001988],[-102.867822,41.002183],[-102.885746,41.002131],[-102.887407,41.002178],[-102.904796,41.002207],[-102.906547,41.002276],[-102.924029,41.002142],[-102.925568,41.00228],[-102.943109,41.002051],[-102.94483,41.002303],[-102.959624,41.002095],[-102.960706,41.002059],[-102.962522,41.002072],[-102.963669,41.002186],[-102.981483,41.002112],[-102.98269,41.002157],[-103.000102,41.0024],[-103.002026,41.002486],[-103.038704,41.002251],[-103.043444,41.002344],[-103.057998,41.002368],[-103.059538,41.002368],[-103.076536,41.002253],[-103.077804,41.002298],[-103.362979,41.001844],[-103.365314,41.001846],[-103.382492,41.002232],[-103.396991,41.002558],[-103.421925,41.001969],[-103.421975,41.002007],[-103.486697,41.001914],[-103.497447,41.001635],[-103.574522,41.001721],[-103.750498,41.002054],[-103.858449,41.001681],[-103.877967,41.001673],[-103.896207,41.00175],[-103.906324,41.001387],[-103.953525,41.001596],[-103.971373,41.001524],[-103.972642,41.001615],[-104.018223,41.001617],[-104.023383,41.001887],[-104.039238,41.001502],[-104.053249,41.001406]]]}}]} diff --git a/Where/RegionKit/Sources/Resources/regions/us-NH.geojson b/Where/RegionKit/Sources/Resources/regions/us-NH.geojson new file mode 100644 index 00000000..44bf1da4 --- /dev/null +++ b/Where/RegionKit/Sources/Resources/regions/us-NH.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"region":"us-NH","name":"New Hampshire"},"geometry":{"type":"Polygon","coordinates":[[[-72.4521,43.161414],[-72.451868,43.170174],[-72.452556,43.172117],[-72.444904,43.177969],[-72.443405,43.179729],[-72.443749,43.182221],[-72.449435,43.18917],[-72.45028,43.192485],[-72.438969,43.201035],[-72.437719,43.20275],[-72.438594,43.209013],[-72.440563,43.215254],[-72.4405,43.219049],[-72.437656,43.225266],[-72.434466,43.230432],[-72.433796,43.232999],[-72.433684,43.233427],[-72.434216,43.234958],[-72.436654,43.238319],[-72.438937,43.24424],[-72.438693,43.252905],[-72.436378,43.257454],[-72.435221,43.258483],[-72.421583,43.263442],[-72.41545,43.271374],[-72.407842,43.282892],[-72.401666,43.303395],[-72.395462,43.312994],[-72.395805,43.314617],[-72.397619,43.317064],[-72.402532,43.32038],[-72.408696,43.327674],[-72.410197,43.330395],[-72.410353,43.331675],[-72.409037,43.334395],[-72.400981,43.345775],[-72.399289,43.347581],[-72.395403,43.350414],[-72.39092,43.354984],[-72.390103,43.356926],[-72.39217,43.357865],[-72.400441,43.357685],[-72.403949,43.358098],[-72.413377,43.362741],[-72.414692,43.364273],[-72.415099,43.365896],[-72.415978,43.376531],[-72.415381,43.380211],[-72.413154,43.384302],[-72.405253,43.389992],[-72.403811,43.391935],[-72.400131,43.410997],[-72.399972,43.415249],[-72.395916,43.430974],[-72.395659,43.438541],[-72.393992,43.444666],[-72.391196,43.449305],[-72.390567,43.451225],[-72.392628,43.465078],[-72.3925,43.467364],[-72.391526,43.46878],[-72.384491,43.474195],[-72.382951,43.476],[-72.381723,43.480091],[-72.380428,43.488525],[-72.380362,43.491634],[-72.380894,43.493394],[-72.384773,43.500259],[-72.389556,43.503899],[-72.396305,43.508062],[-72.398376,43.510829],[-72.398563,43.513435],[-72.395825,43.52056],[-72.395949,43.52388],[-72.394218,43.5274],[-72.3907,43.527261],[-72.389097,43.528266],[-72.38331,43.53519],[-72.380383,43.54088],[-72.381187,43.554915],[-72.382783,43.562459],[-72.382625,43.564127],[-72.37944,43.574069],[-72.373126,43.579419],[-72.363916,43.583652],[-72.349926,43.587726],[-72.332382,43.599364],[-72.32962,43.600201],[-72.328514,43.600805],[-72.327665,43.602679],[-72.328232,43.606839],[-72.329522,43.608393],[-72.3327,43.610313],[-72.334745,43.614519],[-72.334401,43.61925],[-72.33236,43.62507],[-72.328966,43.626991],[-72.327236,43.630534],[-72.327362,43.631174],[-72.329471,43.632843],[-72.32966,43.634648],[-72.329126,43.635563],[-72.327395,43.636774],[-72.322517,43.638901],[-72.315247,43.641164],[-72.314083,43.64281],[-72.313863,43.646558],[-72.315059,43.649415],[-72.31402,43.656158],[-72.312887,43.658444],[-72.310841,43.659724],[-72.305771,43.666535],[-72.304322,43.669507],[-72.303408,43.674055],[-72.303092,43.678078],[-72.304351,43.681141],[-72.30602,43.683061],[-72.305326,43.69577],[-72.302867,43.702718],[-72.299715,43.706558],[-72.294894,43.709003],[-72.292215,43.711333],[-72.28695,43.717252],[-72.284805,43.72036],[-72.279855,43.724633],[-72.276072,43.727054],[-72.27118,43.734138],[-72.264245,43.734158],[-72.245068,43.743093],[-72.232713,43.748286],[-72.223645,43.757842],[-72.222069,43.759831],[-72.220116,43.763626],[-72.218099,43.765729],[-72.216491,43.766507],[-72.210815,43.767696],[-72.207535,43.769274],[-72.205193,43.770952],[-72.20476,43.771263],[-72.205521,43.782279],[-72.2053,43.784474],[-72.20407,43.786097],[-72.197036,43.790006],[-72.195552,43.791492],[-72.193184,43.794697],[-72.190754,43.800807],[-72.184847,43.804698],[-72.183333,43.808177],[-72.184184,43.812524],[-72.186424,43.815857],[-72.18857,43.821153],[-72.188255,43.822888],[-72.186238,43.826931],[-72.183337,43.830699],[-72.182203,43.834032],[-72.182864,43.845109],[-72.187379,43.853612],[-72.187916,43.856126],[-72.184788,43.863393],[-72.182956,43.865335],[-72.179386,43.866181],[-72.174774,43.866386],[-72.167476,43.86915],[-72.16978,43.873425],[-72.171904,43.876149],[-72.173576,43.87967],[-72.172785,43.883716],[-72.171648,43.885361],[-72.170604,43.886388],[-72.167224,43.886113],[-72.160819,43.887223],[-72.159216,43.888313],[-72.158585,43.892762],[-72.155724,43.89712],[-72.151324,43.901704],[-72.145041,43.905288],[-72.135117,43.910024],[-72.121002,43.918956],[-72.11919,43.920952],[-72.118013,43.923292],[-72.116767,43.933923],[-72.116766,43.935278],[-72.118985,43.943225],[-72.118698,43.94536],[-72.117839,43.946828],[-72.115268,43.947629],[-72.110872,43.947654],[-72.105875,43.94937],[-72.104421,43.950536],[-72.098689,43.95766],[-72.098955,43.958879],[-72.100894,43.960851],[-72.100543,43.962478],[-72.098563,43.963833],[-72.090357,43.965409],[-72.090214,43.965814],[-72.091104,43.966443],[-72.096161,43.968132],[-72.104972,43.96995],[-72.107042,43.969513],[-72.110945,43.966959],[-72.114273,43.967513],[-72.114726,43.968332],[-72.114702,43.969478],[-72.113078,43.97279],[-72.11249,43.975654],[-72.111756,43.984943],[-72.112813,43.98802],[-72.116706,43.991954],[-72.116985,43.99448],[-72.109019,44.000535],[-72.103765,44.002837],[-72.103576,44.004231],[-72.104941,44.009395],[-72.105292,44.012663],[-72.102475,44.014882],[-72.098897,44.015477],[-72.095247,44.01358],[-72.093384,44.01045],[-72.093257,44.009376],[-72.09123,44.009125],[-72.090059,44.009903],[-72.089807,44.011274],[-72.090504,44.012736],[-72.095193,44.016666],[-72.095669,44.019683],[-72.0951,44.021831],[-72.094056,44.023179],[-72.09203,44.024459],[-72.090478,44.024299],[-72.084871,44.021308],[-72.082432,44.022154],[-72.081673,44.023638],[-72.081864,44.026952],[-72.081357,44.028529],[-72.079996,44.029764],[-72.075648,44.031654],[-72.075004,44.032789],[-72.075486,44.034614],[-72.079397,44.039531],[-72.079595,44.041429],[-72.078989,44.042886],[-72.077372,44.044591],[-72.074881,44.045892],[-72.066422,44.049299],[-72.06215,44.049931],[-72.062713,44.051618],[-72.068405,44.054021],[-72.06915,44.054817],[-72.067612,44.058034],[-72.065415,44.058344],[-72.058863,44.057921],[-72.057173,44.058646],[-72.056341,44.059582],[-72.053482,44.06473],[-72.048289,44.069136],[-72.04857,44.071359],[-72.051144,44.07385],[-72.051602,44.075193],[-72.051166,44.075826],[-72.042088,44.077008],[-72.040912,44.076659],[-72.039076,44.07452],[-72.036641,44.073999],[-72.03345,44.074531],[-72.031898,44.076241],[-72.032009,44.077174],[-72.033739,44.07883],[-72.039783,44.081271],[-72.047305,44.085382],[-72.048781,44.087141],[-72.047684,44.088873],[-72.046235,44.089538],[-72.040012,44.088762],[-72.036291,44.089236],[-72.03429,44.090138],[-72.032894,44.09144],[-72.031878,44.093359],[-72.031019,44.097975],[-72.03124,44.100101],[-72.032983,44.101655],[-72.036883,44.103119],[-72.039674,44.103371],[-72.040911,44.102686],[-72.042592,44.100744],[-72.042943,44.097636],[-72.043482,44.096996],[-72.044909,44.096402],[-72.048334,44.096905],[-72.050997,44.098848],[-72.052391,44.101088],[-72.054831,44.110137],[-72.054675,44.112147],[-72.052342,44.119891],[-72.04643,44.123911],[-72.041948,44.125653],[-72.040728,44.125668],[-72.038839,44.124628],[-72.037506,44.124708],[-72.033703,44.131541],[-72.034242,44.132524],[-72.037859,44.133782],[-72.041983,44.137165],[-72.042867,44.151288],[-72.042708,44.15227],[-72.040082,44.155749],[-72.040167,44.157023],[-72.040719,44.157966],[-72.042387,44.160817],[-72.047593,44.161801],[-72.053021,44.167903],[-72.057496,44.179444],[-72.061338,44.184951],[-72.066166,44.189773],[-72.064577,44.196949],[-72.063561,44.198457],[-72.060067,44.200446],[-72.058987,44.202114],[-72.058066,44.206067],[-72.058605,44.208215],[-72.053233,44.216876],[-72.052662,44.218841],[-72.0539,44.222703],[-72.053582,44.22604],[-72.050656,44.233581],[-72.047889,44.238493],[-72.04846,44.241212],[-72.050112,44.244046],[-72.05399,44.246926],[-72.059782,44.256018],[-72.061174,44.263377],[-72.060378,44.264951],[-72.059832,44.264984],[-72.058969,44.265911],[-72.058475,44.267886],[-72.05874,44.270005],[-72.060846,44.269972],[-72.064544,44.267997],[-72.066464,44.268331],[-72.067774,44.270976],[-72.065434,44.277235],[-72.05888,44.28624],[-72.053355,44.290501],[-72.046302,44.291983],[-72.039004,44.296463],[-72.03703,44.297834],[-72.033465,44.301878],[-72.032541,44.303752],[-72.032317,44.306677],[-72.032341,44.315752],[-72.033806,44.317349],[-72.033136,44.320365],[-72.029061,44.322398],[-72.025783,44.322054],[-72.01913,44.320383],[-72.014543,44.321032],[-72.009977,44.321951],[-72.002314,44.324871],[-71.988306,44.329768],[-71.986484,44.331218],[-71.984617,44.336243],[-71.98112,44.3375],[-71.963133,44.336556],[-71.958119,44.337544],[-71.945163,44.337744],[-71.939049,44.335844],[-71.935395,44.33577],[-71.92911,44.337577],[-71.925088,44.342024],[-71.917434,44.346535],[-71.906909,44.348284],[-71.902332,44.347499],[-71.881895,44.340209],[-71.875863,44.33737],[-71.872472,44.336628],[-71.86991,44.336962],[-71.861941,44.340109],[-71.852628,44.340873],[-71.844319,44.344204],[-71.837647,44.347783],[-71.833261,44.350136],[-71.826246,44.352006],[-71.818838,44.352939],[-71.814351,44.354541],[-71.812902,44.355547],[-71.812206,44.357356],[-71.812473,44.358477],[-71.814991,44.363686],[-71.816157,44.367559],[-71.81549,44.368836],[-71.812832,44.370448],[-71.812235,44.371492],[-71.812424,44.372532],[-71.815251,44.374594],[-71.815773,44.375464],[-71.814388,44.381932],[-71.81313,44.382801],[-71.808828,44.383862],[-71.803461,44.383335],[-71.800316,44.384276],[-71.799899,44.385951],[-71.803489,44.390384],[-71.803488,44.39189],[-71.802353,44.39338],[-71.793924,44.399271],[-71.790688,44.40026],[-71.778613,44.399799],[-71.775399,44.401126],[-71.772801,44.403097],[-71.767888,44.405445],[-71.764977,44.406587],[-71.764734,44.406623],[-71.761966,44.407027],[-71.756091,44.406401],[-71.75434,44.405577],[-71.749533,44.401955],[-71.745011,44.401359],[-71.743104,44.401657],[-71.742308,44.402366],[-71.739921,44.406778],[-71.737836,44.408921],[-71.735923,44.410062],[-71.73152,44.411015],[-71.726199,44.411385],[-71.715087,44.41049],[-71.708041,44.411977],[-71.699434,44.416069],[-71.69092,44.421234],[-71.68585,44.423405],[-71.67995,44.427908],[-71.679158,44.432174],[-71.679933,44.434062],[-71.679263,44.435018],[-71.677384,44.435702],[-71.668944,44.436523],[-71.664191,44.438351],[-71.66183,44.440293],[-71.659021,44.444932],[-71.657313,44.454003],[-71.653348,44.460499],[-71.65232,44.461117],[-71.645068,44.460545],[-71.642851,44.461734],[-71.640404,44.464186],[-71.640847,44.465935],[-71.646551,44.468869],[-71.647864,44.469976],[-71.648178,44.472023],[-71.647693,44.473125],[-71.64589,44.475141],[-71.643111,44.476649],[-71.639312,44.477836],[-71.632795,44.48389],[-71.631007,44.484323],[-71.627655,44.484207],[-71.625676,44.483201],[-71.625019,44.481784],[-71.622089,44.481387],[-71.619624,44.484411],[-71.617614,44.485715],[-71.615923,44.485944],[-71.609568,44.484348],[-71.59948,44.486455],[-71.597917,44.488375],[-71.595484,44.494424],[-71.595027,44.498669],[-71.594303,44.500749],[-71.591917,44.500975],[-71.590256,44.500057],[-71.589623,44.499371],[-71.589622,44.498525],[-71.586972,44.498526],[-71.585881,44.500057],[-71.586648,44.502873],[-71.58387,44.503217],[-71.579974,44.501778],[-71.57876,44.501915],[-71.577643,44.502692],[-71.577068,44.504041],[-71.577771,44.504886],[-71.583233,44.508268],[-71.584959,44.510141],[-71.58595,44.513432],[-71.586909,44.514666],[-71.592117,44.517773],[-71.593971,44.519738],[-71.594259,44.52168],[-71.592855,44.523006],[-71.587104,44.522436],[-71.585731,44.522665],[-71.582505,44.524403],[-71.576884,44.530323],[-71.574456,44.53366],[-71.573019,44.536312],[-71.573083,44.53798],[-71.575193,44.540859],[-71.588076,44.54785],[-71.596804,44.553424],[-71.598116,44.555412],[-71.597797,44.557172],[-71.596137,44.560898],[-71.593923,44.563813],[-71.592091,44.565118],[-71.59017,44.565694],[-71.575519,44.564775],[-71.569599,44.562777],[-71.563399,44.563218],[-71.559846,44.564119],[-71.558565,44.565572],[-71.558985,44.568779],[-71.557972,44.570451],[-71.556497,44.570777],[-71.552629,44.569543],[-71.55167,44.569657],[-71.549655,44.570708],[-71.548728,44.571873],[-71.548952,44.573084],[-71.5533,44.576924],[-71.553755,44.578406],[-71.553699,44.579628],[-71.5532,44.580683],[-71.551145,44.580405],[-71.54927,44.579164],[-71.547448,44.578547],[-71.544922,44.579278],[-71.540123,44.582522],[-71.537724,44.584785],[-71.536251,44.588441],[-71.540601,44.590453],[-71.549268,44.593174],[-71.553447,44.593451],[-71.554614,44.595784],[-71.554449,44.598408],[-71.556014,44.601383],[-71.555781,44.603483],[-71.554833,44.605172],[-71.553873,44.607069],[-71.554097,44.609583],[-71.55656,44.616988],[-71.55576,44.624119],[-71.554666,44.625387],[-71.553898,44.62541],[-71.553156,44.626645],[-71.551722,44.627598],[-71.554634,44.632197],[-71.562124,44.63658],[-71.562636,44.637266],[-71.562636,44.639505],[-71.558859,44.640122],[-71.558026,44.641791],[-71.558571,44.644373],[-71.561772,44.650224],[-71.564411,44.652827],[-71.566144,44.653863],[-71.567645,44.65356],[-71.568677,44.651537],[-71.570235,44.650483],[-71.572163,44.650373],[-71.575145,44.650612],[-71.576079,44.652012],[-71.576312,44.653179],[-71.57571,44.654574],[-71.576013,44.655691],[-71.582965,44.656621],[-71.584848,44.657816],[-71.586578,44.659478],[-71.586578,44.661111],[-71.585246,44.663523],[-71.584574,44.665351],[-71.585645,44.667644],[-71.585645,44.669277],[-71.584478,44.670211],[-71.582527,44.672253],[-71.581983,44.673533],[-71.583009,44.674836],[-71.587365,44.674926],[-71.590024,44.675543],[-71.596304,44.679083],[-71.5964,44.679677],[-71.594671,44.681643],[-71.594224,44.683815],[-71.596437,44.687059],[-71.598042,44.692818],[-71.596858,44.694921],[-71.59436,44.695996],[-71.594136,44.696932],[-71.598656,44.698005],[-71.600162,44.698919],[-71.600772,44.699901],[-71.600772,44.700815],[-71.599205,44.703878],[-71.59975,44.705318],[-71.604912,44.70815],[-71.613094,44.718933],[-71.618355,44.72261],[-71.618516,44.723913],[-71.617431,44.72805],[-71.617656,44.728918],[-71.619067,44.729283],[-71.622593,44.727773],[-71.623266,44.727795],[-71.624922,44.729032],[-71.625611,44.730312],[-71.625638,44.735065],[-71.625059,44.737099],[-71.62518,44.743978],[-71.626909,44.747224],[-71.631109,44.748689],[-71.631967,44.750333],[-71.631883,44.752463],[-71.631255,44.753253],[-71.623924,44.755135],[-71.617941,44.755883],[-71.614238,44.758664],[-71.614267,44.760622],[-71.611767,44.764345],[-71.608234,44.765658],[-71.604615,44.767738],[-71.601471,44.772067],[-71.596035,44.775422],[-71.595913,44.776272],[-71.59668,44.777416],[-71.596949,44.778987],[-71.592966,44.782776],[-71.584392,44.785733],[-71.580005,44.78548],[-71.578938,44.78607],[-71.573247,44.791882],[-71.571706,44.79483],[-71.573129,44.797947],[-71.570402,44.805276],[-71.569098,44.807044],[-71.569216,44.808813],[-71.572864,44.810383],[-71.575139,44.813565],[-71.5755,44.816058],[-71.574314,44.818079],[-71.567907,44.823832],[-71.565146,44.824678],[-71.56476,44.823901],[-71.563701,44.823901],[-71.562256,44.824632],[-71.557672,44.834421],[-71.553712,44.836065],[-71.552218,44.837775],[-71.552005,44.839208],[-71.552654,44.842049],[-71.555036,44.845733],[-71.55675,44.846862],[-71.556805,44.848808],[-71.5556,44.850547],[-71.553656,44.852123],[-71.548345,44.85553],[-71.548377,44.857016],[-71.550304,44.859552],[-71.550176,44.861609],[-71.549533,44.862592],[-71.545901,44.866134],[-71.540116,44.868625],[-71.534588,44.869698],[-71.529154,44.873559],[-71.528889,44.876928],[-71.528342,44.877819],[-71.526638,44.879098],[-71.522393,44.880811],[-71.512292,44.890246],[-71.511712,44.891571],[-71.51409,44.893149],[-71.51435,44.893964],[-71.51387,44.894648],[-71.508642,44.897703],[-71.502473,44.90272],[-71.501088,44.904433],[-71.499528,44.904774],[-71.496968,44.904225],[-71.495844,44.90498],[-71.49392,44.910923],[-71.494403,44.911837],[-71.500788,44.914535],[-71.504483,44.919062],[-71.509207,44.923429],[-71.515189,44.927317],[-71.516949,44.939704],[-71.516144,44.940846],[-71.515498,44.94352],[-71.516814,44.947588],[-71.514843,44.958741],[-71.516223,44.964569],[-71.52237,44.966308],[-71.527163,44.973668],[-71.531605,44.976023],[-71.537784,44.984298],[-71.538592,44.988182],[-71.53698,44.994177],[-71.530091,44.999656],[-71.525016,45.001881],[-71.520022,45.002291],[-71.514609,45.003957],[-71.507767,45.00817],[-71.505,45.008151],[-71.501055,45.006742],[-71.497412,45.003878],[-71.487565,45.000936],[-71.479611,45.002905],[-71.477907,45.007453],[-71.476168,45.009054],[-71.473269,45.010586],[-71.466247,45.011959],[-71.464555,45.013637],[-71.502487,45.013367],[-71.500069,45.014212],[-71.500164,45.015377],[-71.500969,45.01604],[-71.499945,45.026323],[-71.494009,45.034345],[-71.491148,45.041774],[-71.491085,45.043671],[-71.49315,45.045772],[-71.497179,45.044582],[-71.499527,45.044672],[-71.500874,45.04511],[-71.505222,45.048791],[-71.505091,45.051465],[-71.504542,45.052379],[-71.502768,45.05263],[-71.500545,45.051943],[-71.497738,45.054751],[-71.496105,45.065082],[-71.498399,45.069629],[-71.497917,45.070589],[-71.497304,45.070544],[-71.496098,45.069235],[-71.495463,45.069151],[-71.489145,45.072308],[-71.489146,45.073565],[-71.486345,45.078503],[-71.482862,45.079144],[-71.480219,45.081316],[-71.479929,45.082139],[-71.480897,45.08303],[-71.480769,45.083556],[-71.475286,45.084426],[-71.471382,45.084199],[-71.467447,45.086851],[-71.464837,45.093023],[-71.462063,45.093526],[-71.459999,45.095058],[-71.458323,45.098807],[-71.455452,45.101458],[-71.452451,45.102282],[-71.449257,45.104522],[-71.448355,45.107882],[-71.448678,45.109001],[-71.445613,45.113367],[-71.440577,45.114464],[-71.432444,45.120453],[-71.428828,45.123881],[-71.427208,45.127364],[-71.426755,45.129672],[-71.433083,45.137899],[-71.435795,45.139659],[-71.437216,45.142333],[-71.433179,45.149166],[-71.429981,45.151474],[-71.427688,45.152251],[-71.42675,45.153257],[-71.424004,45.15929],[-71.423616,45.161096],[-71.424616,45.165872],[-71.422031,45.167495],[-71.419058,45.170488],[-71.416181,45.177344],[-71.415468,45.183309],[-71.414853,45.184908],[-71.412946,45.186279],[-71.408777,45.18797],[-71.405346,45.196037],[-71.405636,45.198139],[-71.39781,45.203553],[-71.398002,45.205953],[-71.3991,45.208628],[-71.403267,45.215348],[-71.407405,45.216812],[-71.409119,45.216606],[-71.415553,45.218001],[-71.41607,45.218322],[-71.416167,45.219533],[-71.417233,45.221293],[-71.421372,45.224036],[-71.431753,45.228743],[-71.438545,45.232765],[-71.440583,45.234982],[-71.44288,45.234799],[-71.443882,45.235462],[-71.443883,45.237061],[-71.443365,45.237724],[-71.442298,45.238547],[-71.438546,45.239004],[-71.433014,45.237656],[-71.430394,45.236125],[-71.429326,45.234228],[-71.420335,45.232719],[-71.418556,45.233839],[-71.417132,45.235575],[-71.411924,45.23882],[-71.406973,45.241516],[-71.402638,45.242589],[-71.394422,45.241216],[-71.391901,45.237216],[-71.389412,45.235021],[-71.385629,45.233214],[-71.384917,45.233351],[-71.38317,45.234904],[-71.380158,45.238857],[-71.379833,45.240616],[-71.37763,45.244203],[-71.376691,45.244911],[-71.37194,45.246349],[-71.368381,45.246579],[-71.363013,45.248205],[-71.359224,45.250912],[-71.357253,45.253336],[-71.356736,45.254776],[-71.356835,45.257175],[-71.359558,45.262682],[-71.362245,45.264738],[-71.363218,45.266429],[-71.362831,45.267617],[-71.360664,45.269835],[-71.354999,45.268626],[-71.353446,45.268695],[-71.351666,45.269199],[-71.347622,45.272125],[-71.344029,45.271167],[-71.336392,45.273066],[-71.333965,45.275306],[-71.333674,45.276769],[-71.331733,45.279969],[-71.328464,45.281135],[-71.320922,45.282324],[-71.318397,45.284655],[-71.314318,45.287033],[-71.309008,45.287238],[-71.306872,45.288861],[-71.304896,45.292449],[-71.301107,45.296563],[-71.296509,45.29919],[-71.284396,45.302434],[-71.283684,45.301977],[-71.282552,45.299279],[-71.282747,45.297497],[-71.28074,45.295188],[-71.279219,45.294982],[-71.27232,45.296694],[-71.266557,45.294589],[-71.264939,45.293446],[-71.266754,45.29123],[-71.263815,45.282726],[-71.263042,45.277401],[-71.262136,45.276098],[-71.259614,45.27324],[-71.256441,45.27333],[-71.250393,45.269191],[-71.245503,45.26887],[-71.244499,45.268139],[-71.239346,45.261925],[-71.236271,45.261126],[-71.235364,45.260349],[-71.231572,45.253472],[-71.233027,45.251551],[-71.231122,45.249712],[-71.228048,45.24969],[-71.225811,45.251691],[-71.221994,45.253543],[-71.220634,45.251121],[-71.2118,45.250457],[-71.203033,45.254302],[-71.198276,45.254257],[-71.196658,45.253594],[-71.194878,45.250515],[-71.191744,45.249694],[-71.187441,45.247697],[-71.183785,45.244932],[-71.182782,45.242715],[-71.182587,45.241069],[-71.180905,45.239858],[-71.179838,45.240178],[-71.178576,45.241389],[-71.177508,45.243629],[-71.173367,45.246348],[-71.171264,45.246143],[-71.167446,45.247491],[-71.162845,45.250332],[-71.158192,45.248746],[-71.155734,45.24646],[-71.148165,45.242412],[-71.144801,45.242251],[-71.13943,45.242958],[-71.133994,45.244167],[-71.131953,45.245423],[-71.127962,45.253672],[-71.124517,45.25527],[-71.119914,45.262287],[-71.120112,45.265738],[-71.116332,45.272322],[-71.113162,45.274861],[-71.110735,45.275456],[-71.107339,45.278612],[-71.105691,45.282498],[-71.109349,45.282222],[-71.110159,45.282999],[-71.110743,45.284576],[-71.108675,45.288965],[-71.105151,45.294635],[-71.097772,45.301906],[-71.089483,45.304584],[-71.085564,45.305476],[-71.084334,45.305293],[-71.076914,45.246912],[-71.0726,45.180935],[-71.069387,45.144037],[-71.059004,45.004918],[-71.057861,45.000049],[-71.052707,44.93084],[-71.044646,44.845039],[-71.037518,44.755607],[-71.036705,44.736498],[-71.031039,44.655455],[-71.026655,44.558149],[-71.022992,44.500058],[-71.020773,44.473737],[-71.015363,44.378113],[-71.012749,44.340784],[-71.01127,44.301846],[-71.010264,44.284773],[-71.008736,44.258825],[-71.008764,44.258443],[-71.008567,44.245491],[-71.001335,44.093205],[-71.001367,44.092931],[-70.998444,44.041099],[-70.992842,43.916269],[-70.992653,43.89624],[-70.989929,43.839239],[-70.989067,43.79244],[-70.989037,43.792154],[-70.984901,43.752983],[-70.982083,43.715043],[-70.982238,43.711865],[-70.981978,43.701965],[-70.981946,43.70096],[-70.975705,43.625078],[-70.972716,43.570255],[-70.970124,43.568544],[-70.968546,43.568856],[-70.961848,43.562964],[-70.957234,43.561358],[-70.95586,43.559787],[-70.955017,43.554239],[-70.953322,43.552718],[-70.951876,43.552238],[-70.950838,43.551026],[-70.955252,43.540887],[-70.955337,43.54098],[-70.955928,43.541925],[-70.962153,43.541036],[-70.962182,43.541032],[-70.963281,43.538929],[-70.963531,43.536756],[-70.963342,43.535247],[-70.962556,43.53431],[-70.95822,43.531586],[-70.957046,43.528743],[-70.957214,43.524994],[-70.956787,43.524216],[-70.954066,43.52261],[-70.954045,43.518797],[-70.956856,43.512719],[-70.955386,43.511357],[-70.954755,43.509802],[-70.957958,43.508041],[-70.959185,43.499351],[-70.961948,43.49775],[-70.966718,43.491278],[-70.969572,43.486201],[-70.968975,43.483961],[-70.967404,43.482635],[-70.967968,43.480783],[-70.974245,43.47742],[-70.972956,43.47502],[-70.970946,43.4739],[-70.966017,43.472918],[-70.964542,43.473262],[-70.964433,43.473276],[-70.961428,43.469696],[-70.96045,43.466592],[-70.96399,43.456752],[-70.966266,43.453627],[-70.9669,43.450458],[-70.96581,43.447557],[-70.96164,43.443039],[-70.961046,43.440475],[-70.96115,43.438321],[-70.968782,43.434891],[-70.969362,43.432731],[-70.968359,43.429283],[-70.971039,43.425606],[-70.97462,43.423022],[-70.978052,43.421954],[-70.982898,43.419332],[-70.986812,43.414264],[-70.987249,43.411863],[-70.986677,43.403541],[-70.985767,43.40162],[-70.982817,43.399312],[-70.982565,43.39778],[-70.982876,43.394808],[-70.98739,43.393457],[-70.987733,43.391513],[-70.987649,43.389521],[-70.985205,43.386745],[-70.985958,43.38424],[-70.985965,43.380023],[-70.984305,43.376814],[-70.984335,43.376128],[-70.981859,43.373862],[-70.976408,43.367272],[-70.974156,43.362925],[-70.974863,43.357969],[-70.967229,43.343777],[-70.964028,43.341888],[-70.960439,43.341048],[-70.95786,43.337776],[-70.956528,43.334691],[-70.953034,43.333257],[-70.951525,43.334672],[-70.93711,43.337367],[-70.932735,43.33676],[-70.932198,43.33456],[-70.931641,43.331019],[-70.930783,43.329569],[-70.923949,43.324768],[-70.916421,43.320279],[-70.915406,43.319858],[-70.912004,43.319821],[-70.911625,43.309952],[-70.91246,43.308289],[-70.909805,43.306682],[-70.907405,43.304782],[-70.904485,43.30529],[-70.90231,43.304872],[-70.900386,43.301358],[-70.90139,43.298764],[-70.903905,43.296882],[-70.907405,43.293582],[-70.906005,43.291682],[-70.896304,43.285282],[-70.890204,43.284182],[-70.886504,43.282783],[-70.883704,43.277483],[-70.882804,43.273183],[-70.881704,43.272483],[-70.872585,43.270152],[-70.86323,43.265109],[-70.863231,43.265098],[-70.861384,43.263143],[-70.859853,43.259763],[-70.859607,43.257342],[-70.858207,43.256286],[-70.855082,43.255191],[-70.852015,43.256808],[-70.843302,43.254321],[-70.839213,43.251224],[-70.839717,43.250393],[-70.841059,43.249699],[-70.841273,43.248653],[-70.838678,43.242931],[-70.837274,43.242321],[-70.83365,43.242868],[-70.828022,43.241597],[-70.826711,43.241301],[-70.825071,43.24093],[-70.823309,43.240343],[-70.822959,43.240187],[-70.817865,43.237911],[-70.817773,43.237408],[-70.816232,43.234997],[-70.815453,43.229023],[-70.814019,43.229053],[-70.811852,43.228306],[-70.80964,43.225407],[-70.80967,43.224561],[-70.813119,43.217252],[-70.816033,43.21568],[-70.816903,43.214604],[-70.820763,43.19978],[-70.820366,43.197629],[-70.819146,43.195157],[-70.819344,43.193036],[-70.820702,43.191663],[-70.823754,43.191075],[-70.827201,43.189485],[-70.827901,43.188685],[-70.828301,43.186685],[-70.824801,43.179685],[-70.823501,43.174585],[-70.824001,43.173285],[-70.826201,43.172085],[-70.828301,43.168985],[-70.827801,43.166385],[-70.829101,43.157886],[-70.8338,43.146886],[-70.8329,43.143286],[-70.83,43.138386],[-70.8293,43.132486],[-70.8281,43.129086],[-70.8268,43.127086],[-70.82,43.122586],[-70.819999,43.122586],[-70.808708,43.117065],[-70.793906,43.106712],[-70.78388,43.100867],[-70.779098,43.095887],[-70.767998,43.093588],[-70.766398,43.092688],[-70.762997,43.089488],[-70.757597,43.080888],[-70.756397,43.079988],[-70.741897,43.077388],[-70.737897,43.073488],[-70.733497,43.073288],[-70.720296,43.074688],[-70.708896,43.074989],[-70.705996,43.073089],[-70.704696,43.070989],[-70.703799,43.059574],[-70.71363,43.056006],[-70.714176,43.046266],[-70.71355,43.042077],[-70.718936,43.03235],[-70.723178,43.029298],[-70.728443,43.027597],[-70.730426,43.025392],[-70.732135,43.022416],[-70.732684,43.016916],[-70.734363,43.013307],[-70.735477,43.012201],[-70.74036,43.011171],[-70.743793,43.008027],[-70.749024,42.995467],[-70.749194,42.992677],[-70.749969,42.991689],[-70.752804,42.991255],[-70.755138,42.991789],[-70.756701,42.991337],[-70.759175,42.989475],[-70.761474,42.986681],[-70.764567,42.980201],[-70.765222,42.975349],[-70.7718,42.968064],[-70.771913,42.966457],[-70.769673,42.964419],[-70.771729,42.961321],[-70.775597,42.957213],[-70.779068,42.956802],[-70.780383,42.955798],[-70.78513,42.950792],[-70.786564,42.947378],[-70.790682,42.942772],[-70.793996,42.93989],[-70.797806,42.930037],[-70.798636,42.924288],[-70.798153,42.920926],[-70.805971,42.916549],[-70.808712,42.912787],[-70.810069,42.909549],[-70.810681,42.906887],[-70.810999,42.892375],[-70.813975,42.889766],[-70.81586,42.88625],[-70.816989,42.879864],[-70.817296,42.87229],[-70.821769,42.87188],[-70.830795,42.868918],[-70.837376,42.864996],[-70.848625,42.860939],[-70.886136,42.88261],[-70.902768,42.88653],[-70.914886,42.886564],[-70.914899,42.886589],[-70.927629,42.885326],[-70.930799,42.884589],[-70.931699,42.884189],[-70.949199,42.876089],[-70.9665,42.868989],[-71.031201,42.859089],[-71.044401,42.848789],[-71.047501,42.844089],[-71.053601,42.833089],[-71.064201,42.806289],[-71.116048,42.817751],[-71.132503,42.821389],[-71.149703,42.815489],[-71.165603,42.808689],[-71.167703,42.807389],[-71.174403,42.801589],[-71.186104,42.790689],[-71.181803,42.73759],[-71.208137,42.743273],[-71.208227,42.743294],[-71.208302,42.743314],[-71.223904,42.746689],[-71.233404,42.745489],[-71.245504,42.742589],[-71.25518,42.73665],[-71.255605,42.736389],[-71.267905,42.72589],[-71.278929,42.711258],[-71.294205,42.69699],[-71.330206,42.69719],[-71.351874,42.698154],[-71.542533,42.702672],[-71.631814,42.704788],[-71.636214,42.704888],[-71.745817,42.707287],[-71.898716,42.71142],[-71.928811,42.712234],[-71.981402,42.713294],[-72.124526,42.717636],[-72.282981,42.721557],[-72.285954,42.721631],[-72.458519,42.726853],[-72.458488,42.729094],[-72.461001,42.733209],[-72.467827,42.741209],[-72.473071,42.745916],[-72.474723,42.750729],[-72.475938,42.757702],[-72.477615,42.761245],[-72.479354,42.763119],[-72.484878,42.76554],[-72.4864,42.76698],[-72.487767,42.76938],[-72.491122,42.772465],[-72.495343,42.773286],[-72.497949,42.772918],[-72.498786,42.771981],[-72.499249,42.769054],[-72.50069,42.767657],[-72.507985,42.764414],[-72.510871,42.763752],[-72.513105,42.763822],[-72.516082,42.765949],[-72.516731,42.76867],[-72.514836,42.771436],[-72.510154,42.773221],[-72.508372,42.77461],[-72.508048,42.776885],[-72.508858,42.779919],[-72.511746,42.784114],[-72.515838,42.78856],[-72.518354,42.790651],[-72.5396,42.804832],[-72.542784,42.808482],[-72.546133,42.823938],[-72.547434,42.832603],[-72.547402,42.837587],[-72.54855,42.842021],[-72.553426,42.846709],[-72.557247,42.853019],[-72.554232,42.860038],[-72.555132,42.865731],[-72.556112,42.866252],[-72.556214,42.86695],[-72.555131,42.871058],[-72.555415,42.875428],[-72.552834,42.884968],[-72.552025,42.885631],[-72.546491,42.88714],[-72.540708,42.889379],[-72.537287,42.89187],[-72.532777,42.896076],[-72.531469,42.89795],[-72.531588,42.907164],[-72.530218,42.911576],[-72.529191,42.912719],[-72.525271,42.914363],[-72.52443,42.915575],[-72.524242,42.918501],[-72.527097,42.928584],[-72.526346,42.935717],[-72.526624,42.939901],[-72.527431,42.943148],[-72.52855,42.94532],[-72.529763,42.94612],[-72.531693,42.94651],[-72.533901,42.948591],[-72.534554,42.949894],[-72.534117,42.952133],[-72.532186,42.954945],[-72.518422,42.96317],[-72.507901,42.964171],[-72.504226,42.965815],[-72.492597,42.967648],[-72.486872,42.971789],[-72.481706,42.973985],[-72.479245,42.973597],[-72.476722,42.971746],[-72.473827,42.972045],[-72.465985,42.97847],[-72.461627,42.982906],[-72.461597,42.984049],[-72.464026,42.986107],[-72.465335,42.989558],[-72.464714,42.993582],[-72.46294,42.996943],[-72.459951,43.00008],[-72.456936,43.001306],[-72.451797,43.000577],[-72.448714,43.001169],[-72.444977,43.004416],[-72.443762,43.006245],[-72.443825,43.008965],[-72.444635,43.010566],[-72.452984,43.015731],[-72.457035,43.017285],[-72.458998,43.019388],[-72.462397,43.02556],[-72.46299,43.028531],[-72.460905,43.035961],[-72.460252,43.040671],[-72.462248,43.044214],[-72.465896,43.047505],[-72.466832,43.049197],[-72.467363,43.052648],[-72.466491,43.054729],[-72.463812,43.057404],[-72.45471,43.063487],[-72.445202,43.071352],[-72.43987,43.077043],[-72.43619,43.08173],[-72.435316,43.083536],[-72.435191,43.086622],[-72.439214,43.094852],[-72.443051,43.100841],[-72.442427,43.10363],[-72.440587,43.106145],[-72.434845,43.109917],[-72.433129,43.112637],[-72.432661,43.114077],[-72.432972,43.119655],[-72.435936,43.123381],[-72.440967,43.127608],[-72.442933,43.130192],[-72.442746,43.131152],[-72.44078,43.131472],[-72.440624,43.132203],[-72.440905,43.135793],[-72.441904,43.136615],[-72.444214,43.13737],[-72.448303,43.137187],[-72.451986,43.138924],[-72.45689,43.146558],[-72.45714,43.148493],[-72.456537,43.149528],[-72.452801,43.151977],[-72.451802,43.153486],[-72.451553,43.155155],[-72.4521,43.161414]]]}}]} diff --git a/Where/RegionKit/Sources/Resources/regions/us-NJ.geojson b/Where/RegionKit/Sources/Resources/regions/us-NJ.geojson new file mode 100644 index 00000000..c1179f47 --- /dev/null +++ b/Where/RegionKit/Sources/Resources/regions/us-NJ.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"region":"us-NJ","name":"New Jersey"},"geometry":{"type":"Polygon","coordinates":[[[-75.210876,39.865709],[-75.210425,39.865913],[-75.195324,39.877013],[-75.189323,39.880713],[-75.183023,39.882013],[-75.150721,39.882713],[-75.145421,39.884213],[-75.142421,39.886413],[-75.140221,39.888213],[-75.140006,39.888465],[-75.13342,39.896213],[-75.13082,39.900213],[-75.12792,39.911813],[-75.13012,39.917013],[-75.13282,39.921612],[-75.13502,39.927312],[-75.13612,39.933912],[-75.13572,39.947112],[-75.13352,39.954412],[-75.13012,39.958712],[-75.12692,39.961112],[-75.11922,39.965412],[-75.108119,39.970312],[-75.093718,39.974412],[-75.092481,39.974606],[-75.088618,39.975212],[-75.072017,39.980612],[-75.059994,39.991618],[-75.059017,39.992512],[-75.051217,40.004512],[-75.047016,40.008912],[-75.039316,40.013012],[-75.015515,40.019511],[-75.013796,40.020214],[-75.011115,40.021311],[-75.007914,40.023111],[-74.989914,40.037311],[-74.983913,40.042711],[-74.974713,40.048711],[-74.97432,40.048899],[-74.944412,40.063211],[-74.932211,40.068411],[-74.925311,40.07071],[-74.920811,40.07111],[-74.911911,40.06991],[-74.909011,40.07021],[-74.898573,40.072967],[-74.88781,40.07581],[-74.880209,40.07881],[-74.863809,40.08221],[-74.860909,40.08371],[-74.859809,40.08491],[-74.858209,40.08881],[-74.856509,40.09131],[-74.854409,40.09311],[-74.851108,40.09491],[-74.843408,40.09771],[-74.838008,40.10091],[-74.835108,40.10391],[-74.832808,40.11171],[-74.828408,40.12031],[-74.825907,40.12391],[-74.822307,40.12671],[-74.819007,40.12751],[-74.816307,40.12761],[-74.812807,40.12691],[-74.800607,40.12281],[-74.788706,40.12041],[-74.785106,40.12031],[-74.782106,40.12081],[-74.769488,40.129145],[-74.762864,40.132541],[-74.758882,40.134036],[-74.755305,40.13471],[-74.745905,40.13421],[-74.742905,40.13441],[-74.740605,40.13521],[-74.725663,40.145495],[-74.724304,40.14701],[-74.724134,40.14731],[-74.722604,40.15001],[-74.721604,40.15381],[-74.721504,40.158409],[-74.722304,40.160609],[-74.733804,40.174509],[-74.737205,40.177609],[-74.744105,40.181009],[-74.751705,40.183309],[-74.751943,40.183483],[-74.754305,40.185209],[-74.755605,40.186709],[-74.756905,40.189409],[-74.760605,40.198909],[-74.766905,40.207709],[-74.770406,40.214508],[-74.77136,40.215399],[-74.781206,40.221508],[-74.795306,40.229408],[-74.819507,40.238508],[-74.823907,40.241508],[-74.836307,40.246208],[-74.842308,40.250508],[-74.846608,40.258808],[-74.853108,40.269707],[-74.856508,40.277407],[-74.860492,40.284584],[-74.864692,40.290684],[-74.868209,40.295207],[-74.880609,40.305607],[-74.887109,40.310307],[-74.891609,40.313007],[-74.896409,40.315107],[-74.90331,40.315607],[-74.90831,40.316907],[-74.91741,40.322406],[-74.92681,40.329406],[-74.933111,40.333106],[-74.939711,40.338006],[-74.942954,40.341643],[-74.943776,40.342564],[-74.945088,40.347332],[-74.946006,40.357306],[-74.948722,40.364768],[-74.953697,40.376081],[-74.963997,40.395246],[-74.965508,40.397337],[-74.969597,40.39977],[-74.982735,40.404432],[-74.985467,40.405935],[-74.988901,40.408773],[-74.996378,40.410528],[-74.998651,40.410093],[-75.003351,40.40785],[-75.017221,40.404638],[-75.024775,40.403455],[-75.028315,40.403883],[-75.036616,40.406796],[-75.041651,40.409894],[-75.043071,40.411603],[-75.046473,40.413792],[-75.056102,40.416066],[-75.058848,40.418065],[-75.061489,40.422848],[-75.062923,40.433407],[-75.067425,40.448323],[-75.070568,40.455165],[-75.070568,40.456348],[-75.067302,40.464954],[-75.06805,40.468578],[-75.067776,40.472827],[-75.064327,40.476795],[-75.062227,40.481391],[-75.061937,40.486362],[-75.062373,40.491689],[-75.065275,40.504682],[-75.066001,40.510716],[-75.065853,40.519495],[-75.06509,40.526148],[-75.066402,40.536532],[-75.066426,40.536619],[-75.067257,40.539584],[-75.068615,40.542223],[-75.078503,40.548296],[-75.0957,40.564401],[-75.100325,40.567811],[-75.110903,40.570671],[-75.117292,40.573211],[-75.136748,40.575731],[-75.141906,40.575273],[-75.147368,40.573152],[-75.158446,40.565286],[-75.162871,40.564096],[-75.168609,40.564111],[-75.175307,40.564996],[-75.183151,40.567354],[-75.186737,40.569406],[-75.192352,40.574257],[-75.194046,40.576256],[-75.19487,40.578591],[-75.195114,40.579689],[-75.194656,40.58194],[-75.190796,40.586838],[-75.190146,40.590359],[-75.190369,40.591642],[-75.192291,40.602676],[-75.195923,40.606788],[-75.196803,40.60858],[-75.198499,40.611492],[-75.201348,40.614628],[-75.201812,40.617188],[-75.200708,40.618356],[-75.197891,40.619332],[-75.190691,40.619956],[-75.189283,40.621492],[-75.188579,40.624628],[-75.191059,40.637971],[-75.192276,40.640803],[-75.193492,40.642275],[-75.200468,40.646899],[-75.200452,40.649219],[-75.196676,40.655123],[-75.190852,40.661939],[-75.18794,40.663811],[-75.182756,40.665971],[-75.177491,40.672595],[-75.176803,40.675715],[-75.177587,40.677731],[-75.180564,40.679363],[-75.184516,40.679971],[-75.19058,40.679379],[-75.19692,40.681299],[-75.20092,40.685498],[-75.20392,40.691498],[-75.19872,40.705298],[-75.19442,40.714018],[-75.192612,40.715874],[-75.189412,40.71797],[-75.186372,40.72397],[-75.1825,40.729922],[-75.182084,40.731522],[-75.182804,40.73365],[-75.18578,40.737266],[-75.195349,40.745473],[-75.196325,40.747137],[-75.196861,40.750097],[-75.196533,40.751631],[-75.191796,40.75583],[-75.183037,40.759344],[-75.17904,40.761897],[-75.177477,40.764225],[-75.176855,40.768721],[-75.17562,40.772923],[-75.173349,40.776129],[-75.171587,40.777745],[-75.169523,40.778473],[-75.16365,40.778386],[-75.149378,40.774786],[-75.139106,40.773606],[-75.1344,40.773765],[-75.133303,40.774124],[-75.131465,40.77595],[-75.125867,40.784026],[-75.123088,40.786746],[-75.116842,40.78935],[-75.111343,40.789896],[-75.108505,40.791094],[-75.1008,40.799797],[-75.100277,40.801176],[-75.100165,40.803],[-75.100739,40.805488],[-75.100277,40.807578],[-75.098279,40.810286],[-75.096147,40.812211],[-75.090518,40.815913],[-75.085387,40.821972],[-75.083929,40.824471],[-75.083822,40.827805],[-75.085517,40.830085],[-75.09494,40.837103],[-75.097006,40.839336],[-75.097572,40.840967],[-75.097586,40.843042],[-75.097221,40.844672],[-75.095784,40.847082],[-75.090962,40.849187],[-75.076684,40.849875],[-75.073544,40.84894],[-75.07083,40.847392],[-75.066014,40.847591],[-75.064328,40.848338],[-75.060491,40.85302],[-75.053294,40.8599],[-75.051029,40.865662],[-75.050839,40.868067],[-75.051508,40.870224],[-75.053664,40.87366],[-75.058655,40.877654],[-75.062149,40.882289],[-75.065438,40.885682],[-75.07392,40.892176],[-75.07534,40.894162],[-75.075957,40.895694],[-75.075188,40.900154],[-75.076092,40.907042],[-75.076956,40.90988],[-75.079279,40.91389],[-75.095526,40.924152],[-75.09772,40.926679],[-75.105524,40.936294],[-75.106153,40.939671],[-75.111683,40.948111],[-75.117764,40.953023],[-75.118904,40.956361],[-75.119893,40.961646],[-75.120316,40.96263],[-75.12065,40.964028],[-75.11977,40.96651],[-75.120435,40.968302],[-75.120514,40.968369],[-75.122603,40.970152],[-75.129074,40.968976],[-75.131364,40.969277],[-75.13378,40.970973],[-75.135526,40.973807],[-75.135521,40.976865],[-75.133086,40.980179],[-75.132106,40.982566],[-75.13153,40.984914],[-75.131619,40.9889],[-75.130575,40.991093],[-75.127196,40.993954],[-75.123423,40.996129],[-75.110595,41.002174],[-75.109114,41.004102],[-75.100682,41.006716],[-75.095556,41.008874],[-75.090312,41.013302],[-75.089787,41.014549],[-75.081101,41.016838],[-75.074999,41.01713],[-75.070532,41.01862],[-75.040668,41.031755],[-75.034496,41.036755],[-75.030701,41.038416],[-75.025777,41.039806],[-75.02543,41.04071],[-75.026376,41.04444],[-75.025702,41.046482],[-75.019186,41.052968],[-75.017239,41.055491],[-75.015867,41.05821],[-75.015271,41.061215],[-75.01257,41.066281],[-75.011133,41.067521],[-75.006376,41.067546],[-74.999617,41.073943],[-74.994847,41.076556],[-74.989332,41.078319],[-74.98259,41.079172],[-74.970987,41.085293],[-74.968389,41.087797],[-74.966759,41.093425],[-74.967136,41.094441],[-74.967464,41.095327],[-74.969434,41.096074],[-74.972036,41.095562],[-74.975298,41.094073],[-74.981314,41.08986],[-74.984782,41.088545],[-74.988263,41.088222],[-74.991013,41.088578],[-74.991815,41.089132],[-74.991718,41.092284],[-74.982212,41.108245],[-74.979873,41.110423],[-74.972917,41.113327],[-74.969312,41.113869],[-74.966298,41.113669],[-74.964294,41.114237],[-74.947912,41.12356],[-74.947334,41.124439],[-74.947714,41.126292],[-74.945067,41.129052],[-74.931141,41.133387],[-74.923169,41.138146],[-74.905256,41.155668],[-74.90178,41.161394],[-74.901172,41.16387],[-74.899701,41.166181],[-74.889424,41.1736],[-74.882139,41.180836],[-74.878492,41.187504],[-74.878275,41.190489],[-74.874034,41.198543],[-74.867287,41.208754],[-74.860398,41.217454],[-74.859632,41.219077],[-74.859323,41.220507],[-74.860837,41.222317],[-74.866839,41.226865],[-74.867405,41.22777],[-74.866182,41.232132],[-74.862049,41.237609],[-74.861678,41.241575],[-74.857151,41.248975],[-74.856003,41.250094],[-74.854669,41.25051],[-74.848987,41.251192],[-74.846932,41.253318],[-74.845883,41.254945],[-74.845031,41.258055],[-74.846506,41.261576],[-74.846319,41.263077],[-74.841137,41.27098],[-74.838366,41.277286],[-74.834067,41.281111],[-74.830057,41.2872],[-74.821884,41.293838],[-74.815703,41.296151],[-74.812033,41.298157],[-74.806858,41.303155],[-74.792558,41.310628],[-74.791991,41.311639],[-74.792377,41.314088],[-74.795822,41.318516],[-74.79504,41.320407],[-74.792116,41.322465],[-74.789095,41.323281],[-74.781584,41.324229],[-74.774887,41.324326],[-74.771588,41.325079],[-74.766714,41.328558],[-74.763499,41.331568],[-74.760325,41.340325],[-74.755971,41.344953],[-74.753239,41.346122],[-74.735622,41.346518],[-74.730373,41.345983],[-74.720923,41.347384],[-74.708514,41.352734],[-74.704429,41.354043],[-74.700595,41.354553],[-74.694914,41.357423],[-74.641544,41.332879],[-74.607348,41.317774],[-74.499603,41.267344],[-74.457584,41.248225],[-74.378898,41.208994],[-74.365849,41.202999],[-74.320995,41.182394],[-74.301994,41.172594],[-74.234473,41.142883],[-74.21321,41.134192],[-74.18239,41.121595],[-74.096786,41.083796],[-74.092486,41.081896],[-74.041054,41.059088],[-74.041049,41.059086],[-73.91188,41.001297],[-73.907054,40.998476],[-73.90501,40.997591],[-73.90268,40.997297],[-73.893979,40.997197],[-73.896479,40.981697],[-73.90728,40.951498],[-73.91558,40.924898],[-73.91768,40.919498],[-73.917905,40.917577],[-73.918405,40.917477],[-73.919705,40.913478],[-73.926758,40.895355],[-73.929006,40.889578],[-73.933406,40.882078],[-73.933408,40.882075],[-73.938081,40.874699],[-73.948281,40.858399],[-73.953982,40.848],[-73.963182,40.8269],[-73.968082,40.8207],[-73.984822,40.797444],[-73.991568,40.788074],[-74.000223,40.77605],[-74.009184,40.763601],[-74.013784,40.756601],[-74.021117,40.727417],[-74.024543,40.709436],[-74.038538,40.710741],[-74.051185,40.695802],[-74.069885,40.684502],[-74.082786,40.673702],[-74.089986,40.659903],[-74.087397,40.653607],[-74.094086,40.649703],[-74.143387,40.641903],[-74.161397,40.644092],[-74.181083,40.646484],[-74.186027,40.646076],[-74.189106,40.643832],[-74.202223,40.631053],[-74.206731,40.594569],[-74.208988,40.576304],[-74.214788,40.560604],[-74.218189,40.557204],[-74.231589,40.559204],[-74.248641,40.549601],[-74.251441,40.542301],[-74.246237,40.520963],[-74.26829,40.499205],[-74.269998,40.495014],[-74.27269,40.488405],[-74.26759,40.471806],[-74.261889,40.464706],[-74.236689,40.457806],[-74.225035,40.453301],[-74.224047,40.452919],[-74.222959,40.452499],[-74.209788,40.447407],[-74.206188,40.440707],[-74.206419,40.438789],[-74.208655,40.43752],[-74.207205,40.435434],[-74.202128,40.43894],[-74.193908,40.440995],[-74.191309,40.44299],[-74.187787,40.447407],[-74.174787,40.455607],[-74.174893,40.454491],[-74.175074,40.449144],[-74.176842,40.44774],[-74.175346,40.446607],[-74.169977,40.45064],[-74.167009,40.448737],[-74.166193,40.447128],[-74.164029,40.448312],[-74.163314,40.448424],[-74.157787,40.446607],[-74.153611,40.447647],[-74.152686,40.447344],[-74.151952,40.448062],[-74.142886,40.450407],[-74.139886,40.453407],[-74.138415,40.454468],[-74.135823,40.455196],[-74.133727,40.454672],[-74.131135,40.453245],[-74.127466,40.451061],[-74.124692,40.44958],[-74.122327,40.448258],[-74.116863,40.446069],[-74.088085,40.438407],[-74.076185,40.433707],[-74.058984,40.422708],[-74.047884,40.418908],[-74.006383,40.411108],[-73.998505,40.410911],[-73.995486,40.419472],[-73.991682,40.442908],[-74.006077,40.464625],[-74.017783,40.472207],[-74.017917,40.474338],[-74.014031,40.476471],[-74.0071,40.475298],[-73.995683,40.468707],[-73.978282,40.440208],[-73.976982,40.408508],[-73.971381,40.371709],[-73.971381,40.34801],[-73.977442,40.299373],[-73.981681,40.279411],[-73.993292,40.237669],[-74.016017,40.166914],[-74.030181,40.122814],[-74.03408,40.103115],[-74.031861,40.101047],[-74.031318,40.100541],[-74.033546,40.099518],[-74.039421,40.081437],[-74.058798,40.001244],[-74.064135,39.979157],[-74.077247,39.910991],[-74.090945,39.799978],[-74.097071,39.767847],[-74.096906,39.76303],[-74.09892,39.759538],[-74.101443,39.756173],[-74.113655,39.740719],[-74.141733,39.689435],[-74.190974,39.625118],[-74.240506,39.554911],[-74.249043,39.547994],[-74.27737,39.514064],[-74.291585,39.507705],[-74.311037,39.506715],[-74.312451,39.499869],[-74.313689,39.493874],[-74.308344,39.483945],[-74.304778,39.482945],[-74.302184,39.478935],[-74.304343,39.471445],[-74.334804,39.432001],[-74.36699,39.402017],[-74.406692,39.377516],[-74.406792,39.373916],[-74.408237,39.365071],[-74.412692,39.360816],[-74.459894,39.345016],[-74.521797,39.313816],[-74.541443,39.300245],[-74.551151,39.293539],[-74.553439,39.286915],[-74.560957,39.278677],[-74.581008,39.270819],[-74.597921,39.258851],[-74.614481,39.244659],[-74.636306,39.220834],[-74.646595,39.212002],[-74.651443,39.198578],[-74.67143,39.179802],[-74.714341,39.119804],[-74.71532,39.116893],[-74.714135,39.114631],[-74.704409,39.107858],[-74.705876,39.102937],[-74.738316,39.074727],[-74.778777,39.023073],[-74.786356,39.000113],[-74.792723,38.991991],[-74.807917,38.985948],[-74.819354,38.979402],[-74.850748,38.954538],[-74.864458,38.94041],[-74.865198,38.941439],[-74.870497,38.943543],[-74.882309,38.941759],[-74.90705,38.931994],[-74.920414,38.929136],[-74.933571,38.928519],[-74.963463,38.931194],[-74.967274,38.933413],[-74.971995,38.94037],[-74.955363,39.001262],[-74.94947,39.015637],[-74.93832,39.035185],[-74.903664,39.087437],[-74.897784,39.098811],[-74.892547,39.113183],[-74.885914,39.143627],[-74.887167,39.158825],[-74.905181,39.174945],[-74.914936,39.177553],[-74.962382,39.190238],[-74.976266,39.192271],[-74.998002,39.191253],[-75.026179,39.193621],[-75.028885,39.19456],[-75.027824,39.199482],[-75.023586,39.202594],[-75.023437,39.204791],[-75.026376,39.20985],[-75.035672,39.215415],[-75.041663,39.215511],[-75.047797,39.211702],[-75.052326,39.213609],[-75.062506,39.213564],[-75.086395,39.208159],[-75.101019,39.211657],[-75.107286,39.211403],[-75.114748,39.207554],[-75.12707,39.189766],[-75.136548,39.179425],[-75.139136,39.180021],[-75.165979,39.201842],[-75.164798,39.216606],[-75.170444,39.234643],[-75.177506,39.242746],[-75.205857,39.262619],[-75.21251,39.262755],[-75.241639,39.274097],[-75.244056,39.27769],[-75.242881,39.280574],[-75.244357,39.2857],[-75.251806,39.299913],[-75.271629,39.304041],[-75.28262,39.299055],[-75.285333,39.292212],[-75.288898,39.289557],[-75.30601,39.301712],[-75.315201,39.310593],[-75.326754,39.332473],[-75.327463,39.33927],[-75.333743,39.345335],[-75.341969,39.348697],[-75.355558,39.347823],[-75.365016,39.341388],[-75.39003,39.358259],[-75.394331,39.363753],[-75.395181,39.371398],[-75.399304,39.37949],[-75.407294,39.381954],[-75.422099,39.386521],[-75.431803,39.391625],[-75.442393,39.402291],[-75.465212,39.43893],[-75.476279,39.438126],[-75.483572,39.440824],[-75.505672,39.452927],[-75.508383,39.459131],[-75.536431,39.460559],[-75.542894,39.470447],[-75.544368,39.479602],[-75.542693,39.496568],[-75.528088,39.498114],[-75.527141,39.500112],[-75.529368,39.501229],[-75.53014,39.505373],[-75.529978,39.510817],[-75.526654,39.526638],[-75.526787,39.53144],[-75.527676,39.535278],[-75.531575,39.536825],[-75.534014,39.540702],[-75.532342,39.54328],[-75.526003,39.548488],[-75.519026,39.555401],[-75.514756,39.562612],[-75.511932,39.567616],[-75.512732,39.578],[-75.515228,39.580752],[-75.519628,39.583248],[-75.521596,39.583088],[-75.525677,39.584048],[-75.531133,39.587984],[-75.534477,39.590384],[-75.537213,39.592944],[-75.53954,39.594251],[-75.539949,39.594384],[-75.543965,39.596],[-75.545405,39.596784],[-75.553502,39.602],[-75.55587,39.605824],[-75.556734,39.606688],[-75.557502,39.609184],[-75.556878,39.612144],[-75.558446,39.617296],[-75.559614,39.624208],[-75.559102,39.629056],[-75.559446,39.629812],[-75.556246,39.634912],[-75.550645,39.637912],[-75.547197,39.640528],[-75.542045,39.646012],[-75.539245,39.646112],[-75.535144,39.647212],[-75.526744,39.655113],[-75.526844,39.655713],[-75.526344,39.656413],[-75.522343,39.660813],[-75.518343,39.663913],[-75.514643,39.668613],[-75.511743,39.674313],[-75.509342,39.685313],[-75.509742,39.686113],[-75.509042,39.694513],[-75.507162,39.696961],[-75.504042,39.698313],[-75.496241,39.701413],[-75.491341,39.711113],[-75.488553,39.714833],[-75.485241,39.715813],[-75.483141,39.715513],[-75.481741,39.714546],[-75.47894,39.713813],[-75.47764,39.715013],[-75.476888,39.718337],[-75.477432,39.720561],[-75.47724,39.724713],[-75.47544,39.728713],[-75.475384,39.731057],[-75.474168,39.735473],[-75.469239,39.743613],[-75.466263,39.750737],[-75.466249,39.750769],[-75.463039,39.758313],[-75.463339,39.761213],[-75.459439,39.765813],[-75.452339,39.769013],[-75.447339,39.773313],[-75.448135,39.773969],[-75.448639,39.774113],[-75.440909,39.780831],[-75.437938,39.783413],[-75.405337,39.796213],[-75.415041,39.801786],[-75.403737,39.807512],[-75.390536,39.815312],[-75.389764,39.815819],[-75.371835,39.827612],[-75.3544,39.839917],[-75.341765,39.846082],[-75.330433,39.849012],[-75.323232,39.849812],[-75.309674,39.850179],[-75.293376,39.848782],[-75.271159,39.84944],[-75.243431,39.854597],[-75.235026,39.856613],[-75.221025,39.861113],[-75.210876,39.865709]]]}}]} diff --git a/Where/RegionKit/Sources/Resources/regions/us-NM.geojson b/Where/RegionKit/Sources/Resources/regions/us-NM.geojson new file mode 100644 index 00000000..376682aa --- /dev/null +++ b/Where/RegionKit/Sources/Resources/regions/us-NM.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"region":"us-NM","name":"New Mexico"},"geometry":{"type":"Polygon","coordinates":[[[-105.998003,32.002328],[-106.099756,32.002492],[-106.125534,32.002533],[-106.18184,32.00205],[-106.200699,32.001785],[-106.205915,32.001762],[-106.313307,32.001512],[-106.376861,32.001172],[-106.377165,32.001177],[-106.394298,32.001484],[-106.411075,32.001334],[-106.565142,32.000736],[-106.566056,32.000759],[-106.587972,32.000749],[-106.595333,32.000778],[-106.598639,32.000754],[-106.599096,32.000731],[-106.618486,32.000495],[-106.619448,31.994733],[-106.623568,31.990999],[-106.631182,31.989809],[-106.636492,31.985719],[-106.639529,31.980348],[-106.638186,31.97682],[-106.630114,31.971258],[-106.626466,31.97069],[-106.623216,31.97291],[-106.621873,31.972933],[-106.619569,31.971578],[-106.618745,31.966955],[-106.619371,31.964777],[-106.620454,31.963403],[-106.624299,31.961054],[-106.625535,31.957476],[-106.625123,31.954531],[-106.622819,31.952891],[-106.617708,31.956008],[-106.614702,31.956],[-106.616136,31.948439],[-106.623659,31.94551],[-106.622377,31.940863],[-106.622117,31.936621],[-106.622529,31.934863],[-106.625322,31.930053],[-106.629747,31.92657],[-106.628663,31.923614],[-106.623933,31.925335],[-106.611846,31.920003],[-106.614346,31.918003],[-106.623445,31.914034],[-106.625947,31.912227],[-106.633668,31.90979],[-106.64084,31.904598],[-106.645479,31.89867],[-106.645646,31.895649],[-106.645296,31.894859],[-106.6429,31.892933],[-106.638154,31.891663],[-106.633927,31.889184],[-106.630692,31.886411],[-106.629197,31.883717],[-106.630799,31.879697],[-106.634873,31.874478],[-106.63588,31.871514],[-106.635926,31.866235],[-106.627808,31.860593],[-106.625763,31.856276],[-106.621857,31.852854],[-106.614637,31.84649],[-106.605845,31.846305],[-106.605245,31.845905],[-106.602045,31.844405],[-106.601945,31.839605],[-106.605267,31.827912],[-106.602727,31.825024],[-106.593826,31.824901],[-106.589045,31.822706],[-106.588045,31.822106],[-106.582144,31.815506],[-106.581344,31.813906],[-106.577244,31.810406],[-106.570944,31.810206],[-106.566844,31.813306],[-106.563444,31.812606],[-106.562945,31.811104],[-106.558444,31.810406],[-106.547144,31.807305],[-106.545344,31.805007],[-106.544714,31.804287],[-106.542144,31.802107],[-106.542097,31.802146],[-106.535843,31.798607],[-106.535343,31.797507],[-106.535154,31.797089],[-106.534743,31.796107],[-106.533043,31.791907],[-106.533,31.791829],[-106.53248,31.791914],[-106.530515,31.792103],[-106.527943,31.790507],[-106.527738,31.789761],[-106.527623,31.789119],[-106.527997,31.786945],[-106.528543,31.784407],[-106.528543,31.783907],[-106.750547,31.783706],[-106.750547,31.783898],[-106.993544,31.783689],[-106.998235,31.783671],[-107.00056,31.783679],[-107.00056,31.783513],[-107.296824,31.783762],[-107.422246,31.783599],[-107.422495,31.783599],[-108.208394,31.783599],[-108.208087,31.613489],[-108.208521,31.499798],[-108.208572,31.499742],[-108.208573,31.333395],[-108.707657,31.333191],[-108.788711,31.332365],[-108.851105,31.332301],[-108.861028,31.332315],[-109.050044,31.332502],[-109.050173,31.480004],[-109.049843,31.499515],[-109.049813,31.499528],[-109.049112,31.636598],[-109.049195,31.796551],[-109.048763,31.810776],[-109.049106,31.843715],[-109.048769,31.861383],[-109.04859,31.870791],[-109.048599,32.013651],[-109.048731,32.028174],[-109.048296,32.084093],[-109.048286,32.089114],[-109.047612,32.426377],[-109.047653,32.681379],[-109.047653,32.686327],[-109.047645,32.689988],[-109.047638,32.693439],[-109.047117,32.777569],[-109.047117,32.77757],[-109.04748,33.06842],[-109.047453,33.069427],[-109.046905,33.091931],[-109.047013,33.092917],[-109.047117,33.137559],[-109.047116,33.137995],[-109.047237,33.208965],[-109.04747,33.250063],[-109.046827,33.365272],[-109.046909,33.36557],[-109.047045,33.36928],[-109.04687,33.372654],[-109.046564,33.37506],[-109.047298,33.409783],[-109.046662,33.625055],[-109.047145,33.74001],[-109.046941,33.778233],[-109.046426,33.875052],[-109.047006,34.00005],[-109.046182,34.522393],[-109.046182,34.522553],[-109.046156,34.579291],[-109.046086,34.771016],[-109.045363,34.785406],[-109.046104,34.799981],[-109.045624,34.814226],[-109.046072,34.828566],[-109.045851,34.959718],[-109.046024,35.175499],[-109.046084,35.250025],[-109.046796,35.363606],[-109.046481,35.546326],[-109.046509,35.54644],[-109.046296,35.614251],[-109.046295,35.616517],[-109.046024,35.8798],[-109.046055,35.888721],[-109.046054,35.92586],[-109.046011,35.925896],[-109.045973,36.002338],[-109.045729,36.117028],[-109.046183,36.181751],[-109.045431,36.500001],[-109.045433,36.874589],[-109.045407,36.874998],[-109.045272,36.968871],[-109.045244,36.969489],[-109.045223,36.999084],[-108.958868,36.998913],[-108.954404,36.998906],[-108.620309,36.999287],[-108.619689,36.999249],[-108.379203,36.999459],[-108.320721,36.99951],[-108.320464,36.999499],[-108.2884,36.99952],[-108.288086,36.999555],[-108.250635,36.999561],[-108.249358,36.999015],[-108.000623,37.000001],[-107.481737,37.000005],[-107.420915,37.000005],[-107.420913,37.000005],[-106.877292,37.000139],[-106.869796,36.992426],[-106.750591,36.992461],[-106.675626,36.993123],[-106.661344,36.993243],[-106.628733,36.993161],[-106.628652,36.993175],[-106.617125,36.993004],[-106.617159,36.992967],[-106.500589,36.993768],[-106.47628,36.993839],[-106.343139,36.99423],[-106.293279,36.99389],[-106.248675,36.994288],[-106.247705,36.994266],[-106.201469,36.994122],[-106.006634,36.995343],[-105.997472,36.995417],[-105.996159,36.995418],[-105.71847,36.995846],[-105.716471,36.995849],[-105.66472,36.995874],[-105.62747,36.995679],[-105.533922,36.995875],[-105.512485,36.995777],[-105.508836,36.995895],[-105.465182,36.995991],[-105.447255,36.996017],[-105.442459,36.995994],[-105.41931,36.995856],[-105.251296,36.995605],[-105.220613,36.995169],[-105.155042,36.995339],[-105.1208,36.995428],[-105.029228,36.992729],[-105.000554,36.993264],[-104.73212,36.993484],[-104.732031,36.993447],[-104.645029,36.993378],[-104.625545,36.993599],[-104.624556,36.994377],[-104.519257,36.993766],[-104.338833,36.993535],[-104.250536,36.994644],[-104.007855,36.996239],[-103.734364,36.998041],[-103.733247,36.998016],[-103.155922,37.000232],[-103.086106,37.000174],[-103.002199,37.000104],[-103.002247,36.911587],[-103.001964,36.909573],[-103.002198,36.719427],[-103.002518,36.675186],[-103.002252,36.61718],[-103.002188,36.602716],[-103.002565,36.526588],[-103.002434,36.500397],[-103.041924,36.500439],[-103.041745,36.318267],[-103.041674,36.317534],[-103.040824,36.055231],[-103.041305,35.837694],[-103.042186,35.825217],[-103.041716,35.814072],[-103.041917,35.796441],[-103.041146,35.791583],[-103.041272,35.739274],[-103.041554,35.622487],[-103.042366,35.250056],[-103.042775,35.241237],[-103.042497,35.211862],[-103.042377,35.183156],[-103.042377,35.183149],[-103.042366,35.182786],[-103.042339,35.181922],[-103.042395,35.178573],[-103.042568,35.159318],[-103.042711,35.144735],[-103.0426,35.142766],[-103.04252,35.135596],[-103.043261,35.125058],[-103.042642,35.109913],[-103.042552,34.954101],[-103.042521,34.899546],[-103.042781,34.850243],[-103.04277,34.792224],[-103.042769,34.747361],[-103.042827,34.671188],[-103.043286,34.653099],[-103.043072,34.619782],[-103.043594,34.46266],[-103.043589,34.459774],[-103.043588,34.459662],[-103.043582,34.455657],[-103.043538,34.405463],[-103.043583,34.400678],[-103.043611,34.397105],[-103.043585,34.393716],[-103.043613,34.390442],[-103.043613,34.388679],[-103.043614,34.384969],[-103.04363,34.38469],[-103.043693,34.383578],[-103.043919,34.380916],[-103.043944,34.37966],[-103.043946,34.379555],[-103.043979,34.312764],[-103.043979,34.312749],[-103.043936,34.302585],[-103.043719,34.289441],[-103.043644,34.256903],[-103.043569,34.087947],[-103.043516,34.079382],[-103.043686,34.063078],[-103.043744,34.049986],[-103.043767,34.043545],[-103.043721,34.04232],[-103.043771,34.041538],[-103.043746,34.037294],[-103.043555,34.032714],[-103.043531,34.018014],[-103.043617,34.003633],[-103.04395,33.974629],[-103.044893,33.945617],[-103.045698,33.906299],[-103.045644,33.901537],[-103.046907,33.8503],[-103.047346,33.824675],[-103.049096,33.74627],[-103.049608,33.737766],[-103.050148,33.701971],[-103.050532,33.672408],[-103.051087,33.658186],[-103.051535,33.650487],[-103.051363,33.64195],[-103.051664,33.629489],[-103.05261,33.570599],[-103.056655,33.388438],[-103.056655,33.388416],[-103.057487,33.329477],[-103.057856,33.315234],[-103.059242,33.260371],[-103.05972,33.256262],[-103.060103,33.219225],[-103.063905,33.042055],[-103.06398,33.038693],[-103.064452,33.01029],[-103.064625,32.999899],[-103.064679,32.964373],[-103.064657,32.959097],[-103.064569,32.900014],[-103.064701,32.879355],[-103.064862,32.868346],[-103.064807,32.857696],[-103.064916,32.85726],[-103.064889,32.849359],[-103.064672,32.82847],[-103.064699,32.827531],[-103.064711,32.784593],[-103.064698,32.783602],[-103.064807,32.777303],[-103.064827,32.726628],[-103.064799,32.708694],[-103.064798,32.690761],[-103.064864,32.682647],[-103.064633,32.64642],[-103.064815,32.624537],[-103.064761,32.601863],[-103.064788,32.600397],[-103.064761,32.587983],[-103.064696,32.522193],[-103.064422,32.145006],[-103.064348,32.123041],[-103.064344,32.087051],[-103.064423,32.000518],[-103.085876,32.000465],[-103.088698,32.000453],[-103.215641,32.000513],[-103.267633,32.000475],[-103.267708,32.000324],[-103.270383,32.000326],[-103.278521,32.000419],[-103.326501,32.00037],[-103.722853,32.000208],[-103.748317,32.000198],[-103.875476,32.000554],[-103.980179,32.000125],[-104.024521,32.00001],[-104.531756,32.000117],[-104.531937,32.000311],[-104.640918,32.000396],[-104.643526,32.000443],[-104.847757,32.000482],[-104.918272,32.000496],[-105.077046,32.000579],[-105.078605,32.000533],[-105.11804,32.000485],[-105.131377,32.000524],[-105.132916,32.000518],[-105.14824,32.000485],[-105.15031,32.000497],[-105.153994,32.000497],[-105.390396,32.000607],[-105.427049,32.000638],[-105.428582,32.0006],[-105.429281,32.000577],[-105.731362,32.001564],[-105.750527,32.002206],[-105.854061,32.00235],[-105.886159,32.00197],[-105.9006,32.0021],[-105.998003,32.002328]]]}}]} diff --git a/Where/RegionKit/Sources/Resources/regions/us-NV.geojson b/Where/RegionKit/Sources/Resources/regions/us-NV.geojson new file mode 100644 index 00000000..b3fbdc77 --- /dev/null +++ b/Where/RegionKit/Sources/Resources/regions/us-NV.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"region":"us-NV","name":"Nevada"},"geometry":{"type":"Polygon","coordinates":[[[-114.042145,40.999926],[-114.043176,40.771675],[-114.043803,40.759205],[-114.043831,40.758666],[-114.043505,40.726292],[-114.045281,40.506586],[-114.045577,40.495801],[-114.045518,40.494474],[-114.045218,40.430282],[-114.045826,40.424823],[-114.046178,40.398313],[-114.046153,40.231971],[-114.046683,40.116931],[-114.046741,40.104231],[-114.046386,40.097896],[-114.046835,40.030131],[-114.046555,39.996899],[-114.047134,39.906037],[-114.047214,39.821024],[-114.047783,39.79416],[-114.047273,39.759413],[-114.047728,39.542742],[-114.047079,39.499943],[-114.049104,39.005509],[-114.048054,38.878693],[-114.048521,38.876197],[-114.049465,38.874949],[-114.049168,38.749951],[-114.049749,38.72921],[-114.049883,38.677365],[-114.050154,38.57292],[-114.049862,38.547764],[-114.049834,38.543784],[-114.050485,38.499955],[-114.050091,38.404673],[-114.05012,38.404536],[-114.049417,38.2647],[-114.050138,38.24996],[-114.049903,38.148601],[-114.050423,37.999961],[-114.049658,37.881368],[-114.049928,37.852508],[-114.049677,37.823645],[-114.048473,37.809861],[-114.049919,37.765586],[-114.051109,37.756276],[-114.05167,37.746958],[-114.051785,37.746249],[-114.051728,37.745997],[-114.052472,37.604776],[-114.052962,37.592783],[-114.052689,37.517859],[-114.052718,37.517264],[-114.052685,37.502513],[-114.052701,37.492014],[-114.052448,37.43144],[-114.051765,37.418083],[-114.051927,37.370734],[-114.051927,37.370459],[-114.0518,37.293548],[-114.0518,37.293044],[-114.051974,37.284511],[-114.051974,37.283848],[-114.051405,37.233854],[-114.051673,37.172368],[-114.052179,37.14711],[-114.051867,37.134292],[-114.052827,37.103961],[-114.051822,37.090976],[-114.051749,37.088434],[-114.0506,37.000396],[-114.049995,36.957769],[-114.050619,36.843141],[-114.050619,36.843128],[-114.050606,36.800184],[-114.050562,36.656259],[-114.050167,36.624978],[-114.04966,36.621113],[-114.048476,36.49998],[-114.046488,36.473449],[-114.045829,36.442973],[-114.045806,36.391071],[-114.047584,36.325573],[-114.046935,36.315449],[-114.048515,36.289598],[-114.048226,36.268874],[-114.047106,36.250591],[-114.046743,36.245246],[-114.046838,36.194069],[-114.060302,36.189363],[-114.068027,36.180663],[-114.088954,36.144381],[-114.09987,36.121654],[-114.103222,36.120176],[-114.111011,36.119875],[-114.120862,36.114596],[-114.123144,36.111576],[-114.123975,36.106515],[-114.123221,36.104746],[-114.117459,36.100893],[-114.114165,36.096982],[-114.114531,36.095217],[-114.136896,36.059467],[-114.138203,36.053161],[-114.137188,36.046785],[-114.138202,36.041284],[-114.148191,36.028013],[-114.151725,36.024563],[-114.15413,36.023862],[-114.166465,36.027738],[-114.176824,36.027651],[-114.19238,36.020993],[-114.21369,36.015613],[-114.233289,36.014289],[-114.238799,36.014561],[-114.252651,36.020193],[-114.263146,36.025937],[-114.266721,36.029238],[-114.270645,36.03572],[-114.280202,36.046362],[-114.314028,36.058165],[-114.315557,36.059494],[-114.316109,36.063109],[-114.314206,36.066619],[-114.307879,36.071291],[-114.305738,36.074882],[-114.30843,36.082443],[-114.328777,36.105501],[-114.337273,36.10802],[-114.363109,36.130246],[-114.372106,36.143114],[-114.405475,36.147371],[-114.412373,36.147254],[-114.41695,36.145761],[-114.427169,36.136305],[-114.446605,36.12597],[-114.448654,36.12641],[-114.453325,36.130726],[-114.458369,36.138586],[-114.463637,36.139695],[-114.470152,36.138801],[-114.487034,36.129396],[-114.49612,36.12785],[-114.502172,36.128796],[-114.504442,36.129741],[-114.505766,36.131444],[-114.506144,36.134659],[-114.505387,36.137496],[-114.50482,36.142414],[-114.504631,36.145629],[-114.506711,36.148277],[-114.511721,36.150956],[-114.545789,36.152248],[-114.572031,36.15161],[-114.597212,36.142103],[-114.608264,36.133949],[-114.616694,36.130101],[-114.621883,36.13213],[-114.627855,36.141012],[-114.631716,36.142306],[-114.65995,36.124145],[-114.66289,36.119932],[-114.666538,36.117343],[-114.709771,36.107742],[-114.717293,36.107686],[-114.736165,36.104367],[-114.747079,36.097005],[-114.753638,36.090705],[-114.755618,36.087166],[-114.755491,36.081601],[-114.754099,36.07944],[-114.743342,36.070535],[-114.736253,36.05847],[-114.736738,36.054349],[-114.740375,36.049258],[-114.740375,36.043682],[-114.740617,36.041015],[-114.739405,36.037863],[-114.734314,36.035681],[-114.730435,36.031317],[-114.729707,36.028166],[-114.731162,36.021862],[-114.740522,36.013336],[-114.742779,36.009963],[-114.743243,36.00653],[-114.743756,35.985095],[-114.740595,35.975656],[-114.729941,35.962183],[-114.728318,35.95629],[-114.731159,35.943916],[-114.729356,35.941413],[-114.715692,35.934709],[-114.707526,35.92806],[-114.708516,35.912313],[-114.700271,35.901772],[-114.68112,35.885364],[-114.679039,35.880046],[-114.677883,35.876346],[-114.67742,35.874728],[-114.678114,35.871953],[-114.679501,35.868023],[-114.68201,35.863284],[-114.697767,35.854844],[-114.699848,35.84837],[-114.699848,35.843283],[-114.69641,35.833784],[-114.69571,35.830601],[-114.70371,35.814585],[-114.70991,35.810185],[-114.71211,35.806185],[-114.69891,35.790185],[-114.701409,35.769086],[-114.695709,35.755986],[-114.697309,35.733686],[-114.705309,35.711587],[-114.705409,35.708287],[-114.701208,35.701187],[-114.694108,35.695187],[-114.683208,35.689387],[-114.680607,35.685488],[-114.682207,35.678188],[-114.690008,35.664688],[-114.689407,35.651412],[-114.677107,35.641489],[-114.658206,35.619089],[-114.653406,35.610789],[-114.654306,35.59759],[-114.659606,35.58749],[-114.665649,35.580428],[-114.666184,35.577576],[-114.663005,35.56369],[-114.662005,35.545491],[-114.660205,35.539291],[-114.657405,35.536391],[-114.656905,35.534391],[-114.658005,35.530491],[-114.663105,35.524491],[-114.673805,35.517891],[-114.677205,35.513491],[-114.679205,35.499992],[-114.677643,35.489742],[-114.672901,35.481708],[-114.666377,35.466856],[-114.6645,35.449497],[-114.662125,35.444241],[-114.652005,35.429165],[-114.627137,35.409504],[-114.611435,35.369056],[-114.604314,35.353584],[-114.595931,35.325234],[-114.597503,35.296954],[-114.587129,35.262376],[-114.583111,35.23809],[-114.583559,35.22993],[-114.579963,35.20964],[-114.574835,35.205898],[-114.572119,35.200591],[-114.569238,35.18348],[-114.569569,35.163053],[-114.572747,35.138725],[-114.578524,35.12875],[-114.58774,35.123729],[-114.59912,35.12105],[-114.619905,35.121632],[-114.629934,35.118272],[-114.644352,35.105904],[-114.646759,35.101872],[-114.642831,35.096503],[-114.622517,35.088703],[-114.613132,35.083097],[-114.604736,35.07483],[-114.602908,35.068588],[-114.603619,35.064226],[-114.606694,35.058941],[-114.627124,35.044721],[-114.632429,35.037586],[-114.636893,35.028367],[-114.638023,35.020556],[-114.636674,35.008807],[-114.633013,35.002085],[-114.804249,35.139689],[-114.80503,35.140284],[-114.925381,35.237039],[-114.92548,35.237054],[-114.942216,35.249994],[-115.043812,35.332012],[-115.098018,35.37499],[-115.102881,35.379371],[-115.125816,35.39694],[-115.145813,35.413182],[-115.146788,35.413662],[-115.160068,35.424129],[-115.160599,35.424313],[-115.225273,35.475907],[-115.271342,35.51266],[-115.303743,35.538207],[-115.388866,35.605171],[-115.391535,35.607271],[-115.393996,35.609344],[-115.404537,35.617605],[-115.406079,35.618613],[-115.412908,35.624981],[-115.500832,35.693382],[-115.625838,35.792013],[-115.627386,35.793846],[-115.647202,35.808995],[-115.647683,35.809358],[-115.64802,35.809629],[-115.669005,35.826515],[-115.689302,35.842003],[-115.750844,35.889287],[-115.845984,35.964207],[-115.852908,35.96966],[-115.892975,35.999967],[-115.912858,36.015359],[-116.093601,36.155805],[-116.097216,36.158346],[-116.250869,36.276979],[-116.375875,36.372562],[-116.38034,36.374955],[-116.488233,36.459097],[-116.500882,36.468223],[-116.541983,36.499952],[-117.000895,36.847694],[-117.066728,36.896354],[-117.131975,36.945777],[-117.166,36.971224],[-117.244917,37.030244],[-117.266046,37.04491],[-117.375905,37.126843],[-117.500117,37.22038],[-117.500909,37.220282],[-117.540885,37.249931],[-117.581418,37.278936],[-117.68061,37.353399],[-117.712358,37.374931],[-117.832726,37.464929],[-117.875927,37.497267],[-117.904625,37.515836],[-117.975776,37.569293],[-118.039849,37.615245],[-118.039798,37.615273],[-118.052189,37.62493],[-118.250947,37.768616],[-118.4278,37.89623],[-118.500958,37.949019],[-118.571958,37.99993],[-118.62159,38.034389],[-118.714312,38.102185],[-118.746598,38.124926],[-118.771867,38.141871],[-118.859087,38.204808],[-118.922518,38.249919],[-118.949673,38.26894],[-119.000975,38.303675],[-119.030078,38.325181],[-119.082358,38.361267],[-119.097161,38.372853],[-119.125982,38.39317],[-119.156983,38.414739],[-119.234966,38.468997],[-119.250988,38.48078],[-119.279262,38.499914],[-119.328411,38.534773],[-119.333423,38.538328],[-119.370117,38.563281],[-119.375994,38.566793],[-119.450623,38.619965],[-119.450612,38.619964],[-119.494022,38.649734],[-119.494183,38.649852],[-119.585437,38.713212],[-119.587066,38.714345],[-119.587679,38.714734],[-119.904315,38.933324],[-120.001014,38.999574],[-120.002461,39.067489],[-120.003402,39.112687],[-120.004504,39.165599],[-120.005746,39.22521],[-120.005743,39.228664],[-120.005142,39.291258],[-120.005414,39.313345],[-120.005413,39.313848],[-120.00532,39.31635],[-120.005316,39.316453],[-120.00471,39.330488],[-120.00443,39.374908],[-120.003117,39.445044],[-120.003116,39.445113],[-120.00174,39.538852],[-120.001319,39.722416],[-120.001319,39.72242],[-120.000502,39.779956],[-120.000607,39.780779],[-119.999733,39.851406],[-119.997634,39.956505],[-119.997291,40.071803],[-119.997175,40.077245],[-119.997234,40.091591],[-119.997124,40.126363],[-119.996183,40.262461],[-119.996182,40.263532],[-119.996155,40.32125],[-119.996155,40.321838],[-119.995926,40.499901],[-119.997533,40.720992],[-119.998479,40.749899],[-119.999231,40.865899],[-119.999232,40.867454],[-119.999358,40.873101],[-119.999866,41.183974],[-119.999471,41.499894],[-119.99828,41.618765],[-119.998855,41.624893],[-119.998287,41.749892],[-119.999276,41.874891],[-119.999168,41.99454],[-119.986678,41.995842],[-119.876054,41.997199],[-119.872929,41.997641],[-119.848907,41.997281],[-119.790087,41.997544],[-119.72573,41.996296],[-119.444598,41.995478],[-119.360177,41.994384],[-119.324181,41.994206],[-119.251033,41.993843],[-119.231876,41.994212],[-119.20828,41.993177],[-119.001022,41.993793],[-118.795612,41.992394],[-118.777228,41.992671],[-118.775869,41.992692],[-118.696409,41.991794],[-118.601806,41.993895],[-118.501002,41.995446],[-118.197189,41.996995],[-117.873467,41.998335],[-117.625973,41.998102],[-117.623731,41.998467],[-117.443062,41.999659],[-117.403613,41.99929],[-117.217551,41.999887],[-117.197798,42.00038],[-117.068613,42.000035],[-117.055402,41.99989],[-117.04891,41.998983],[-117.040906,41.99989],[-117.026222,42.000252],[-117.018294,41.999358],[-117.009255,41.998127],[-116.969156,41.998991],[-116.62677,41.99775],[-116.625947,41.997379],[-116.586937,41.99737],[-116.582217,41.997834],[-116.525319,41.997558],[-116.510452,41.997096],[-116.501741,41.997334],[-116.499777,41.99674],[-116.485823,41.996861],[-116.483094,41.996885],[-116.463528,41.996547],[-116.368478,41.996281],[-116.332763,41.997283],[-116.163931,41.997555],[-116.160833,41.997508],[-116.038602,41.99746],[-116.03857,41.997413],[-116.030754,41.997399],[-116.030758,41.997383],[-116.01896,41.997762],[-116.018945,41.997722],[-116.012219,41.998048],[-116.012212,41.998035],[-115.98688,41.998534],[-115.887612,41.998048],[-115.879596,41.997891],[-115.870181,41.996766],[-115.625914,41.997415],[-115.586849,41.996884],[-115.313877,41.996103],[-115.254333,41.996721],[-115.250795,41.996156],[-115.038256,41.996012],[-115.031783,41.996008],[-114.914187,41.999909],[-114.89921,41.999909],[-114.875877,42.001319],[-114.831077,42.002207],[-114.806384,42.001822],[-114.720715,41.998231],[-114.598267,41.994511],[-114.498259,41.994599],[-114.498243,41.994636],[-114.467581,41.995492],[-114.281855,41.994214],[-114.107428,41.993965],[-114.107259,41.993831],[-114.061763,41.993939],[-114.061774,41.993797],[-114.048257,41.993814],[-114.048246,41.993721],[-114.041723,41.99372],[-114.039648,41.884816],[-114.041107,41.850573],[-114.041152,41.850595],[-114.039901,41.753781],[-114.039968,41.62492],[-114.040437,41.615377],[-114.040942,41.499921],[-114.040231,41.49169],[-114.041396,41.219958],[-114.042553,41.210923],[-114.041447,41.207752],[-114.042145,40.999926]]]}}]} diff --git a/Where/RegionKit/Sources/Resources/regions/us-NY.geojson b/Where/RegionKit/Sources/Resources/regions/us-NY.geojson new file mode 100644 index 00000000..515b18d7 --- /dev/null +++ b/Where/RegionKit/Sources/Resources/regions/us-NY.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"region":"us-NY","name":"New York"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-74.04086,40.700117],[-74.040018,40.700678],[-74.039401,40.700454],[-74.037998,40.698995],[-74.043441,40.68968],[-74.044451,40.688445],[-74.046359,40.689175],[-74.047313,40.690466],[-74.04692,40.691139],[-74.04086,40.700117]]],[[[-74.144428,40.53516],[-74.148697,40.534489],[-74.160859,40.52679],[-74.177986,40.519603],[-74.182157,40.520634],[-74.199923,40.511729],[-74.210474,40.509448],[-74.219787,40.502603],[-74.23324,40.501299],[-74.246688,40.496103],[-74.250188,40.496703],[-74.254588,40.502303],[-74.256088,40.507903],[-74.252702,40.513895],[-74.242888,40.520903],[-74.241732,40.531273],[-74.247808,40.543396],[-74.229002,40.555041],[-74.216997,40.554991],[-74.210887,40.560902],[-74.204054,40.589336],[-74.19682,40.597037],[-74.195407,40.601806],[-74.196096,40.616169],[-74.200994,40.616906],[-74.201812,40.619507],[-74.20058,40.631448],[-74.1894,40.642121],[-74.180191,40.645521],[-74.174085,40.645109],[-74.170187,40.642201],[-74.152973,40.638886],[-74.120186,40.642201],[-74.086485,40.648601],[-74.075884,40.648101],[-74.0697,40.641216],[-74.067598,40.623865],[-74.060345,40.611999],[-74.053125,40.603678],[-74.059184,40.593502],[-74.068184,40.584102],[-74.090797,40.566463],[-74.111471,40.546908],[-74.112585,40.547603],[-74.121672,40.542691],[-74.137241,40.530076],[-74.14023,40.533738],[-74.144428,40.53516]]],[[[-72.132225,41.104387],[-72.128352,41.108131],[-72.126704,41.115139],[-72.084207,41.101524],[-72.081167,41.09394],[-72.086975,41.058292],[-72.095711,41.05402],[-72.0972,41.054884],[-72.097136,41.075844],[-72.103152,41.086484],[-72.1064,41.088883],[-72.12056,41.093171],[-72.139233,41.092451],[-72.141921,41.094371],[-72.142929,41.097811],[-72.140737,41.100835],[-72.132225,41.104387]]],[[[-71.943563,41.286675],[-71.926802,41.290122],[-71.935259,41.280579],[-71.94627,41.276306],[-71.962598,41.270968],[-71.978926,41.265002],[-71.994717,41.256451],[-72.002461,41.252867],[-72.036846,41.249794],[-72.034958,41.255458],[-72.029438,41.26309],[-72.023422,41.270994],[-72.018926,41.274114],[-72.006872,41.27348],[-71.991117,41.281331],[-71.980061,41.280291],[-71.952864,41.285098],[-71.943563,41.286675]]],[[[-73.767176,40.886299],[-73.767076,40.885399],[-73.767076,40.884799],[-73.767076,40.883499],[-73.766276,40.881099],[-73.766976,40.880099],[-73.770876,40.879299],[-73.775276,40.882199],[-73.775176,40.884199],[-73.772776,40.884599],[-73.772276,40.887499],[-73.770576,40.888399],[-73.768276,40.887599],[-73.767276,40.886899],[-73.767176,40.886299]]],[[[-73.773361,40.859449],[-73.770552,40.86033],[-73.766333,40.857317],[-73.765128,40.854228],[-73.766032,40.844961],[-73.769648,40.84466],[-73.773038,40.848125],[-73.773717,40.854831],[-73.773361,40.859449]]],[[[-74.027392,44.995765],[-73.874597,45.001223],[-73.762985,45.003238],[-73.675458,45.002907],[-73.639718,45.003464],[-73.437371,45.009198],[-73.343124,45.01084],[-73.350188,44.994304],[-73.353429,44.990165],[-73.354633,44.987352],[-73.354112,44.984062],[-73.352886,44.980644],[-73.350218,44.976222],[-73.34474,44.970468],[-73.338734,44.965886],[-73.338243,44.96475],[-73.337906,44.960541],[-73.339603,44.94337],[-73.338482,44.924112],[-73.338979,44.917681],[-73.341106,44.914632],[-73.347837,44.911309],[-73.353657,44.907346],[-73.356218,44.904492],[-73.35808,44.901325],[-73.360327,44.897236],[-73.362229,44.891463],[-73.366459,44.87504],[-73.369103,44.86668],[-73.371967,44.862414],[-73.375709,44.860745],[-73.379822,44.857037],[-73.381397,44.848805],[-73.381359,44.845021],[-73.379452,44.83801],[-73.378717,44.837358],[-73.375345,44.836307],[-73.371329,44.830742],[-73.369647,44.829136],[-73.365678,44.826451],[-73.35808,44.82331],[-73.354945,44.8215],[-73.353472,44.820386],[-73.3502,44.816394],[-73.335443,44.804602],[-73.33443,44.802188],[-73.333933,44.7992],[-73.333154,44.788759],[-73.333771,44.785192],[-73.335713,44.782086],[-73.344254,44.776282],[-73.347072,44.772988],[-73.348694,44.768246],[-73.354361,44.755296],[-73.357671,44.751018],[-73.363791,44.745254],[-73.365561,44.741786],[-73.365068,44.725646],[-73.36556,44.700297],[-73.361323,44.695369],[-73.361308,44.694523],[-73.365297,44.687546],[-73.370142,44.684853],[-73.369685,44.683758],[-73.367414,44.681292],[-73.367209,44.678513],[-73.371089,44.67753],[-73.371843,44.676956],[-73.37272,44.668739],[-73.370065,44.666071],[-73.369669,44.663478],[-73.37059,44.662518],[-73.373063,44.662713],[-73.374134,44.66234],[-73.379074,44.656772],[-73.378968,44.65518],[-73.378014,44.653846],[-73.377973,44.652918],[-73.383157,44.645764],[-73.378561,44.641475],[-73.379748,44.64036],[-73.386783,44.636369],[-73.387169,44.635542],[-73.385899,44.631044],[-73.386497,44.626924],[-73.387346,44.623672],[-73.389966,44.61962],[-73.390231,44.618353],[-73.38982,44.61721],[-73.382932,44.612184],[-73.380726,44.605239],[-73.376849,44.599598],[-73.376332,44.597218],[-73.376806,44.595455],[-73.377897,44.593848],[-73.38164,44.590583],[-73.381848,44.589316],[-73.377794,44.585128],[-73.375666,44.582038],[-73.374389,44.575455],[-73.367275,44.567545],[-73.361486,44.563518],[-73.360088,44.562546],[-73.356788,44.557918],[-73.355186,44.556918],[-73.350027,44.555392],[-73.342932,44.551907],[-73.338751,44.548046],[-73.33863,44.546844],[-73.33863,44.546842],[-73.3393,44.544477],[-73.338995,44.543302],[-73.331595,44.535924],[-73.330893,44.534269],[-73.330588,44.531034],[-73.329458,44.529203],[-73.328512,44.528478],[-73.323935,44.52712],[-73.322026,44.525289],[-73.321111,44.519857],[-73.321416,44.516454],[-73.320836,44.513631],[-73.319265,44.51196],[-73.312871,44.507246],[-73.306707,44.500334],[-73.304921,44.492209],[-73.304418,44.485739],[-73.299885,44.476652],[-73.298939,44.471304],[-73.298725,44.463957],[-73.300114,44.454711],[-73.295216,44.445884],[-73.293613,44.440559],[-73.293855,44.437556],[-73.296031,44.428339],[-73.310491,44.402601],[-73.312418,44.39471],[-73.315016,44.388513],[-73.317029,44.385978],[-73.320954,44.382669],[-73.330369,44.375987],[-73.333575,44.372288],[-73.334939,44.364441],[-73.334637,44.356877],[-73.327335,44.344369],[-73.325127,44.338534],[-73.323997,44.333842],[-73.323835,44.325418],[-73.324545,44.319247],[-73.324229,44.310023],[-73.322267,44.301523],[-73.316838,44.287683],[-73.312299,44.280025],[-73.311025,44.27424],[-73.312852,44.265346],[-73.313422,44.264199],[-73.316618,44.257769],[-73.319802,44.249547],[-73.323596,44.243897],[-73.324681,44.243614],[-73.329322,44.244504],[-73.3305,44.244254],[-73.334042,44.240971],[-73.336778,44.239557],[-73.34323,44.238049],[-73.342312,44.234531],[-73.349889,44.230356],[-73.350806,44.225943],[-73.354747,44.223599],[-73.355252,44.22287],[-73.355276,44.219554],[-73.357908,44.216193],[-73.361476,44.210374],[-73.362013,44.208545],[-73.370678,44.204546],[-73.372405,44.202165],[-73.375289,44.199868],[-73.377693,44.199453],[-73.382252,44.197178],[-73.383987,44.193158],[-73.385326,44.192597],[-73.388502,44.192318],[-73.390583,44.190886],[-73.390805,44.189072],[-73.389658,44.181249],[-73.390383,44.179486],[-73.395862,44.175785],[-73.396892,44.173846],[-73.397385,44.171596],[-73.396664,44.168831],[-73.395399,44.166903],[-73.395532,44.166122],[-73.398728,44.162248],[-73.399634,44.155326],[-73.402381,44.145856],[-73.403268,44.144295],[-73.408118,44.139373],[-73.41172,44.137825],[-73.415761,44.132826],[-73.41578,44.131523],[-73.413751,44.126068],[-73.411722,44.11754],[-73.411316,44.112686],[-73.416319,44.099422],[-73.429239,44.079414],[-73.430207,44.071716],[-73.431991,44.06345],[-73.43774,44.045006],[-73.43688,44.042578],[-73.430772,44.038746],[-73.427987,44.037708],[-73.42312,44.032759],[-73.42016,44.032004],[-73.414364,44.029526],[-73.410776,44.026944],[-73.407739,44.021312],[-73.405999,44.016229],[-73.405977,44.011485],[-73.411224,43.986202],[-73.412581,43.98272],[-73.412613,43.97998],[-73.411248,43.975596],[-73.406823,43.967317],[-73.405525,43.948813],[-73.408589,43.932933],[-73.407742,43.929887],[-73.400926,43.917048],[-73.397256,43.905668],[-73.395878,43.903044],[-73.383491,43.890951],[-73.376312,43.880292],[-73.374051,43.875563],[-73.37415,43.874163],[-73.379334,43.864648],[-73.381501,43.859235],[-73.382046,43.855008],[-73.380987,43.852633],[-73.373742,43.847693],[-73.372462,43.846266],[-73.372247,43.845337],[-73.373688,43.84261],[-73.376598,43.839357],[-73.381865,43.837315],[-73.388389,43.832404],[-73.390194,43.829364],[-73.392751,43.822196],[-73.392492,43.820779],[-73.390302,43.817371],[-73.383259,43.81331],[-73.380804,43.810951],[-73.37933,43.808476],[-73.379279,43.808391],[-73.37827,43.805995],[-73.377232,43.800565],[-73.376361,43.798766],[-73.368184,43.793346],[-73.362498,43.790211],[-73.357547,43.785933],[-73.355545,43.778468],[-73.354758,43.776721],[-73.350593,43.771939],[-73.350707,43.770463],[-73.354597,43.764167],[-73.362951,43.753181],[-73.369725,43.744274],[-73.370287,43.742269],[-73.370724,43.735571],[-73.369916,43.728789],[-73.370612,43.725329],[-73.377756,43.717712],[-73.382965,43.714058],[-73.385883,43.711336],[-73.39179,43.703481],[-73.393723,43.6992],[-73.395517,43.696831],[-73.398332,43.694625],[-73.402078,43.693106],[-73.404739,43.690213],[-73.405243,43.688367],[-73.403474,43.684694],[-73.404126,43.681339],[-73.407776,43.672519],[-73.408061,43.669438],[-73.414546,43.658209],[-73.415513,43.65245],[-73.418763,43.64788],[-73.423539,43.645676],[-73.425217,43.64429],[-73.426463,43.642598],[-73.428583,43.636543],[-73.42791,43.634428],[-73.418319,43.623325],[-73.417668,43.621687],[-73.417827,43.620586],[-73.423708,43.612356],[-73.423815,43.610989],[-73.422154,43.606511],[-73.421616,43.603023],[-73.424977,43.598775],[-73.430325,43.590532],[-73.431229,43.588285],[-73.430947,43.587036],[-73.428636,43.583994],[-73.426663,43.582974],[-73.420378,43.581489],[-73.416964,43.57773],[-73.405629,43.571179],[-73.400295,43.568889],[-73.398125,43.568065],[-73.395767,43.568087],[-73.39196,43.569915],[-73.384188,43.575512],[-73.383369,43.57677],[-73.382549,43.579193],[-73.383426,43.584727],[-73.383446,43.596778],[-73.377748,43.599656],[-73.373443,43.603292],[-73.372469,43.604848],[-73.372375,43.606014],[-73.376036,43.612596],[-73.374557,43.614677],[-73.369933,43.619093],[-73.36987,43.619711],[-73.372486,43.622751],[-73.371889,43.624489],[-73.368899,43.62471],[-73.367167,43.623622],[-73.365562,43.62344],[-73.35911,43.624598],[-73.358593,43.625065],[-73.347621,43.622509],[-73.342181,43.62607],[-73.327702,43.625913],[-73.323893,43.627629],[-73.317566,43.627355],[-73.312809,43.624602],[-73.310606,43.624114],[-73.307682,43.627492],[-73.306234,43.628018],[-73.304125,43.627057],[-73.302552,43.625708],[-73.302076,43.624364],[-73.300285,43.610806],[-73.29802,43.610028],[-73.293741,43.605203],[-73.292232,43.60255],[-73.292202,43.59816],[-73.292801,43.593861],[-73.293242,43.592558],[-73.296924,43.587323],[-73.292364,43.585104],[-73.292113,43.584509],[-73.29444,43.582494],[-73.295344,43.580235],[-73.294621,43.57897],[-73.293536,43.578518],[-73.284912,43.579272],[-73.281296,43.577579],[-73.280952,43.575407],[-73.279726,43.574241],[-73.26938,43.571973],[-73.264099,43.568884],[-73.258631,43.564949],[-73.252602,43.556851],[-73.248641,43.553857],[-73.24842,43.552577],[-73.250408,43.550425],[-73.250132,43.543429],[-73.247812,43.542814],[-73.246585,43.541855],[-73.242042,43.534925],[-73.241589,43.534973],[-73.24139,43.532345],[-73.241891,43.529418],[-73.243366,43.527726],[-73.246821,43.52578],[-73.247698,43.523173],[-73.247631,43.51924],[-73.24672,43.518875],[-73.247061,43.514919],[-73.248401,43.470443],[-73.252582,43.370997],[-73.252674,43.370285],[-73.252832,43.363493],[-73.253084,43.354714],[-73.254514,43.31467],[-73.256493,43.259249],[-73.258718,43.229894],[-73.265574,43.096223],[-73.26978,43.035923],[-73.274294,42.943652],[-73.274393,42.942482],[-73.274466,42.940361],[-73.275804,42.897249],[-73.278673,42.83341],[-73.284311,42.834954],[-73.285388,42.834093],[-73.287063,42.82014],[-73.28375,42.813864],[-73.286337,42.808038],[-73.290944,42.80192],[-73.276421,42.746019],[-73.264957,42.74594],[-73.352527,42.510002],[-73.508142,42.086257],[-73.496879,42.049675],[-73.487314,42.049638],[-73.489615,42.000092],[-73.492975,41.958524],[-73.496527,41.92238],[-73.498304,41.892508],[-73.501984,41.858717],[-73.504944,41.824285],[-73.505008,41.823773],[-73.510961,41.758749],[-73.511921,41.740941],[-73.516785,41.687581],[-73.518238,41.666734],[-73.520017,41.641197],[-73.521041,41.619773],[-73.530067,41.527194],[-73.533969,41.479693],[-73.534055,41.478968],[-73.53415,41.47806],[-73.534269,41.476911],[-73.534269,41.476394],[-73.534369,41.475894],[-73.535769,41.457159],[-73.535857,41.455709],[-73.535885,41.455236],[-73.535986,41.45306],[-73.536067,41.451331],[-73.536969,41.441094],[-73.537469,41.43589],[-73.537673,41.433905],[-73.541169,41.405994],[-73.543415,41.376754],[-73.543425,41.376622],[-73.544728,41.366375],[-73.548973,41.326297],[-73.549574,41.315931],[-73.548929,41.307598],[-73.550961,41.295422],[-73.518384,41.256719],[-73.482709,41.21276],[-73.509487,41.200814],[-73.514617,41.198434],[-73.564941,41.17517],[-73.614391,41.152915],[-73.632153,41.144921],[-73.639672,41.141495],[-73.727775,41.100696],[-73.722575,41.093596],[-73.716875,41.087596],[-73.694273,41.059296],[-73.687173,41.050697],[-73.679973,41.041797],[-73.670472,41.030097],[-73.662672,41.020497],[-73.655371,41.012797],[-73.654671,41.011697],[-73.655571,41.007697],[-73.659372,40.999497],[-73.658772,40.993497],[-73.659671,40.987909],[-73.657336,40.985171],[-73.655972,40.979597],[-73.659972,40.968398],[-73.662072,40.966198],[-73.664472,40.967198],[-73.678073,40.962798],[-73.683273,40.948998],[-73.686473,40.945198],[-73.697974,40.939598],[-73.721739,40.932037],[-73.731775,40.924999],[-73.756776,40.912599],[-73.781338,40.885447],[-73.783545,40.88104],[-73.784803,40.878528],[-73.785502,40.869079],[-73.788786,40.858485],[-73.78806,40.854131],[-73.784754,40.851793],[-73.782174,40.847358],[-73.782093,40.844616],[-73.782254,40.842359],[-73.781206,40.838891],[-73.782577,40.837601],[-73.783867,40.836795],[-73.785399,40.838004],[-73.788221,40.842036],[-73.791044,40.846552],[-73.789512,40.85139],[-73.792253,40.855825],[-73.793785,40.855583],[-73.797252,40.852196],[-73.799543,40.848027],[-73.806914,40.849501],[-73.81281,40.846737],[-73.815574,40.835129],[-73.815205,40.831075],[-73.811889,40.825363],[-73.804518,40.818546],[-73.797332,40.815597],[-73.785964,40.800862],[-73.781369,40.794907],[-73.776032,40.795275],[-73.768431,40.800704],[-73.768301,40.800797],[-73.754032,40.820941],[-73.7544,40.826837],[-73.728275,40.8529],[-73.726675,40.8568],[-73.730675,40.8654],[-73.729575,40.8665],[-73.713674,40.870099],[-73.675573,40.856999],[-73.670692,40.858708],[-73.655872,40.863899],[-73.654372,40.878199],[-73.641072,40.892599],[-73.633771,40.898198],[-73.626972,40.899397],[-73.617571,40.897898],[-73.60187,40.902798],[-73.59517,40.907298],[-73.569969,40.915398],[-73.566169,40.915798],[-73.548068,40.908698],[-73.519267,40.914298],[-73.514999,40.912821],[-73.499941,40.918166],[-73.497061,40.922801],[-73.496642,40.923476],[-73.491765,40.942097],[-73.485365,40.946397],[-73.484798,40.946065],[-73.48011,40.943319],[-73.478365,40.942297],[-73.47441,40.941056],[-73.463708,40.937697],[-73.460603,40.937375],[-73.456523,40.936953],[-73.445026,40.935763],[-73.437509,40.934985],[-73.436664,40.934897],[-73.429863,40.929797],[-73.429665,40.928203],[-73.428836,40.921506],[-73.406074,40.920235],[-73.402963,40.925097],[-73.403462,40.942197],[-73.400862,40.953997],[-73.399762,40.955197],[-73.392862,40.955297],[-73.374462,40.937597],[-73.365961,40.931697],[-73.352761,40.926697],[-73.345561,40.925297],[-73.344161,40.927297],[-73.33136,40.929597],[-73.295061,40.924497],[-73.295059,40.924497],[-73.229285,40.905121],[-73.148994,40.928898],[-73.146242,40.935074],[-73.144673,40.955842],[-73.140785,40.966178],[-73.110368,40.971938],[-73.081582,40.973058],[-73.043701,40.962185],[-73.040445,40.964498],[-72.995931,40.966498],[-72.955163,40.966146],[-72.913834,40.962466],[-72.88825,40.962962],[-72.826057,40.969794],[-72.774104,40.965314],[-72.760031,40.975334],[-72.714425,40.985596],[-72.689341,40.989776],[-72.665018,40.987496],[-72.635374,40.990536],[-72.585327,40.997587],[-72.565406,41.009508],[-72.560974,41.015444],[-72.549853,41.019844],[-72.521548,41.037652],[-72.477306,41.052212],[-72.460778,41.067012],[-72.445242,41.086116],[-72.417945,41.087955],[-72.397,41.096307],[-72.356087,41.133635],[-72.333351,41.138018],[-72.322381,41.140664],[-72.291109,41.155874],[-72.278789,41.158722],[-72.272997,41.15501],[-72.2681,41.154146],[-72.245348,41.161217],[-72.238211,41.15949],[-72.237731,41.156434],[-72.253572,41.137138],[-72.265124,41.128482],[-72.300374,41.112274],[-72.300044,41.132059],[-72.306381,41.13784],[-72.312734,41.138546],[-72.318146,41.137134],[-72.32663,41.132162],[-72.335271,41.120274],[-72.335177,41.106917],[-72.317238,41.088659],[-72.297718,41.081042],[-72.280373,41.080402],[-72.276709,41.076722],[-72.283093,41.067874],[-72.273657,41.051533],[-72.260515,41.042065],[-72.241252,41.04477],[-72.229364,41.044355],[-72.217476,41.040611],[-72.201859,41.032275],[-72.190563,41.032579],[-72.183266,41.035619],[-72.17949,41.038435],[-72.174882,41.046147],[-72.162898,41.053187],[-72.16037,41.053827],[-72.153857,41.051859],[-72.137297,41.039684],[-72.135137,41.031284],[-72.137409,41.023908],[-72.116368,40.999796],[-72.109008,40.994084],[-72.10216,40.991509],[-72.095456,40.991349],[-72.083039,40.996453],[-72.079951,41.003429],[-72.079208,41.006437],[-72.076175,41.009093],[-72.061448,41.009442],[-72.057934,41.004789],[-72.057075,41.004893],[-72.055188,41.005236],[-72.051585,41.006437],[-72.049526,41.009697],[-72.051549,41.015741],[-72.051928,41.020506],[-72.047468,41.022565],[-72.035792,41.020759],[-72.015013,41.028348],[-71.99926,41.039669],[-71.96704,41.047772],[-71.961078,41.054277],[-71.960355,41.059878],[-71.961563,41.064021],[-71.959595,41.071237],[-71.93825,41.077413],[-71.919385,41.080517],[-71.899256,41.080837],[-71.895496,41.077381],[-71.889543,41.075701],[-71.869558,41.075046],[-71.86447,41.076918],[-71.857494,41.073558],[-71.856214,41.070598],[-71.87391,41.052278],[-71.903736,41.040166],[-71.935689,41.034182],[-72.029357,40.999909],[-72.114448,40.972085],[-72.39585,40.86666],[-72.469996,40.84274],[-72.573441,40.813251],[-72.745208,40.767091],[-72.753112,40.763571],[-72.757176,40.764371],[-72.768152,40.761587],[-72.863164,40.732962],[-72.923214,40.713282],[-73.012545,40.679651],[-73.054963,40.666371],[-73.145266,40.645491],[-73.20844,40.630884],[-73.23914,40.6251],[-73.262106,40.621476],[-73.264493,40.621437],[-73.306396,40.620756],[-73.30974,40.622532],[-73.319257,40.635795],[-73.351465,40.6305],[-73.391967,40.617501],[-73.423806,40.609869],[-73.450369,40.603501],[-73.562372,40.583703],[-73.583773,40.586703],[-73.610873,40.587703],[-73.646674,40.582804],[-73.701138,40.58361],[-73.754776,40.584404],[-73.754323,40.586357],[-73.753349,40.59056],[-73.774928,40.590759],[-73.80143,40.585659],[-73.806834,40.584619],[-73.834408,40.577201],[-73.878906,40.560888],[-73.934512,40.545175],[-73.934466,40.555281],[-73.932729,40.560266],[-73.935686,40.564914],[-73.938598,40.566161],[-73.944558,40.568716],[-73.95005,40.573363],[-73.95938,40.572682],[-73.991346,40.57035],[-74.002056,40.570623],[-74.00903,40.572846],[-74.012022,40.574528],[-74.012996,40.578169],[-74.007276,40.583616],[-74.00635,40.584767],[-74.001591,40.590684],[-74.003281,40.595754],[-74.010926,40.600789],[-74.032856,40.604421],[-74.03959,40.612934],[-74.042412,40.624847],[-74.038336,40.637074],[-74.035868,40.640776],[-74.032066,40.646479],[-74.018272,40.659019],[-74.020467,40.67877],[-74.022911,40.681267],[-74.023982,40.68236],[-74.024827,40.687007],[-74.021721,40.693504],[-74.01849,40.695457],[-74.0168,40.701794],[-74.019526,40.706985],[-74.024543,40.709436],[-74.021117,40.727417],[-74.013784,40.756601],[-74.009184,40.763601],[-74.000223,40.77605],[-73.991568,40.788074],[-73.984822,40.797444],[-73.968082,40.8207],[-73.963182,40.8269],[-73.953982,40.848],[-73.948281,40.858399],[-73.938081,40.874699],[-73.933408,40.882075],[-73.933406,40.882078],[-73.929006,40.889578],[-73.926758,40.895355],[-73.919705,40.913478],[-73.918405,40.917477],[-73.917905,40.917577],[-73.91768,40.919498],[-73.91558,40.924898],[-73.90728,40.951498],[-73.896479,40.981697],[-73.893979,40.997197],[-73.90268,40.997297],[-73.90501,40.997591],[-73.907054,40.998476],[-73.91188,41.001297],[-74.041049,41.059086],[-74.041054,41.059088],[-74.092486,41.081896],[-74.096786,41.083796],[-74.18239,41.121595],[-74.21321,41.134192],[-74.234473,41.142883],[-74.301994,41.172594],[-74.320995,41.182394],[-74.365849,41.202999],[-74.378898,41.208994],[-74.457584,41.248225],[-74.499603,41.267344],[-74.607348,41.317774],[-74.641544,41.332879],[-74.694914,41.357423],[-74.696398,41.357339],[-74.691076,41.36034],[-74.689767,41.361558],[-74.689516,41.363843],[-74.691129,41.367324],[-74.694968,41.370431],[-74.703282,41.375093],[-74.708458,41.378901],[-74.710391,41.382102],[-74.713411,41.389814],[-74.715979,41.392584],[-74.720891,41.39469],[-74.730384,41.39566],[-74.73364,41.396975],[-74.736103,41.398398],[-74.738554,41.401191],[-74.740963,41.40512],[-74.741717,41.40788],[-74.741086,41.411413],[-74.738684,41.413463],[-74.734731,41.422699],[-74.734893,41.425818],[-74.735519,41.427465],[-74.736688,41.429228],[-74.738455,41.430641],[-74.740932,41.43116],[-74.743821,41.430635],[-74.75068,41.427984],[-74.754359,41.425147],[-74.754709,41.424993],[-74.758587,41.423287],[-74.763701,41.423612],[-74.77065,41.42623],[-74.773239,41.426352],[-74.778029,41.425104],[-74.784339,41.422397],[-74.790417,41.42166],[-74.793856,41.422671],[-74.795396,41.42398],[-74.799546,41.43129],[-74.800095,41.432661],[-74.80037,41.43606],[-74.801225,41.4381],[-74.805655,41.442101],[-74.807582,41.442847],[-74.812123,41.442982],[-74.817995,41.440505],[-74.82288,41.436792],[-74.826031,41.431736],[-74.828592,41.430698],[-74.830671,41.430503],[-74.834635,41.430796],[-74.836915,41.431625],[-74.845572,41.437577],[-74.848602,41.440179],[-74.8542,41.443166],[-74.858578,41.444427],[-74.864688,41.443993],[-74.876721,41.440338],[-74.888691,41.438259],[-74.893913,41.43893],[-74.896025,41.439987],[-74.896399,41.442179],[-74.894931,41.446099],[-74.889075,41.451245],[-74.889116,41.452534],[-74.890358,41.455324],[-74.892114,41.456959],[-74.895069,41.45819],[-74.9042,41.459806],[-74.906887,41.461131],[-74.908103,41.464639],[-74.908133,41.468117],[-74.909181,41.472436],[-74.912517,41.475605],[-74.917282,41.477041],[-74.924092,41.477138],[-74.926835,41.478327],[-74.932585,41.482323],[-74.941798,41.483542],[-74.945634,41.483213],[-74.94808,41.480625],[-74.956411,41.476735],[-74.95826,41.476396],[-74.969887,41.477438],[-74.981652,41.479945],[-74.983341,41.480894],[-74.985004,41.483703],[-74.985595,41.485863],[-74.985247,41.489113],[-74.982463,41.496467],[-74.982168,41.498486],[-74.982385,41.500981],[-74.984372,41.506611],[-74.985653,41.507926],[-74.987645,41.508738],[-74.993893,41.508754],[-74.999612,41.5074],[-75.003151,41.508101],[-75.003694,41.509295],[-75.003706,41.511118],[-75.002592,41.51456],[-75.000935,41.517638],[-75.000911,41.519292],[-75.001297,41.52065],[-75.00385,41.524052],[-75.009552,41.528461],[-75.014919,41.531399],[-75.016616,41.53211],[-75.023018,41.533147],[-75.024206,41.534018],[-75.024757,41.535099],[-75.024798,41.539801],[-75.022828,41.541456],[-75.017626,41.542734],[-75.016144,41.544246],[-75.016328,41.546501],[-75.018524,41.551802],[-75.027343,41.563541],[-75.029211,41.564637],[-75.033162,41.565092],[-75.036989,41.567049],[-75.04049,41.569688],[-75.043879,41.575094],[-75.04676,41.583258],[-75.052858,41.587772],[-75.060012,41.590813],[-75.063677,41.594739],[-75.066955,41.599428],[-75.069712,41.60169],[-75.074613,41.605711],[-75.074626,41.607905],[-75.071667,41.609501],[-75.067795,41.610143],[-75.062716,41.609639],[-75.059725,41.610801],[-75.059956,41.612306],[-75.061675,41.615468],[-75.06156,41.616429],[-75.060098,41.617482],[-75.05385,41.618655],[-75.051856,41.618157],[-75.048385,41.615986],[-75.047298,41.615791],[-75.045508,41.616203],[-75.044224,41.617978],[-75.043562,41.62364],[-75.048199,41.632011],[-75.048658,41.633781],[-75.049281,41.641862],[-75.048683,41.656317],[-75.04992,41.662556],[-75.053991,41.668194],[-75.057251,41.668933],[-75.05843,41.669653],[-75.059332,41.67232],[-75.058765,41.674412],[-75.052653,41.678436],[-75.051285,41.679961],[-75.051234,41.682439],[-75.052736,41.688393],[-75.056745,41.695703],[-75.059829,41.699716],[-75.067278,41.705434],[-75.06883,41.708161],[-75.068642,41.710146],[-75.06663,41.712588],[-75.061174,41.712935],[-75.052226,41.711396],[-75.050689,41.711969],[-75.049862,41.713309],[-75.049699,41.715093],[-75.053527,41.72715],[-75.054818,41.735168],[-75.052808,41.744725],[-75.053431,41.752538],[-75.060759,41.764638],[-75.064901,41.766686],[-75.068567,41.767298],[-75.072664,41.768807],[-75.074231,41.770518],[-75.075942,41.771518],[-75.079478,41.771205],[-75.09281,41.768361],[-75.095451,41.768366],[-75.10099,41.769121],[-75.103492,41.771238],[-75.104334,41.772693],[-75.10464,41.774203],[-75.103548,41.782008],[-75.102329,41.786503],[-75.101463,41.787941],[-75.092876,41.796386],[-75.088328,41.797534],[-75.081415,41.796483],[-75.07827,41.797467],[-75.076889,41.798509],[-75.074412,41.802191],[-75.072168,41.808327],[-75.071751,41.811901],[-75.072172,41.813732],[-75.074409,41.815088],[-75.078063,41.815112],[-75.079818,41.814815],[-75.085789,41.811626],[-75.089484,41.811576],[-75.093537,41.813375],[-75.100024,41.818347],[-75.113334,41.822782],[-75.114837,41.82567],[-75.115147,41.827285],[-75.114998,41.8303],[-75.113441,41.836298],[-75.113369,41.840698],[-75.114399,41.843583],[-75.115598,41.844638],[-75.118789,41.845819],[-75.127913,41.844903],[-75.130983,41.845145],[-75.140241,41.852078],[-75.143824,41.851737],[-75.146446,41.850899],[-75.152898,41.848564],[-75.156512,41.848327],[-75.161541,41.849836],[-75.164168,41.851586],[-75.166217,41.853862],[-75.168733,41.859258],[-75.168053,41.867043],[-75.169142,41.87029],[-75.170565,41.871608],[-75.174574,41.87266],[-75.176633,41.872371],[-75.179134,41.869935],[-75.180497,41.86568],[-75.182271,41.862198],[-75.183937,41.860515],[-75.185254,41.85993],[-75.186993,41.860109],[-75.188888,41.861264],[-75.190203,41.862454],[-75.191441,41.865063],[-75.194382,41.867287],[-75.197836,41.868807],[-75.204002,41.869867],[-75.209741,41.86925],[-75.21497,41.867449],[-75.220125,41.860534],[-75.223734,41.857456],[-75.22572,41.857481],[-75.231612,41.859459],[-75.234565,41.861569],[-75.238743,41.865699],[-75.241134,41.867118],[-75.243345,41.866875],[-75.248045,41.8633],[-75.251197,41.86204],[-75.257825,41.862154],[-75.260527,41.8638],[-75.262802,41.866213],[-75.263673,41.868105],[-75.263815,41.870757],[-75.261488,41.873277],[-75.258439,41.875087],[-75.257564,41.877108],[-75.260623,41.883783],[-75.263005,41.885109],[-75.267789,41.885982],[-75.271292,41.88736],[-75.272581,41.893168],[-75.272778,41.897112],[-75.267773,41.901971],[-75.267562,41.907054],[-75.269736,41.911363],[-75.275368,41.919564],[-75.276552,41.922208],[-75.276501,41.926679],[-75.277243,41.933598],[-75.279094,41.938917],[-75.289383,41.942891],[-75.290966,41.945039],[-75.291762,41.947092],[-75.29143,41.952477],[-75.293713,41.954593],[-75.29858,41.954521],[-75.300409,41.953871],[-75.301593,41.952811],[-75.301233,41.9489],[-75.301664,41.94838],[-75.303966,41.948216],[-75.310358,41.949012],[-75.312817,41.950182],[-75.318168,41.954236],[-75.32004,41.960867],[-75.322384,41.961693],[-75.329318,41.968232],[-75.335771,41.970315],[-75.339488,41.970786],[-75.342204,41.972872],[-75.34246,41.974303],[-75.337791,41.984386],[-75.337602,41.9867],[-75.341125,41.992772],[-75.346568,41.995324],[-75.353504,41.99711],[-75.359579,41.999445],[-75.431961,41.999363],[-75.436216,41.999353],[-75.477144,41.999407],[-75.48315,41.999259],[-75.483738,41.999244],[-75.610316,41.99896],[-75.742217,41.997864],[-75.870677,41.998828],[-75.98025,41.999035],[-75.983082,41.999035],[-76.10584,41.998858],[-76.123696,41.998954],[-76.131201,41.998954],[-76.145519,41.998913],[-76.343722,41.998346],[-76.349898,41.99841],[-76.462155,41.998934],[-76.46654,41.999025],[-76.557624,42.000149],[-76.558118,42.000155],[-76.749675,42.001689],[-76.815878,42.001673],[-76.835079,42.001773],[-76.920784,42.001774],[-76.921884,42.001674],[-76.927084,42.001674],[-76.937084,42.001674],[-76.942585,42.001574],[-76.965686,42.001274],[-76.965728,42.001274],[-77.007536,42.000819],[-77.007635,42.000848],[-77.063676,42.000461],[-77.124693,41.999395],[-77.505308,42.00007],[-77.610028,41.999519],[-77.749931,41.998782],[-77.822799,41.998547],[-77.83203,41.998524],[-77.997508,41.998758],[-78.030963,41.999392],[-78.031177,41.999415],[-78.12473,42.000452],[-78.206604,41.999622],[-78.271204,41.998968],[-78.308128,41.999415],[-78.59665,41.999877],[-78.749754,41.998109],[-78.874759,41.997559],[-78.918855,41.998125],[-78.983065,41.998949],[-79.052472,41.999224],[-79.061265,41.999259],[-79.17857,41.999458],[-79.249772,41.998807],[-79.472472,41.998255],[-79.538445,41.998527],[-79.551385,41.998666],[-79.610839,41.998989],[-79.625301,41.999068],[-79.625287,41.999003],[-79.670128,41.999335],[-79.761374,41.999067],[-79.761798,42.019042],[-79.761709,42.11899],[-79.762122,42.131246],[-79.761861,42.150712],[-79.761759,42.162675],[-79.761921,42.173319],[-79.761929,42.179693],[-79.761833,42.183627],[-79.762152,42.243054],[-79.761964,42.251354],[-79.761951,42.26986],[-79.717825,42.284711],[-79.645358,42.315631],[-79.593992,42.341641],[-79.546262,42.363417],[-79.510999,42.382373],[-79.474794,42.404291],[-79.453533,42.411157],[-79.429119,42.42838],[-79.405458,42.453281],[-79.381943,42.466491],[-79.36213,42.480195],[-79.351989,42.48892],[-79.342316,42.489664],[-79.335129,42.488321],[-79.331483,42.489076],[-79.323079,42.494795],[-79.31774,42.499884],[-79.283364,42.511228],[-79.264624,42.523159],[-79.242889,42.531757],[-79.223195,42.536087],[-79.193232,42.545881],[-79.148723,42.553672],[-79.138569,42.564462],[-79.136725,42.569693],[-79.12963,42.589824],[-79.126261,42.590937],[-79.121921,42.594234],[-79.113713,42.605994],[-79.111361,42.613358],[-79.078761,42.640058],[-79.073261,42.639958],[-79.06376,42.644758],[-79.062261,42.668358],[-79.04886,42.689158],[-79.01886,42.701558],[-79.00616,42.704558],[-78.991159,42.705358],[-78.944158,42.731958],[-78.918157,42.737258],[-78.868556,42.770258],[-78.853455,42.783958],[-78.851355,42.791758],[-78.856456,42.800258],[-78.859356,42.800658],[-78.863656,42.813058],[-78.865656,42.826758],[-78.860445,42.83511],[-78.859456,42.841358],[-78.865592,42.852358],[-78.872227,42.853306],[-78.882557,42.867258],[-78.891655,42.884845],[-78.912458,42.886557],[-78.905758,42.899957],[-78.905659,42.923357],[-78.909159,42.933257],[-78.918859,42.946857],[-78.921206,42.948422],[-78.93236,42.955857],[-78.961761,42.957756],[-78.975062,42.968756],[-79.011563,42.985256],[-79.019964,42.994756],[-79.02092,43.014287],[-79.011764,43.028956],[-79.005164,43.047056],[-79.00545,43.057231],[-79.01053,43.064389],[-79.019578,43.066294],[-79.074467,43.077855],[-79.074678,43.083141],[-79.069667,43.088355],[-79.064754,43.093205],[-79.060281,43.105086],[-79.0614,43.111096],[-79.061967,43.115355],[-79.062518,43.120182],[-79.060206,43.124799],[-79.056767,43.126855],[-79.049467,43.135055],[-79.044066,43.138055],[-79.042366,43.143655],[-79.042867,43.149155],[-79.044567,43.153255],[-79.046567,43.162355],[-79.048467,43.164655],[-79.053067,43.173655],[-79.052567,43.183655],[-79.050744,43.197417],[-79.053109,43.209717],[-79.052868,43.222054],[-79.055868,43.238554],[-79.061388,43.251349],[-79.070469,43.262454],[-79.019848,43.273686],[-78.971866,43.281254],[-78.930764,43.293254],[-78.859362,43.310955],[-78.836261,43.318455],[-78.834061,43.317555],[-78.777759,43.327055],[-78.747158,43.334555],[-78.696856,43.341255],[-78.634346,43.357624],[-78.547395,43.369541],[-78.488857,43.374763],[-78.482526,43.374425],[-78.473099,43.370812],[-78.465502,43.371232],[-78.370221,43.376505],[-78.358711,43.373988],[-78.250641,43.370866],[-78.233609,43.36907],[-78.145195,43.37551],[-78.104509,43.375628],[-78.023609,43.366575],[-77.995591,43.365293],[-77.994838,43.365259],[-77.976438,43.369159],[-77.965238,43.368059],[-77.952937,43.36346],[-77.922736,43.35696],[-77.904836,43.35696],[-77.875335,43.34966],[-77.816533,43.34356],[-77.797381,43.339857],[-77.785132,43.339261],[-77.760231,43.341161],[-77.756931,43.337361],[-77.73063,43.330161],[-77.714129,43.323561],[-77.701429,43.308261],[-77.660359,43.282998],[-77.653759,43.279484],[-77.628315,43.271303],[-77.602161,43.256949],[-77.577223,43.243263],[-77.551022,43.235763],[-77.534184,43.234569],[-77.50092,43.250363],[-77.476642,43.254522],[-77.436831,43.265701],[-77.414516,43.269263],[-77.391015,43.276363],[-77.385388,43.276847],[-77.376038,43.277652],[-77.341092,43.280661],[-77.314619,43.28103],[-77.303979,43.27815],[-77.264177,43.277363],[-77.214058,43.284114],[-77.173088,43.281509],[-77.143416,43.287561],[-77.130429,43.285635],[-77.111866,43.287945],[-77.067295,43.280937],[-77.033875,43.271218],[-76.999691,43.271456],[-76.988445,43.2745],[-76.958402,43.270005],[-76.952174,43.270692],[-76.922351,43.285006],[-76.904288,43.291816],[-76.886913,43.293891],[-76.877397,43.292926],[-76.854976,43.298443],[-76.841675,43.305399],[-76.794708,43.309632],[-76.769025,43.318452],[-76.747067,43.331477],[-76.731039,43.343421],[-76.722501,43.343686],[-76.69836,43.344436],[-76.684856,43.352691],[-76.669624,43.366526],[-76.642672,43.401241],[-76.630774,43.413356],[-76.617109,43.419137],[-76.607093,43.423374],[-76.562826,43.448537],[-76.53181,43.460299],[-76.521999,43.468617],[-76.515882,43.471136],[-76.506858,43.469127],[-76.486962,43.47535],[-76.472498,43.492781],[-76.437473,43.509213],[-76.417581,43.521285],[-76.410636,43.523159],[-76.368849,43.525822],[-76.345492,43.513437],[-76.330911,43.511978],[-76.297103,43.51287],[-76.259858,43.524728],[-76.235834,43.529256],[-76.228701,43.532987],[-76.217958,43.545156],[-76.209853,43.560136],[-76.203473,43.574978],[-76.199138,43.600454],[-76.196596,43.649761],[-76.2005,43.680231],[-76.205436,43.718751],[-76.213205,43.753513],[-76.229268,43.804135],[-76.250135,43.825713],[-76.266977,43.838046],[-76.277812,43.841205],[-76.283307,43.843923],[-76.284481,43.850968],[-76.28272,43.858601],[-76.276262,43.863297],[-76.269217,43.868581],[-76.261584,43.873278],[-76.249842,43.875626],[-76.243384,43.877975],[-76.234578,43.877388],[-76.227485,43.875061],[-76.219313,43.86682],[-76.202257,43.864898],[-76.192777,43.869175],[-76.180604,43.877529],[-76.158249,43.887542],[-76.145506,43.888681],[-76.133267,43.892975],[-76.127285,43.897889],[-76.125023,43.912773],[-76.130446,43.933082],[-76.133697,43.940356],[-76.134359,43.945614],[-76.134296,43.954726],[-76.139086,43.962111],[-76.146072,43.964705],[-76.169802,43.962202],[-76.184874,43.971128],[-76.22805,43.982737],[-76.236864,43.9779],[-76.244439,43.975803],[-76.252318,43.975803],[-76.258306,43.976118],[-76.264294,43.978009],[-76.268706,43.980846],[-76.268702,43.987278],[-76.266733,43.995578],[-76.269672,44.001148],[-76.281928,44.009177],[-76.287821,44.01142],[-76.296755,44.013307],[-76.298962,44.017719],[-76.300222,44.022762],[-76.299592,44.030956],[-76.296986,44.045455],[-76.300532,44.057188],[-76.304207,44.059445],[-76.360306,44.070907],[-76.360798,44.087644],[-76.366972,44.100409],[-76.363835,44.111696],[-76.358163,44.123337],[-76.355679,44.133258],[-76.3524,44.137226],[-76.312647,44.199044],[-76.286547,44.203773],[-76.249661,44.204171],[-76.245487,44.203669],[-76.206777,44.214543],[-76.191328,44.221244],[-76.164265,44.239603],[-76.161833,44.280777],[-76.130884,44.296635],[-76.126565,44.294581],[-76.118136,44.29485],[-76.111931,44.298031],[-76.097351,44.299547],[-76.045228,44.331724],[-76.008361,44.343856],[-76.000998,44.347534],[-75.982392,44.347404],[-75.978281,44.34688],[-75.974839,44.346172],[-75.973053,44.343634],[-75.970185,44.342835],[-75.94954,44.349129],[-75.939664,44.355395],[-75.929465,44.359603],[-75.922247,44.36568],[-75.912985,44.368084],[-75.871496,44.394839],[-75.86006,44.403282],[-75.82083,44.432244],[-75.807778,44.471644],[-75.76623,44.515851],[-75.727052,44.542812],[-75.696586,44.567583],[-75.662381,44.591934],[-75.618364,44.619637],[-75.580912,44.648521],[-75.505903,44.705081],[-75.477642,44.720224],[-75.423943,44.756329],[-75.413885,44.76889],[-75.397007,44.773471],[-75.387371,44.78003],[-75.372347,44.78311],[-75.36636,44.789472],[-75.346527,44.805563],[-75.333744,44.806378],[-75.306487,44.826144],[-75.30763,44.836813],[-75.283136,44.849156],[-75.26825,44.855119],[-75.255517,44.857651],[-75.241303,44.866958],[-75.228635,44.8679],[-75.218548,44.87554],[-75.203012,44.877548],[-75.196227,44.881368],[-75.188283,44.88322],[-75.165123,44.893324],[-75.142958,44.900237],[-75.133977,44.911838],[-75.119757,44.917825],[-75.105162,44.921193],[-75.096659,44.927067],[-75.066245,44.930174],[-75.059966,44.93457],[-75.027125,44.946568],[-75.005155,44.958402],[-74.999655,44.965921],[-74.99927,44.971638],[-74.992756,44.977449],[-74.972463,44.983402],[-74.946686,44.984665],[-74.907956,44.983359],[-74.900733,44.992754],[-74.887837,45.000046],[-74.877232,45.001362],[-74.868663,45.001274],[-74.861927,45.002771],[-74.854443,45.00539],[-74.846175,45.01029],[-74.834669,45.014683],[-74.826578,45.01585],[-74.819641,45.012874],[-74.813263,45.013543],[-74.805421,45.011003],[-74.799434,45.009132],[-74.793148,45.004647],[-74.768749,45.003893],[-74.760215,44.994946],[-74.74464,44.990577],[-74.731301,44.990422],[-74.726228,44.994863],[-74.722574,44.998062],[-74.702018,45.003322],[-74.683973,44.99969],[-74.678428,45.000047],[-74.673047,45.000942],[-74.667338,45.001648],[-74.661478,44.999592],[-74.54902,44.998699],[-74.45753,44.997032],[-74.335184,44.991905],[-74.234136,44.992148],[-74.146814,44.9915],[-74.027392,44.995765]]]]}}]} diff --git a/Where/RegionKit/Sources/Resources/regions/us-OH.geojson b/Where/RegionKit/Sources/Resources/regions/us-OH.geojson new file mode 100644 index 00000000..df331120 --- /dev/null +++ b/Where/RegionKit/Sources/Resources/regions/us-OH.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"region":"us-OH","name":"Ohio"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-82.835118,41.708971],[-82.82572,41.72281],[-82.820409,41.724549],[-82.810487,41.720524],[-82.782719,41.694003],[-82.793069,41.664692],[-82.827011,41.633701],[-82.842099,41.628323],[-82.843602,41.647009],[-82.835118,41.708971]]],[[[-82.700208,41.61219],[-82.691123,41.611331],[-82.68015,41.61897],[-82.677772,41.617986],[-82.680669,41.594611],[-82.686033,41.587246],[-82.688744,41.585896],[-82.702027,41.585437],[-82.725827,41.595199],[-82.735766,41.600982],[-82.735707,41.603361],[-82.718802,41.619629],[-82.70731,41.619609],[-82.703438,41.617734],[-82.700208,41.61219]]],[[[-81.725583,39.215835],[-81.726973,39.215068],[-81.729949,39.211884],[-81.733357,39.205868],[-81.735805,39.196268],[-81.737085,39.193836],[-81.741533,39.189596],[-81.749853,39.186489],[-81.752754,39.184676],[-81.755754,39.180976],[-81.755815,39.180524],[-81.756254,39.177276],[-81.754254,39.171476],[-81.744621,39.148413],[-81.743565,39.141933],[-81.744525,39.138829],[-81.744838,39.130898],[-81.744568,39.126816],[-81.742153,39.116777],[-81.742953,39.106578],[-81.743853,39.102378],[-81.745453,39.098078],[-81.747253,39.095378],[-81.747253,39.095378],[-81.752353,39.089878],[-81.760753,39.084078],[-81.764854,39.081978],[-81.775554,39.078378],[-81.781454,39.078078],[-81.785554,39.078578],[-81.790754,39.079778],[-81.798155,39.082878],[-81.803055,39.083878],[-81.807855,39.083978],[-81.810655,39.083278],[-81.812355,39.082078],[-81.813855,39.079278],[-81.814155,39.073478],[-81.813355,39.065878],[-81.811655,39.059578],[-81.808955,39.055178],[-81.803355,39.047678],[-81.800355,39.044978],[-81.793304,39.040353],[-81.786554,39.036579],[-81.772854,39.026179],[-81.767253,39.019979],[-81.764253,39.015279],[-81.764253,39.006579],[-81.765153,39.002579],[-81.767188,39.000115],[-81.771975,38.996845],[-81.774062,38.993682],[-81.775551,38.990107],[-81.776723,38.985142],[-81.776466,38.982048],[-81.775734,38.980737],[-81.779883,38.972773],[-81.78182,38.964935],[-81.780736,38.958975],[-81.778845,38.955892],[-81.77396,38.951645],[-81.769703,38.948707],[-81.756975,38.937152],[-81.756131,38.933545],[-81.758506,38.927942],[-81.759995,38.925828],[-81.762659,38.924121],[-81.766227,38.922946],[-81.76976,38.92273],[-81.774106,38.922965],[-81.781248,38.924804],[-81.785647,38.926193],[-81.793372,38.930204],[-81.796376,38.932498],[-81.806137,38.942112],[-81.814235,38.946168],[-81.819692,38.947016],[-81.825026,38.946603],[-81.827354,38.945898],[-81.831516,38.943697],[-81.838067,38.937135],[-81.844486,38.928746],[-81.84607,38.913192],[-81.845312,38.910088],[-81.848653,38.901407],[-81.855971,38.892734],[-81.858921,38.89019],[-81.874857,38.881174],[-81.889233,38.874279],[-81.892837,38.873869],[-81.898541,38.874582],[-81.908645,38.87846],[-81.910312,38.879294],[-81.915898,38.88427],[-81.926967,38.891602],[-81.928,38.893492],[-81.928352,38.895371],[-81.926671,38.901311],[-81.919098,38.908615],[-81.917757,38.910604],[-81.911936,38.915564],[-81.908341,38.917403],[-81.90091,38.924338],[-81.899953,38.925405],[-81.89847,38.929603],[-81.900595,38.937671],[-81.9066,38.945262],[-81.912443,38.954343],[-81.918214,38.966595],[-81.926561,38.977508],[-81.933186,38.987659],[-81.936828,38.990414],[-81.941829,38.993295],[-81.951447,38.996032],[-81.95926,38.995227],[-81.960832,38.994275],[-81.967769,38.992955],[-81.973871,38.992413],[-81.977455,38.992679],[-81.979371,38.993193],[-81.981158,38.994351],[-81.982032,38.995697],[-81.982761,39.001978],[-81.983761,39.005478],[-81.987061,39.011978],[-81.991361,39.018378],[-81.994961,39.022478],[-82.002261,39.027878],[-82.007062,39.029578],[-82.017562,39.030078],[-82.027262,39.028378],[-82.035963,39.025478],[-82.038763,39.022678],[-82.041563,39.017878],[-82.045663,39.003778],[-82.049163,38.997278],[-82.051563,38.994378],[-82.058764,38.990078],[-82.068864,38.984878],[-82.079364,38.981078],[-82.089065,38.975978],[-82.091565,38.973778],[-82.093165,38.97098],[-82.094865,38.964578],[-82.098873,38.958319],[-82.100565,38.955678],[-82.109065,38.945579],[-82.110866,38.940379],[-82.110565,38.935279],[-82.111666,38.932579],[-82.120966,38.921079],[-82.128866,38.909979],[-82.134766,38.905579],[-82.143167,38.898079],[-82.144567,38.891679],[-82.145267,38.883479],[-82.142167,38.87708],[-82.139988,38.870345],[-82.139224,38.86502],[-82.141616,38.851394],[-82.144867,38.84048],[-82.147667,38.83698],[-82.16157,38.824632],[-82.165898,38.822437],[-82.179478,38.817376],[-82.191172,38.815137],[-82.19928,38.808688],[-82.20929,38.802672],[-82.214494,38.798691],[-82.217269,38.79568],[-82.221566,38.787187],[-82.221518,38.77981],[-82.220449,38.773739],[-82.216614,38.76835],[-82.207141,38.763943],[-82.201537,38.760372],[-82.198882,38.757725],[-82.195606,38.752441],[-82.193268,38.741182],[-82.189668,38.737382],[-82.188268,38.734082],[-82.186568,38.722482],[-82.184567,38.715882],[-82.182467,38.708782],[-82.182867,38.705482],[-82.185067,38.699182],[-82.190167,38.687382],[-82.190867,38.680383],[-82.187667,38.672683],[-82.186067,38.666783],[-82.185567,38.659583],[-82.179067,38.648883],[-82.176767,38.642783],[-82.174267,38.633183],[-82.172667,38.629684],[-82.172066,38.625984],[-82.172066,38.619284],[-82.175167,38.608484],[-82.177267,38.603784],[-82.181967,38.599384],[-82.188767,38.594984],[-82.193824,38.593096],[-82.205171,38.591719],[-82.218967,38.591683],[-82.222168,38.591384],[-82.245969,38.598483],[-82.252469,38.598783],[-82.26207,38.598183],[-82.27147,38.595383],[-82.27427,38.593683],[-82.287102,38.582588],[-82.291271,38.578983],[-82.293471,38.575383],[-82.293871,38.572683],[-82.293271,38.560283],[-82.295671,38.538483],[-82.297771,38.533283],[-82.300271,38.529383],[-82.302871,38.523183],[-82.303971,38.517683],[-82.303071,38.504384],[-82.304223,38.496308],[-82.306351,38.490692],[-82.310639,38.483172],[-82.312511,38.476116],[-82.313935,38.468084],[-82.318111,38.457876],[-82.323999,38.449268],[-82.330335,38.4445],[-82.34064,38.440948],[-82.360145,38.438596],[-82.381773,38.434783],[-82.389746,38.434355],[-82.404882,38.439347],[-82.434375,38.430082],[-82.447076,38.426982],[-82.459676,38.424682],[-82.486577,38.418082],[-82.507676,38.410783],[-82.507678,38.410782],[-82.529579,38.405182],[-82.540199,38.403666],[-82.549799,38.403202],[-82.560664,38.404338],[-82.569368,38.406258],[-82.577176,38.40877],[-82.579976,38.41013],[-82.588249,38.415489],[-82.593673,38.421809],[-82.596921,38.426705],[-82.600761,38.437425],[-82.604089,38.459841],[-82.608202,38.468049],[-82.610458,38.471457],[-82.613802,38.474529],[-82.618474,38.477089],[-82.624106,38.479697],[-82.637707,38.484449],[-82.648395,38.490368],[-82.657051,38.496816],[-82.665481,38.505737],[-82.665548,38.505808],[-82.675724,38.515504],[-82.689965,38.53592],[-82.696621,38.542112],[-82.700045,38.544336],[-82.714142,38.550544],[-82.719662,38.553664],[-82.724846,38.5576],[-82.730958,38.559264],[-82.739582,38.558991],[-82.763695,38.560399],[-82.779472,38.559023],[-82.789776,38.559951],[-82.800112,38.563183],[-82.816012,38.570733],[-82.820161,38.572703],[-82.839538,38.586159],[-82.844306,38.590862],[-82.847186,38.595166],[-82.851314,38.604334],[-82.854291,38.613454],[-82.855795,38.620814],[-82.856791,38.632878],[-82.856291,38.646078],[-82.859391,38.660378],[-82.863291,38.669277],[-82.869592,38.678177],[-82.874892,38.682827],[-82.877592,38.690177],[-82.876892,38.697377],[-82.875292,38.704977],[-82.871192,38.718377],[-82.870392,38.722077],[-82.869892,38.728177],[-82.871292,38.739376],[-82.872592,38.742576],[-82.874341,38.74541],[-82.875492,38.747276],[-82.879492,38.751476],[-82.889193,38.756076],[-82.894193,38.756576],[-82.923694,38.750076],[-82.943147,38.74328],[-82.958895,38.734976],[-82.968695,38.728776],[-82.979395,38.725976],[-82.986095,38.726276],[-82.993996,38.728576],[-82.999296,38.729376],[-83.011816,38.730057],[-83.021752,38.72879],[-83.027917,38.727143],[-83.030702,38.72572],[-83.030891,38.725564],[-83.033014,38.723805],[-83.035964,38.720152],[-83.038442,38.716377],[-83.042338,38.708319],[-83.053104,38.695831],[-83.064319,38.688976],[-83.084226,38.68109],[-83.102746,38.677316],[-83.107436,38.67522],[-83.112372,38.671685],[-83.11786,38.666073],[-83.122547,38.6592],[-83.126311,38.645244],[-83.128973,38.640231],[-83.135046,38.631719],[-83.138572,38.628286],[-83.142836,38.625076],[-83.156926,38.620547],[-83.164744,38.620068],[-83.172647,38.620252],[-83.1914,38.617598],[-83.202453,38.616956],[-83.211027,38.618578],[-83.223076,38.624158],[-83.232404,38.627569],[-83.239515,38.628588],[-83.245572,38.627936],[-83.251103,38.626224],[-83.254558,38.623403],[-83.261126,38.622723],[-83.264011,38.621535],[-83.26755,38.61835],[-83.267694,38.618221],[-83.26851,38.615104],[-83.286514,38.599241],[-83.288885,38.597977],[-83.294193,38.596588],[-83.301951,38.598178],[-83.307832,38.600824],[-83.311448,38.603314],[-83.317542,38.609242],[-83.319101,38.612233],[-83.320099,38.616043],[-83.320531,38.622713],[-83.322383,38.630615],[-83.327636,38.637489],[-83.340004,38.645674],[-83.356445,38.654009],[-83.366661,38.658537],[-83.376302,38.661473],[-83.384755,38.663171],[-83.412039,38.666499],[-83.420194,38.668428],[-83.440404,38.669361],[-83.446989,38.670143],[-83.457055,38.673965],[-83.459809,38.673617],[-83.468059,38.67547],[-83.472157,38.678123],[-83.47642,38.682261],[-83.486477,38.690099],[-83.493342,38.694187],[-83.504365,38.699256],[-83.512571,38.701716],[-83.520953,38.703045],[-83.533339,38.702105],[-83.549298,38.698787],[-83.56187,38.695371],[-83.569098,38.692842],[-83.575121,38.691746],[-83.574754,38.692671],[-83.615736,38.684145],[-83.626922,38.679387],[-83.634018,38.673351],[-83.636208,38.670584],[-83.637377,38.66793],[-83.639396,38.659171],[-83.639954,38.652468],[-83.642994,38.643273],[-83.645914,38.637007],[-83.649737,38.632753],[-83.652916,38.630604],[-83.655425,38.629735],[-83.659304,38.628592],[-83.663911,38.62793],[-83.668111,38.628068],[-83.679484,38.630036],[-83.68552,38.63189],[-83.704006,38.639724],[-83.705314,38.639761],[-83.708164,38.639843],[-83.713405,38.641591],[-83.716933,38.643657],[-83.717915,38.645247],[-83.720779,38.646704],[-83.738207,38.647932],[-83.74992,38.649613],[-83.762445,38.652103],[-83.76509,38.652881],[-83.769347,38.65522],[-83.77216,38.65815],[-83.775761,38.666748],[-83.777141,38.671205],[-83.779961,38.684907],[-83.78362,38.695641],[-83.787113,38.699489],[-83.790676,38.701676],[-83.798549,38.704668],[-83.806317,38.706613],[-83.81388,38.707446],[-83.821854,38.709575],[-83.834015,38.716008],[-83.836696,38.717857],[-83.840595,38.721912],[-83.841689,38.724264],[-83.842506,38.727019],[-83.84274,38.730365],[-83.844676,38.737439],[-83.846207,38.74229],[-83.848734,38.747178],[-83.852085,38.751433],[-83.859028,38.756793],[-83.86653,38.7602],[-83.873168,38.762418],[-83.887107,38.7656],[-83.903917,38.768152],[-83.903971,38.76816],[-83.912922,38.769763],[-83.917217,38.769665],[-83.926986,38.771562],[-83.928591,38.772203],[-83.928454,38.774583],[-83.943978,38.783616],[-83.953546,38.786172],[-83.962123,38.787384],[-83.978814,38.787104],[-83.995447,38.781912],[-84.006104,38.780156],[-84.023113,38.775061],[-84.044486,38.770572],[-84.051642,38.771397],[-84.052685,38.771375],[-84.06341,38.771151],[-84.071491,38.770475],[-84.094334,38.775246],[-84.108836,38.779247],[-84.115655,38.782721],[-84.135088,38.789485],[-84.155912,38.794909],[-84.198358,38.80092],[-84.205592,38.802588],[-84.212904,38.805707],[-84.222059,38.813753],[-84.2253,38.817665],[-84.230181,38.826547],[-84.230427,38.827422],[-84.231306,38.830552],[-84.233265,38.842671],[-84.233727,38.853576],[-84.231837,38.87287],[-84.231914,38.874866],[-84.232132,38.880483],[-84.232343,38.884325],[-84.234453,38.893226],[-84.240155,38.900912],[-84.242689,38.903187],[-84.245647,38.907035],[-84.25701,38.923208],[-84.260797,38.926593],[-84.27491,38.941511],[-84.279916,38.945168],[-84.288164,38.955789],[-84.295076,38.968295],[-84.296466,38.985306],[-84.297255,38.989694],[-84.299362,38.995985],[-84.304698,39.006455],[-84.31368,39.016981],[-84.319936,39.022081],[-84.326539,39.027463],[-84.336339,39.032863],[-84.346039,39.036963],[-84.360439,39.041362],[-84.38684,39.045162],[-84.39414,39.045262],[-84.40094,39.046362],[-84.40254,39.045662],[-84.406941,39.045662],[-84.421467,39.050938],[-84.42573,39.053059],[-84.427913,39.054962],[-84.429841,39.058262],[-84.432341,39.067561],[-84.433141,39.072961],[-84.432641,39.078261],[-84.432941,39.083961],[-84.434641,39.086861],[-84.433941,39.092461],[-84.432841,39.094261],[-84.435541,39.102261],[-84.440642,39.109661],[-84.445242,39.114461],[-84.449793,39.117754],[-84.455342,39.12036],[-84.462042,39.12176],[-84.470542,39.12146],[-84.476243,39.11916],[-84.480943,39.11676],[-84.487743,39.11076],[-84.493743,39.10246],[-84.496543,39.10026],[-84.502062,39.096641],[-84.506082,39.095081],[-84.509743,39.09366],[-84.510076,39.093606],[-84.519543,39.09206],[-84.524644,39.09216],[-84.541344,39.09916],[-84.543544,39.09966],[-84.550844,39.09936],[-84.554444,39.09766],[-84.557544,39.09486],[-84.563944,39.08736],[-84.572144,39.08206],[-84.592408,39.078088],[-84.601682,39.074115],[-84.607928,39.073238],[-84.620112,39.073457],[-84.623732,39.074427],[-84.632446,39.07676],[-84.650346,39.09166],[-84.657246,39.09546],[-84.666147,39.09796],[-84.677247,39.09826],[-84.684847,39.100459],[-84.689747,39.104159],[-84.701947,39.118959],[-84.714048,39.132659],[-84.718548,39.137059],[-84.726148,39.141958],[-84.732048,39.144458],[-84.744149,39.147458],[-84.750749,39.147358],[-84.754449,39.146658],[-84.766749,39.138558],[-84.783991,39.11806],[-84.78768,39.115297],[-84.79382,39.112939],[-84.810753,39.109142],[-84.812241,39.107102],[-84.813767,39.106492],[-84.820157,39.10548],[-84.819985,39.149081],[-84.819826,39.156504],[-84.819802,39.157613],[-84.820159,39.227225],[-84.819813,39.244334],[-84.819801,39.247806],[-84.819859,39.251018],[-84.819633,39.261855],[-84.819622,39.27159],[-84.819451,39.305152],[-84.819451,39.305153],[-84.819352,39.309454],[-84.817453,39.391753],[-84.815754,39.477352],[-84.815754,39.477358],[-84.815555,39.510952],[-84.815555,39.511052],[-84.815355,39.52195],[-84.815355,39.521951],[-84.815155,39.548051],[-84.814955,39.566251],[-84.814955,39.567251],[-84.815036,39.567695],[-84.815156,39.568351],[-84.814705,39.628854],[-84.814323,39.655814],[-84.814619,39.669174],[-84.81453,39.680429],[-84.814129,39.726556],[-84.814129,39.72662],[-84.814189,39.785569],[-84.814179,39.786853],[-84.814209,39.799755],[-84.81412,39.811398],[-84.814179,39.814212],[-84.813852,39.824621],[-84.813793,39.826771],[-84.813703,39.843059],[-84.813674,39.843173],[-84.813549,39.850773],[-84.813464,39.853261],[-84.81305,39.872958],[-84.812787,39.89083],[-84.812698,39.891585],[-84.812411,39.916915],[-84.812411,39.916916],[-84.812357,39.921764],[-84.812193,39.92734],[-84.811212,39.995331],[-84.810933,40.005079],[-84.810099,40.034214],[-84.809737,40.048929],[-84.808706,40.107216],[-84.808305,40.127018],[-84.808291,40.129027],[-84.806766,40.180128],[-84.806347,40.192252],[-84.80634,40.192327],[-84.806175,40.197995],[-84.805627,40.223659],[-84.804098,40.302498],[-84.803918,40.310094],[-84.803917,40.310115],[-84.804119,40.352757],[-84.804119,40.352844],[-84.804504,40.411555],[-84.803928,40.462564],[-84.803828,40.465403],[-84.802547,40.50181],[-84.802483,40.528046],[-84.802265,40.572212],[-84.802265,40.572215],[-84.802135,40.644859],[-84.802193,40.660298],[-84.80222,40.674776],[-84.802157,40.689324],[-84.802127,40.691405],[-84.802094,40.702476],[-84.802181,40.718602],[-84.802119,40.728146],[-84.802119,40.728163],[-84.802266,40.742298],[-84.802538,40.765515],[-84.80217,40.800601],[-84.802935,40.922377],[-84.802936,40.922568],[-84.803313,40.989209],[-84.803313,40.989394],[-84.803374,41.089302],[-84.803341,41.096867],[-84.803234,41.121414],[-84.80378,41.14052],[-84.803413,41.164649],[-84.803594,41.173203],[-84.803472,41.173889],[-84.803492,41.252531],[-84.803492,41.252562],[-84.80358,41.270942],[-84.803581,41.271079],[-84.803582,41.271273],[-84.803926,41.367959],[-84.804133,41.408292],[-84.804046,41.408361],[-84.804015,41.411655],[-84.803956,41.426044],[-84.803956,41.426128],[-84.803919,41.435531],[-84.804457,41.488224],[-84.804551,41.500364],[-84.804729,41.530092],[-84.804729,41.530135],[-84.804729,41.530231],[-84.805812,41.61304],[-84.805696,41.631398],[-84.805673,41.632342],[-84.80621,41.67455],[-84.806082,41.696089],[-84.749955,41.698245],[-84.438067,41.704903],[-84.399547,41.70586],[-84.396547,41.705935],[-84.360546,41.706621],[-84.360416,41.706625],[-84.134417,41.712931],[-84.019373,41.716668],[-83.998849,41.716822],[-83.899764,41.719961],[-83.880539,41.720081],[-83.880387,41.720089],[-83.859541,41.72125],[-83.76315,41.723547],[-83.763038,41.72355],[-83.708937,41.72515],[-83.685337,41.726449],[-83.665937,41.726949],[-83.639636,41.727749],[-83.636636,41.727849],[-83.595235,41.729148],[-83.593835,41.729148],[-83.585235,41.729348],[-83.504334,41.731547],[-83.503433,41.731547],[-83.499733,41.731647],[-83.497733,41.731847],[-83.453832,41.732647],[-83.455626,41.727445],[-83.449001,41.710719],[-83.446032,41.706847],[-83.409531,41.691247],[-83.39263,41.691947],[-83.37573,41.686647],[-83.357073,41.687763],[-83.341817,41.693518],[-83.337985,41.698682],[-83.337977,41.70341],[-83.326825,41.701562],[-83.298731,41.683871],[-83.29561,41.681905],[-83.293928,41.680846],[-83.29068,41.676794],[-83.289682,41.676409],[-83.288469,41.675941],[-83.287125,41.675423],[-83.285181,41.674673],[-83.278455,41.672078],[-83.238191,41.651167],[-83.23166,41.644218],[-83.194524,41.631008],[-83.165713,41.623246],[-83.145887,41.617904],[-83.103928,41.613558],[-83.086036,41.60668],[-83.066593,41.59534],[-83.048222,41.573951],[-83.043287,41.568205],[-83.043079,41.567963],[-83.042909,41.567823],[-83.031653,41.558592],[-83.030764,41.557864],[-83.028072,41.555656],[-83.019057,41.550174],[-83.017473,41.549211],[-83.016753,41.548773],[-82.999916,41.538534],[-82.999897,41.538525],[-82.96985,41.524327],[-82.969642,41.524229],[-82.969574,41.52421],[-82.958481,41.521104],[-82.934369,41.514353],[-82.897728,41.519241],[-82.896854,41.519541],[-82.8882,41.522508],[-82.882305,41.52577],[-82.875229,41.529684],[-82.869422,41.533962],[-82.866262,41.537534],[-82.861323,41.543116],[-82.857841,41.547051],[-82.85677,41.548262],[-82.856533,41.55065],[-82.855197,41.564114],[-82.856088,41.566633],[-82.856647,41.568216],[-82.858702,41.574025],[-82.859531,41.576371],[-82.857945,41.578049],[-82.857316,41.578714],[-82.856919,41.579135],[-82.854263,41.581945],[-82.852957,41.583327],[-82.847657,41.585639],[-82.834101,41.587587],[-82.820207,41.570664],[-82.794324,41.546486],[-82.785496,41.540675],[-82.77201,41.54058],[-82.749907,41.54647],[-82.739868,41.545047],[-82.732886,41.544057],[-82.7319,41.543918],[-82.731628,41.543879],[-82.730516,41.543721],[-82.728489,41.543434],[-82.727656,41.543316],[-82.722069,41.542524],[-82.720539,41.542307],[-82.717878,41.54193],[-82.717595,41.541715],[-82.715227,41.539913],[-82.711332,41.53695],[-82.710935,41.536648],[-82.710967,41.536221],[-82.711632,41.527201],[-82.716492,41.522227],[-82.721914,41.516677],[-82.719956,41.510735],[-82.719811,41.510296],[-82.713904,41.501697],[-82.710013,41.49759],[-82.694722,41.493945],[-82.687921,41.492324],[-82.658302,41.461878],[-82.617745,41.431833],[-82.616952,41.428425],[-82.55808,41.400005],[-82.513827,41.384257],[-82.499099,41.381541],[-82.481214,41.381342],[-82.460599,41.386316],[-82.431315,41.396866],[-82.398086,41.413945],[-82.361784,41.426644],[-82.348076,41.428431],[-82.334182,41.430243],[-82.29158,41.428442],[-82.283488,41.429283],[-82.268479,41.430842],[-82.254678,41.434441],[-82.193375,41.46454],[-82.18885,41.468097],[-82.186174,41.47344],[-82.184774,41.47404],[-82.181598,41.471634],[-82.165373,41.47444],[-82.094169,41.495039],[-82.011966,41.515639],[-81.994565,41.51444],[-81.96813,41.506422],[-81.964912,41.505446],[-81.962664,41.501341],[-81.958463,41.498642],[-81.937862,41.491443],[-81.930404,41.490457],[-81.928652,41.490226],[-81.87736,41.483445],[-81.860262,41.483841],[-81.850141,41.486255],[-81.837092,41.489367],[-81.836059,41.489614],[-81.810992,41.495592],[-81.810758,41.495648],[-81.801207,41.496223],[-81.800253,41.496281],[-81.799746,41.496311],[-81.794449,41.49663],[-81.794157,41.496648],[-81.782258,41.49605],[-81.768898,41.491663],[-81.768856,41.491649],[-81.762489,41.49046],[-81.75861,41.489736],[-81.746095,41.4874],[-81.745818,41.487348],[-81.744755,41.48715],[-81.744272,41.487263],[-81.741852,41.487827],[-81.738755,41.48855],[-81.732674,41.491437],[-81.727806,41.493749],[-81.726429,41.494402],[-81.725763,41.494718],[-81.71931,41.497782],[-81.716836,41.498957],[-81.71559,41.499549],[-81.710986,41.501734],[-81.710953,41.50175],[-81.707622,41.505108],[-81.706864,41.505872],[-81.69325,41.514161],[-81.691248,41.515379],[-81.688058,41.517321],[-81.664884,41.53143],[-81.664851,41.53145],[-81.649872,41.535775],[-81.648453,41.536185],[-81.641055,41.538321],[-81.633652,41.540458],[-81.627431,41.544163],[-81.61691,41.550428],[-81.616567,41.550633],[-81.615816,41.551079],[-81.610163,41.554446],[-81.60967,41.55474],[-81.599747,41.560649],[-81.593144,41.565462],[-81.593092,41.5655],[-81.591981,41.56631],[-81.591471,41.566682],[-81.579815,41.575178],[-81.579746,41.575228],[-81.579727,41.575243],[-81.579285,41.575565],[-81.578666,41.576016],[-81.577459,41.576896],[-81.575715,41.578167],[-81.575577,41.578267],[-81.562844,41.587549],[-81.531674,41.612972],[-81.531612,41.613023],[-81.529955,41.614374],[-81.529742,41.614548],[-81.527026,41.615373],[-81.520707,41.617292],[-81.509359,41.620739],[-81.50044,41.623448],[-81.48864,41.631348],[-81.486919,41.632704],[-81.477544,41.640086],[-81.466038,41.649148],[-81.452461,41.663139],[-81.447734,41.668011],[-81.443647,41.672222],[-81.442843,41.673051],[-81.44272,41.673178],[-81.442645,41.673255],[-81.442552,41.673314],[-81.441803,41.673783],[-81.441339,41.674074],[-81.438971,41.67556],[-81.437809,41.676289],[-81.437014,41.676788],[-81.435582,41.677686],[-81.431441,41.680285],[-81.413062,41.691816],[-81.407984,41.695002],[-81.406098,41.696185],[-81.404476,41.697203],[-81.402417,41.698495],[-81.400686,41.699581],[-81.400617,41.699624],[-81.388632,41.707144],[-81.388269,41.707355],[-81.380935,41.711622],[-81.374509,41.715361],[-81.374454,41.715393],[-81.373666,41.715852],[-81.372587,41.71648],[-81.368913,41.718618],[-81.36867,41.718759],[-81.367498,41.719441],[-81.353229,41.727743],[-81.330154,41.737938],[-81.309499,41.747064],[-81.30701,41.748164],[-81.306495,41.748392],[-81.301626,41.750543],[-81.288892,41.758945],[-81.286925,41.760243],[-81.279925,41.759944],[-81.279187,41.759859],[-81.265576,41.758298],[-81.264224,41.758143],[-81.263751,41.758239],[-81.26311,41.758369],[-81.259349,41.75913],[-81.25552,41.759905],[-81.252977,41.76042],[-81.251918,41.760634],[-81.248672,41.761291],[-81.248609,41.761316],[-81.247832,41.761623],[-81.247607,41.761712],[-81.202359,41.77957],[-81.201721,41.779822],[-81.192684,41.783389],[-81.184368,41.786671],[-81.183328,41.78712],[-81.167638,41.793903],[-81.122295,41.813503],[-81.112885,41.817571],[-81.098931,41.821319],[-81.095592,41.822216],[-81.092716,41.822988],[-81.05192,41.839557],[-81.024525,41.846469],[-81.01049,41.853962],[-81.002663,41.854846],[-81.002117,41.854908],[-80.991799,41.856074],[-80.973674,41.858122],[-80.971141,41.858409],[-80.958494,41.859838],[-80.936244,41.862352],[-80.916528,41.865954],[-80.900342,41.868912],[-80.853542,41.884685],[-80.852064,41.885183],[-80.826889,41.893668],[-80.819165,41.896271],[-80.816444,41.897188],[-80.814943,41.897694],[-80.81324,41.89876],[-80.812659,41.899125],[-80.808697,41.901606],[-80.80801,41.902304],[-80.806133,41.904211],[-80.801436,41.908982],[-80.800794,41.909635],[-80.799822,41.909749],[-80.798311,41.909926],[-80.794388,41.910386],[-80.78641,41.911322],[-80.785497,41.911429],[-80.784682,41.911525],[-80.782944,41.908294],[-80.782052,41.906635],[-80.781112,41.906897],[-80.77709,41.908018],[-80.771784,41.909496],[-80.770756,41.909782],[-80.76802,41.910545],[-80.766046,41.911095],[-80.762176,41.912173],[-80.757945,41.913352],[-80.727504,41.918593],[-80.720816,41.919744],[-80.717469,41.920656],[-80.712218,41.922087],[-80.708293,41.923157],[-80.699363,41.925591],[-80.693429,41.927208],[-80.635576,41.942976],[-80.619443,41.947373],[-80.619242,41.947428],[-80.60861,41.950325],[-80.581882,41.95761],[-80.579439,41.958499],[-80.576735,41.959483],[-80.576591,41.959535],[-80.5755,41.959932],[-80.572028,41.961196],[-80.563327,41.964362],[-80.560671,41.965328],[-80.555898,41.967065],[-80.553836,41.967815],[-80.533774,41.973475],[-80.53139,41.974147],[-80.530164,41.974493],[-80.529274,41.974744],[-80.525521,41.975803],[-80.522057,41.97678],[-80.519461,41.977513],[-80.519425,41.977523],[-80.519425,41.977522],[-80.519405,41.976158],[-80.519304,41.943992],[-80.519345,41.929168],[-80.519294,41.849563],[-80.519239,41.765138],[-80.519369,41.752487],[-80.519408,41.739359],[-80.519373,41.701473],[-80.519424,41.671228],[-80.519357,41.669767],[-80.519339,41.539297],[-80.519157,41.528769],[-80.519225,41.499924],[-80.519209,41.489013],[-80.519169,41.462581],[-80.518993,41.435454],[-80.518993,41.416437],[-80.519025,41.416438],[-80.519249,41.378918],[-80.519217,41.372006],[-80.519249,41.36103],[-80.519297,41.350833],[-80.519345,41.34074],[-80.519345,41.340145],[-80.519293,41.339654],[-80.519293,41.339054],[-80.519311,41.339052],[-80.519281,41.337174],[-80.519281,41.337145],[-80.519281,41.335958],[-80.519265,41.333495],[-80.519129,41.312408],[-80.518794,41.305509],[-80.518996,41.2683],[-80.518993,41.268155],[-80.518893,41.265155],[-80.518693,41.248855],[-80.518893,41.232556],[-80.518893,41.219357],[-80.518893,41.219356],[-80.51883,41.209213],[-80.519144,41.171203],[-80.519115,41.14552],[-80.519167,41.133388],[-80.519167,41.133343],[-80.519012,41.125116],[-80.519012,41.125093],[-80.519012,41.125057],[-80.519056,41.125057],[-80.518992,41.115958],[-80.519192,41.105358],[-80.519125,41.100819],[-80.519092,41.090658],[-80.519088,41.082074],[-80.518999,41.075014],[-80.51896,41.071866],[-80.518928,41.070954],[-80.51896,41.061546],[-80.518927,41.015387],[-80.518989,40.995445],[-80.519,40.98738],[-80.519091,40.921061],[-80.519891,40.906661],[-80.51979,40.900761],[-80.519764,40.899858],[-80.519002,40.877543],[-80.519019,40.851339],[-80.51902,40.850073],[-80.519081,40.849157],[-80.518992,40.801221],[-80.519058,40.792298],[-80.518991,40.638801],[-80.521917,40.636992],[-80.52566,40.636068],[-80.530093,40.636255],[-80.532737,40.63559],[-80.539541,40.632122],[-80.545892,40.629702],[-80.551126,40.628847],[-80.56072,40.62368],[-80.56784,40.617552],[-80.571936,40.615456],[-80.576736,40.614224],[-80.579856,40.614304],[-80.583633,40.61552],[-80.592049,40.622496],[-80.594065,40.623664],[-80.598764,40.625263],[-80.603876,40.625064],[-80.616002,40.621696],[-80.627171,40.619936],[-80.634355,40.616095],[-80.639379,40.61128],[-80.644963,40.603648],[-80.651716,40.597744],[-80.653972,40.59648],[-80.655188,40.596544],[-80.662564,40.5916],[-80.665892,40.587728],[-80.667957,40.582496],[-80.667781,40.578096],[-80.666917,40.573664],[-80.662708,40.570176],[-80.655316,40.565184],[-80.652436,40.562544],[-80.64138,40.548417],[-80.633107,40.538705],[-80.630483,40.537921],[-80.627507,40.535793],[-80.622195,40.520497],[-80.620883,40.512257],[-80.618003,40.502049],[-80.609058,40.489506],[-80.60245,40.484226],[-80.599194,40.482566],[-80.595494,40.475266],[-80.594794,40.471366],[-80.596094,40.463366],[-80.598294,40.458366],[-80.604395,40.449767],[-80.604895,40.446667],[-80.611195,40.437767],[-80.612295,40.434867],[-80.612995,40.429367],[-80.612295,40.418567],[-80.612695,40.407667],[-80.611795,40.403867],[-80.612195,40.402667],[-80.615195,40.399867],[-80.628096,40.395867],[-80.629699,40.395007],[-80.632196,40.393667],[-80.633596,40.390467],[-80.631596,40.385468],[-80.63074,40.3849],[-80.619196,40.381768],[-80.614396,40.378768],[-80.609695,40.374968],[-80.607595,40.369568],[-80.608695,40.361968],[-80.611796,40.355168],[-80.612796,40.347668],[-80.610796,40.340868],[-80.602895,40.327869],[-80.600495,40.321169],[-80.599895,40.317669],[-80.602895,40.307069],[-80.606596,40.303869],[-80.614896,40.291969],[-80.616796,40.285269],[-80.616196,40.27227],[-80.619297,40.26517],[-80.622497,40.26177],[-80.637098,40.25427],[-80.637198,40.25507],[-80.644598,40.25127],[-80.652098,40.24497],[-80.661543,40.229798],[-80.664299,40.21917],[-80.666299,40.206271],[-80.6681,40.199671],[-80.6726,40.192371],[-80.6796,40.186371],[-80.681812,40.185566],[-80.682008,40.185495],[-80.683705,40.184215],[-80.686137,40.181607],[-80.702982,40.157173],[-80.704602,40.154823],[-80.705994,40.151591],[-80.707322,40.144999],[-80.710042,40.138311],[-80.710554,40.125271],[-80.70881,40.118088],[-80.708106,40.117256],[-80.707002,40.113272],[-80.706702,40.110872],[-80.707702,40.105372],[-80.709102,40.101472],[-80.710203,40.099572],[-80.713003,40.096872],[-80.730704,40.086472],[-80.736804,40.080072],[-80.738604,40.075672],[-80.738504,40.071472],[-80.737104,40.064972],[-80.734304,40.059672],[-80.733104,40.058772],[-80.730904,40.049172],[-80.730904,40.046672],[-80.731504,40.037472],[-80.733267,40.033357],[-80.733304,40.033272],[-80.7363,40.029929],[-80.737389,40.027593],[-80.737341,40.022969],[-80.737805,40.020761],[-80.740509,40.015225],[-80.741901,40.007929],[-80.742045,40.005641],[-80.741085,39.996857],[-80.740045,39.993929],[-80.738717,39.985113],[-80.740126,39.970793],[-80.743166,39.969113],[-80.74627,39.966233],[-80.755135,39.961561],[-80.758527,39.959241],[-80.763375,39.953514],[-80.764479,39.95025],[-80.764511,39.946602],[-80.761312,39.929098],[-80.756784,39.920586],[-80.755936,39.916554],[-80.756432,39.91393],[-80.758304,39.910426],[-80.759296,39.909466],[-80.760656,39.908906],[-80.762592,39.908906],[-80.768272,39.909642],[-80.772641,39.911306],[-80.782849,39.917162],[-80.795714,39.91969],[-80.80053,39.919434],[-80.803394,39.918762],[-80.806018,39.91713],[-80.807618,39.914938],[-80.809283,39.910314],[-80.809683,39.906106],[-80.809011,39.903226],[-80.806179,39.897306],[-80.802339,39.89161],[-80.796162,39.88553],[-80.793989,39.882787],[-80.790156,39.872252],[-80.790761,39.86728],[-80.793131,39.863751],[-80.799898,39.858912],[-80.81643,39.853032],[-80.821279,39.849982],[-80.824276,39.847159],[-80.826124,39.844238],[-80.826964,39.841656],[-80.826228,39.835802],[-80.82303,39.827484],[-80.82248,39.824971],[-80.822181,39.811708],[-80.824969,39.801092],[-80.826079,39.798584],[-80.835311,39.79069],[-80.863048,39.775197],[-80.866329,39.771738],[-80.869092,39.766364],[-80.869933,39.763555],[-80.867596,39.757116],[-80.865339,39.753251],[-80.854717,39.742592],[-80.852738,39.74104],[-80.846091,39.737812],[-80.836597,39.723925],[-80.834563,39.721582],[-80.833463,39.720812],[-80.831551,39.719475],[-80.829723,39.714041],[-80.829764,39.711839],[-80.831871,39.705655],[-80.833882,39.703497],[-80.839112,39.701033],[-80.844721,39.69944],[-80.852,39.69856],[-80.854599,39.697473],[-80.861718,39.693625],[-80.863698,39.691724],[-80.865805,39.686484],[-80.86633,39.683167],[-80.86667,39.678487],[-80.865575,39.662751],[-80.866647,39.652616],[-80.869802,39.646896],[-80.870771,39.642885],[-80.870473,39.641764],[-80.87102,39.638963],[-80.876002,39.627084],[-80.88036,39.620706],[-80.892208,39.616756],[-80.896514,39.616757],[-80.906247,39.618431],[-80.91762,39.618703],[-80.925841,39.617396],[-80.933292,39.614812],[-80.936906,39.612616],[-80.943782,39.606926],[-80.970436,39.590127],[-80.978664,39.583517],[-80.987732,39.577262],[-80.993695,39.571253],[-80.996804,39.56912],[-81.00866,39.562798],[-81.020055,39.55541],[-81.0239,39.552313],[-81.026662,39.548547],[-81.030169,39.545211],[-81.038706,39.540048],[-81.044902,39.5363],[-81.049955,39.531893],[-81.051982,39.52931],[-81.060379,39.522744],[-81.070594,39.515991],[-81.07595,39.50966],[-81.091433,39.496975],[-81.100833,39.487175],[-81.114433,39.466275],[-81.115133,39.466275],[-81.121472,39.457757],[-81.124733,39.453375],[-81.128533,39.449375],[-81.132534,39.446275],[-81.134434,39.445075],[-81.138134,39.443775],[-81.152534,39.443175],[-81.16352,39.441186],[-81.170634,39.439175],[-81.179934,39.435121],[-81.182307,39.433533],[-81.185946,39.430731],[-81.190714,39.423562],[-81.200412,39.415303],[-81.205223,39.410786],[-81.208231,39.407147],[-81.210833,39.403563],[-81.211433,39.402031],[-81.21087,39.397112],[-81.211654,39.392977],[-81.213064,39.390656],[-81.217315,39.38759],[-81.221372,39.386172],[-81.223581,39.386062],[-81.24184,39.390276],[-81.249088,39.389992],[-81.259788,39.386698],[-81.270716,39.385914],[-81.275677,39.383786],[-81.281405,39.379258],[-81.297517,39.374378],[-81.304798,39.370538],[-81.319598,39.36129],[-81.326174,39.358186],[-81.335599,39.352794],[-81.342623,39.348042],[-81.347567,39.34577],[-81.356911,39.343178],[-81.371271,39.342062],[-81.375961,39.341697],[-81.379674,39.342081],[-81.384556,39.343449],[-81.391249,39.348814],[-81.393794,39.351706],[-81.395883,39.355553],[-81.400744,39.369221],[-81.40277,39.376914],[-81.406689,39.38809],[-81.412706,39.394618],[-81.420578,39.400378],[-81.428642,39.405374],[-81.435642,39.408474],[-81.446543,39.410374],[-81.456143,39.409274],[-81.467744,39.403774],[-81.473188,39.40017],[-81.4829,39.389674],[-81.489044,39.384074],[-81.503189,39.373242],[-81.513493,39.36705],[-81.524309,39.36161],[-81.53447,39.358234],[-81.542346,39.352874],[-81.557547,39.338774],[-81.559647,39.330774],[-81.560147,39.317874],[-81.565047,39.293874],[-81.565247,39.276175],[-81.567347,39.270675],[-81.570247,39.267675],[-81.585559,39.268747],[-81.588583,39.269787],[-81.59516,39.273387],[-81.603352,39.275531],[-81.608408,39.276043],[-81.613896,39.275339],[-81.621305,39.273643],[-81.643178,39.277195],[-81.656138,39.277355],[-81.670187,39.275963],[-81.678331,39.273755],[-81.683627,39.270939],[-81.689483,39.266043],[-81.69206,39.263227],[-81.69638,39.257035],[-81.696988,39.248747],[-81.696636,39.246123],[-81.695724,39.242859],[-81.692203,39.236091],[-81.691067,39.230139],[-81.691339,39.227947],[-81.692395,39.226443],[-81.694603,39.224107],[-81.700908,39.220844],[-81.711628,39.219228],[-81.724365,39.216508],[-81.725583,39.215835]]]]}}]} diff --git a/Where/RegionKit/Sources/Resources/regions/us-OK.geojson b/Where/RegionKit/Sources/Resources/regions/us-OK.geojson new file mode 100644 index 00000000..dffff196 --- /dev/null +++ b/Where/RegionKit/Sources/Resources/regions/us-OK.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"region":"us-OK","name":"Oklahoma"},"geometry":{"type":"Polygon","coordinates":[[[-96.944611,33.949217],[-96.952313,33.944582],[-96.972542,33.935795],[-96.973807,33.935697],[-96.976955,33.937453],[-96.979818,33.941588],[-96.981031,33.94916],[-96.980676,33.951814],[-96.979347,33.95513],[-96.979415,33.956178],[-96.981337,33.956378],[-96.987892,33.954671],[-96.990835,33.952701],[-96.994288,33.949206],[-96.995368,33.947302],[-96.996183,33.941728],[-96.995023,33.932035],[-96.993997,33.928979],[-96.988745,33.918468],[-96.984939,33.904866],[-96.983971,33.892083],[-96.985567,33.886522],[-97.017857,33.850142],[-97.023899,33.844213],[-97.038858,33.838264],[-97.041245,33.837761],[-97.048734,33.840935],[-97.052209,33.841737],[-97.055416,33.841202],[-97.057554,33.840133],[-97.058623,33.837728],[-97.057821,33.83452],[-97.055683,33.830779],[-97.055148,33.825701],[-97.055416,33.82383],[-97.058623,33.818752],[-97.062632,33.816079],[-97.067977,33.814476],[-97.07859,33.812756],[-97.087999,33.808747],[-97.092112,33.804097],[-97.094771,33.798532],[-97.095236,33.794136],[-97.093917,33.789052],[-97.087852,33.774099],[-97.085218,33.765512],[-97.084613,33.759993],[-97.084693,33.753147],[-97.086195,33.743933],[-97.091072,33.735115],[-97.094085,33.730992],[-97.097154,33.727809],[-97.104525,33.722608],[-97.108936,33.720294],[-97.113265,33.718804],[-97.121102,33.717174],[-97.126102,33.716941],[-97.13753,33.718664],[-97.149394,33.721967],[-97.155066,33.724442],[-97.16281,33.729118],[-97.163149,33.729322],[-97.172192,33.737545],[-97.181843,33.75587],[-97.187792,33.769702],[-97.190397,33.781153],[-97.194786,33.785344],[-97.203236,33.797343],[-97.205431,33.801488],[-97.205652,33.809824],[-97.204995,33.81887],[-97.203514,33.821825],[-97.1997,33.827322],[-97.197477,33.829795],[-97.195831,33.830803],[-97.19369,33.831307],[-97.186254,33.830894],[-97.18137,33.831375],[-97.171627,33.835335],[-97.166824,33.840395],[-97.166629,33.847311],[-97.179609,33.89225],[-97.180845,33.895204],[-97.185458,33.9007],[-97.206141,33.91428],[-97.210921,33.916064],[-97.226522,33.914642],[-97.242092,33.906277],[-97.244946,33.903092],[-97.24618,33.900344],[-97.249209,33.875101],[-97.254235,33.865323],[-97.255636,33.863698],[-97.256625,33.863286],[-97.271532,33.86256],[-97.275348,33.863225],[-97.279108,33.864555],[-97.285983,33.868526],[-97.294227,33.876412],[-97.299245,33.880175],[-97.302471,33.880175],[-97.30749,33.878204],[-97.314413,33.866989],[-97.315913,33.865838],[-97.318243,33.865121],[-97.322365,33.864941],[-97.324158,33.866017],[-97.326487,33.872648],[-97.327563,33.873903],[-97.329176,33.87444],[-97.33294,33.87444],[-97.336524,33.872827],[-97.339392,33.86763],[-97.3409,33.860236],[-97.348338,33.843876],[-97.358513,33.830018],[-97.365507,33.823763],[-97.368744,33.821471],[-97.372941,33.819454],[-97.410387,33.818845],[-97.426493,33.819398],[-97.444193,33.823773],[-97.453057,33.828536],[-97.459068,33.834581],[-97.462857,33.841772],[-97.461486,33.84956],[-97.459566,33.853316],[-97.457617,33.855126],[-97.451469,33.87093],[-97.450954,33.891398],[-97.458069,33.901635],[-97.460376,33.903948],[-97.484037,33.915762],[-97.486505,33.916994],[-97.494858,33.919258],[-97.50096,33.919643],[-97.519171,33.913638],[-97.525277,33.911751],[-97.532723,33.906577],[-97.543246,33.901289],[-97.551541,33.897947],[-97.555002,33.897282],[-97.55827,33.897099],[-97.561176,33.897537],[-97.582744,33.900785],[-97.587441,33.902479],[-97.589254,33.903922],[-97.596289,33.913769],[-97.597115,33.917868],[-97.596979,33.920228],[-97.596155,33.922106],[-97.595084,33.922954],[-97.591514,33.9282],[-97.588828,33.951882],[-97.589598,33.953554],[-97.609091,33.968093],[-97.633778,33.981257],[-97.65621,33.989488],[-97.661489,33.990818],[-97.671772,33.99137],[-97.688023,33.986607],[-97.69311,33.983699],[-97.697921,33.977331],[-97.704159,33.963336],[-97.709684,33.954997],[-97.716772,33.947666],[-97.725289,33.941045],[-97.732267,33.936691],[-97.733723,33.936392],[-97.736554,33.936575],[-97.738478,33.937421],[-97.752957,33.937049],[-97.762768,33.934396],[-97.762661,33.930846],[-97.759834,33.92521],[-97.759399,33.91882],[-97.760224,33.917194],[-97.76377,33.914241],[-97.765446,33.913532],[-97.772672,33.914382],[-97.783717,33.91056],[-97.78034,33.904833],[-97.779683,33.899243],[-97.780618,33.895533],[-97.784657,33.890632],[-97.801578,33.885138],[-97.803473,33.88019],[-97.805423,33.877167],[-97.834333,33.857671],[-97.865765,33.849393],[-97.871447,33.849001],[-97.877387,33.850236],[-97.896738,33.857985],[-97.905467,33.863531],[-97.936743,33.879204],[-97.938802,33.879891],[-97.94273,33.879845],[-97.946464,33.878883],[-97.951215,33.878424],[-97.958438,33.879179],[-97.967777,33.88243],[-97.974178,33.886643],[-97.977808,33.889883],[-97.977859,33.889929],[-97.983769,33.8972],[-97.984566,33.899077],[-97.98454,33.900703],[-97.983552,33.904002],[-97.979985,33.911402],[-97.978804,33.912548],[-97.976963,33.912549],[-97.973143,33.908014],[-97.969873,33.905999],[-97.964461,33.907398],[-97.960615,33.910354],[-97.957155,33.914454],[-97.953695,33.924373],[-97.952679,33.929482],[-97.953395,33.936445],[-97.954467,33.937774],[-97.955511,33.938186],[-97.963425,33.936237],[-97.965953,33.936191],[-97.971175,33.937129],[-97.972494,33.937907],[-97.974062,33.940289],[-97.974173,33.942832],[-97.972662,33.944527],[-97.965737,33.947392],[-97.960351,33.951928],[-97.956917,33.958502],[-97.94595,33.988396],[-97.94573,33.989839],[-97.946473,33.990732],[-97.947572,33.991053],[-97.952688,33.990114],[-97.95585,33.990136],[-97.958325,33.990846],[-97.963028,33.994235],[-97.96834,34.00053],[-97.97167,34.005434],[-97.974173,34.006716],[-97.978243,34.005387],[-97.982806,34.001949],[-97.987388,33.999823],[-98.005667,33.995964],[-98.019485,33.993804],[-98.027672,33.993357],[-98.041117,33.993456],[-98.055197,33.995841],[-98.082839,34.002412],[-98.08526,34.003259],[-98.088203,34.005481],[-98.103617,34.029207],[-98.105482,34.031307],[-98.105482,34.033861],[-98.104022,34.036233],[-98.102015,34.037327],[-98.098001,34.03824],[-98.097272,34.038969],[-98.096542,34.040976],[-98.096177,34.044625],[-98.099096,34.048639],[-98.114587,34.06228],[-98.11803,34.067065],[-98.120208,34.072127],[-98.121039,34.081266],[-98.119417,34.084474],[-98.104309,34.0982],[-98.099328,34.104295],[-98.095118,34.11119],[-98.092421,34.116917],[-98.09066,34.12198],[-98.089755,34.128211],[-98.090224,34.130181],[-98.101937,34.14683],[-98.107065,34.152531],[-98.109462,34.154111],[-98.114506,34.154727],[-98.123377,34.15454],[-98.130816,34.150532],[-98.13677,34.144992],[-98.138979,34.141805],[-98.142754,34.136359],[-98.154354,34.122734],[-98.157412,34.120467],[-98.16912,34.114171],[-98.191455,34.115753],[-98.200075,34.116783],[-98.203711,34.117676],[-98.216463,34.121821],[-98.2236,34.125093],[-98.225282,34.127245],[-98.241013,34.133103],[-98.247954,34.130717],[-98.256467,34.129481],[-98.280321,34.13075],[-98.293901,34.13302],[-98.300209,34.134579],[-98.31875,34.146421],[-98.32258,34.14972],[-98.325445,34.151025],[-98.364023,34.157109],[-98.367494,34.156191],[-98.381238,34.149454],[-98.384381,34.146317],[-98.398441,34.128456],[-98.400967,34.122236],[-98.400494,34.121778],[-98.39816,34.121396],[-98.398389,34.104566],[-98.399777,34.099973],[-98.414426,34.085074],[-98.417813,34.083029],[-98.419995,34.082488],[-98.422253,34.083037],[-98.423116,34.083548],[-98.42523,34.084799],[-98.42848,34.085523],[-98.432127,34.085622],[-98.440092,34.084311],[-98.442808,34.083144],[-98.443724,34.082152],[-98.445585,34.079298],[-98.445784,34.076827],[-98.446379,34.07543],[-98.449034,34.073462],[-98.475066,34.064269],[-98.48204,34.06227],[-98.486328,34.062598],[-98.504182,34.072371],[-98.5282,34.094961],[-98.530611,34.099843],[-98.536257,34.107343],[-98.550917,34.119334],[-98.558593,34.128254],[-98.560191,34.133202],[-98.572451,34.145091],[-98.577136,34.148962],[-98.599789,34.160571],[-98.603978,34.160249],[-98.608853,34.157521],[-98.610158,34.157099],[-98.611829,34.156558],[-98.616733,34.156418],[-98.621666,34.157195],[-98.63573,34.161618],[-98.643223,34.164531],[-98.648073,34.164441],[-98.650583,34.163113],[-98.655655,34.158258],[-98.690072,34.133155],[-98.696518,34.133521],[-98.716104,34.135947],[-98.717537,34.13645],[-98.734287,34.135758],[-98.735471,34.135208],[-98.73682,34.133374],[-98.737232,34.130992],[-98.739461,34.127394],[-98.741966,34.12553],[-98.749291,34.124238],[-98.757037,34.124633],[-98.759653,34.126912],[-98.759486,34.128882],[-98.760558,34.132388],[-98.761797,34.133785],[-98.76557,34.136376],[-98.792015,34.143736],[-98.80681,34.155901],[-98.812954,34.158444],[-98.831115,34.162154],[-98.855585,34.161621],[-98.857322,34.161094],[-98.8579,34.159627],[-98.858419,34.152732],[-98.860125,34.149913],[-98.86255,34.149111],[-98.868116,34.149635],[-98.873271,34.153596],[-98.874872,34.155657],[-98.874955,34.157031],[-98.872229,34.160446],[-98.871211,34.163012],[-98.871543,34.165027],[-98.872922,34.166584],[-98.909349,34.177499],[-98.918333,34.181831],[-98.920704,34.183435],[-98.923129,34.185978],[-98.927456,34.191155],[-98.928145,34.192689],[-98.94022,34.203686],[-98.950396,34.21168],[-98.952358,34.212579],[-98.952513,34.21265],[-98.958475,34.213855],[-98.960791,34.21303],[-98.962307,34.211312],[-98.962085,34.206386],[-98.96247,34.204668],[-98.966302,34.201323],[-98.969003,34.201299],[-98.974132,34.203566],[-98.976587,34.206291],[-98.978685,34.210231],[-98.981364,34.217583],[-98.987294,34.221223],[-98.990852,34.221633],[-99.000761,34.217643],[-99.003433,34.214466],[-99.002916,34.208782],[-99.00579,34.206647],[-99.013075,34.203222],[-99.036273,34.206912],[-99.037459,34.206454],[-99.039004,34.204667],[-99.040962,34.200842],[-99.043471,34.198208],[-99.048792,34.198209],[-99.058084,34.200569],[-99.0588,34.201256],[-99.059159,34.202929],[-99.060344,34.204761],[-99.066465,34.208404],[-99.075978,34.211221],[-99.079535,34.211518],[-99.092191,34.209316],[-99.108758,34.203401],[-99.119204,34.201747],[-99.126567,34.203004],[-99.129792,34.204403],[-99.131885,34.207382],[-99.131553,34.209352],[-99.13009,34.212192],[-99.127525,34.213771],[-99.126614,34.215329],[-99.127549,34.217986],[-99.128514,34.218766],[-99.130609,34.219408],[-99.13822,34.219159],[-99.143985,34.214763],[-99.159016,34.20888],[-99.189511,34.214312],[-99.192104,34.216694],[-99.192683,34.218825],[-99.192076,34.222192],[-99.190036,34.227186],[-99.190146,34.22966],[-99.191139,34.23234],[-99.195553,34.24006],[-99.197153,34.244298],[-99.196926,34.260929],[-99.19457,34.272424],[-99.195605,34.280839],[-99.19626,34.281463],[-99.200222,34.281152],[-99.203681,34.281926],[-99.207561,34.283505],[-99.209742,34.286345],[-99.211648,34.292232],[-99.213476,34.310672],[-99.2116,34.31397],[-99.209724,34.324935],[-99.210716,34.336304],[-99.213135,34.340369],[-99.217335,34.34152],[-99.219769,34.341377],[-99.221975,34.34002],[-99.226153,34.339726],[-99.229994,34.340538],[-99.232606,34.34238],[-99.233274,34.344101],[-99.234252,34.353459],[-99.237233,34.362717],[-99.242945,34.372668],[-99.248969,34.375984],[-99.251408,34.37508],[-99.254722,34.372405],[-99.258696,34.372634],[-99.271281,34.381604],[-99.274926,34.384904],[-99.27534,34.386599],[-99.273958,34.38756],[-99.264508,34.388085],[-99.261191,34.389548],[-99.25898,34.391243],[-99.261321,34.403499],[-99.264167,34.405149],[-99.289922,34.414731],[-99.294648,34.415373],[-99.299098,34.414228],[-99.308274,34.410014],[-99.316373,34.408205],[-99.318363,34.408296],[-99.319606,34.408869],[-99.324222,34.414458],[-99.328674,34.422383],[-99.334037,34.427536],[-99.341337,34.431061],[-99.350407,34.437083],[-99.356713,34.442144],[-99.357102,34.444915],[-99.356771,34.446542],[-99.354837,34.449658],[-99.354672,34.451857],[-99.358795,34.455863],[-99.36961,34.458699],[-99.375365,34.458845],[-99.381011,34.456936],[-99.394956,34.442099],[-99.39701,34.424003],[-99.396902,34.418688],[-99.396488,34.417291],[-99.393919,34.415274],[-99.391492,34.405631],[-99.397253,34.377871],[-99.399603,34.375079],[-99.40296,34.373481],[-99.407168,34.372605],[-99.408848,34.372776],[-99.420432,34.380464],[-99.430995,34.373414],[-99.44076,34.374123],[-99.445021,34.379892],[-99.452648,34.388252],[-99.470969,34.396471],[-99.475123,34.396398],[-99.477547,34.396355],[-99.487219,34.397955],[-99.490426,34.399694],[-99.494104,34.404755],[-99.497091,34.407731],[-99.499875,34.409608],[-99.51428,34.414035],[-99.517624,34.414494],[-99.52365,34.412206],[-99.529786,34.411452],[-99.549242,34.412715],[-99.555986,34.41464],[-99.562204,34.417319],[-99.569696,34.418418],[-99.574367,34.418281],[-99.58006,34.416653],[-99.58448,34.407673],[-99.585306,34.398122],[-99.584531,34.391205],[-99.585442,34.388914],[-99.587596,34.385867],[-99.596323,34.377137],[-99.600026,34.374688],[-99.624197,34.373577],[-99.630905,34.376007],[-99.649662,34.379885],[-99.654194,34.376519],[-99.659362,34.37439],[-99.662705,34.37368],[-99.665992,34.374185],[-99.671377,34.377714],[-99.678283,34.379799],[-99.696462,34.381036],[-99.707901,34.387539],[-99.712682,34.390928],[-99.714838,34.394524],[-99.714232,34.397822],[-99.715089,34.400754],[-99.716416,34.402815],[-99.720259,34.406295],[-99.730348,34.41124],[-99.740907,34.414763],[-99.754248,34.421289],[-99.767234,34.430502],[-99.767648,34.431854],[-99.764882,34.435266],[-99.764826,34.436434],[-99.765599,34.437488],[-99.775743,34.444225],[-99.782986,34.444364],[-99.793684,34.453894],[-99.814313,34.476204],[-99.818739,34.484976],[-99.818186,34.48784],[-99.825325,34.497596],[-99.832904,34.500068],[-99.844658,34.506787],[-99.853066,34.511593],[-99.868953,34.527615],[-99.872357,34.532096],[-99.873254,34.535351],[-99.874403,34.537095],[-99.887147,34.549047],[-99.89376,34.554219],[-99.896007,34.55553],[-99.898943,34.555804],[-99.915771,34.565975],[-99.921801,34.570253],[-99.923211,34.574552],[-99.929334,34.576714],[-99.94572,34.579273],[-99.954567,34.578195],[-99.956717,34.576524],[-99.957553,34.574169],[-99.957541,34.572709],[-99.958898,34.571271],[-99.965608,34.565844],[-99.971555,34.562179],[-99.974762,34.561318],[-99.985833,34.560079],[-99.997501,34.560424],[-100.000381,34.560509],[-100.000381,34.746358],[-100.000381,34.746461],[-100.000384,35.030385],[-100.000385,35.182702],[-100.000389,35.422364],[-100.000392,35.619115],[-100.000396,35.880948],[-100.000399,36.055677],[-100.000406,36.499702],[-100.003762,36.499699],[-100.090021,36.499634],[-100.181221,36.499633],[-100.310643,36.499642],[-100.311018,36.499688],[-100.311245,36.499631],[-100.32415,36.499679],[-100.334441,36.49944],[-100.334464,36.49942],[-100.351842,36.499473],[-100.351852,36.499487],[-100.378592,36.499445],[-100.378634,36.499517],[-100.41355,36.499469],[-100.413634,36.499444],[-100.421301,36.499488],[-100.421328,36.499447],[-100.433959,36.499456],[-100.441064,36.499462],[-100.441065,36.49949],[-100.522227,36.499291],[-100.530314,36.499357],[-100.530478,36.49924],[-100.531215,36.49929],[-100.531215,36.499341],[-100.546145,36.499343],[-100.578114,36.499439],[-100.578114,36.499463],[-100.583379,36.499443],[-100.583539,36.499483],[-100.592551,36.499429],[-100.592556,36.499469],[-100.592614,36.499469],[-100.648344,36.499463],[-100.648343,36.499495],[-100.657763,36.4995],[-100.657763,36.499483],[-100.708628,36.499521],[-100.708626,36.499553],[-100.724361,36.499558],[-100.724362,36.49958],[-100.761811,36.49958],[-100.761811,36.499618],[-100.802886,36.499621],[-100.802909,36.499621],[-100.806172,36.499634],[-100.80619,36.499674],[-100.824218,36.499618],[-100.824236,36.499618],[-100.85084,36.4997],[-100.859657,36.499687],[-100.88408,36.499682],[-100.884174,36.499682],[-100.918513,36.499621],[-100.936058,36.499602],[-100.954153,36.499599],[-100.977088,36.499595],[-101.045331,36.49954],[-101.052418,36.499563],[-101.085156,36.499244],[-101.623915,36.499528],[-101.649966,36.499573],[-101.653708,36.499573],[-101.698685,36.499508],[-101.709314,36.499722],[-101.779435,36.499734],[-101.78061,36.499727],[-101.781987,36.499718],[-101.783359,36.499709],[-101.78811,36.499678],[-101.826498,36.499535],[-101.826565,36.499654],[-101.930245,36.500526],[-102.032339,36.50061],[-102.122066,36.500684],[-102.12545,36.500324],[-102.162463,36.500326],[-102.24499,36.500704],[-102.250453,36.500369],[-103.002434,36.500397],[-103.002565,36.526588],[-103.002188,36.602716],[-103.002252,36.61718],[-103.002518,36.675186],[-103.002198,36.719427],[-103.001964,36.909573],[-103.002247,36.911587],[-103.002199,37.000104],[-102.986976,36.998524],[-102.985807,36.998571],[-102.979613,36.998549],[-102.841989,36.999598],[-102.814616,37.000783],[-102.806762,37.000019],[-102.778569,36.999242],[-102.75986,37.000019],[-102.74206,36.997689],[-102.698142,36.995149],[-102.355367,36.994575],[-102.355288,36.994506],[-102.260789,36.994388],[-102.208316,36.99373],[-102.184271,36.993593],[-102.054503,36.993109],[-102.04224,36.993083],[-102.028207,36.993125],[-102.028204,36.993125],[-102.000447,36.993272],[-102.000447,36.993249],[-101.90244,36.993702],[-101.601593,36.995095],[-101.600396,36.995153],[-101.55526,36.995414],[-101.555239,36.995414],[-101.519066,36.995546],[-101.485326,36.995611],[-101.415005,36.995966],[-101.413868,36.996008],[-101.37818,36.996164],[-101.359674,36.996232],[-101.357797,36.996271],[-101.212909,36.997044],[-101.211486,36.997124],[-101.066742,36.997921],[-101.053589,36.997967],[-101.012641,36.998176],[-100.996502,36.998044],[-100.945566,36.998152],[-100.945469,36.998153],[-100.904588,36.998561],[-100.904274,36.998745],[-100.89166,36.998604],[-100.855634,36.998626],[-100.814277,36.999085],[-100.806116,36.999091],[-100.765484,36.999177],[-100.756894,36.999357],[-100.734517,36.999059],[-100.675552,36.999688],[-100.633327,36.999936],[-100.633323,36.999936],[-100.62977,37.000025],[-100.591413,37.000399],[-100.591328,37.000376],[-100.552683,37.000735],[-100.551598,37.00062],[-100.201676,37.002081],[-100.193754,37.002133],[-100.192371,37.002036],[-100.187547,37.002082],[-100.115722,37.002206],[-100.089484,37.002092],[-100.005706,37.001726],[-100.002563,37.001706],[-100.001286,37.001699],[-99.995201,37.001631],[-99.875409,37.001659],[-99.786016,37.000931],[-99.774816,37.000841],[-99.774255,37.000837],[-99.657658,37.000197],[-99.648652,36.999604],[-99.625399,36.999671],[-99.558068,36.999528],[-99.541116,36.999573],[-99.508574,36.999658],[-99.504093,36.999648],[-99.502665,36.999645],[-99.500395,36.999637],[-99.500395,36.999576],[-99.484333,36.999626],[-99.456203,36.999471],[-99.407015,36.999579],[-99.375391,37.000177],[-99.277506,36.999579],[-99.24812,36.999565],[-99.129449,36.999422],[-99.124883,36.99942],[-99.049695,36.999221],[-99.029337,36.999595],[-99.000303,36.99951],[-98.994371,36.999493],[-98.88058,36.999309],[-98.880009,36.999263],[-98.869449,36.999286],[-98.797452,36.999229],[-98.793711,36.999227],[-98.791936,36.999255],[-98.761597,36.999425],[-98.718465,36.99918],[-98.714512,36.99906],[-98.544872,36.998997],[-98.54466,36.998996],[-98.420209,36.998516],[-98.418268,36.998538],[-98.408991,36.998513],[-98.354073,36.997961],[-98.347149,36.997962],[-98.346188,36.997962],[-98.237712,36.997972],[-98.219499,36.997824],[-98.208218,36.997997],[-98.177596,36.998009],[-98.147452,36.998162],[-98.111985,36.998133],[-98.045342,36.998327],[-98.03989,36.998349],[-98.033955,36.998366],[-97.802313,36.998713],[-97.802298,36.998713],[-97.783489,36.998847],[-97.783432,36.998961],[-97.768704,36.99875],[-97.697104,36.998826],[-97.650466,36.999004],[-97.637137,36.99909],[-97.606549,36.998682],[-97.564536,36.998711],[-97.546498,36.998747],[-97.5459,36.998709],[-97.527292,36.99875],[-97.472861,36.998721],[-97.462346,36.998685],[-97.46228,36.998685],[-97.384925,36.998843],[-97.372421,36.998861],[-97.147721,36.999111],[-97.122597,36.999036],[-97.120285,36.999014],[-97.104276,36.99902],[-97.100652,36.998998],[-97.039784,36.999],[-97.030082,36.998929],[-96.975562,36.999019],[-96.967371,36.999067],[-96.934642,36.99907],[-96.921915,36.999151],[-96.917093,36.999182],[-96.90351,36.999132],[-96.902083,36.999155],[-96.87629,36.999233],[-96.867517,36.999217],[-96.822791,36.999182],[-96.795199,36.99886],[-96.79206,36.99918],[-96.749838,36.998988],[-96.74127,36.999239],[-96.73659,36.999286],[-96.710482,36.999271],[-96.705431,36.999203],[-96.525578,36.998712],[-96.500288,36.998643],[-96.415412,36.999113],[-96.394272,36.999221],[-96.279079,36.999272],[-96.276368,36.999271],[-96.217571,36.99907],[-96.200028,36.999028],[-96.184768,36.999211],[-96.154017,36.999161],[-96.152384,36.999051],[-96.149709,36.99904],[-96.147143,36.999022],[-96.143207,36.999134],[-96.14121,36.998973],[-96.00081,36.99886],[-95.96427,36.999094],[-95.936992,36.999268],[-95.928122,36.999245],[-95.91018,36.999336],[-95.877151,36.999304],[-95.875257,36.999302],[-95.873944,36.9993],[-95.866899,36.999261],[-95.80798,36.999124],[-95.786762,36.99931],[-95.768719,36.999205],[-95.759905,36.999271],[-95.741908,36.999244],[-95.718054,36.999255],[-95.714887,36.999279],[-95.71038,36.999371],[-95.696659,36.999215],[-95.686452,36.999349],[-95.664301,36.999322],[-95.630079,36.99932],[-95.62435,36.99936],[-95.615934,36.999365],[-95.61214,36.999321],[-95.573598,36.99931],[-95.534401,36.999332],[-95.522415,36.999281],[-95.511578,36.999235],[-95.407683,36.999241],[-95.407572,36.999241],[-95.33121,36.99938],[-95.328327,36.999366],[-95.328058,36.999365],[-95.322565,36.999358],[-95.195307,36.999565],[-95.177301,36.99952],[-95.155372,36.99954],[-95.155187,36.999539],[-95.073509,36.999509],[-95.073504,36.999509],[-95.049499,36.99958],[-95.037857,36.999497],[-95.030324,36.999517],[-95.011433,36.999535],[-95.00762,36.999514],[-94.995293,36.999529],[-94.853197,36.998874],[-94.849801,36.998876],[-94.840926,36.998833],[-94.83128,36.998812],[-94.777257,36.998764],[-94.739324,36.998687],[-94.737183,36.998665],[-94.71277,36.998794],[-94.701797,36.998814],[-94.699735,36.998805],[-94.625224,36.998672],[-94.61808,36.998135],[-94.618049,36.996208],[-94.618031,36.994704],[-94.618026,36.950158],[-94.618109,36.946564],[-94.618166,36.937584],[-94.618295,36.929647],[-94.618207,36.926236],[-94.618282,36.911472],[-94.618243,36.897027],[-94.618658,36.880064],[-94.61838,36.84732],[-94.618307,36.76656],[-94.61813,36.701423],[-94.618025,36.66943],[-94.618019,36.667921],[-94.617815,36.612604],[-94.617865,36.606851],[-94.617853,36.59912],[-94.617814,36.577732],[-94.617897,36.536983],[-94.617868,36.53609],[-94.617997,36.53428],[-94.617883,36.517799],[-94.617877,36.514999],[-94.617919,36.499414],[-94.615311,36.484992],[-94.61383,36.476248],[-94.611609,36.461528],[-94.605408,36.421949],[-94.602623,36.405283],[-94.601984,36.40212],[-94.599723,36.387587],[-94.593397,36.345742],[-94.5862,36.299969],[-94.577883,36.25008],[-94.577899,36.249548],[-94.576003,36.24007],[-94.575071,36.233682],[-94.57488,36.232741],[-94.574395,36.229996],[-94.571806,36.213748],[-94.571253,36.210901],[-94.566588,36.183774],[-94.565655,36.178439],[-94.562828,36.161895],[-94.562803,36.161749],[-94.561165,36.15211],[-94.552184,36.102235],[-94.547871,36.078281],[-94.547715,36.077271],[-94.535724,36.007807],[-94.534852,36.002678],[-94.533646,35.996804],[-94.532071,35.987852],[-94.528305,35.966054],[-94.528162,35.965665],[-94.52464,35.945727],[-94.524344,35.94405],[-94.52291,35.936127],[-94.522634,35.934892],[-94.522658,35.934799],[-94.522658,35.93425],[-94.517571,35.901866],[-94.507631,35.845901],[-94.505642,35.833628],[-94.504438,35.826369],[-94.503011,35.81721],[-94.501162,35.80643],[-94.500764,35.80382],[-94.500526,35.802642],[-94.499647,35.79691],[-94.499045,35.79346],[-94.494549,35.768303],[-94.493362,35.761892],[-94.492932,35.759166],[-94.48821,35.72924],[-94.487585,35.726147],[-94.472647,35.638556],[-94.465272,35.594037],[-94.464457,35.588909],[-94.464097,35.587265],[-94.463318,35.58266],[-94.449696,35.496719],[-94.431822,35.397652],[-94.431215,35.39429],[-94.433915,35.387391],[-94.433742,35.386467],[-94.432685,35.380806],[-94.433415,35.376291],[-94.431515,35.369591],[-94.432015,35.367391],[-94.431815,35.362891],[-94.434115,35.306493],[-94.43517,35.291494],[-94.43528,35.287485],[-94.435316,35.275893],[-94.435706,35.274267],[-94.435812,35.2713],[-94.436595,35.250094],[-94.437578,35.242202],[-94.437774,35.239271],[-94.437578,35.230936],[-94.438247,35.210992],[-94.43847,35.208587],[-94.439084,35.197298],[-94.439056,35.193588],[-94.43886,35.187183],[-94.439509,35.171807],[-94.43955,35.169037],[-94.440754,35.128806],[-94.441232,35.119724],[-94.447889,34.933941],[-94.449253,34.895869],[-94.449086,34.894152],[-94.449058,34.890556],[-94.44963,34.875253],[-94.450065,34.861335],[-94.45014,34.858694],[-94.450233,34.855413],[-94.454576,34.728962],[-94.45753,34.642961],[-94.4575,34.634945],[-94.460052,34.547869],[-94.460058,34.545264],[-94.461149,34.507457],[-94.463671,34.419585],[-94.463816,34.414465],[-94.464176,34.402713],[-94.465425,34.359548],[-94.465847,34.352073],[-94.470292,34.189864],[-94.474896,34.021877],[-94.474896,34.021838],[-94.474895,34.019655],[-94.476957,33.957365],[-94.477038,33.953838],[-94.477318,33.940932],[-94.477387,33.937759],[-94.478842,33.881485],[-94.478994,33.881197],[-94.479954,33.85133],[-94.480574,33.830166],[-94.481355,33.802887],[-94.481361,33.802649],[-94.481543,33.795719],[-94.481842,33.789008],[-94.482682,33.756286],[-94.482777,33.753638],[-94.482862,33.75078],[-94.48287,33.750564],[-94.483874,33.716733],[-94.48384,33.711332],[-94.484616,33.691592],[-94.48452,33.687909],[-94.485528,33.663388],[-94.485577,33.65331],[-94.485875,33.637867],[-94.487514,33.628939],[-94.491503,33.625115],[-94.504615,33.620682],[-94.520725,33.616567],[-94.526291,33.619203],[-94.528928,33.62184],[-94.529807,33.627406],[-94.528342,33.62975],[-94.529221,33.634437],[-94.533322,33.63766],[-94.538889,33.637953],[-94.543869,33.635902],[-94.549142,33.635902],[-94.552658,33.638246],[-94.553537,33.642054],[-94.551312,33.64457],[-94.551193,33.650257],[-94.552072,33.65348],[-94.557052,33.656702],[-94.564669,33.655824],[-94.568771,33.654652],[-94.570821,33.654945],[-94.572286,33.656995],[-94.571993,33.659632],[-94.569357,33.663441],[-94.569943,33.66637],[-94.572872,33.669886],[-94.576974,33.673401],[-94.57962,33.677623],[-94.586641,33.678968],[-94.59045,33.677503],[-94.593673,33.673987],[-94.596895,33.671351],[-94.603047,33.671351],[-94.607442,33.67223],[-94.611543,33.674866],[-94.616817,33.679554],[-94.621211,33.681018],[-94.627656,33.677796],[-94.630586,33.673401],[-94.635273,33.669886],[-94.64289,33.668421],[-94.646113,33.6693],[-94.648457,33.673401],[-94.647871,33.680432],[-94.648457,33.684534],[-94.649628,33.688049],[-94.652265,33.690979],[-94.659167,33.692138],[-94.684792,33.684353],[-94.707858,33.686876],[-94.710088,33.68815],[-94.710725,33.691654],[-94.710725,33.696113],[-94.709451,33.699617],[-94.711043,33.705669],[-94.714865,33.707261],[-94.719006,33.708217],[-94.721873,33.707261],[-94.724102,33.705669],[-94.725695,33.702483],[-94.728243,33.699617],[-94.732384,33.700254],[-94.737161,33.704713],[-94.737618,33.706008],[-94.739072,33.710128],[-94.73748,33.716179],[-94.739391,33.72255],[-94.742576,33.727009],[-94.753087,33.729557],[-94.759139,33.729557],[-94.762961,33.731787],[-94.767739,33.73752],[-94.768057,33.742616],[-94.766146,33.748031],[-94.766465,33.750897],[-94.768057,33.753446],[-94.770924,33.754401],[-94.775064,33.755038],[-94.789716,33.74612],[-94.798634,33.744527],[-94.809145,33.749305],[-94.812012,33.751853],[-94.817427,33.752172],[-94.821886,33.750897],[-94.824753,33.749305],[-94.826027,33.74389],[-94.827938,33.741342],[-94.830804,33.740068],[-94.841634,33.739431],[-94.849296,33.739585],[-94.8693,33.745871],[-94.874668,33.749164],[-94.87708,33.75222],[-94.875497,33.755483],[-94.876033,33.760771],[-94.879218,33.764912],[-94.881448,33.765549],[-94.886226,33.764594],[-94.888368,33.76724],[-94.902276,33.776289],[-94.906245,33.778192],[-94.911427,33.778383],[-94.919614,33.786305],[-94.920104,33.789575],[-94.919614,33.794153],[-94.916998,33.80151],[-94.916834,33.804617],[-94.917815,33.808704],[-94.91945,33.810176],[-94.921902,33.811811],[-94.924518,33.812792],[-94.928442,33.812628],[-94.932366,33.810993],[-94.9358,33.810339],[-94.93956,33.810503],[-94.944302,33.812138],[-94.948716,33.818023],[-94.949533,33.825708],[-94.957676,33.835004],[-94.964401,33.837021],[-94.965888,33.848422],[-94.968895,33.860916],[-94.971435,33.862123],[-94.973411,33.861731],[-94.976208,33.859847],[-94.98165,33.852284],[-94.983303,33.851354],[-94.988487,33.851],[-94.992671,33.852455],[-94.995524,33.857438],[-95.000223,33.862505],[-95.008376,33.866089],[-95.016422,33.861392],[-95.022325,33.859813],[-95.037207,33.86025],[-95.046568,33.862565],[-95.049025,33.86409],[-95.058834,33.886813],[-95.061065,33.895292],[-95.065492,33.899585],[-95.07126,33.901597],[-95.078905,33.898377],[-95.084002,33.89328],[-95.090441,33.89328],[-95.093929,33.895963],[-95.09527,33.899316],[-95.095002,33.904816],[-95.098489,33.909913],[-95.10077,33.912193],[-95.103318,33.913669],[-95.110964,33.912998],[-95.119951,33.915815],[-95.122365,33.918632],[-95.1225,33.921717],[-95.121184,33.931307],[-95.1247,33.934675],[-95.131056,33.936925],[-95.149462,33.936336],[-95.155888,33.937032],[-95.161109,33.937598],[-95.166686,33.939728],[-95.168746,33.941606],[-95.184075,33.950353],[-95.219358,33.961567],[-95.226393,33.961954],[-95.230491,33.960764],[-95.252906,33.933648],[-95.253623,33.92971],[-95.25302,33.927237],[-95.251327,33.924155],[-95.250737,33.917083],[-95.250885,33.913105],[-95.253095,33.905444],[-95.255747,33.902939],[-95.261051,33.899993],[-95.26385,33.899256],[-95.272542,33.902055],[-95.275342,33.901761],[-95.277846,33.900877],[-95.279762,33.899109],[-95.280351,33.896751],[-95.28153,33.887617],[-95.281677,33.882902],[-95.283445,33.877746],[-95.287865,33.874946],[-95.294789,33.875388],[-95.309458,33.880304],[-95.325572,33.885704],[-95.333452,33.886286],[-95.334523,33.885788],[-95.334854,33.876831],[-95.339122,33.868873],[-95.352338,33.867789],[-95.375233,33.868243],[-95.407795,33.866308],[-95.44737,33.86885],[-95.463346,33.872313],[-95.464211,33.873372],[-95.461499,33.883686],[-95.46291,33.885903],[-95.464925,33.886709],[-95.469962,33.886105],[-95.478575,33.879301],[-95.492028,33.874822],[-95.502304,33.874742],[-95.506085,33.87639],[-95.506495,33.878589],[-95.506234,33.886306],[-95.510063,33.890135],[-95.515302,33.891142],[-95.520138,33.889329],[-95.525322,33.885487],[-95.533283,33.881162],[-95.53979,33.879904],[-95.545197,33.880294],[-95.548325,33.882744],[-95.552085,33.888422],[-95.552331,33.89442],[-95.549475,33.901311],[-95.549145,33.90795],[-95.551148,33.914566],[-95.556915,33.92702],[-95.559414,33.930179],[-95.561007,33.931552],[-95.563424,33.932193],[-95.585945,33.93448],[-95.599678,33.934247],[-95.603657,33.927195],[-95.636978,33.906613],[-95.647273,33.905976],[-95.659818,33.909092],[-95.665338,33.908132],[-95.669978,33.905844],[-95.676925,33.897237],[-95.684831,33.890232],[-95.696962,33.885218],[-95.710878,33.884552],[-95.71354,33.885124],[-95.728449,33.893704],[-95.737508,33.895967],[-95.747335,33.895756],[-95.756367,33.892625],[-95.758344,33.890611],[-95.761916,33.883402],[-95.762559,33.874367],[-95.76184,33.87295],[-95.760805,33.870911],[-95.757458,33.867957],[-95.753513,33.856464],[-95.75431,33.853992],[-95.758016,33.85008],[-95.763622,33.847954],[-95.772067,33.843817],[-95.773282,33.843834],[-95.776255,33.845145],[-95.787891,33.856336],[-95.789867,33.857686],[-95.800842,33.861212],[-95.805149,33.861304],[-95.820596,33.858465],[-95.821666,33.856633],[-95.821666,33.855443],[-95.820677,33.850751],[-95.819525,33.848439],[-95.818976,33.844456],[-95.819358,33.842785],[-95.820784,33.840564],[-95.822787,33.838756],[-95.828245,33.836054],[-95.831948,33.835161],[-95.837516,33.83564],[-95.840012,33.836486],[-95.843773,33.838949],[-95.845628,33.840777],[-95.849864,33.844952],[-95.859469,33.852456],[-95.881292,33.860627],[-95.887491,33.863856],[-95.893306,33.868161],[-95.905343,33.875629],[-95.915961,33.881148],[-95.922712,33.883758],[-95.935198,33.887101],[-95.936132,33.886826],[-95.937202,33.884652],[-95.936817,33.882386],[-95.935637,33.880371],[-95.935308,33.878724],[-95.935325,33.875099],[-95.936631,33.870615],[-95.941267,33.861619],[-95.944284,33.859811],[-95.951609,33.857017],[-95.972156,33.856371],[-95.980966,33.859307],[-95.984254,33.864403],[-95.988857,33.866869],[-95.991487,33.866869],[-95.993624,33.866211],[-95.996748,33.864403],[-95.997734,33.860951],[-95.997405,33.855526],[-95.997709,33.852182],[-95.998351,33.851049],[-96.005296,33.845505],[-96.019599,33.840566],[-96.021407,33.841881],[-96.022065,33.843196],[-96.022507,33.84613],[-96.0219,33.849114],[-96.022229,33.850923],[-96.025188,33.852073],[-96.029463,33.852402],[-96.031271,33.850758],[-96.037191,33.841245],[-96.048834,33.836468],[-96.055358,33.838262],[-96.063924,33.841523],[-96.084626,33.846656],[-96.100095,33.847971],[-96.101473,33.846709],[-96.101349,33.845721],[-96.100785,33.84423],[-96.099153,33.842409],[-96.097638,33.837935],[-96.097448,33.832725],[-96.09936,33.83047],[-96.104075,33.83073],[-96.109993,33.832396],[-96.118169,33.837884],[-96.122951,33.839964],[-96.138905,33.839159],[-96.14807,33.837799],[-96.150147,33.835856],[-96.15163,33.831946],[-96.148792,33.819197],[-96.150765,33.816987],[-96.164217,33.817001],[-96.17589,33.814627],[-96.17691,33.813934],[-96.178964,33.810553],[-96.17734,33.805117],[-96.17515,33.801951],[-96.173025,33.80056],[-96.170373,33.799382],[-96.166837,33.797908],[-96.162123,33.79614],[-96.162757,33.788769],[-96.169452,33.770131],[-96.174633,33.763699],[-96.178059,33.760518],[-96.186554,33.756375],[-96.1999,33.752117],[-96.220521,33.74739],[-96.229023,33.748021],[-96.248232,33.758986],[-96.269896,33.768405],[-96.277269,33.769735],[-96.292482,33.766419],[-96.294867,33.764771],[-96.301706,33.753756],[-96.303009,33.750878],[-96.3061,33.741002],[-96.307389,33.735005],[-96.306596,33.726786],[-96.307035,33.719987],[-96.309964,33.710489],[-96.316925,33.698997],[-96.31876,33.696753],[-96.321103,33.6951],[-96.342665,33.686975],[-96.348306,33.686379],[-96.355946,33.687155],[-96.362198,33.691818],[-96.363135,33.694215],[-96.363253,33.70105],[-96.366945,33.711222],[-96.36959,33.716809],[-96.379404,33.725816],[-96.384116,33.730141],[-96.403507,33.746289],[-96.408469,33.751192],[-96.413408,33.757714],[-96.416146,33.766099],[-96.417562,33.769038],[-96.419961,33.773034],[-96.422643,33.776041],[-96.430214,33.778654],[-96.436455,33.78005],[-96.448045,33.781031],[-96.45051,33.780588],[-96.456254,33.776035],[-96.459154,33.775232],[-96.48606,33.77301],[-96.500268,33.772583],[-96.502286,33.77346],[-96.511914,33.781478],[-96.515912,33.787795],[-96.515959,33.798934],[-96.516584,33.803168],[-96.519911,33.811347],[-96.523863,33.818114],[-96.526655,33.820891],[-96.529234,33.822127],[-96.532865,33.823005],[-96.551223,33.819129],[-96.566298,33.818511],[-96.572937,33.819098],[-96.587067,33.828009],[-96.592926,33.830916],[-96.601258,33.834327],[-96.623155,33.841483],[-96.62929,33.845488],[-96.630022,33.847541],[-96.629747,33.850866],[-96.628969,33.852407],[-96.625399,33.856542],[-96.61197,33.869016],[-96.601686,33.872823],[-96.597348,33.875101],[-96.590112,33.880665],[-96.587494,33.884251],[-96.58536,33.888948],[-96.585452,33.891281],[-96.587934,33.894784],[-96.588519,33.894881],[-96.592948,33.895616],[-96.607562,33.894735],[-96.628294,33.894477],[-96.630117,33.895422],[-96.64405,33.905962],[-96.659896,33.916666],[-96.66441,33.917267],[-96.667187,33.91694],[-96.670618,33.914914],[-96.673449,33.912278],[-96.675306,33.909114],[-96.680947,33.896204],[-96.683464,33.884217],[-96.682103,33.876645],[-96.682209,33.873876],[-96.684727,33.862905],[-96.688191,33.854613],[-96.690708,33.849959],[-96.699574,33.839049],[-96.704457,33.835021],[-96.708134,33.83306],[-96.712422,33.831633],[-96.746038,33.825699],[-96.754041,33.824658],[-96.761588,33.824406],[-96.766235,33.825458],[-96.769378,33.827477],[-96.770676,33.829621],[-96.776766,33.841976],[-96.777202,33.848162],[-96.779588,33.857939],[-96.780569,33.860098],[-96.783485,33.863534],[-96.794276,33.868886],[-96.812778,33.872646],[-96.832157,33.874835],[-96.837413,33.871349],[-96.839778,33.868396],[-96.840819,33.863645],[-96.841592,33.852894],[-96.845896,33.848975],[-96.850593,33.847211],[-96.85609,33.84749],[-96.866438,33.853149],[-96.875281,33.860505],[-96.88301,33.868019],[-96.895728,33.896414],[-96.897194,33.902954],[-96.896469,33.913318],[-96.899442,33.933728],[-96.902434,33.942018],[-96.905253,33.947219],[-96.907387,33.950025],[-96.911336,33.95396],[-96.9163,33.957798],[-96.918618,33.958926],[-96.922114,33.959579],[-96.924268,33.959159],[-96.932252,33.955688],[-96.934791,33.954359],[-96.944611,33.949217]]]}}]} diff --git a/Where/RegionKit/Sources/Resources/regions/us-OR.geojson b/Where/RegionKit/Sources/Resources/regions/us-OR.geojson new file mode 100644 index 00000000..3efdff70 --- /dev/null +++ b/Where/RegionKit/Sources/Resources/regions/us-OR.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"region":"us-OR","name":"Oregon"},"geometry":{"type":"Polygon","coordinates":[[[-121.922236,45.649083],[-121.908267,45.654399],[-121.900858,45.662009],[-121.901855,45.670716],[-121.867167,45.693277],[-121.820055,45.704649],[-121.811304,45.706761],[-121.735104,45.694039],[-121.707358,45.694809],[-121.668362,45.705082],[-121.631167,45.704657],[-121.533106,45.726541],[-121.522392,45.724677],[-121.499153,45.720846],[-121.462849,45.701367],[-121.441045,45.69727],[-121.423592,45.69399],[-121.401739,45.692887],[-121.372574,45.703111],[-121.33777,45.704949],[-121.312198,45.699925],[-121.287323,45.687019],[-121.251183,45.67839],[-121.215779,45.671238],[-121.200367,45.649829],[-121.195233,45.629513],[-121.196556,45.616689],[-121.183841,45.606441],[-121.167852,45.606098],[-121.145534,45.607886],[-121.139483,45.611962],[-121.131953,45.609762],[-121.1222,45.616067],[-121.117052,45.618117],[-121.120064,45.623134],[-121.084933,45.647893],[-121.06437,45.652549],[-121.033582,45.650998],[-121.007449,45.653217],[-120.983478,45.648344],[-120.977978,45.649345],[-120.953077,45.656745],[-120.943977,45.656445],[-120.915876,45.641345],[-120.913476,45.640045],[-120.895575,45.642945],[-120.870042,45.661242],[-120.855674,45.671545],[-120.788872,45.686246],[-120.724171,45.706446],[-120.68937,45.715847],[-120.668869,45.730147],[-120.653559,45.737237],[-120.634968,45.745847],[-120.591166,45.746547],[-120.559465,45.738348],[-120.521964,45.709848],[-120.505863,45.700048],[-120.482362,45.694449],[-120.40396,45.699249],[-120.329057,45.71105],[-120.288656,45.72015],[-120.282156,45.72125],[-120.210754,45.725951],[-120.170453,45.761951],[-120.141352,45.773152],[-120.07015,45.785152],[-120.001148,45.811902],[-119.999502,45.812481],[-119.965744,45.824365],[-119.907461,45.828135],[-119.876144,45.834718],[-119.868135,45.835962],[-119.802655,45.84753],[-119.772927,45.845578],[-119.669877,45.856867],[-119.623393,45.905639],[-119.600549,45.919581],[-119.571584,45.925456],[-119.524632,45.908605],[-119.487829,45.906307],[-119.450256,45.917354],[-119.43189,45.918263],[-119.364396,45.921605],[-119.322509,45.933183],[-119.25715,45.939926],[-119.225745,45.932725],[-119.19553,45.92787],[-119.169496,45.927603],[-119.12612,45.932859],[-119.093221,45.942745],[-119.061462,45.958527],[-119.027056,45.969134],[-119.008558,45.97927],[-118.987129,45.999855],[-118.941242,46.000574],[-118.67787,46.000935],[-118.658717,46.000955],[-118.639332,46.000994],[-118.637725,46.00097],[-118.579906,46.000818],[-118.57571,46.000718],[-118.569392,46.000773],[-118.537119,46.00084],[-118.497027,46.00062],[-118.470756,46.000632],[-118.37836,46.000574],[-118.36779,46.000622],[-118.314982,46.000453],[-118.283526,46.000787],[-118.256368,46.000439],[-118.25253,46.000459],[-118.236584,46.000418],[-118.228941,46.000421],[-118.146028,46.000701],[-118.131019,46.00028],[-118.126197,46.000282],[-117.996911,46.000787],[-117.977767,46.000724],[-117.717852,45.999866],[-117.603163,45.998887],[-117.504833,45.998317],[-117.48013,45.99787],[-117.480103,45.99787],[-117.47536,45.997855],[-117.475148,45.997893],[-117.439943,45.998633],[-117.390738,45.998598],[-117.353928,45.996349],[-117.337668,45.998662],[-117.216731,45.998356],[-117.214534,45.99832],[-117.212616,45.998321],[-117.070047,45.99751],[-117.051304,45.996849],[-116.985882,45.996974],[-116.940681,45.996274],[-116.915989,45.995413],[-116.911409,45.988912],[-116.892935,45.974396],[-116.886843,45.958617],[-116.875706,45.945008],[-116.869655,45.923799],[-116.866544,45.916958],[-116.859795,45.907264],[-116.857254,45.904159],[-116.84355,45.892273],[-116.830003,45.886405],[-116.819182,45.880938],[-116.814142,45.877551],[-116.796051,45.858473],[-116.79437,45.856017],[-116.790151,45.849851],[-116.787792,45.844267],[-116.78752,45.840204],[-116.788923,45.836741],[-116.789066,45.833471],[-116.788329,45.831928],[-116.782676,45.825376],[-116.7634,45.81658],[-116.759787,45.816167],[-116.755288,45.817061],[-116.750978,45.818537],[-116.745219,45.821394],[-116.740486,45.82446],[-116.736268,45.826179],[-116.715527,45.826773],[-116.711822,45.826267],[-116.70845,45.825117],[-116.698079,45.820852],[-116.697192,45.820135],[-116.687007,45.806319],[-116.680139,45.79359],[-116.665344,45.781998],[-116.659629,45.780016],[-116.646342,45.779815],[-116.639641,45.781274],[-116.635814,45.783642],[-116.632032,45.784979],[-116.60504,45.781018],[-116.593004,45.778541],[-116.577422,45.76753],[-116.559444,45.755189],[-116.553548,45.753388],[-116.549085,45.752735],[-116.546643,45.750972],[-116.537173,45.737288],[-116.535698,45.734231],[-116.538014,45.714929],[-116.536395,45.69665],[-116.535396,45.691734],[-116.528272,45.681473],[-116.523961,45.677639],[-116.512326,45.670224],[-116.49451,45.655679],[-116.487894,45.649769],[-116.482495,45.639916],[-116.477452,45.631267],[-116.472882,45.624884],[-116.469813,45.620604],[-116.46517,45.617986],[-116.463504,45.615785],[-116.463635,45.602785],[-116.481943,45.577898],[-116.48297,45.577008],[-116.490279,45.574499],[-116.502756,45.566608],[-116.523638,45.54661],[-116.535482,45.525079],[-116.543837,45.514193],[-116.548676,45.510385],[-116.553473,45.499107],[-116.558804,45.481188],[-116.558803,45.480076],[-116.55498,45.472801],[-116.554829,45.46293],[-116.561744,45.461213],[-116.563985,45.460169],[-116.575949,45.452522],[-116.581382,45.448984],[-116.588195,45.44292],[-116.592416,45.427356],[-116.597447,45.41277],[-116.619057,45.39821],[-116.626633,45.388037],[-116.653252,45.351084],[-116.673793,45.321511],[-116.674648,45.314342],[-116.672594,45.298023],[-116.672163,45.288938],[-116.672733,45.283183],[-116.674493,45.276349],[-116.675587,45.274867],[-116.681013,45.27072],[-116.687027,45.267857],[-116.691388,45.263739],[-116.696047,45.254679],[-116.703607,45.239757],[-116.709373,45.219463],[-116.70975,45.217243],[-116.708546,45.207356],[-116.709536,45.203015],[-116.724205,45.171501],[-116.724188,45.162924],[-116.728757,45.144381],[-116.729607,45.142091],[-116.731216,45.139934],[-116.754643,45.113972],[-116.774847,45.105536],[-116.782492,45.09579],[-116.783537,45.093605],[-116.784244,45.088128],[-116.783808,45.079026],[-116.78371,45.076972],[-116.797329,45.060267],[-116.808576,45.050652],[-116.825133,45.03784],[-116.830115,45.035317],[-116.841314,45.030907],[-116.847944,45.022602],[-116.848037,45.021728],[-116.845847,45.01847],[-116.844796,45.015312],[-116.844625,45.001435],[-116.846103,44.999878],[-116.856754,44.984298],[-116.858313,44.978761],[-116.851406,44.959841],[-116.850737,44.958113],[-116.846461,44.951521],[-116.835702,44.940633],[-116.83199,44.933007],[-116.832176,44.931373],[-116.833632,44.928976],[-116.838467,44.923601],[-116.842108,44.914922],[-116.846061,44.905249],[-116.850512,44.893523],[-116.852427,44.887577],[-116.857038,44.880769],[-116.865338,44.870599],[-116.883598,44.858268],[-116.896249,44.84833],[-116.901028,44.841536],[-116.905771,44.834794],[-116.920498,44.81438],[-116.928099,44.808381],[-116.931099,44.804781],[-116.933699,44.798781],[-116.933799,44.796781],[-116.933099,44.794481],[-116.9308,44.790981],[-116.9307,44.789881],[-116.9318,44.787181],[-116.9347,44.783881],[-116.9368,44.782881],[-116.949001,44.777981],[-116.966801,44.775181],[-116.970902,44.773881],[-116.972902,44.772581],[-116.977802,44.767981],[-116.986502,44.762381],[-116.992003,44.759182],[-116.998903,44.756382],[-117.006045,44.756024],[-117.013802,44.756841],[-117.03827,44.748179],[-117.044217,44.74514],[-117.062273,44.727143],[-117.060454,44.721668],[-117.061799,44.706654],[-117.063824,44.703623],[-117.072221,44.700517],[-117.07912,44.692175],[-117.080555,44.686714],[-117.080772,44.684161],[-117.091223,44.668807],[-117.095868,44.664737],[-117.096791,44.657385],[-117.094968,44.652011],[-117.098221,44.640689],[-117.108231,44.62711],[-117.114754,44.624883],[-117.117809,44.620139],[-117.120522,44.614658],[-117.125267,44.593818],[-117.124754,44.583834],[-117.126009,44.581553],[-117.133963,44.57524],[-117.138066,44.572996],[-117.14248,44.57143],[-117.146032,44.568603],[-117.148255,44.564371],[-117.147934,44.562143],[-117.14293,44.557236],[-117.144161,44.545647],[-117.149242,44.536151],[-117.152406,44.531802],[-117.161033,44.525166],[-117.167187,44.523431],[-117.181583,44.52296],[-117.185386,44.519261],[-117.189759,44.513385],[-117.19163,44.509886],[-117.191329,44.506784],[-117.192494,44.503272],[-117.194317,44.499884],[-117.200237,44.492027],[-117.208936,44.485661],[-117.211148,44.485359],[-117.216372,44.48616],[-117.224104,44.483734],[-117.225076,44.482346],[-117.225932,44.479389],[-117.225758,44.477223],[-117.224445,44.473884],[-117.221548,44.470146],[-117.217015,44.459042],[-117.215573,44.453746],[-117.214637,44.44803],[-117.215072,44.427162],[-117.218285,44.420664],[-117.225461,44.407729],[-117.22698,44.405583],[-117.234835,44.399669],[-117.242675,44.396548],[-117.243027,44.390974],[-117.235117,44.373853],[-117.227938,44.367975],[-117.216911,44.360163],[-117.210587,44.357703],[-117.206962,44.355206],[-117.197339,44.347406],[-117.196149,44.346362],[-117.189769,44.336585],[-117.189842,44.335007],[-117.191546,44.329621],[-117.192203,44.32863],[-117.203323,44.313024],[-117.2055,44.311789],[-117.21521,44.309116],[-117.216795,44.308236],[-117.217843,44.30718],[-117.220069,44.301382],[-117.222451,44.298963],[-117.222647,44.297578],[-117.216974,44.288357],[-117.198147,44.273828],[-117.193129,44.270963],[-117.170342,44.25889],[-117.15706,44.25749],[-117.143394,44.258262],[-117.138523,44.25937],[-117.133984,44.262972],[-117.133104,44.264236],[-117.13253,44.267045],[-117.130904,44.269453],[-117.121037,44.277585],[-117.118018,44.278945],[-117.111617,44.280667],[-117.107673,44.280763],[-117.104208,44.27994],[-117.102242,44.278799],[-117.098531,44.275533],[-117.09457,44.270978],[-117.093578,44.269383],[-117.090933,44.260311],[-117.089503,44.258234],[-117.07835,44.249885],[-117.067284,44.24401],[-117.059352,44.237244],[-117.05651,44.230874],[-117.05303,44.229076],[-117.050057,44.22883],[-117.047062,44.229742],[-117.045513,44.232005],[-117.042283,44.242775],[-117.03585,44.246805],[-117.031862,44.248635],[-117.027558,44.248881],[-117.025277,44.248505],[-117.020231,44.246063],[-117.016921,44.245391],[-117.001,44.245386],[-116.98687,44.245477],[-116.975905,44.242844],[-116.973542,44.23998],[-116.971958,44.235677],[-116.973945,44.225932],[-116.973701,44.208017],[-116.971675,44.197256],[-116.967259,44.194581],[-116.965498,44.194126],[-116.947591,44.191264],[-116.945256,44.191677],[-116.940534,44.19371],[-116.935443,44.193962],[-116.925392,44.191544],[-116.902752,44.179467],[-116.900103,44.176851],[-116.895757,44.171267],[-116.894083,44.160191],[-116.894309,44.158114],[-116.895931,44.154295],[-116.897175,44.152538],[-116.927688,44.109438],[-116.928306,44.107326],[-116.933704,44.100039],[-116.937835,44.096943],[-116.943132,44.09406],[-116.957009,44.091743],[-116.967203,44.090936],[-116.974253,44.088295],[-116.977351,44.085364],[-116.974016,44.053663],[-116.973185,44.049425],[-116.972504,44.048771],[-116.956246,44.042888],[-116.943361,44.035645],[-116.937342,44.029376],[-116.934727,44.023806],[-116.934485,44.021249],[-116.936765,44.010608],[-116.942346,43.989106],[-116.942944,43.987512],[-116.957527,43.972443],[-116.966314,43.968884],[-116.969842,43.967588],[-116.971436,43.964998],[-116.971835,43.962806],[-116.971237,43.960216],[-116.970241,43.958622],[-116.969245,43.957426],[-116.966256,43.955832],[-116.963666,43.952644],[-116.96247,43.928336],[-116.963666,43.921363],[-116.966256,43.918573],[-116.977332,43.905812],[-116.976429,43.901293],[-116.976024,43.895548],[-116.979711,43.879975],[-116.982347,43.86884],[-116.98294,43.86771],[-116.989598,43.864301],[-116.991415,43.863864],[-116.997391,43.864874],[-116.999061,43.864637],[-117.01077,43.862269],[-117.013954,43.859358],[-117.026143,43.83448],[-117.026871,43.832479],[-117.02678,43.829841],[-117.026634,43.808104],[-117.026651,43.733935],[-117.026841,43.732905],[-117.026725,43.714815],[-117.026825,43.706193],[-117.026586,43.683001],[-117.026623,43.680865],[-117.026717,43.675523],[-117.026661,43.664385],[-117.026705,43.631659],[-117.026905,43.62488],[-117.027001,43.621032],[-117.026937,43.617614],[-117.026789,43.610669],[-117.02676,43.601912],[-117.026824,43.600357],[-117.026889,43.596033],[-117.026922,43.593632],[-117.026774,43.578674],[-117.026746,43.577526],[-117.026652,43.025128],[-117.026683,43.024876],[-117.026253,42.807447],[-117.026303,42.80717],[-117.026331,42.807015],[-117.026665,42.624878],[-117.026551,42.378557],[-117.026129,42.357193],[-117.026195,42.166404],[-117.02659,42.133258],[-117.026098,42.117647],[-117.026222,42.000252],[-117.040906,41.99989],[-117.04891,41.998983],[-117.055402,41.99989],[-117.068613,42.000035],[-117.197798,42.00038],[-117.217551,41.999887],[-117.403613,41.99929],[-117.443062,41.999659],[-117.623731,41.998467],[-117.625973,41.998102],[-117.873467,41.998335],[-118.197189,41.996995],[-118.501002,41.995446],[-118.601806,41.993895],[-118.696409,41.991794],[-118.775869,41.992692],[-118.777228,41.992671],[-118.795612,41.992394],[-119.001022,41.993793],[-119.20828,41.993177],[-119.231876,41.994212],[-119.251033,41.993843],[-119.324181,41.994206],[-119.360177,41.994384],[-119.444598,41.995478],[-119.72573,41.996296],[-119.790087,41.997544],[-119.848907,41.997281],[-119.872929,41.997641],[-119.876054,41.997199],[-119.986678,41.995842],[-119.999168,41.99454],[-120.001058,41.995139],[-120.181563,41.994588],[-120.286424,41.993058],[-120.326005,41.993122],[-120.501069,41.993785],[-120.647173,41.993084],[-120.692219,41.993677],[-120.693941,41.993676],[-120.812279,41.994183],[-120.879481,41.993781],[-121.035195,41.993323],[-121.094926,41.994658],[-121.126093,41.99601],[-121.247616,41.997054],[-121.251099,41.99757],[-121.309981,41.997612],[-121.334385,41.996655],[-121.335734,41.996518],[-121.340517,41.99622],[-121.360253,41.99668],[-121.376101,41.997026],[-121.434977,41.997022],[-121.43961,41.99708],[-121.44754,41.997169],[-121.52025,41.997983],[-121.580865,41.998668],[-121.675348,42.000351],[-121.689159,42.000584],[-121.705045,42.000766],[-121.708199,42.000815],[-121.846712,42.00307],[-122.000319,42.003967],[-122.101922,42.005766],[-122.155408,42.007429],[-122.156666,42.007384],[-122.160438,42.007637],[-122.161328,42.007637],[-122.261127,42.007364],[-122.289527,42.007764],[-122.289533,42.007764],[-122.378193,42.009518],[-122.397984,42.008758],[-122.501135,42.00846],[-122.634739,42.004858],[-122.712942,42.004157],[-122.80008,42.004071],[-122.876148,42.003247],[-122.893961,42.002605],[-122.941597,42.003085],[-123.045254,42.003049],[-123.065655,42.004948],[-123.083956,42.005448],[-123.145959,42.009247],[-123.154908,42.008036],[-123.192361,42.005446],[-123.230762,42.003845],[-123.230764,42.003845],[-123.347562,41.999108],[-123.381776,41.999268],[-123.43477,42.001641],[-123.49883,42.000525],[-123.498896,42.000474],[-123.501997,42.000527],[-123.517906,42.000883],[-123.525245,42.001047],[-123.55256,42.000246],[-123.624554,41.999837],[-123.656998,41.995137],[-123.728156,41.997007],[-123.789295,41.996111],[-123.813992,41.995096],[-123.821472,41.995473],[-123.834208,41.996116],[-124.001188,41.996146],[-124.086661,41.996869],[-124.087827,41.996891],[-124.100216,41.996842],[-124.100921,41.996956],[-124.126194,41.996992],[-124.211605,41.99846],[-124.214213,42.005939],[-124.270464,42.045553],[-124.287374,42.046016],[-124.299649,42.051736],[-124.314289,42.067864],[-124.34101,42.092929],[-124.356229,42.114952],[-124.357122,42.118016],[-124.351535,42.129796],[-124.351784,42.134965],[-124.355696,42.141964],[-124.361563,42.143767],[-124.366028,42.152343],[-124.366832,42.15845],[-124.363389,42.158588],[-124.360318,42.162272],[-124.361009,42.180752],[-124.367751,42.188321],[-124.373175,42.190218],[-124.374949,42.193129],[-124.376215,42.196381],[-124.375553,42.20882],[-124.377762,42.218809],[-124.383633,42.22716],[-124.410982,42.250547],[-124.411534,42.254115],[-124.408514,42.260588],[-124.405148,42.278107],[-124.410556,42.307431],[-124.429288,42.331746],[-124.427222,42.33488],[-124.425554,42.351874],[-124.424066,42.377242],[-124.424863,42.395426],[-124.428068,42.420333],[-124.434882,42.434916],[-124.435105,42.440163],[-124.422038,42.461226],[-124.423084,42.478952],[-124.421381,42.491737],[-124.399065,42.539928],[-124.390664,42.566593],[-124.389977,42.574758],[-124.400918,42.597518],[-124.399421,42.618079],[-124.401177,42.627192],[-124.413119,42.657934],[-124.416774,42.661594],[-124.45074,42.675798],[-124.451484,42.677787],[-124.447487,42.68474],[-124.448418,42.689909],[-124.473864,42.732671],[-124.491679,42.741789],[-124.498473,42.741077],[-124.499122,42.738606],[-124.510017,42.734746],[-124.513368,42.735068],[-124.514669,42.736806],[-124.516236,42.753632],[-124.524439,42.789793],[-124.536073,42.814175],[-124.544179,42.822958],[-124.552441,42.840568],[-124.500141,42.917502],[-124.480938,42.951495],[-124.479344,42.95497],[-124.462619,42.99143],[-124.456918,43.000315],[-124.436198,43.071312],[-124.432236,43.097383],[-124.434451,43.115986],[-124.424113,43.126859],[-124.401726,43.184896],[-124.395302,43.211101],[-124.395607,43.223908],[-124.38246,43.270167],[-124.388891,43.290523],[-124.393988,43.29926],[-124.400404,43.302121],[-124.402814,43.305872],[-124.387642,43.325968],[-124.373037,43.338953],[-124.353332,43.342667],[-124.341587,43.351337],[-124.315012,43.388389],[-124.286896,43.436296],[-124.255609,43.502172],[-124.233534,43.55713],[-124.218876,43.610319],[-124.203028,43.667825],[-124.204888,43.673976],[-124.198275,43.689481],[-124.193455,43.706085],[-124.168392,43.808903],[-124.158684,43.863504],[-124.150267,43.91085],[-124.142704,43.958182],[-124.133547,44.035845],[-124.122406,44.104442],[-124.125824,44.12613],[-124.117006,44.171913],[-124.114424,44.198164],[-124.115671,44.206554],[-124.111054,44.235071],[-124.108945,44.265475],[-124.109744,44.270597],[-124.114869,44.272721],[-124.115953,44.274641],[-124.115849,44.276277],[-124.1152,44.286486],[-124.10907,44.303707],[-124.108088,44.309926],[-124.109556,44.314545],[-124.100587,44.331926],[-124.092101,44.370388],[-124.084401,44.415611],[-124.080989,44.419728],[-124.071706,44.423662],[-124.067569,44.428582],[-124.073941,44.434481],[-124.079301,44.430863],[-124.082113,44.441518],[-124.082061,44.478171],[-124.084429,44.486927],[-124.083601,44.501123],[-124.076387,44.531214],[-124.067251,44.60804],[-124.06914,44.612979],[-124.082326,44.608861],[-124.084476,44.611056],[-124.065202,44.622445],[-124.065008,44.632504],[-124.058281,44.658866],[-124.060043,44.669361],[-124.070394,44.683514],[-124.063406,44.703177],[-124.059077,44.737656],[-124.066325,44.762671],[-124.075473,44.771403],[-124.074066,44.798107],[-124.066746,44.831191],[-124.063155,44.835333],[-124.054151,44.838233],[-124.048814,44.850007],[-124.032296,44.900809],[-124.025136,44.928175],[-124.025678,44.936542],[-124.023834,44.949825],[-124.015243,44.982904],[-124.004598,45.044959],[-124.004386,45.046197],[-124.004668,45.048167],[-124.00977,45.047266],[-124.017991,45.049808],[-124.015851,45.064759],[-124.012163,45.076921],[-124.006057,45.084736],[-124.004863,45.084232],[-123.989529,45.094045],[-123.975425,45.145476],[-123.968187,45.201217],[-123.972919,45.216784],[-123.962887,45.280218],[-123.964169,45.317026],[-123.972899,45.33689],[-123.978671,45.338854],[-124.007756,45.336813],[-124.007494,45.33974],[-123.979715,45.347724],[-123.973398,45.354791],[-123.965728,45.386242],[-123.960557,45.430778],[-123.964074,45.449112],[-123.972953,45.467513],[-123.976544,45.489733],[-123.970794,45.493507],[-123.96634,45.493417],[-123.957568,45.510399],[-123.947556,45.564878],[-123.956711,45.571303],[-123.951246,45.585775],[-123.939005,45.661923],[-123.939448,45.708795],[-123.943121,45.727031],[-123.946027,45.733249],[-123.968563,45.757019],[-123.982578,45.761815],[-123.981864,45.768285],[-123.969459,45.782371],[-123.96934,45.783197],[-123.961544,45.837101],[-123.962736,45.869974],[-123.96763,45.907807],[-123.979501,45.930389],[-123.99304,45.938842],[-123.993703,45.946431],[-123.969991,45.969139],[-123.957438,45.974469],[-123.941831,45.97566],[-123.937471,45.977306],[-123.927891,46.009564],[-123.92933,46.041978],[-123.933366,46.071672],[-123.947531,46.116131],[-123.95919,46.141675],[-123.974124,46.168798],[-123.996766,46.20399],[-124.010344,46.223514],[-124.024305,46.229256],[-124.011355,46.236223],[-124.001998,46.237316],[-123.998052,46.235327],[-123.988429,46.224132],[-123.990117,46.21763],[-123.987196,46.211521],[-123.982149,46.209662],[-123.961739,46.207916],[-123.950148,46.204097],[-123.927038,46.191617],[-123.912405,46.17945],[-123.9042,46.169293],[-123.891186,46.164778],[-123.854801,46.157342],[-123.842849,46.160529],[-123.841521,46.169824],[-123.863347,46.18235],[-123.866643,46.187674],[-123.864209,46.189527],[-123.838801,46.192211],[-123.821834,46.190293],[-123.793936,46.196283],[-123.759976,46.2073],[-123.736747,46.200687],[-123.71278,46.198751],[-123.706667,46.199665],[-123.67538,46.212401],[-123.673831,46.215418],[-123.666751,46.218228],[-123.65539,46.217974],[-123.636474,46.214359],[-123.6325,46.216681],[-123.626247,46.226434],[-123.625219,46.233868],[-123.622812,46.23664],[-123.613459,46.239228],[-123.605487,46.2393],[-123.60019,46.234814],[-123.586205,46.228654],[-123.548194,46.248245],[-123.547659,46.259109],[-123.538092,46.26061],[-123.526391,46.263404],[-123.516188,46.266153],[-123.501245,46.271004],[-123.479644,46.269131],[-123.474844,46.267831],[-123.468743,46.264531],[-123.447592,46.249832],[-123.427629,46.229348],[-123.430847,46.181827],[-123.371433,46.146372],[-123.363636,46.146324],[-123.332335,46.146132],[-123.301034,46.144632],[-123.280166,46.144843],[-123.251233,46.156452],[-123.231196,46.16615],[-123.213054,46.172541],[-123.166414,46.188973],[-123.115904,46.185268],[-123.105021,46.177676],[-123.051064,46.153599],[-123.041297,46.146351],[-123.03382,46.144336],[-123.022147,46.13911],[-123.009436,46.136043],[-123.004233,46.133823],[-122.962681,46.104817],[-122.904119,46.083734],[-122.884478,46.06028],[-122.878092,46.031281],[-122.856158,46.014469],[-122.837638,45.98082],[-122.813998,45.960984],[-122.806193,45.932416],[-122.81151,45.912725],[-122.798091,45.884333],[-122.785026,45.867699],[-122.785515,45.850536],[-122.785696,45.844216],[-122.795963,45.825024],[-122.795605,45.81],[-122.769532,45.780583],[-122.761451,45.759163],[-122.760108,45.734413],[-122.762182,45.728598],[-122.772511,45.699637],[-122.774511,45.680437],[-122.76381,45.657138],[-122.738109,45.644138],[-122.713309,45.637438],[-122.691008,45.624739],[-122.675008,45.618039],[-122.643907,45.609739],[-122.602606,45.607639],[-122.581406,45.60394],[-122.548149,45.596768],[-122.523668,45.589632],[-122.492259,45.583281],[-122.479315,45.579761],[-122.474659,45.578305],[-122.453891,45.567313],[-122.438674,45.563585],[-122.410706,45.567633],[-122.391802,45.574541],[-122.380302,45.575941],[-122.352802,45.569441],[-122.331502,45.548241],[-122.294901,45.543541],[-122.266701,45.543841],[-122.262625,45.544321],[-122.248993,45.547745],[-122.2017,45.564141],[-122.183695,45.577696],[-122.14075,45.584508],[-122.129548,45.582945],[-122.12949,45.582967],[-122.126197,45.582573],[-122.126197,45.582617],[-122.112356,45.581409],[-122.101675,45.583516],[-122.044374,45.609516],[-122.022571,45.615151],[-122.00369,45.61593],[-121.983038,45.622812],[-121.979797,45.624839],[-121.963547,45.632784],[-121.955734,45.643559],[-121.951838,45.644951],[-121.935149,45.644169],[-121.922236,45.649083]]]}}]} diff --git a/Where/RegionKit/Sources/Resources/regions/us-PA.geojson b/Where/RegionKit/Sources/Resources/regions/us-PA.geojson new file mode 100644 index 00000000..58ac1404 --- /dev/null +++ b/Where/RegionKit/Sources/Resources/regions/us-PA.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"region":"us-PA","name":"Pennsylvania"},"geometry":{"type":"Polygon","coordinates":[[[-79.916171,39.720893],[-80.075947,39.72135],[-80.308651,39.721283],[-80.309457,39.721264],[-80.421388,39.721189],[-80.519342,39.721403],[-80.519423,39.806181],[-80.518891,39.890964],[-80.519248,39.936967],[-80.519115,39.939188],[-80.519175,39.956648],[-80.519203,39.959394],[-80.519217,39.962199],[-80.519218,39.962424],[-80.519207,39.963381],[-80.51912,40.01641],[-80.519008,40.077001],[-80.51896,40.078089],[-80.519104,40.159672],[-80.519056,40.172744],[-80.519056,40.172771],[-80.519039,40.342101],[-80.517991,40.367968],[-80.517991,40.398868],[-80.517987,40.399644],[-80.51769,40.462467],[-80.51899,40.473667],[-80.518995,40.477363],[-80.519054,40.517922],[-80.519057,40.517922],[-80.519055,40.590173],[-80.519086,40.590161],[-80.519086,40.616385],[-80.519039,40.616391],[-80.518991,40.638801],[-80.519058,40.792298],[-80.518992,40.801221],[-80.519081,40.849157],[-80.51902,40.850073],[-80.519019,40.851339],[-80.519002,40.877543],[-80.519764,40.899858],[-80.51979,40.900761],[-80.519891,40.906661],[-80.519091,40.921061],[-80.519,40.98738],[-80.518989,40.995445],[-80.518927,41.015387],[-80.51896,41.061546],[-80.518928,41.070954],[-80.51896,41.071866],[-80.518999,41.075014],[-80.519088,41.082074],[-80.519092,41.090658],[-80.519125,41.100819],[-80.519192,41.105358],[-80.518992,41.115958],[-80.519056,41.125057],[-80.519012,41.125057],[-80.519012,41.125093],[-80.519012,41.125116],[-80.519167,41.133343],[-80.519167,41.133388],[-80.519115,41.14552],[-80.519144,41.171203],[-80.51883,41.209213],[-80.518893,41.219356],[-80.518893,41.219357],[-80.518893,41.232556],[-80.518693,41.248855],[-80.518893,41.265155],[-80.518993,41.268155],[-80.518996,41.2683],[-80.518794,41.305509],[-80.519129,41.312408],[-80.519265,41.333495],[-80.519281,41.335958],[-80.519281,41.337145],[-80.519281,41.337174],[-80.519311,41.339052],[-80.519293,41.339054],[-80.519293,41.339654],[-80.519345,41.340145],[-80.519345,41.34074],[-80.519297,41.350833],[-80.519249,41.36103],[-80.519217,41.372006],[-80.519249,41.378918],[-80.519025,41.416438],[-80.518993,41.416437],[-80.518993,41.435454],[-80.519169,41.462581],[-80.519209,41.489013],[-80.519225,41.499924],[-80.519157,41.528769],[-80.519339,41.539297],[-80.519357,41.669767],[-80.519424,41.671228],[-80.519373,41.701473],[-80.519408,41.739359],[-80.519369,41.752487],[-80.519239,41.765138],[-80.519294,41.849563],[-80.519345,41.929168],[-80.519304,41.943992],[-80.519405,41.976158],[-80.519425,41.977522],[-80.519425,41.977523],[-80.435451,42.005611],[-80.409776,42.011578],[-80.373066,42.024102],[-80.371869,42.023966],[-80.363251,42.027973],[-80.349169,42.030243],[-80.329976,42.036168],[-80.296758,42.049076],[-80.230486,42.077957],[-80.188085,42.094257],[-80.165884,42.105857],[-80.154084,42.114757],[-80.136213,42.149937],[-80.13043,42.156331],[-80.117368,42.166341],[-80.088512,42.173184],[-80.077388,42.171262],[-80.073381,42.168658],[-80.080028,42.163625],[-80.071981,42.155357],[-80.078781,42.151457],[-80.076281,42.147857],[-80.07198,42.146057],[-80.06108,42.144857],[-79.989186,42.177051],[-79.931324,42.206737],[-79.923924,42.207546],[-79.90105,42.216701],[-79.886187,42.224933],[-79.867979,42.230999],[-79.844661,42.235486],[-79.798447,42.255939],[-79.761951,42.26986],[-79.761964,42.251354],[-79.762152,42.243054],[-79.761833,42.183627],[-79.761929,42.179693],[-79.761921,42.173319],[-79.761759,42.162675],[-79.761861,42.150712],[-79.762122,42.131246],[-79.761709,42.11899],[-79.761798,42.019042],[-79.761374,41.999067],[-79.670128,41.999335],[-79.625287,41.999003],[-79.625301,41.999068],[-79.610839,41.998989],[-79.551385,41.998666],[-79.538445,41.998527],[-79.472472,41.998255],[-79.249772,41.998807],[-79.17857,41.999458],[-79.061265,41.999259],[-79.052472,41.999224],[-78.983065,41.998949],[-78.918855,41.998125],[-78.874759,41.997559],[-78.749754,41.998109],[-78.59665,41.999877],[-78.308128,41.999415],[-78.271204,41.998968],[-78.206604,41.999622],[-78.12473,42.000452],[-78.031177,41.999415],[-78.030963,41.999392],[-77.997508,41.998758],[-77.83203,41.998524],[-77.822799,41.998547],[-77.749931,41.998782],[-77.610028,41.999519],[-77.505308,42.00007],[-77.124693,41.999395],[-77.063676,42.000461],[-77.007635,42.000848],[-77.007536,42.000819],[-76.965728,42.001274],[-76.965686,42.001274],[-76.942585,42.001574],[-76.937084,42.001674],[-76.927084,42.001674],[-76.921884,42.001674],[-76.920784,42.001774],[-76.835079,42.001773],[-76.815878,42.001673],[-76.749675,42.001689],[-76.558118,42.000155],[-76.557624,42.000149],[-76.46654,41.999025],[-76.462155,41.998934],[-76.349898,41.99841],[-76.343722,41.998346],[-76.145519,41.998913],[-76.131201,41.998954],[-76.123696,41.998954],[-76.10584,41.998858],[-75.983082,41.999035],[-75.98025,41.999035],[-75.870677,41.998828],[-75.742217,41.997864],[-75.610316,41.99896],[-75.483738,41.999244],[-75.48315,41.999259],[-75.477144,41.999407],[-75.436216,41.999353],[-75.431961,41.999363],[-75.359579,41.999445],[-75.353504,41.99711],[-75.346568,41.995324],[-75.341125,41.992772],[-75.337602,41.9867],[-75.337791,41.984386],[-75.34246,41.974303],[-75.342204,41.972872],[-75.339488,41.970786],[-75.335771,41.970315],[-75.329318,41.968232],[-75.322384,41.961693],[-75.32004,41.960867],[-75.318168,41.954236],[-75.312817,41.950182],[-75.310358,41.949012],[-75.303966,41.948216],[-75.301664,41.94838],[-75.301233,41.9489],[-75.301593,41.952811],[-75.300409,41.953871],[-75.29858,41.954521],[-75.293713,41.954593],[-75.29143,41.952477],[-75.291762,41.947092],[-75.290966,41.945039],[-75.289383,41.942891],[-75.279094,41.938917],[-75.277243,41.933598],[-75.276501,41.926679],[-75.276552,41.922208],[-75.275368,41.919564],[-75.269736,41.911363],[-75.267562,41.907054],[-75.267773,41.901971],[-75.272778,41.897112],[-75.272581,41.893168],[-75.271292,41.88736],[-75.267789,41.885982],[-75.263005,41.885109],[-75.260623,41.883783],[-75.257564,41.877108],[-75.258439,41.875087],[-75.261488,41.873277],[-75.263815,41.870757],[-75.263673,41.868105],[-75.262802,41.866213],[-75.260527,41.8638],[-75.257825,41.862154],[-75.251197,41.86204],[-75.248045,41.8633],[-75.243345,41.866875],[-75.241134,41.867118],[-75.238743,41.865699],[-75.234565,41.861569],[-75.231612,41.859459],[-75.22572,41.857481],[-75.223734,41.857456],[-75.220125,41.860534],[-75.21497,41.867449],[-75.209741,41.86925],[-75.204002,41.869867],[-75.197836,41.868807],[-75.194382,41.867287],[-75.191441,41.865063],[-75.190203,41.862454],[-75.188888,41.861264],[-75.186993,41.860109],[-75.185254,41.85993],[-75.183937,41.860515],[-75.182271,41.862198],[-75.180497,41.86568],[-75.179134,41.869935],[-75.176633,41.872371],[-75.174574,41.87266],[-75.170565,41.871608],[-75.169142,41.87029],[-75.168053,41.867043],[-75.168733,41.859258],[-75.166217,41.853862],[-75.164168,41.851586],[-75.161541,41.849836],[-75.156512,41.848327],[-75.152898,41.848564],[-75.146446,41.850899],[-75.143824,41.851737],[-75.140241,41.852078],[-75.130983,41.845145],[-75.127913,41.844903],[-75.118789,41.845819],[-75.115598,41.844638],[-75.114399,41.843583],[-75.113369,41.840698],[-75.113441,41.836298],[-75.114998,41.8303],[-75.115147,41.827285],[-75.114837,41.82567],[-75.113334,41.822782],[-75.100024,41.818347],[-75.093537,41.813375],[-75.089484,41.811576],[-75.085789,41.811626],[-75.079818,41.814815],[-75.078063,41.815112],[-75.074409,41.815088],[-75.072172,41.813732],[-75.071751,41.811901],[-75.072168,41.808327],[-75.074412,41.802191],[-75.076889,41.798509],[-75.07827,41.797467],[-75.081415,41.796483],[-75.088328,41.797534],[-75.092876,41.796386],[-75.101463,41.787941],[-75.102329,41.786503],[-75.103548,41.782008],[-75.10464,41.774203],[-75.104334,41.772693],[-75.103492,41.771238],[-75.10099,41.769121],[-75.095451,41.768366],[-75.09281,41.768361],[-75.079478,41.771205],[-75.075942,41.771518],[-75.074231,41.770518],[-75.072664,41.768807],[-75.068567,41.767298],[-75.064901,41.766686],[-75.060759,41.764638],[-75.053431,41.752538],[-75.052808,41.744725],[-75.054818,41.735168],[-75.053527,41.72715],[-75.049699,41.715093],[-75.049862,41.713309],[-75.050689,41.711969],[-75.052226,41.711396],[-75.061174,41.712935],[-75.06663,41.712588],[-75.068642,41.710146],[-75.06883,41.708161],[-75.067278,41.705434],[-75.059829,41.699716],[-75.056745,41.695703],[-75.052736,41.688393],[-75.051234,41.682439],[-75.051285,41.679961],[-75.052653,41.678436],[-75.058765,41.674412],[-75.059332,41.67232],[-75.05843,41.669653],[-75.057251,41.668933],[-75.053991,41.668194],[-75.04992,41.662556],[-75.048683,41.656317],[-75.049281,41.641862],[-75.048658,41.633781],[-75.048199,41.632011],[-75.043562,41.62364],[-75.044224,41.617978],[-75.045508,41.616203],[-75.047298,41.615791],[-75.048385,41.615986],[-75.051856,41.618157],[-75.05385,41.618655],[-75.060098,41.617482],[-75.06156,41.616429],[-75.061675,41.615468],[-75.059956,41.612306],[-75.059725,41.610801],[-75.062716,41.609639],[-75.067795,41.610143],[-75.071667,41.609501],[-75.074626,41.607905],[-75.074613,41.605711],[-75.069712,41.60169],[-75.066955,41.599428],[-75.063677,41.594739],[-75.060012,41.590813],[-75.052858,41.587772],[-75.04676,41.583258],[-75.043879,41.575094],[-75.04049,41.569688],[-75.036989,41.567049],[-75.033162,41.565092],[-75.029211,41.564637],[-75.027343,41.563541],[-75.018524,41.551802],[-75.016328,41.546501],[-75.016144,41.544246],[-75.017626,41.542734],[-75.022828,41.541456],[-75.024798,41.539801],[-75.024757,41.535099],[-75.024206,41.534018],[-75.023018,41.533147],[-75.016616,41.53211],[-75.014919,41.531399],[-75.009552,41.528461],[-75.00385,41.524052],[-75.001297,41.52065],[-75.000911,41.519292],[-75.000935,41.517638],[-75.002592,41.51456],[-75.003706,41.511118],[-75.003694,41.509295],[-75.003151,41.508101],[-74.999612,41.5074],[-74.993893,41.508754],[-74.987645,41.508738],[-74.985653,41.507926],[-74.984372,41.506611],[-74.982385,41.500981],[-74.982168,41.498486],[-74.982463,41.496467],[-74.985247,41.489113],[-74.985595,41.485863],[-74.985004,41.483703],[-74.983341,41.480894],[-74.981652,41.479945],[-74.969887,41.477438],[-74.95826,41.476396],[-74.956411,41.476735],[-74.94808,41.480625],[-74.945634,41.483213],[-74.941798,41.483542],[-74.932585,41.482323],[-74.926835,41.478327],[-74.924092,41.477138],[-74.917282,41.477041],[-74.912517,41.475605],[-74.909181,41.472436],[-74.908133,41.468117],[-74.908103,41.464639],[-74.906887,41.461131],[-74.9042,41.459806],[-74.895069,41.45819],[-74.892114,41.456959],[-74.890358,41.455324],[-74.889116,41.452534],[-74.889075,41.451245],[-74.894931,41.446099],[-74.896399,41.442179],[-74.896025,41.439987],[-74.893913,41.43893],[-74.888691,41.438259],[-74.876721,41.440338],[-74.864688,41.443993],[-74.858578,41.444427],[-74.8542,41.443166],[-74.848602,41.440179],[-74.845572,41.437577],[-74.836915,41.431625],[-74.834635,41.430796],[-74.830671,41.430503],[-74.828592,41.430698],[-74.826031,41.431736],[-74.82288,41.436792],[-74.817995,41.440505],[-74.812123,41.442982],[-74.807582,41.442847],[-74.805655,41.442101],[-74.801225,41.4381],[-74.80037,41.43606],[-74.800095,41.432661],[-74.799546,41.43129],[-74.795396,41.42398],[-74.793856,41.422671],[-74.790417,41.42166],[-74.784339,41.422397],[-74.778029,41.425104],[-74.773239,41.426352],[-74.77065,41.42623],[-74.763701,41.423612],[-74.758587,41.423287],[-74.754709,41.424993],[-74.754359,41.425147],[-74.75068,41.427984],[-74.743821,41.430635],[-74.740932,41.43116],[-74.738455,41.430641],[-74.736688,41.429228],[-74.735519,41.427465],[-74.734893,41.425818],[-74.734731,41.422699],[-74.738684,41.413463],[-74.741086,41.411413],[-74.741717,41.40788],[-74.740963,41.40512],[-74.738554,41.401191],[-74.736103,41.398398],[-74.73364,41.396975],[-74.730384,41.39566],[-74.720891,41.39469],[-74.715979,41.392584],[-74.713411,41.389814],[-74.710391,41.382102],[-74.708458,41.378901],[-74.703282,41.375093],[-74.694968,41.370431],[-74.691129,41.367324],[-74.689516,41.363843],[-74.689767,41.361558],[-74.691076,41.36034],[-74.696398,41.357339],[-74.694914,41.357423],[-74.700595,41.354553],[-74.704429,41.354043],[-74.708514,41.352734],[-74.720923,41.347384],[-74.730373,41.345983],[-74.735622,41.346518],[-74.753239,41.346122],[-74.755971,41.344953],[-74.760325,41.340325],[-74.763499,41.331568],[-74.766714,41.328558],[-74.771588,41.325079],[-74.774887,41.324326],[-74.781584,41.324229],[-74.789095,41.323281],[-74.792116,41.322465],[-74.79504,41.320407],[-74.795822,41.318516],[-74.792377,41.314088],[-74.791991,41.311639],[-74.792558,41.310628],[-74.806858,41.303155],[-74.812033,41.298157],[-74.815703,41.296151],[-74.821884,41.293838],[-74.830057,41.2872],[-74.834067,41.281111],[-74.838366,41.277286],[-74.841137,41.27098],[-74.846319,41.263077],[-74.846506,41.261576],[-74.845031,41.258055],[-74.845883,41.254945],[-74.846932,41.253318],[-74.848987,41.251192],[-74.854669,41.25051],[-74.856003,41.250094],[-74.857151,41.248975],[-74.861678,41.241575],[-74.862049,41.237609],[-74.866182,41.232132],[-74.867405,41.22777],[-74.866839,41.226865],[-74.860837,41.222317],[-74.859323,41.220507],[-74.859632,41.219077],[-74.860398,41.217454],[-74.867287,41.208754],[-74.874034,41.198543],[-74.878275,41.190489],[-74.878492,41.187504],[-74.882139,41.180836],[-74.889424,41.1736],[-74.899701,41.166181],[-74.901172,41.16387],[-74.90178,41.161394],[-74.905256,41.155668],[-74.923169,41.138146],[-74.931141,41.133387],[-74.945067,41.129052],[-74.947714,41.126292],[-74.947334,41.124439],[-74.947912,41.12356],[-74.964294,41.114237],[-74.966298,41.113669],[-74.969312,41.113869],[-74.972917,41.113327],[-74.979873,41.110423],[-74.982212,41.108245],[-74.991718,41.092284],[-74.991815,41.089132],[-74.991013,41.088578],[-74.988263,41.088222],[-74.984782,41.088545],[-74.981314,41.08986],[-74.975298,41.094073],[-74.972036,41.095562],[-74.969434,41.096074],[-74.967464,41.095327],[-74.967136,41.094441],[-74.966759,41.093425],[-74.968389,41.087797],[-74.970987,41.085293],[-74.98259,41.079172],[-74.989332,41.078319],[-74.994847,41.076556],[-74.999617,41.073943],[-75.006376,41.067546],[-75.011133,41.067521],[-75.01257,41.066281],[-75.015271,41.061215],[-75.015867,41.05821],[-75.017239,41.055491],[-75.019186,41.052968],[-75.025702,41.046482],[-75.026376,41.04444],[-75.02543,41.04071],[-75.025777,41.039806],[-75.030701,41.038416],[-75.034496,41.036755],[-75.040668,41.031755],[-75.070532,41.01862],[-75.074999,41.01713],[-75.081101,41.016838],[-75.089787,41.014549],[-75.090312,41.013302],[-75.095556,41.008874],[-75.100682,41.006716],[-75.109114,41.004102],[-75.110595,41.002174],[-75.123423,40.996129],[-75.127196,40.993954],[-75.130575,40.991093],[-75.131619,40.9889],[-75.13153,40.984914],[-75.132106,40.982566],[-75.133086,40.980179],[-75.135521,40.976865],[-75.135526,40.973807],[-75.13378,40.970973],[-75.131364,40.969277],[-75.129074,40.968976],[-75.122603,40.970152],[-75.120514,40.968369],[-75.120435,40.968302],[-75.11977,40.96651],[-75.12065,40.964028],[-75.120316,40.96263],[-75.119893,40.961646],[-75.118904,40.956361],[-75.117764,40.953023],[-75.111683,40.948111],[-75.106153,40.939671],[-75.105524,40.936294],[-75.09772,40.926679],[-75.095526,40.924152],[-75.079279,40.91389],[-75.076956,40.90988],[-75.076092,40.907042],[-75.075188,40.900154],[-75.075957,40.895694],[-75.07534,40.894162],[-75.07392,40.892176],[-75.065438,40.885682],[-75.062149,40.882289],[-75.058655,40.877654],[-75.053664,40.87366],[-75.051508,40.870224],[-75.050839,40.868067],[-75.051029,40.865662],[-75.053294,40.8599],[-75.060491,40.85302],[-75.064328,40.848338],[-75.066014,40.847591],[-75.07083,40.847392],[-75.073544,40.84894],[-75.076684,40.849875],[-75.090962,40.849187],[-75.095784,40.847082],[-75.097221,40.844672],[-75.097586,40.843042],[-75.097572,40.840967],[-75.097006,40.839336],[-75.09494,40.837103],[-75.085517,40.830085],[-75.083822,40.827805],[-75.083929,40.824471],[-75.085387,40.821972],[-75.090518,40.815913],[-75.096147,40.812211],[-75.098279,40.810286],[-75.100277,40.807578],[-75.100739,40.805488],[-75.100165,40.803],[-75.100277,40.801176],[-75.1008,40.799797],[-75.108505,40.791094],[-75.111343,40.789896],[-75.116842,40.78935],[-75.123088,40.786746],[-75.125867,40.784026],[-75.131465,40.77595],[-75.133303,40.774124],[-75.1344,40.773765],[-75.139106,40.773606],[-75.149378,40.774786],[-75.16365,40.778386],[-75.169523,40.778473],[-75.171587,40.777745],[-75.173349,40.776129],[-75.17562,40.772923],[-75.176855,40.768721],[-75.177477,40.764225],[-75.17904,40.761897],[-75.183037,40.759344],[-75.191796,40.75583],[-75.196533,40.751631],[-75.196861,40.750097],[-75.196325,40.747137],[-75.195349,40.745473],[-75.18578,40.737266],[-75.182804,40.73365],[-75.182084,40.731522],[-75.1825,40.729922],[-75.186372,40.72397],[-75.189412,40.71797],[-75.192612,40.715874],[-75.19442,40.714018],[-75.19872,40.705298],[-75.20392,40.691498],[-75.20092,40.685498],[-75.19692,40.681299],[-75.19058,40.679379],[-75.184516,40.679971],[-75.180564,40.679363],[-75.177587,40.677731],[-75.176803,40.675715],[-75.177491,40.672595],[-75.182756,40.665971],[-75.18794,40.663811],[-75.190852,40.661939],[-75.196676,40.655123],[-75.200452,40.649219],[-75.200468,40.646899],[-75.193492,40.642275],[-75.192276,40.640803],[-75.191059,40.637971],[-75.188579,40.624628],[-75.189283,40.621492],[-75.190691,40.619956],[-75.197891,40.619332],[-75.200708,40.618356],[-75.201812,40.617188],[-75.201348,40.614628],[-75.198499,40.611492],[-75.196803,40.60858],[-75.195923,40.606788],[-75.192291,40.602676],[-75.190369,40.591642],[-75.190146,40.590359],[-75.190796,40.586838],[-75.194656,40.58194],[-75.195114,40.579689],[-75.19487,40.578591],[-75.194046,40.576256],[-75.192352,40.574257],[-75.186737,40.569406],[-75.183151,40.567354],[-75.175307,40.564996],[-75.168609,40.564111],[-75.162871,40.564096],[-75.158446,40.565286],[-75.147368,40.573152],[-75.141906,40.575273],[-75.136748,40.575731],[-75.117292,40.573211],[-75.110903,40.570671],[-75.100325,40.567811],[-75.0957,40.564401],[-75.078503,40.548296],[-75.068615,40.542223],[-75.067257,40.539584],[-75.066426,40.536619],[-75.066402,40.536532],[-75.06509,40.526148],[-75.065853,40.519495],[-75.066001,40.510716],[-75.065275,40.504682],[-75.062373,40.491689],[-75.061937,40.486362],[-75.062227,40.481391],[-75.064327,40.476795],[-75.067776,40.472827],[-75.06805,40.468578],[-75.067302,40.464954],[-75.070568,40.456348],[-75.070568,40.455165],[-75.067425,40.448323],[-75.062923,40.433407],[-75.061489,40.422848],[-75.058848,40.418065],[-75.056102,40.416066],[-75.046473,40.413792],[-75.043071,40.411603],[-75.041651,40.409894],[-75.036616,40.406796],[-75.028315,40.403883],[-75.024775,40.403455],[-75.017221,40.404638],[-75.003351,40.40785],[-74.998651,40.410093],[-74.996378,40.410528],[-74.988901,40.408773],[-74.985467,40.405935],[-74.982735,40.404432],[-74.969597,40.39977],[-74.965508,40.397337],[-74.963997,40.395246],[-74.953697,40.376081],[-74.948722,40.364768],[-74.946006,40.357306],[-74.945088,40.347332],[-74.943776,40.342564],[-74.942954,40.341643],[-74.939711,40.338006],[-74.933111,40.333106],[-74.92681,40.329406],[-74.91741,40.322406],[-74.90831,40.316907],[-74.90331,40.315607],[-74.896409,40.315107],[-74.891609,40.313007],[-74.887109,40.310307],[-74.880609,40.305607],[-74.868209,40.295207],[-74.864692,40.290684],[-74.860492,40.284584],[-74.856508,40.277407],[-74.853108,40.269707],[-74.846608,40.258808],[-74.842308,40.250508],[-74.836307,40.246208],[-74.823907,40.241508],[-74.819507,40.238508],[-74.795306,40.229408],[-74.781206,40.221508],[-74.77136,40.215399],[-74.770406,40.214508],[-74.766905,40.207709],[-74.760605,40.198909],[-74.756905,40.189409],[-74.755605,40.186709],[-74.754305,40.185209],[-74.751943,40.183483],[-74.751705,40.183309],[-74.744105,40.181009],[-74.737205,40.177609],[-74.733804,40.174509],[-74.722304,40.160609],[-74.721504,40.158409],[-74.721604,40.15381],[-74.722604,40.15001],[-74.724134,40.14731],[-74.724304,40.14701],[-74.725663,40.145495],[-74.740605,40.13521],[-74.742905,40.13441],[-74.745905,40.13421],[-74.755305,40.13471],[-74.758882,40.134036],[-74.762864,40.132541],[-74.769488,40.129145],[-74.782106,40.12081],[-74.785106,40.12031],[-74.788706,40.12041],[-74.800607,40.12281],[-74.812807,40.12691],[-74.816307,40.12761],[-74.819007,40.12751],[-74.822307,40.12671],[-74.825907,40.12391],[-74.828408,40.12031],[-74.832808,40.11171],[-74.835108,40.10391],[-74.838008,40.10091],[-74.843408,40.09771],[-74.851108,40.09491],[-74.854409,40.09311],[-74.856509,40.09131],[-74.858209,40.08881],[-74.859809,40.08491],[-74.860909,40.08371],[-74.863809,40.08221],[-74.880209,40.07881],[-74.88781,40.07581],[-74.898573,40.072967],[-74.909011,40.07021],[-74.911911,40.06991],[-74.920811,40.07111],[-74.925311,40.07071],[-74.932211,40.068411],[-74.944412,40.063211],[-74.97432,40.048899],[-74.974713,40.048711],[-74.983913,40.042711],[-74.989914,40.037311],[-75.007914,40.023111],[-75.011115,40.021311],[-75.013796,40.020214],[-75.015515,40.019511],[-75.039316,40.013012],[-75.047016,40.008912],[-75.051217,40.004512],[-75.059017,39.992512],[-75.059994,39.991618],[-75.072017,39.980612],[-75.088618,39.975212],[-75.092481,39.974606],[-75.093718,39.974412],[-75.108119,39.970312],[-75.11922,39.965412],[-75.12692,39.961112],[-75.13012,39.958712],[-75.13352,39.954412],[-75.13572,39.947112],[-75.13612,39.933912],[-75.13502,39.927312],[-75.13282,39.921612],[-75.13012,39.917013],[-75.12792,39.911813],[-75.13082,39.900213],[-75.13342,39.896213],[-75.140006,39.888465],[-75.140221,39.888213],[-75.142421,39.886413],[-75.145421,39.884213],[-75.150721,39.882713],[-75.183023,39.882013],[-75.189323,39.880713],[-75.195324,39.877013],[-75.210425,39.865913],[-75.210876,39.865709],[-75.221025,39.861113],[-75.235026,39.856613],[-75.243431,39.854597],[-75.271159,39.84944],[-75.293376,39.848782],[-75.309674,39.850179],[-75.323232,39.849812],[-75.330433,39.849012],[-75.341765,39.846082],[-75.3544,39.839917],[-75.371835,39.827612],[-75.389764,39.815819],[-75.390536,39.815312],[-75.403737,39.807512],[-75.415041,39.801786],[-75.428038,39.809212],[-75.45374,39.820312],[-75.463341,39.823812],[-75.481242,39.829112],[-75.498843,39.833312],[-75.518444,39.836311],[-75.539346,39.838211],[-75.570464,39.839007],[-75.579849,39.838526],[-75.5799,39.838522],[-75.593082,39.8375],[-75.593666,39.837455],[-75.594846,39.837286],[-75.595756,39.837156],[-75.617251,39.833999],[-75.634706,39.830164],[-75.641518,39.828363],[-75.662822,39.82115],[-75.685991,39.811054],[-75.701208,39.802606],[-75.716969,39.791998],[-75.727049,39.784126],[-75.736489,39.775759],[-75.744394,39.767855],[-75.753066,39.757631],[-75.760346,39.747231],[-75.766058,39.737811],[-75.773558,39.722411],[-75.788359,39.721811],[-75.799563,39.721882],[-75.810068,39.721906],[-75.998649,39.721576],[-76.013067,39.72192],[-76.027618,39.721833],[-76.135584,39.721556],[-76.224191,39.721328],[-76.233259,39.721305],[-76.233277,39.721305],[-76.239805,39.721305],[-76.380083,39.721304],[-76.380583,39.721304],[-76.395583,39.721204],[-76.418684,39.721304],[-76.418784,39.721204],[-76.491887,39.721304],[-76.517087,39.721304],[-76.569389,39.721203],[-76.569475,39.721203],[-76.711894,39.721103],[-76.715594,39.721103],[-76.787096,39.720802],[-76.787097,39.720802],[-76.806397,39.720602],[-76.809197,39.720702],[-76.8901,39.720401],[-76.897566,39.720401],[-76.936601,39.720701],[-76.990903,39.7198],[-76.999466,39.71983],[-77.047104,39.72],[-77.058204,39.7202],[-77.058904,39.7201],[-77.216806,39.719998],[-77.217024,39.719998],[-77.239807,39.719998],[-77.243307,39.719998],[-77.459427,39.720017],[-77.469145,39.720018],[-77.533371,39.720165],[-77.534758,39.720134],[-77.672249,39.720778],[-77.674522,39.720847],[-77.724115,39.720894],[-77.732615,39.721094],[-77.743204,39.721205],[-77.768534,39.721358],[-77.874719,39.722219],[-78.073736,39.722314],[-78.075771,39.722301],[-78.09914,39.722322],[-78.202895,39.722416],[-78.20445,39.72252],[-78.240334,39.722498],[-78.243103,39.722481],[-78.268948,39.72259],[-78.26902,39.722613],[-78.330715,39.722689],[-78.337111,39.722461],[-78.339539,39.722552],[-78.340498,39.722514],[-78.34252,39.722539],[-78.342834,39.722539],[-78.380599,39.722516],[-78.438839,39.722481],[-78.461422,39.722869],[-78.537702,39.72249],[-78.546415,39.722869],[-78.575893,39.722561],[-78.723529,39.723043],[-78.808375,39.722933],[-78.931175,39.722775],[-78.931176,39.722775],[-79.045548,39.722883],[-79.392458,39.721431],[-79.476662,39.721078],[-79.548465,39.720778],[-79.608223,39.721154],[-79.610623,39.721245],[-79.763774,39.720776],[-79.852904,39.720713],[-79.853131,39.720713],[-79.916171,39.720893]]]}}]} diff --git a/Where/RegionKit/Sources/Resources/regions/us-PR.geojson b/Where/RegionKit/Sources/Resources/regions/us-PR.geojson new file mode 100644 index 00000000..64983492 --- /dev/null +++ b/Where/RegionKit/Sources/Resources/regions/us-PR.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"region":"us-PR","name":"Puerto Rico"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-65.3277,18.295843],[-65.337451,18.308308],[-65.327318,18.323666],[-65.342068,18.34529],[-65.335701,18.349535],[-65.329334,18.341955],[-65.321754,18.338316],[-65.309833,18.337973],[-65.304409,18.332054],[-65.298328,18.330529],[-65.255933,18.342117],[-65.221568,18.320959],[-65.222853,18.310464],[-65.249857,18.296691],[-65.260282,18.290823],[-65.283269,18.280214],[-65.3277,18.295843]]],[[[-67.89174,18.11397],[-67.887099,18.112574],[-67.87643,18.114157],[-67.869804,18.118851],[-67.861548,18.122144],[-67.848245,18.10832],[-67.843202,18.094858],[-67.843615,18.085099],[-67.845293,18.081938],[-67.853098,18.078195],[-67.865598,18.06544],[-67.871462,18.0578],[-67.895921,18.052342],[-67.904431,18.05913],[-67.918778,18.063116],[-67.927841,18.068572],[-67.940799,18.079716],[-67.934479,18.111306],[-67.932185,18.113221],[-67.91088,18.119668],[-67.89174,18.11397]]],[[[-65.308717,18.145172],[-65.302295,18.141089],[-65.294896,18.14283],[-65.287962,18.148097],[-65.275165,18.13443],[-65.276214,18.131936],[-65.283248,18.132999],[-65.296036,18.12799],[-65.322794,18.126589],[-65.327184,18.124106],[-65.338506,18.112439],[-65.342037,18.11138],[-65.350493,18.111914],[-65.364733,18.120377],[-65.397837,18.110873],[-65.399791,18.108832],[-65.411767,18.106211],[-65.423765,18.097764],[-65.426311,18.093749],[-65.45138,18.086096],[-65.45681,18.087778],[-65.465849,18.087715],[-65.468768,18.092643],[-65.47979,18.096352],[-65.507265,18.091646],[-65.524209,18.081977],[-65.542087,18.081177],[-65.558646,18.08566],[-65.569305,18.091616],[-65.570628,18.097325],[-65.57686,18.103224],[-65.575579,18.115669],[-65.546199,18.119329],[-65.511712,18.13284],[-65.489829,18.135912],[-65.46791,18.143767],[-65.437058,18.15766],[-65.399517,18.161935],[-65.371373,18.157517],[-65.334289,18.147761],[-65.313476,18.144296],[-65.308717,18.145172]]],[[[-66.438813,18.485713],[-66.420921,18.488639],[-66.410344,18.489886],[-66.394287,18.489748],[-66.377286,18.488044],[-66.37282,18.487726],[-66.349647,18.486335],[-66.337728,18.48562],[-66.315477,18.474724],[-66.31503,18.47468],[-66.291225,18.472347],[-66.283675,18.472203],[-66.276599,18.478129],[-66.269799,18.480281],[-66.258015,18.476906],[-66.251547,18.472464],[-66.241797,18.46874],[-66.220148,18.466],[-66.199032,18.466163],[-66.192664,18.466212],[-66.183886,18.460506],[-66.179218,18.455305],[-66.172315,18.451462],[-66.159796,18.451706],[-66.153037,18.454457],[-66.14395,18.459761],[-66.139572,18.462317],[-66.139451,18.462387],[-66.139443,18.462315],[-66.138532,18.453305],[-66.133085,18.445881],[-66.127938,18.444632],[-66.125198,18.451209],[-66.124284,18.456324],[-66.123188,18.45943],[-66.123343,18.460363],[-66.125015,18.470435],[-66.118338,18.469581],[-66.092098,18.466535],[-66.083254,18.462022],[-66.073987,18.4581],[-66.043272,18.453655],[-66.03944,18.454441],[-66.036559,18.450216],[-66.036491,18.450117],[-66.023221,18.443875],[-66.006523,18.444347],[-65.99718,18.449895],[-65.992935,18.457489],[-65.992793,18.458102],[-65.992349,18.460024],[-65.99079,18.460419],[-65.958492,18.451354],[-65.92567,18.444881],[-65.916843,18.444619],[-65.907756,18.446893],[-65.904988,18.450926],[-65.878683,18.438322],[-65.838825,18.431865],[-65.831476,18.426849],[-65.828457,18.423543],[-65.816691,18.410663],[-65.794556,18.402845],[-65.787666,18.402544],[-65.774937,18.413951],[-65.77053,18.41294],[-65.769749,18.409473],[-65.771695,18.406277],[-65.750455,18.385208],[-65.750179,18.38505],[-65.742154,18.380459],[-65.733567,18.382211],[-65.699069,18.368156],[-65.669636,18.362102],[-65.668845,18.361939],[-65.634431,18.369835],[-65.627246,18.376436],[-65.626527,18.381728],[-65.624975,18.386553],[-65.622761,18.387771],[-65.618229,18.386496],[-65.614891,18.382473],[-65.619068,18.367755],[-65.628198,18.353711],[-65.63419,18.338965],[-65.628047,18.328252],[-65.626456,18.298982],[-65.634389,18.292349],[-65.635826,18.288271],[-65.634893,18.283923],[-65.630833,18.264989],[-65.623111,18.248012],[-65.597618,18.234289],[-65.589947,18.228225],[-65.593795,18.224059],[-65.615981,18.227389],[-65.626731,18.235484],[-65.638181,18.229121],[-65.637565,18.224444],[-65.628414,18.205149],[-65.635281,18.199975],[-65.639688,18.205656],[-65.662185,18.207018],[-65.664127,18.207136],[-65.690749,18.19499],[-65.694515,18.187011],[-65.691021,18.178998],[-65.695856,18.179324],[-65.710895,18.186963],[-65.712533,18.189146],[-65.717999,18.190176],[-65.728471,18.185588],[-65.734664,18.180368],[-65.738834,18.174066],[-65.739125,18.173453],[-65.743632,18.163957],[-65.758728,18.156601],[-65.766919,18.148424],[-65.777584,18.129239],[-65.796711,18.083746],[-65.796289,18.079835],[-65.794686,18.078607],[-65.795028,18.073561],[-65.796711,18.069842],[-65.801831,18.058527],[-65.809174,18.056818],[-65.817107,18.063378],[-65.825848,18.057482],[-65.83109,18.050664],[-65.834274,18.038988],[-65.832429,18.014916],[-65.839591,18.015077],[-65.850913,18.011954],[-65.870335,18.006597],[-65.875122,18.002826],[-65.884937,17.988521],[-65.896102,17.99026],[-65.905319,17.983974],[-65.910537,17.981855],[-65.924738,17.976087],[-65.976611,17.967669],[-65.98455,17.969411],[-65.985358,17.971854],[-65.995185,17.978989],[-66.007731,17.980541],[-66.017308,17.979583],[-66.019539,17.978354],[-66.024,17.975896],[-66.046585,17.954853],[-66.049033,17.954561],[-66.058217,17.959238],[-66.068678,17.966335],[-66.069979,17.966357],[-66.08141,17.966552],[-66.116194,17.949141],[-66.127009,17.946953],[-66.140661,17.94102],[-66.147912,17.933963],[-66.155387,17.929406],[-66.159742,17.928613],[-66.161232,17.931747],[-66.175626,17.933565],[-66.186914,17.935363],[-66.189726,17.933936],[-66.200174,17.929515],[-66.206961,17.932268],[-66.213374,17.944614],[-66.202655,17.944753],[-66.185554,17.940997],[-66.179548,17.943727],[-66.174839,17.948214],[-66.176814,17.950438],[-66.206207,17.96305],[-66.206807,17.963307],[-66.215355,17.959376],[-66.218081,17.95729],[-66.231519,17.943912],[-66.229181,17.934651],[-66.232013,17.931154],[-66.252737,17.934574],[-66.260684,17.936083],[-66.270905,17.947098],[-66.275651,17.94826],[-66.290782,17.946491],[-66.297679,17.959148],[-66.31695,17.976683],[-66.323659,17.978536],[-66.338152,17.976492],[-66.33839,17.976458],[-66.362511,17.968231],[-66.365098,17.964832],[-66.368777,17.957717],[-66.371591,17.951469],[-66.385059,17.939004],[-66.391227,17.945819],[-66.398945,17.950925],[-66.412131,17.957286],[-66.445481,17.979379],[-66.450368,17.983226],[-66.454888,17.986784],[-66.461342,17.990273],[-66.491396,17.990262],[-66.510143,17.985618],[-66.540537,17.975476],[-66.583233,17.961229],[-66.589658,17.969386],[-66.594392,17.970682],[-66.605035,17.969015],[-66.623788,17.98105],[-66.631944,17.982746],[-66.645651,17.98026],[-66.657797,17.974605],[-66.664391,17.968259],[-66.672819,17.966451],[-66.699115,17.977568],[-66.709856,17.982109],[-66.713394,17.987763],[-66.716957,17.990344],[-66.731118,17.991658],[-66.746248,17.990349],[-66.750427,17.995443],[-66.753964,17.99959],[-66.755341,18.001203],[-66.764491,18.006317],[-66.770307,18.005955],[-66.799656,17.99245],[-66.806866,17.983786],[-66.807924,17.979606],[-66.806903,17.976046],[-66.805683,17.975052],[-66.795106,17.977438],[-66.789302,17.980793],[-66.784953,17.978326],[-66.787245,17.972914],[-66.80827,17.965635],[-66.8224,17.954499],[-66.838584,17.949931],[-66.852288,17.955004],[-66.856474,17.956553],[-66.859471,17.954316],[-66.862545,17.952022],[-66.871697,17.952707],[-66.88344,17.952526],[-66.899639,17.948298],[-66.904585,17.950527],[-66.906532,17.955356],[-66.906276,17.963368],[-66.924529,17.972808],[-66.928651,17.970204],[-66.930414,17.963127],[-66.916127,17.959102],[-66.909483,17.952559],[-66.909359,17.94988],[-66.912522,17.947446],[-66.930313,17.943389],[-66.932636,17.939998],[-66.931581,17.9369],[-66.919298,17.932062],[-66.923826,17.926923],[-66.927261,17.926875],[-66.959998,17.940216],[-66.980516,17.951648],[-66.98105,17.952505],[-66.982669,17.9551],[-66.982206,17.961192],[-66.987287,17.970663],[-66.996738,17.972899],[-67.003972,17.970799],[-67.014744,17.968468],[-67.024522,17.970722],[-67.062478,17.973819],[-67.076534,17.967759],[-67.089827,17.951418],[-67.101468,17.946621],[-67.109985,17.945806],[-67.109986,17.945806],[-67.128251,17.948153],[-67.133733,17.951919],[-67.167031,17.963073],[-67.178566,17.964792],[-67.183508,17.962706],[-67.188717,17.950989],[-67.187474,17.946252],[-67.183694,17.937982],[-67.183457,17.931135],[-67.194785,17.932826],[-67.196924,17.935651],[-67.197273,17.937461],[-67.197517,17.941514],[-67.197668,17.943549],[-67.198988,17.94782],[-67.200973,17.949896],[-67.210034,17.953595],[-67.212101,17.956027],[-67.21433,17.962436],[-67.215271,17.983464],[-67.211973,17.992993],[-67.207694,17.998019],[-67.177893,18.008882],[-67.174299,18.011149],[-67.172397,18.014906],[-67.172138,18.021422],[-67.173761,18.024548],[-67.193269,18.03185],[-67.209887,18.035439],[-67.196694,18.066491],[-67.190656,18.064269],[-67.184589,18.06775],[-67.183938,18.069914],[-67.186465,18.074195],[-67.192999,18.076877],[-67.198212,18.076828],[-67.199314,18.091135],[-67.19529,18.096149],[-67.183921,18.103683],[-67.182182,18.108507],[-67.176554,18.151046],[-67.178618,18.159318],[-67.180822,18.168055],[-67.180701,18.168182],[-67.155185,18.195001],[-67.152665,18.203493],[-67.158001,18.216719],[-67.173,18.230666],[-67.175429,18.248008],[-67.187843,18.266671],[-67.187873,18.266874],[-67.189971,18.281015],[-67.196056,18.290443],[-67.209963,18.294974],[-67.225403,18.296648],[-67.226081,18.296722],[-67.235137,18.299935],[-67.267484,18.353149],[-67.27135,18.362329],[-67.268259,18.366989],[-67.260671,18.370197],[-67.23909,18.375318],[-67.226744,18.378247],[-67.216998,18.382078],[-67.202167,18.389908],[-67.160144,18.415587],[-67.159608,18.415915],[-67.156599,18.418983],[-67.155245,18.424401],[-67.156619,18.439562],[-67.161746,18.453462],[-67.169011,18.466352],[-67.169016,18.478488],[-67.164144,18.487396],[-67.14283,18.505485],[-67.138249,18.507776],[-67.125655,18.511706],[-67.103468,18.514523],[-67.093752,18.515757],[-67.07929,18.513256],[-67.020276,18.510603],[-66.988958,18.497724],[-66.95954,18.489878],[-66.957733,18.489129],[-66.957517,18.489171],[-66.944636,18.491693],[-66.906872,18.483556],[-66.90143,18.484552],[-66.867386,18.490785],[-66.849673,18.490745],[-66.83694,18.487659],[-66.836635,18.487701],[-66.79932,18.492775],[-66.780311,18.491411],[-66.764893,18.484097],[-66.749301,18.476701],[-66.742067,18.474681],[-66.733986,18.473457],[-66.710743,18.472611],[-66.683719,18.481367],[-66.679876,18.484944],[-66.664364,18.487809],[-66.645839,18.488777],[-66.624618,18.494199],[-66.586778,18.484948],[-66.584074,18.484287],[-66.565241,18.485523],[-66.562916,18.48845],[-66.563485,18.490512],[-66.558503,18.489987],[-66.53484,18.481253],[-66.533487,18.481663],[-66.529476,18.482877],[-66.511609,18.476848],[-66.470292,18.46907],[-66.456486,18.46892],[-66.449184,18.470991],[-66.441852,18.479751],[-66.439961,18.485525],[-66.438813,18.485713]]]]}}]} diff --git a/Where/RegionKit/Sources/Resources/regions/us-RI.geojson b/Where/RegionKit/Sources/Resources/regions/us-RI.geojson new file mode 100644 index 00000000..0cbcad1b --- /dev/null +++ b/Where/RegionKit/Sources/Resources/regions/us-RI.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"region":"us-RI","name":"Rhode Island"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-71.383586,41.464782],[-71.389284,41.460605],[-71.390275,41.455043],[-71.399568,41.448596],[-71.40056,41.46094],[-71.395927,41.492215],[-71.386511,41.493071],[-71.378914,41.504948],[-71.391005,41.514578],[-71.392137,41.524468],[-71.384478,41.556736],[-71.379021,41.567772],[-71.373618,41.573214],[-71.370194,41.573963],[-71.36356,41.57086],[-71.359868,41.556308],[-71.363292,41.501952],[-71.360403,41.483121],[-71.380947,41.474561],[-71.383586,41.464782]]],[[[-71.326769,41.491286],[-71.325365,41.487601],[-71.327822,41.482985],[-71.343013,41.495615],[-71.341122,41.498598],[-71.326769,41.491286]]],[[[-71.140588,41.605102],[-71.138599,41.60347],[-71.137492,41.602561],[-71.131618,41.593918],[-71.131312,41.592308],[-71.1224,41.522156],[-71.12057,41.497448],[-71.136867,41.493942],[-71.141093,41.489937],[-71.140224,41.485855],[-71.167345,41.471405],[-71.170131,41.463974],[-71.19302,41.457931],[-71.194967,41.459037],[-71.196857,41.461116],[-71.196607,41.464756],[-71.190016,41.478275],[-71.190167,41.484285],[-71.19939,41.491769],[-71.199692,41.495511],[-71.206382,41.499215],[-71.200788,41.514371],[-71.213563,41.545818],[-71.20865,41.571028],[-71.20778,41.60066],[-71.212656,41.610072],[-71.212417,41.61829],[-71.212004,41.62299],[-71.21616,41.62549],[-71.240709,41.619225],[-71.2436,41.587508],[-71.23613,41.574767],[-71.236642,41.535852],[-71.234775,41.532538],[-71.227989,41.528297],[-71.229444,41.521544],[-71.240614,41.500557],[-71.238586,41.486845],[-71.237175,41.486546],[-71.236751,41.483369],[-71.24071,41.474872],[-71.246703,41.47196],[-71.245992,41.481302],[-71.252692,41.485902],[-71.264793,41.488902],[-71.285639,41.487805],[-71.295111,41.48435],[-71.304394,41.454502],[-71.311394,41.450802],[-71.312694,41.451402],[-71.312718,41.454597],[-71.32141,41.4556],[-71.337695,41.448902],[-71.351096,41.450802],[-71.362743,41.460379],[-71.36152,41.464831],[-71.34707,41.47123],[-71.335992,41.469647],[-71.316519,41.47756],[-71.317414,41.488776],[-71.323125,41.503088],[-71.327804,41.504258],[-71.330694,41.507699],[-71.330831,41.518364],[-71.313079,41.534672],[-71.310533,41.54692],[-71.303652,41.559925],[-71.294363,41.571416],[-71.288376,41.573274],[-71.285142,41.577127],[-71.273445,41.60699],[-71.272412,41.615041],[-71.275234,41.619444],[-71.271862,41.623986],[-71.251082,41.63878],[-71.212136,41.641945],[-71.19564,41.67509],[-71.194384,41.674803],[-71.191178,41.674216],[-71.191175,41.674292],[-71.18129,41.672502],[-71.17599,41.671402],[-71.17609,41.668502],[-71.17609,41.668102],[-71.153989,41.664102],[-71.14587,41.662795],[-71.135188,41.660502],[-71.134688,41.660502],[-71.132888,41.660102],[-71.13267,41.658744],[-71.134478,41.641262],[-71.134484,41.641198],[-71.135688,41.628402],[-71.140468,41.623893],[-71.141509,41.616076],[-71.14091,41.607405],[-71.140588,41.605102]]],[[[-71.3312,41.580318],[-71.335949,41.585898],[-71.337048,41.594688],[-71.333751,41.605859],[-71.329559,41.609097],[-71.326609,41.616114],[-71.325877,41.623988],[-71.333305,41.629536],[-71.34657,41.632229],[-71.362869,41.651457],[-71.366165,41.66098],[-71.348402,41.663727],[-71.338696,41.658782],[-71.336182,41.647961],[-71.337048,41.646146],[-71.342514,41.644791],[-71.343666,41.6399],[-71.330711,41.632992],[-71.314889,41.630398],[-71.30555,41.622523],[-71.303352,41.606591],[-71.307381,41.597984],[-71.317474,41.583187],[-71.326103,41.578583],[-71.3312,41.580318]]],[[[-71.281571,41.648207],[-71.278171,41.647309],[-71.274315,41.638125],[-71.283791,41.637797],[-71.286755,41.642725],[-71.283005,41.644434],[-71.281571,41.648207]]],[[[-71.58955,41.196557],[-71.580228,41.204837],[-71.577301,41.21471],[-71.576661,41.224434],[-71.573785,41.228436],[-71.561093,41.224207],[-71.555006,41.216822],[-71.554067,41.212957],[-71.557459,41.204542],[-71.564119,41.195372],[-71.565752,41.184373],[-71.560969,41.176186],[-71.550226,41.166787],[-71.544446,41.164912],[-71.543872,41.161321],[-71.547051,41.153684],[-71.551953,41.151718],[-71.5937,41.146339],[-71.599993,41.146932],[-71.611706,41.153239],[-71.613133,41.160281],[-71.605565,41.182139],[-71.594994,41.188392],[-71.58955,41.196557]]],[[[-71.797649,41.928556],[-71.797922,41.935395],[-71.799242,42.008065],[-71.76601,42.009745],[-71.576908,42.014098],[-71.559439,42.014342],[-71.527606,42.014998],[-71.527306,42.015098],[-71.500905,42.017098],[-71.499905,42.017198],[-71.498258,42.01722],[-71.458104,42.017762],[-71.381401,42.018798],[-71.381466,41.984998],[-71.381501,41.966699],[-71.381401,41.964799],[-71.3816,41.922899],[-71.3817,41.922699],[-71.3817,41.893199],[-71.3766,41.893999],[-71.373799,41.894399],[-71.370999,41.894599],[-71.365399,41.895299],[-71.364699,41.895399],[-71.362499,41.895599],[-71.354699,41.896499],[-71.352699,41.896699],[-71.338698,41.898399],[-71.339298,41.893599],[-71.339298,41.893399],[-71.340798,41.8816],[-71.333997,41.8623],[-71.342198,41.8448],[-71.341797,41.8437],[-71.335197,41.8355],[-71.337597,41.8337],[-71.339597,41.832],[-71.344897,41.828],[-71.347197,41.8231],[-71.339197,41.809],[-71.338897,41.8083],[-71.339297,41.8065],[-71.339297,41.8044],[-71.340797,41.8002],[-71.340697,41.7983],[-71.339297,41.7963],[-71.335797,41.7948],[-71.333896,41.7945],[-71.332196,41.7923],[-71.329296,41.7868],[-71.329396,41.7826],[-71.327896,41.780501],[-71.317795,41.776101],[-71.31779,41.776099],[-71.261392,41.752301],[-71.225709,41.711603],[-71.224798,41.710498],[-71.227875,41.705498],[-71.240991,41.697744],[-71.237635,41.681635],[-71.24155,41.667205],[-71.25956,41.642595],[-71.267055,41.644945],[-71.270075,41.652439],[-71.26918,41.6549],[-71.280366,41.672575],[-71.287637,41.672463],[-71.290546,41.662395],[-71.299159,41.649531],[-71.301396,41.649978],[-71.303746,41.654788],[-71.306095,41.672575],[-71.302627,41.681747],[-71.298935,41.681524],[-71.293119,41.688347],[-71.291217,41.702666],[-71.305759,41.718662],[-71.31482,41.723808],[-71.342786,41.728506],[-71.350057,41.727835],[-71.353172,41.725191],[-71.353748,41.724702],[-71.365717,41.711615],[-71.365717,41.694947],[-71.372988,41.672575],[-71.37791,41.666646],[-71.382049,41.667317],[-71.38988,41.671903],[-71.390775,41.680629],[-71.389432,41.683425],[-71.390551,41.684096],[-71.418069,41.684208],[-71.441336,41.686446],[-71.443082,41.688303],[-71.441896,41.690025],[-71.445923,41.691144],[-71.449318,41.687401],[-71.444468,41.664409],[-71.430038,41.667541],[-71.425452,41.670785],[-71.409302,41.662643],[-71.408636,41.653819],[-71.40377,41.589321],[-71.447712,41.5804],[-71.442567,41.565075],[-71.421649,41.537892],[-71.417398,41.534536],[-71.414825,41.523126],[-71.414937,41.516303],[-71.421425,41.498629],[-71.419971,41.484758],[-71.417957,41.482073],[-71.417621,41.477934],[-71.418404,41.472652],[-71.421157,41.469888],[-71.422991,41.472682],[-71.430744,41.470636],[-71.430926,41.465655],[-71.427935,41.459529],[-71.428652,41.454158],[-71.433612,41.444995],[-71.43767,41.441302],[-71.441199,41.441602],[-71.448948,41.438479],[-71.455845,41.432986],[-71.455371,41.407962],[-71.474918,41.386104],[-71.483295,41.371722],[-71.513401,41.374702],[-71.526724,41.376636],[-71.555381,41.373316],[-71.624505,41.36087],[-71.68807,41.342823],[-71.701631,41.336968],[-71.72074,41.331567],[-71.773702,41.327977],[-71.785957,41.325739],[-71.833755,41.315631],[-71.857432,41.306318],[-71.862772,41.309791],[-71.862109,41.316612],[-71.860513,41.320248],[-71.839013,41.334042],[-71.829595,41.344544],[-71.835951,41.353935],[-71.837738,41.363529],[-71.831613,41.370899],[-71.833443,41.384524],[-71.842131,41.395359],[-71.843472,41.40583],[-71.842563,41.409855],[-71.839649,41.412119],[-71.81839,41.419599],[-71.797683,41.416709],[-71.789359,41.596852],[-71.789356,41.59691],[-71.787637,41.639917],[-71.786994,41.655992],[-71.789672,41.724569],[-71.789678,41.724734],[-71.791062,41.770273],[-71.792767,41.807001],[-71.792786,41.80867],[-71.794161,41.840141],[-71.794161,41.841101],[-71.797649,41.928556]]]]}}]} diff --git a/Where/RegionKit/Sources/Resources/regions/us-SC.geojson b/Where/RegionKit/Sources/Resources/regions/us-SC.geojson new file mode 100644 index 00000000..d0e89caa --- /dev/null +++ b/Where/RegionKit/Sources/Resources/regions/us-SC.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"region":"us-SC","name":"South Carolina"},"geometry":{"type":"Polygon","coordinates":[[[-79.290754,33.110051],[-79.291591,33.109773],[-79.329909,33.089986],[-79.337169,33.072302],[-79.335346,33.065362],[-79.339313,33.050336],[-79.359961,33.006672],[-79.403712,33.003903],[-79.416515,33.006815],[-79.423447,33.015085],[-79.461047,33.007639],[-79.483499,33.001265],[-79.488727,33.015832],[-79.506923,33.032813],[-79.522449,33.03535],[-79.55756,33.021269],[-79.580725,33.006447],[-79.58659,32.991334],[-79.60102,32.979282],[-79.606615,32.972248],[-79.617611,32.952726],[-79.617715,32.94487],[-79.612928,32.934815],[-79.606194,32.925953],[-79.585897,32.926461],[-79.581687,32.931341],[-79.574951,32.934526],[-79.572614,32.933885],[-79.569762,32.926692],[-79.576006,32.906235],[-79.631149,32.888606],[-79.655426,32.872705],[-79.695141,32.850398],[-79.699482,32.839997],[-79.702956,32.835781],[-79.719879,32.825796],[-79.716761,32.813627],[-79.726389,32.805996],[-79.811021,32.77696],[-79.818237,32.766352],[-79.84035,32.756816],[-79.848527,32.755248],[-79.866742,32.757422],[-79.872232,32.752128],[-79.873605,32.745657],[-79.868352,32.734849],[-79.870336,32.727777],[-79.888028,32.695177],[-79.884961,32.684402],[-79.915682,32.664915],[-79.968468,32.639732],[-79.975248,32.639537],[-79.986917,32.626388],[-79.99175,32.616389],[-79.999374,32.611851],[-80.010505,32.608852],[-80.037276,32.610236],[-80.077039,32.603319],[-80.121368,32.590523],[-80.148406,32.578479],[-80.167286,32.559885],[-80.171764,32.546118],[-80.188401,32.553604],[-80.193676,32.554213],[-80.20523,32.555547],[-80.246361,32.531114],[-80.249566,32.529584],[-80.277681,32.516161],[-80.332438,32.478104],[-80.338354,32.47873],[-80.343883,32.490795],[-80.363956,32.496098],[-80.380716,32.486359],[-80.386827,32.47881],[-80.392561,32.475332],[-80.413487,32.470672],[-80.415943,32.472074],[-80.417896,32.476076],[-80.418502,32.490894],[-80.423454,32.497989],[-80.439407,32.503472],[-80.452078,32.497286],[-80.46571,32.4953],[-80.472068,32.496964],[-80.47691,32.48539],[-80.48025,32.477407],[-80.484617,32.460976],[-80.480156,32.447048],[-80.467588,32.425259],[-80.446075,32.423721],[-80.43296,32.410659],[-80.429941,32.401782],[-80.429291,32.389667],[-80.434303,32.375193],[-80.445451,32.350335],[-80.456814,32.336884],[-80.455192,32.326458],[-80.466342,32.31917],[-80.517871,32.298796],[-80.539429,32.287024],[-80.545688,32.282076],[-80.571096,32.273278],[-80.596394,32.273549],[-80.618286,32.260183],[-80.638857,32.255618],[-80.658634,32.248638],[-80.669166,32.216783],[-80.688857,32.200971],[-80.721463,32.160427],[-80.749091,32.140137],[-80.789996,32.122494],[-80.812503,32.109746],[-80.82153,32.108589],[-80.828394,32.113222],[-80.831531,32.112709],[-80.844431,32.109709],[-80.858735,32.099581],[-80.878111,32.079792],[-80.905378,32.051943],[-80.892344,32.043764],[-80.885517,32.0346],[-80.892977,32.034949],[-80.910669,32.036735],[-80.917845,32.037575],[-80.922794,32.039151],[-80.926753,32.041672],[-80.933557,32.047554],[-80.943226,32.057824],[-80.954482,32.068622],[-80.959402,32.071259],[-80.978833,32.077309],[-80.983133,32.079609],[-80.987733,32.084209],[-80.991733,32.091208],[-80.994333,32.094608],[-80.999833,32.099014],[-81.002297,32.100048],[-81.006745,32.101152],[-81.011961,32.100176],[-81.016009,32.097424],[-81.020104,32.092662],[-81.021622,32.090897],[-81.032674,32.08545],[-81.038265,32.084469],[-81.050234,32.085308],[-81.060442,32.087503],[-81.066906,32.090351],[-81.083546,32.100782],[-81.088234,32.10395],[-81.090874,32.10699],[-81.091498,32.110782],[-81.093386,32.11123],[-81.100458,32.111181],[-81.111134,32.112005],[-81.113334,32.113205],[-81.117234,32.117605],[-81.119994,32.134268],[-81.119134,32.142104],[-81.118334,32.144403],[-81.120034,32.153303],[-81.122034,32.161803],[-81.123134,32.162902],[-81.128434,32.164402],[-81.129634,32.165602],[-81.129402,32.166922],[-81.128134,32.169102],[-81.124492,32.17212],[-81.121134,32.174902],[-81.119434,32.175402],[-81.119361,32.177142],[-81.120434,32.178702],[-81.119834,32.181202],[-81.117934,32.185301],[-81.118234,32.189201],[-81.12315,32.201329],[-81.128283,32.208634],[-81.136012,32.212858],[-81.136727,32.213669],[-81.143139,32.221731],[-81.14653,32.226938],[-81.153531,32.237687],[-81.155995,32.241478],[-81.156587,32.24391],[-81.155595,32.246022],[-81.148334,32.255098],[-81.145834,32.263397],[-81.136534,32.272697],[-81.130834,32.274597],[-81.128034,32.276297],[-81.121433,32.284496],[-81.119633,32.287596],[-81.119833,32.289596],[-81.122333,32.305395],[-81.122933,32.307295],[-81.123933,32.308695],[-81.125433,32.309295],[-81.135733,32.324594],[-81.137633,32.328194],[-81.137032,32.329994],[-81.133032,32.334794],[-81.133632,32.341293],[-81.140932,32.349393],[-81.142532,32.350893],[-81.144032,32.351093],[-81.147632,32.349393],[-81.148477,32.347549],[-81.149073,32.346682],[-81.150589,32.34587],[-81.152105,32.345816],[-81.153296,32.345816],[-81.154,32.345924],[-81.154433,32.346087],[-81.154812,32.346412],[-81.155136,32.34717],[-81.154974,32.348794],[-81.155032,32.350093],[-81.161732,32.356092],[-81.170126,32.361318],[-81.170858,32.362722],[-81.170553,32.363821],[-81.169332,32.365591],[-81.168722,32.367544],[-81.169332,32.369436],[-81.173432,32.372591],[-81.181072,32.380398],[-81.178131,32.38459],[-81.177231,32.39169],[-81.180931,32.39649],[-81.189731,32.407289],[-81.194931,32.411489],[-81.20513,32.423788],[-81.20843,32.435987],[-81.207246,32.437542],[-81.20453,32.438687],[-81.202588,32.439833],[-81.201595,32.44136],[-81.201137,32.442964],[-81.201137,32.444033],[-81.202206,32.445484],[-81.203046,32.447164],[-81.203046,32.448844],[-81.202359,32.450448],[-81.200908,32.451593],[-81.197529,32.452086],[-81.192629,32.456286],[-81.187329,32.462886],[-81.186829,32.464086],[-81.188129,32.465386],[-81.189229,32.465586],[-81.192429,32.464786],[-81.194829,32.465086],[-81.200029,32.467985],[-81.212428,32.478685],[-81.227528,32.493884],[-81.233585,32.498488],[-81.238281,32.505988],[-81.238728,32.508896],[-81.238411,32.510192],[-81.236707,32.511402],[-81.234834,32.512271],[-81.234023,32.513778],[-81.23466,32.51627],[-81.237095,32.517314],[-81.24501,32.518317],[-81.247874,32.518231],[-81.249827,32.517541],[-81.252882,32.51833],[-81.277131,32.535417],[-81.276242,32.538558],[-81.274802,32.541143],[-81.274927,32.544158],[-81.275213,32.545202],[-81.279238,32.55459],[-81.281298,32.55644],[-81.281324,32.556464],[-81.29676,32.562648],[-81.297955,32.563026],[-81.300593,32.562843],[-81.309009,32.56097],[-81.320588,32.559534],[-81.328753,32.561228],[-81.366964,32.577059],[-81.368386,32.584221],[-81.368982,32.590025],[-81.369757,32.591231],[-81.37157,32.592018],[-81.373178,32.592115],[-81.376237,32.589217],[-81.379216,32.589022],[-81.380999,32.589652],[-81.389261,32.595383],[-81.389338,32.595436],[-81.393865,32.60234],[-81.397106,32.605587],[-81.404714,32.611207],[-81.411906,32.61841],[-81.41866,32.629392],[-81.418431,32.634704],[-81.417014,32.636147],[-81.414761,32.63744],[-81.413411,32.637368],[-81.411523,32.632907],[-81.41026,32.631392],[-81.40933,32.631096],[-81.407271,32.631737],[-81.402846,32.63621],[-81.402735,32.637032],[-81.404238,32.638258],[-81.405109,32.64269],[-81.403582,32.643398],[-81.394589,32.64957],[-81.393033,32.651543],[-81.393818,32.653491],[-81.398314,32.656307],[-81.405273,32.656517],[-81.407193,32.660519],[-81.4073,32.66156],[-81.406646,32.662515],[-81.404287,32.667798],[-81.401029,32.677494],[-81.401256,32.680156],[-81.40831,32.694908],[-81.409349,32.695269],[-81.409982,32.695179],[-81.41075,32.694772],[-81.411157,32.693959],[-81.411609,32.693145],[-81.4131,32.692648],[-81.426735,32.700867],[-81.427517,32.701896],[-81.421194,32.711978],[-81.420516,32.720238],[-81.418542,32.732586],[-81.41267,32.739083],[-81.411549,32.740145],[-81.410845,32.741694],[-81.410563,32.743244],[-81.410281,32.744653],[-81.410563,32.74592],[-81.411408,32.747329],[-81.412817,32.748174],[-81.415353,32.748879],[-81.416198,32.750428],[-81.416761,32.752259],[-81.416479,32.754654],[-81.415212,32.757753],[-81.416479,32.760289],[-81.417606,32.762684],[-81.420142,32.765501],[-81.422396,32.767051],[-81.425017,32.768058],[-81.426199,32.768319],[-81.426481,32.769023],[-81.426481,32.770291],[-81.426059,32.771136],[-81.425636,32.77184],[-81.424714,32.772648],[-81.422678,32.773249],[-81.421269,32.774658],[-81.421128,32.775926],[-81.420987,32.776912],[-81.421128,32.778039],[-81.422114,32.779306],[-81.424227,32.780152],[-81.426481,32.78142],[-81.428313,32.78311],[-81.429017,32.785505],[-81.428031,32.787618],[-81.424999,32.790334],[-81.425234,32.79419],[-81.424874,32.801882],[-81.423772,32.810514],[-81.419752,32.813731],[-81.418497,32.815664],[-81.417984,32.818196],[-81.42062,32.831223],[-81.421614,32.835178],[-81.426475,32.840773],[-81.442671,32.850107],[-81.443595,32.850628],[-81.444866,32.850967],[-81.449396,32.849126],[-81.451199,32.847925],[-81.452573,32.84795],[-81.453949,32.849761],[-81.455978,32.854107],[-81.453017,32.859636],[-81.451351,32.868583],[-81.452883,32.872964],[-81.45392,32.874074],[-81.468042,32.876675],[-81.470376,32.876267],[-81.475918,32.877641],[-81.479445,32.881082],[-81.4771,32.887469],[-81.471703,32.890439],[-81.470836,32.890521],[-81.464655,32.895999],[-81.464069,32.897814],[-81.465924,32.899889],[-81.468978,32.901083],[-81.479184,32.905638],[-81.480008,32.913444],[-81.483198,32.921802],[-81.495092,32.931596],[-81.499829,32.932614],[-81.502427,32.935353],[-81.502716,32.938688],[-81.499566,32.943722],[-81.499446,32.944988],[-81.504016,32.948091],[-81.507045,32.951194],[-81.508138,32.953976],[-81.508436,32.955765],[-81.508536,32.957156],[-81.508436,32.958349],[-81.507741,32.959243],[-81.507442,32.960237],[-81.507144,32.96133],[-81.506449,32.962423],[-81.505256,32.963019],[-81.503346,32.96295],[-81.501369,32.962914],[-81.49983,32.963816],[-81.499471,32.96478],[-81.494736,32.978998],[-81.491457,32.995437],[-81.491197,32.997824],[-81.491419,33.008078],[-81.492253,33.009342],[-81.50203,33.015113],[-81.511245,33.027786],[-81.513231,33.028546],[-81.519632,33.029181],[-81.538789,33.039185],[-81.540081,33.040613],[-81.542092,33.044859],[-81.54251,33.045254],[-81.544258,33.046905],[-81.546785,33.047145],[-81.551838,33.044739],[-81.553643,33.044137],[-81.557013,33.0451],[-81.558336,33.046183],[-81.559179,33.047386],[-81.55966,33.04907],[-81.559173,33.051765],[-81.558938,33.052921],[-81.559179,33.054124],[-81.560502,33.055207],[-81.561344,33.055568],[-81.562066,33.055568],[-81.562548,33.055568],[-81.56327,33.055568],[-81.564714,33.054726],[-81.566759,33.053763],[-81.568925,33.053523],[-81.57288,33.05418],[-81.578332,33.058936],[-81.580994,33.062697],[-81.583804,33.067021],[-81.588539,33.07085],[-81.590705,33.071211],[-81.592645,33.06991],[-81.594555,33.069887],[-81.599248,33.071813],[-81.600091,33.073497],[-81.600211,33.075182],[-81.599369,33.076867],[-81.598286,33.079153],[-81.598165,33.081078],[-81.600211,33.083966],[-81.601655,33.084688],[-81.603587,33.084578],[-81.606836,33.081717],[-81.608995,33.0818],[-81.609837,33.082161],[-81.610078,33.082883],[-81.609837,33.084929],[-81.609533,33.086877],[-81.609476,33.089862],[-81.6108,33.09263],[-81.612725,33.093953],[-81.614298,33.094661],[-81.615132,33.095036],[-81.617779,33.095277],[-81.632232,33.093952],[-81.637232,33.092952],[-81.642333,33.093152],[-81.646433,33.094552],[-81.658433,33.103152],[-81.683533,33.112651],[-81.696934,33.116551],[-81.699834,33.116751],[-81.703134,33.116151],[-81.704634,33.116451],[-81.717134,33.124051],[-81.724334,33.129451],[-81.743835,33.14145],[-81.755135,33.15155],[-81.763135,33.159449],[-81.764435,33.165549],[-81.766735,33.170749],[-81.772435,33.180449],[-81.772435,33.181249],[-81.765735,33.187948],[-81.762835,33.188248],[-81.760635,33.189248],[-81.756935,33.197848],[-81.757083,33.198122],[-81.758235,33.200248],[-81.761635,33.201748],[-81.763535,33.203648],[-81.767635,33.215747],[-81.768935,33.217447],[-81.774035,33.221147],[-81.778435,33.221847],[-81.780135,33.221147],[-81.781035,33.219847],[-81.777335,33.214947],[-81.777535,33.211347],[-81.778935,33.209847],[-81.784535,33.208147],[-81.790236,33.208447],[-81.805236,33.211447],[-81.807336,33.212647],[-81.807936,33.213747],[-81.808136,33.219447],[-81.809636,33.222647],[-81.811736,33.223847],[-81.819636,33.226646],[-81.827936,33.228746],[-81.831736,33.233546],[-81.837016,33.237652],[-81.846536,33.241746],[-81.851979,33.247382],[-81.852136,33.247544],[-81.853137,33.250745],[-81.847336,33.266345],[-81.842522,33.266584],[-81.840078,33.26704],[-81.838337,33.269098],[-81.838257,33.272975],[-81.844036,33.278644],[-81.851836,33.283544],[-81.861336,33.286244],[-81.863236,33.288844],[-81.861536,33.297944],[-81.857336,33.299544],[-81.852936,33.299644],[-81.851636,33.298544],[-81.849636,33.299544],[-81.846136,33.303843],[-81.847296,33.306783],[-81.853652,33.310326],[-81.867936,33.314043],[-81.870436,33.312943],[-81.875836,33.307443],[-81.884137,33.310443],[-81.886637,33.316943],[-81.897329,33.322331],[-81.897064,33.324445],[-81.896937,33.327642],[-81.898187,33.329664],[-81.900301,33.331117],[-81.902613,33.330258],[-81.904132,33.327286],[-81.906444,33.324181],[-81.909285,33.324181],[-81.910342,33.32537],[-81.911266,33.327616],[-81.913314,33.329532],[-81.918337,33.332842],[-81.919137,33.334442],[-81.917973,33.34159],[-81.924737,33.345341],[-81.932737,33.343541],[-81.937237,33.343641],[-81.939737,33.344941],[-81.939837,33.347741],[-81.935637,33.352041],[-81.934837,33.356041],[-81.944737,33.364041],[-81.946737,33.36734],[-81.946337,33.37064],[-81.943737,33.37234],[-81.939637,33.37254],[-81.934637,33.36894],[-81.930634,33.368165],[-81.925737,33.37114],[-81.924837,33.37414],[-81.930861,33.380076],[-81.935453,33.397851],[-81.9373,33.401259],[-81.936961,33.404197],[-81.934927,33.406006],[-81.930519,33.406797],[-81.92306,33.408266],[-81.920121,33.410753],[-81.919217,33.413126],[-81.91933,33.415613],[-81.921068,33.417419],[-81.924893,33.419307],[-81.927241,33.422846],[-81.926789,33.426576],[-81.924981,33.429288],[-81.920716,33.430986],[-81.916236,33.433114],[-81.913356,33.437418],[-81.913457,33.439641],[-81.913532,33.441274],[-81.920836,33.452038],[-81.926336,33.462937],[-81.929436,33.465837],[-81.934136,33.468337],[-81.941737,33.470037],[-81.946437,33.471737],[-81.955083,33.475472],[-81.967037,33.480636],[-81.973537,33.482636],[-81.980637,33.484036],[-81.985938,33.486536],[-81.989338,33.490036],[-81.990938,33.494235],[-81.990382,33.500759],[-81.991938,33.504435],[-82.001338,33.520135],[-82.004338,33.521935],[-82.007138,33.522835],[-82.007638,33.523335],[-82.010038,33.530435],[-82.011538,33.531735],[-82.012426,33.532088],[-82.019838,33.535035],[-82.023438,33.537935],[-82.023438,33.540734],[-82.028238,33.544934],[-82.033023,33.546454],[-82.034895,33.549158],[-82.037375,33.554662],[-82.046335,33.56383],[-82.048959,33.56487],[-82.054943,33.565382],[-82.057727,33.566774],[-82.069039,33.575382],[-82.073104,33.57751],[-82.087488,33.580614],[-82.094128,33.582742],[-82.096352,33.58407],[-82.098816,33.586358],[-82.10624,33.595637],[-82.109376,33.596581],[-82.115328,33.596501],[-82.116545,33.596485],[-82.120385,33.594885],[-82.125864,33.590741],[-82.12908,33.589925],[-82.133523,33.590535],[-82.142872,33.594278],[-82.148816,33.598092],[-82.15106,33.600956],[-82.153357,33.606319],[-82.156288,33.60863],[-82.158331,33.60971],[-82.161908,33.610643],[-82.174351,33.613117],[-82.179854,33.615945],[-82.186154,33.62088],[-82.196583,33.630582],[-82.201186,33.646898],[-82.199747,33.657611],[-82.199847,33.661758],[-82.200718,33.66464],[-82.208411,33.669872],[-82.209677,33.67176],[-82.212047,33.677317],[-82.216868,33.6844],[-82.218649,33.686299],[-82.222709,33.689124],[-82.234576,33.700216],[-82.237192,33.70788],[-82.235753,33.71439],[-82.239098,33.730872],[-82.240405,33.734901],[-82.246161,33.746347],[-82.247472,33.752591],[-82.255267,33.75969],[-82.258049,33.760429],[-82.259471,33.760245],[-82.263206,33.761962],[-82.26438,33.763481],[-82.265019,33.765742],[-82.266127,33.766745],[-82.267719,33.767651],[-82.270445,33.767913],[-82.277681,33.772032],[-82.28106,33.776056],[-82.285804,33.780058],[-82.289762,33.782032],[-82.292468,33.782406],[-82.294984,33.781868],[-82.298286,33.783518],[-82.299393,33.785037],[-82.299601,33.786483],[-82.298923,33.795839],[-82.29928,33.798939],[-82.300213,33.800627],[-82.302885,33.802907],[-82.308997,33.805892],[-82.313339,33.809205],[-82.314746,33.811499],[-82.32448,33.820033],[-82.337829,33.827156],[-82.346933,33.834298],[-82.351881,33.836432],[-82.369107,33.842375],[-82.371775,33.843813],[-82.374286,33.84559],[-82.37975,33.851086],[-82.384973,33.854428],[-82.390527,33.857162],[-82.395736,33.859089],[-82.400517,33.863343],[-82.403881,33.865477],[-82.408354,33.86632],[-82.414259,33.865348],[-82.417871,33.864233],[-82.422803,33.863754],[-82.429164,33.865844],[-82.43115,33.867051],[-82.438644,33.873919],[-82.440503,33.875123],[-82.448109,33.877543],[-82.455105,33.88165],[-82.459391,33.886386],[-82.469913,33.892838],[-82.480111,33.901897],[-82.492929,33.909754],[-82.496109,33.913459],[-82.503584,33.926048],[-82.50764,33.931456],[-82.51295,33.936969],[-82.524515,33.94336],[-82.526741,33.943765],[-82.534111,33.943651],[-82.53977,33.941551],[-82.543128,33.940949],[-82.554497,33.943819],[-82.556835,33.945353],[-82.564531,33.955741],[-82.564582,33.95581],[-82.5657,33.958682],[-82.566145,33.9639],[-82.568288,33.968772],[-82.569864,33.970684],[-82.574724,33.974113],[-82.57754,33.977034],[-82.579576,33.979761],[-82.580551,33.982463],[-82.580571,33.98514],[-82.579996,33.987011],[-82.578244,33.988671],[-82.57633,33.989694],[-82.575351,33.990904],[-82.57554,33.992049],[-82.576222,33.993106],[-82.577735,33.993743],[-82.583394,33.995286],[-82.586234,33.997151],[-82.589245,34.000118],[-82.591855,34.009018],[-82.594488,34.013937],[-82.595655,34.016118],[-82.595855,34.018518],[-82.594055,34.025917],[-82.594555,34.028717],[-82.596155,34.030517],[-82.603055,34.034817],[-82.609655,34.039917],[-82.613355,34.046816],[-82.619155,34.051316],[-82.620955,34.054416],[-82.621255,34.056916],[-82.622155,34.058516],[-82.626963,34.063457],[-82.630972,34.065528],[-82.633565,34.064822],[-82.635991,34.064941],[-82.640543,34.067595],[-82.64398,34.072237],[-82.645661,34.076046],[-82.64522,34.079046],[-82.642797,34.081312],[-82.640345,34.086304],[-82.640151,34.087609],[-82.640701,34.088341],[-82.641252,34.088914],[-82.64103,34.090861],[-82.641553,34.092212],[-82.647028,34.097825],[-82.648184,34.098649],[-82.652175,34.099704],[-82.654019,34.100346],[-82.658561,34.103118],[-82.659077,34.103544],[-82.660322,34.106897],[-82.661851,34.107754],[-82.666879,34.113591],[-82.668113,34.12016],[-82.67522,34.129779],[-82.67732,34.131657],[-82.68629,34.134454],[-82.690386,34.138293],[-82.692152,34.138986],[-82.69553,34.138815],[-82.699758,34.139318],[-82.70414,34.141007],[-82.715373,34.148165],[-82.717507,34.150504],[-82.723312,34.165895],[-82.725409,34.169774],[-82.730824,34.175906],[-82.731881,34.178363],[-82.732359,34.180564],[-82.731975,34.193154],[-82.732761,34.195338],[-82.741127,34.208788],[-82.74192,34.210063],[-82.74238,34.213766],[-82.740544,34.218387],[-82.740447,34.219679],[-82.744415,34.224913],[-82.743461,34.227343],[-82.74198,34.230196],[-82.744834,34.242957],[-82.744982,34.244861],[-82.744056,34.252407],[-82.748756,34.263407],[-82.748656,34.264107],[-82.746656,34.266407],[-82.749856,34.27087],[-82.755028,34.276067],[-82.761995,34.281492],[-82.762945,34.28199],[-82.765266,34.281539],[-82.770928,34.285402],[-82.773702,34.288744],[-82.780308,34.296701],[-82.781752,34.302901],[-82.78684,34.310381],[-82.790966,34.32355],[-82.791608,34.327428],[-82.791235,34.331048],[-82.794054,34.339772],[-82.795223,34.34096],[-82.798198,34.341317],[-82.809949,34.349998],[-82.82342,34.358872],[-82.833702,34.364242],[-82.835004,34.366069],[-82.835413,34.369177],[-82.835203,34.373899],[-82.836611,34.382676],[-82.841524,34.39013],[-82.841997,34.392503],[-82.841326,34.397332],[-82.841997,34.399766],[-82.847446,34.412049],[-82.847781,34.420571],[-82.848651,34.423844],[-82.851367,34.426812],[-82.854434,34.432275],[-82.855762,34.443977],[-82.860127,34.449707],[-82.860874,34.451469],[-82.860707,34.457428],[-82.862156,34.458748],[-82.865345,34.460319],[-82.875463,34.463503],[-82.876464,34.465803],[-82.875864,34.468003],[-82.874864,34.468891],[-82.873831,34.471508],[-82.876864,34.475303],[-82.882864,34.479003],[-82.902665,34.485902],[-82.908365,34.485402],[-82.922866,34.481402],[-82.925766,34.481802],[-82.928466,34.484202],[-82.940867,34.486102],[-82.947367,34.479602],[-82.954667,34.477302],[-82.960668,34.482002],[-82.979568,34.482702],[-82.992215,34.479198],[-82.992671,34.479072],[-82.995279,34.475648],[-82.99509,34.472483],[-83.002924,34.472132],[-83.029315,34.484147],[-83.032513,34.483032],[-83.034712,34.483495],[-83.043771,34.488816],[-83.048289,34.493254],[-83.049467,34.495093],[-83.054463,34.50289],[-83.057843,34.503711],[-83.065515,34.501126],[-83.069451,34.502131],[-83.087189,34.515939],[-83.086861,34.517798],[-83.077995,34.523746],[-83.078113,34.524837],[-83.084855,34.530967],[-83.087789,34.532078],[-83.092564,34.532944],[-83.096858,34.531524],[-83.102179,34.532179],[-83.103176,34.533406],[-83.103563,34.53663],[-83.103987,34.540166],[-83.122901,34.560129],[-83.127176,34.561999],[-83.129676,34.561699],[-83.139876,34.567999],[-83.152577,34.578299],[-83.154577,34.588198],[-83.168278,34.590998],[-83.170278,34.592398],[-83.170978,34.598798],[-83.169994,34.60201],[-83.169572,34.603866],[-83.169994,34.605444],[-83.173428,34.607162],[-83.179439,34.60802],[-83.196979,34.605998],[-83.199779,34.608398],[-83.211598,34.610905],[-83.221402,34.609947],[-83.23178,34.611297],[-83.243381,34.617997],[-83.240676,34.624307],[-83.240669,34.624507],[-83.244581,34.626297],[-83.248281,34.631696],[-83.255281,34.637696],[-83.262282,34.640296],[-83.271982,34.641896],[-83.27796,34.644853],[-83.286583,34.650896],[-83.292883,34.654196],[-83.300848,34.66247],[-83.301477,34.666582],[-83.304641,34.669561],[-83.308917,34.670273],[-83.314394,34.668944],[-83.316401,34.669316],[-83.318524,34.674773],[-83.31944,34.675974],[-83.321463,34.677543],[-83.325336,34.679517],[-83.330284,34.681342],[-83.336207,34.680534],[-83.33869,34.682002],[-83.339029,34.683807],[-83.339335,34.686666],[-83.339367,34.686967],[-83.340383,34.688998],[-83.342414,34.691255],[-83.344671,34.693512],[-83.347831,34.696108],[-83.349411,34.697575],[-83.349975,34.699155],[-83.349636,34.70096],[-83.347831,34.703669],[-83.347718,34.705474],[-83.349788,34.708274],[-83.350976,34.713243],[-83.351392,34.714456],[-83.352485,34.715993],[-83.352493,34.716121],[-83.353238,34.728648],[-83.348829,34.737194],[-83.338666,34.742295],[-83.320062,34.759616],[-83.321008,34.765371],[-83.319945,34.773725],[-83.323866,34.789712],[-83.313782,34.799911],[-83.303643,34.802403],[-83.301182,34.804008],[-83.301482,34.808677],[-83.302965,34.811073],[-83.302965,34.812214],[-83.302395,34.813241],[-83.301368,34.814154],[-83.299428,34.814268],[-83.297259,34.814268],[-83.294292,34.814725],[-83.291325,34.818833],[-83.29112,34.822508],[-83.289914,34.824477],[-83.284812,34.823043],[-83.283151,34.821328],[-83.275656,34.816862],[-83.271214,34.81844],[-83.268159,34.821393],[-83.267293,34.832748],[-83.269982,34.837196],[-83.267656,34.845289],[-83.26452,34.846402],[-83.262193,34.846402],[-83.25986,34.845629],[-83.258146,34.844985],[-83.255718,34.845592],[-83.254605,34.846402],[-83.253762,34.848057],[-83.252582,34.853483],[-83.250053,34.856012],[-83.24722,34.85844],[-83.247018,34.863094],[-83.245602,34.865522],[-83.240847,34.866736],[-83.238419,34.869771],[-83.238557,34.872868],[-83.239081,34.875661],[-83.23751,34.877057],[-83.232379,34.878051],[-83.22924,34.879907],[-83.220099,34.878124],[-83.213323,34.882796],[-83.209683,34.880279],[-83.205627,34.880142],[-83.201183,34.884653],[-83.204572,34.890284],[-83.203351,34.893717],[-83.197627,34.895046],[-83.194786,34.897843],[-83.190409,34.89794],[-83.186541,34.899534],[-83.180871,34.904708],[-83.178932,34.90825],[-83.174034,34.910911],[-83.170754,34.914231],[-83.168524,34.91788],[-83.165022,34.918853],[-83.160937,34.918269],[-83.158019,34.920117],[-83.155879,34.9243],[-83.153253,34.926342],[-83.149946,34.927218],[-83.143261,34.924756],[-83.140621,34.924915],[-83.130554,34.930932],[-83.129885,34.932351],[-83.130356,34.935167],[-83.129493,34.937402],[-83.12807,34.938113],[-83.125175,34.937047],[-83.122585,34.938062],[-83.121112,34.939129],[-83.120502,34.941262],[-83.121214,34.942684],[-83.12294,34.944513],[-83.126761,34.948742],[-83.127035,34.953778],[-83.124378,34.95524],[-83.12114,34.958966],[-83.121803,34.96362],[-83.120387,34.968406],[-83.112021,34.975896],[-83.110025,34.980635],[-83.106991,34.98272],[-83.10449,34.989332],[-83.1046,34.992783],[-83.105531,34.996344],[-83.108535,35.000771],[-83.008639,35.027595],[-82.999867,35.02995],[-82.897499,35.056021],[-82.809766,35.078748],[-82.787867,35.085024],[-82.783283,35.0856],[-82.78113,35.084585],[-82.781062,35.084492],[-82.778651,35.083575],[-82.776357,35.081349],[-82.777407,35.076885],[-82.779116,35.073674],[-82.779928,35.072206],[-82.779928,35.070435],[-82.780546,35.069043],[-82.781973,35.066817],[-82.777376,35.064143],[-82.770046,35.065476],[-82.764464,35.068177],[-82.757704,35.068019],[-82.754162,35.069629],[-82.751265,35.073463],[-82.751102,35.075749],[-82.749491,35.078487],[-82.746431,35.079131],[-82.741761,35.078326],[-82.738379,35.079453],[-82.735904,35.082701],[-82.730971,35.086378],[-82.729683,35.087827],[-82.729517,35.09059],[-82.728961,35.091978],[-82.72701,35.094142],[-82.723462,35.094341],[-82.720442,35.093265],[-82.715297,35.092943],[-82.707152,35.096542],[-82.703916,35.097651],[-82.701017,35.09749],[-82.698602,35.097168],[-82.694898,35.098456],[-82.689634,35.104117],[-82.688456,35.106347],[-82.688778,35.108602],[-82.690711,35.111501],[-82.691355,35.113272],[-82.691194,35.114721],[-82.690549,35.116171],[-82.688939,35.118103],[-82.687641,35.119287],[-82.686738,35.11979],[-82.686496,35.121822],[-82.68604,35.124545],[-82.683625,35.125833],[-82.680887,35.126155],[-82.676861,35.12535],[-82.675089,35.123257],[-82.673318,35.121002],[-82.672513,35.119392],[-82.669614,35.118103],[-82.662381,35.118123],[-82.657858,35.119392],[-82.65351,35.121968],[-82.651416,35.124867],[-82.648694,35.12677],[-82.645296,35.12841],[-82.642237,35.129215],[-82.63821,35.128088],[-82.634668,35.126317],[-82.632574,35.125833],[-82.629031,35.126155],[-82.626436,35.127903],[-82.624847,35.130432],[-82.621185,35.134635],[-82.617993,35.13527],[-82.614402,35.136701],[-82.613866,35.137529],[-82.612444,35.138234],[-82.609706,35.139039],[-82.602358,35.139036],[-82.59814,35.137729],[-82.59243,35.139002],[-82.588158,35.142928],[-82.586035,35.143142],[-82.581836,35.142352],[-82.580687,35.141742],[-82.578316,35.142104],[-82.574215,35.143648],[-82.569912,35.145268],[-82.567486,35.147694],[-82.566193,35.150119],[-82.563767,35.151575],[-82.560807,35.151644],[-82.558593,35.150928],[-82.556168,35.151736],[-82.554874,35.152868],[-82.554871,35.154639],[-82.554227,35.156911],[-82.552934,35.158042],[-82.550508,35.159498],[-82.547436,35.160306],[-82.544525,35.160306],[-82.540483,35.160306],[-82.536218,35.159259],[-82.535967,35.158664],[-82.534662,35.156911],[-82.53256,35.155617],[-82.529973,35.155617],[-82.52593,35.156749],[-82.521403,35.158851],[-82.51921,35.161044],[-82.517284,35.162643],[-82.51691,35.163029],[-82.516044,35.163442],[-82.506137,35.163894],[-82.499843,35.163675],[-82.495506,35.164312],[-82.490766,35.169715],[-82.487357,35.172494],[-82.483937,35.173798],[-82.476136,35.175486],[-82.472313,35.174619],[-82.467991,35.174633],[-82.460092,35.178143],[-82.455609,35.177425],[-82.452987,35.17469],[-82.452764,35.172626],[-82.452931,35.168999],[-82.451201,35.16526],[-82.448969,35.165037],[-82.439595,35.165863],[-82.435689,35.167715],[-82.434126,35.170784],[-82.428,35.183224],[-82.424461,35.193092],[-82.419744,35.198613],[-82.417597,35.200131],[-82.411301,35.202483],[-82.403348,35.204473],[-82.395697,35.213214],[-82.39293,35.215402],[-82.390439,35.215395],[-82.384029,35.210542],[-82.383776,35.207646],[-82.380524,35.202276],[-82.378744,35.198053],[-82.379191,35.195894],[-82.380605,35.193586],[-82.381201,35.191203],[-82.380903,35.189565],[-82.379712,35.186884],[-82.376808,35.184427],[-82.373218,35.182201],[-82.371298,35.181449],[-82.36899,35.181747],[-82.364299,35.184725],[-82.363479,35.186214],[-82.363554,35.188001],[-82.363256,35.189639],[-82.361469,35.190831],[-82.353508,35.192249],[-82.350086,35.192858],[-82.344554,35.193115],[-82.341194,35.19151],[-82.340133,35.189188],[-82.339508,35.18893],[-82.338013,35.18901],[-82.333934,35.190661],[-82.332975,35.190645],[-82.330779,35.189032],[-82.330549,35.186767],[-82.326917,35.185056],[-82.32335,35.184789],[-82.317871,35.187858],[-82.315871,35.190678],[-82.314863,35.191089],[-82.307166,35.193012],[-82.295354,35.194965],[-82.288453,35.198605],[-82.282516,35.199858],[-82.27492,35.200071],[-82.257515,35.198636],[-82.230915,35.196784],[-82.230517,35.196764],[-82.216217,35.196044],[-82.195483,35.194951],[-82.185513,35.194355],[-82.176874,35.19379],[-82.167676,35.193699],[-82.138947,35.193122],[-82.089586,35.190698],[-82.039651,35.189449],[-82.001422,35.188493],[-81.969326,35.187228],[-81.925612,35.185505],[-81.874433,35.184113],[-81.857832,35.183489],[-81.802081,35.181395],[-81.772351,35.180514],[-81.768062,35.180387],[-81.738492,35.179511],[-81.716259,35.178852],[-81.680801,35.177331],[-81.646707,35.175869],[-81.614877,35.174504],[-81.581681,35.17308],[-81.54515,35.171744],[-81.494265,35.169882],[-81.493401,35.169951],[-81.461408,35.168657],[-81.452398,35.168293],[-81.445627,35.168024],[-81.366691,35.164893],[-81.366599,35.164889],[-81.32802,35.163404],[-81.290672,35.161967],[-81.269199,35.16114],[-81.241686,35.160081],[-81.239358,35.159974],[-81.138207,35.155417],[-81.11084,35.154185],[-81.109295,35.154115],[-81.077253,35.152047],[-81.043625,35.149877],[-81.04287,35.149248],[-81.043407,35.14839],[-81.044391,35.147918],[-81.047091,35.145157],[-81.047826,35.143743],[-81.051204,35.133237],[-81.051037,35.131654],[-81.05042,35.131048],[-81.038968,35.126299],[-81.036759,35.122552],[-81.033005,35.113747],[-81.032471,35.110033],[-81.032806,35.108049],[-81.034958,35.104105],[-81.037369,35.102541],[-81.046524,35.100617],[-81.050079,35.098817],[-81.052078,35.096276],[-81.057236,35.086129],[-81.058029,35.07319],[-81.057648,35.062433],[-81.055695,35.060121],[-81.050018,35.055246],[-81.041489,35.044703],[-80.98416,35.077568],[-80.95787,35.092639],[-80.93495,35.107409],[-80.906553,35.076763],[-80.906416,35.076616],[-80.884887,35.05351],[-80.840383,35.001636],[-80.82156,34.979695],[-80.806784,34.963249],[-80.806461,34.962894],[-80.782042,34.935782],[-80.795109,34.837999],[-80.796997,34.823874],[-80.797543,34.819786],[-80.777712,34.819697],[-80.771792,34.819646],[-80.684074,34.818907],[-80.646601,34.818592],[-80.644656,34.818568],[-80.626077,34.818217],[-80.625993,34.818239],[-80.621222,34.818174],[-80.561674,34.817481],[-80.561657,34.817481],[-80.499788,34.817261],[-80.491814,34.816798],[-80.485684,34.816737],[-80.485234,34.816732],[-80.45166,34.816396],[-80.448766,34.816332],[-80.434843,34.815968],[-80.425902,34.81581],[-80.419586,34.815581],[-80.418433,34.815622],[-80.417014,34.815508],[-80.399871,34.815128],[-80.350068,34.814469],[-80.320402,34.814076],[-80.30469,34.813868],[-80.283627,34.813589],[-80.23396,34.812931],[-80.229705,34.812843],[-80.159252,34.81139],[-80.131169,34.810811],[-80.098994,34.810147],[-80.098022,34.810147],[-80.077223,34.809716],[-80.072912,34.809736],[-80.042764,34.809097],[-80.027464,34.808726],[-80.000541,34.808141],[-79.927618,34.806555],[-79.891443,34.805807],[-79.870693,34.805378],[-79.773607,34.805931],[-79.772829,34.805954],[-79.744925,34.805686],[-79.744116,34.805651],[-79.692948,34.804973],[-79.690201,34.804937],[-79.688088,34.804897],[-79.675299,34.804744],[-79.634216,34.771012],[-79.631577,34.768835],[-79.561691,34.711996],[-79.554454,34.706363],[-79.520269,34.678327],[-79.519043,34.677321],[-79.490201,34.653819],[-79.479305,34.64464],[-79.471599,34.6372],[-79.468717,34.635323],[-79.461754,34.630432],[-79.461318,34.630126],[-79.459766,34.629027],[-79.450034,34.621036],[-79.358317,34.545358],[-79.331328,34.521869],[-79.324854,34.516282],[-79.323249,34.514634],[-79.306653,34.500426],[-79.286703,34.482664],[-79.249763,34.449774],[-79.244886,34.445637],[-79.215993,34.421129],[-79.198982,34.406699],[-79.192041,34.40104],[-79.190739,34.399751],[-79.151485,34.366753],[-79.143242,34.359817],[-79.071169,34.29924],[-78.99576,34.235954],[-78.963692,34.209041],[-78.909881,34.163881],[-78.874747,34.134395],[-78.855385,34.117996],[-78.81171,34.081006],[-78.769483,34.045242],[-78.712206,33.996732],[-78.710141,33.994688],[-78.702771,33.989268],[-78.66253,33.95452],[-78.651629,33.945397],[-78.650329,33.944309],[-78.621369,33.920073],[-78.615932,33.915523],[-78.580378,33.884925],[-78.541087,33.851112],[-78.553944,33.847831],[-78.584841,33.844282],[-78.67226,33.817587],[-78.714116,33.800138],[-78.772737,33.768511],[-78.812931,33.743472],[-78.862931,33.705654],[-78.938076,33.639826],[-79.002109,33.572114],[-79.007356,33.566565],[-79.028516,33.533365],[-79.041125,33.523773],[-79.084588,33.483669],[-79.10136,33.461016],[-79.135441,33.403867],[-79.147496,33.378243],[-79.152035,33.350925],[-79.158429,33.332811],[-79.162332,33.327246],[-79.180318,33.254141],[-79.180563,33.237955],[-79.172394,33.206577],[-79.18787,33.173712],[-79.195631,33.166016],[-79.215453,33.155569],[-79.238262,33.137055],[-79.24609,33.124865],[-79.290754,33.110051]]]}}]} diff --git a/Where/RegionKit/Sources/Resources/regions/us-SD.geojson b/Where/RegionKit/Sources/Resources/regions/us-SD.geojson new file mode 100644 index 00000000..776bc9b9 --- /dev/null +++ b/Where/RegionKit/Sources/Resources/regions/us-SD.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"region":"us-SD","name":"South Dakota"},"geometry":{"type":"Polygon","coordinates":[[[-104.054487,44.180381],[-104.055389,44.249983],[-104.055927,44.51773],[-104.055892,44.543341],[-104.055877,44.571016],[-104.05581,44.691343],[-104.055938,44.693881],[-104.055777,44.700466],[-104.05587,44.723422],[-104.055934,44.72372],[-104.055963,44.767962],[-104.055963,44.768236],[-104.056496,44.867034],[-104.055914,44.874986],[-104.057698,44.997431],[-104.039681,44.998041],[-104.040128,44.999987],[-104.039563,45.124039],[-104.039977,45.124988],[-104.040136,45.212891],[-104.040358,45.335946],[-104.040265,45.345356],[-104.040114,45.374214],[-104.04041,45.393474],[-104.040816,45.462708],[-104.041764,45.490789],[-104.041274,45.499994],[-104.041145,45.503367],[-104.041717,45.539122],[-104.041647,45.550691],[-104.041937,45.557915],[-104.042597,45.749998],[-104.043814,45.868385],[-104.044009,45.871974],[-104.04403,45.881971],[-104.04403,45.881975],[-104.045443,45.94531],[-103.668479,45.945242],[-103.660779,45.945241],[-103.660779,45.945231],[-103.577083,45.945283],[-103.55871,45.945131],[-103.434851,45.945291],[-103.432393,45.945313],[-103.41804,45.945186],[-103.411325,45.945264],[-103.37546,45.944797],[-103.369148,45.945152],[-103.284109,45.945152],[-103.284092,45.945149],[-103.218396,45.945208],[-103.210634,45.945222],[-103.161251,45.945309],[-103.140939,45.945257],[-103.097872,45.945262],[-103.078477,45.945289],[-103.047779,45.945335],[-103.026058,45.945307],[-102.995668,45.945167],[-102.995345,45.945166],[-102.989902,45.945211],[-102.94207,45.945092],[-102.920482,45.945038],[-102.880252,45.945069],[-102.704871,45.945072],[-102.674077,45.945274],[-102.672474,45.945244],[-102.666684,45.945307],[-102.65162,45.94545],[-102.642555,45.945404],[-102.558579,45.945129],[-102.550947,45.945015],[-102.476024,45.945183],[-102.467563,45.945159],[-102.459586,45.945081],[-102.446419,45.945083],[-102.425397,45.945041],[-102.425358,45.94499],[-102.420173,45.94507],[-102.410346,45.945079],[-102.406176,45.944997],[-102.398575,45.944868],[-102.396359,45.944916],[-102.392767,45.944979],[-102.392696,45.944951],[-102.354283,45.944901],[-102.353384,45.944984],[-102.32823,45.944806],[-102.217867,45.944711],[-102.176993,45.944622],[-102.176698,45.944622],[-102.159439,45.944641],[-102.157965,45.944641],[-102.156393,45.944663],[-102.145356,45.944659],[-102.135269,45.944586],[-102.125429,45.944652],[-102.124628,45.944813],[-102.087555,45.944598],[-102.085122,45.944642],[-102.06093,45.944622],[-102.000679,45.944515],[-102.000656,45.944515],[-102.000425,45.944581],[-101.998703,45.944557],[-101.998618,45.944556],[-101.992187,45.944471],[-101.989501,45.944472],[-101.973749,45.944456],[-101.957439,45.944484],[-101.886838,45.944559],[-101.852642,45.944457],[-101.832991,45.944464],[-101.794606,45.944397],[-101.790054,45.944442],[-101.766177,45.944322],[-101.765293,45.944367],[-101.764277,45.944412],[-101.758611,45.944478],[-101.730069,45.944356],[-101.72338,45.944187],[-101.708785,45.944348],[-101.681819,45.944444],[-101.680574,45.944329],[-101.657631,45.944387],[-101.628597,45.944293],[-101.562156,45.944237],[-101.557276,45.9441],[-101.41989,45.943763],[-101.373769,45.944265],[-101.37069,45.944198],[-101.365283,45.944092],[-101.333871,45.944166],[-101.313272,45.944164],[-101.287223,45.944107],[-101.271524,45.944209],[-101.224006,45.944025],[-101.203787,45.943895],[-101.179103,45.943896],[-101.175693,45.943983],[-101.171074,45.943959],[-101.163241,45.943915],[-101.146076,45.943842],[-101.142571,45.943841],[-101.106826,45.943984],[-101.101334,45.943841],[-100.980693,45.944068],[-100.976565,45.943864],[-100.964411,45.943822],[-100.938989,45.943848],[-100.935582,45.943757],[-100.890176,45.943861],[-100.769751,45.943766],[-100.76211,45.943767],[-100.762072,45.943803],[-100.750407,45.943649],[-100.720865,45.944024],[-100.65082,45.94368],[-100.627681,45.943642],[-100.511949,45.943654],[-100.511793,45.943654],[-100.499354,45.943632],[-100.462838,45.943566],[-100.430597,45.943638],[-100.424438,45.943569],[-100.420162,45.943533],[-100.410386,45.943453],[-100.294126,45.943269],[-100.285345,45.94313],[-100.284134,45.942951],[-100.275614,45.942922],[-100.274762,45.942945],[-100.170826,45.942514],[-100.152084,45.942486],[-100.14173,45.942506],[-100.110339,45.942367],[-100.108471,45.942391],[-100.084163,45.942301],[-100.06902,45.94217],[-100.005486,45.94195],[-99.965775,45.941822],[-99.880292,45.941672],[-99.880062,45.94167],[-99.83868,45.941293],[-99.750396,45.940935],[-99.749494,45.940956],[-99.749325,45.940935],[-99.74787,45.940933],[-99.718073,45.940907],[-99.718071,45.940907],[-99.692975,45.940949],[-99.671938,45.941062],[-99.61116,45.941098],[-99.58878,45.941104],[-99.49314,45.940383],[-99.490254,45.940362],[-99.40126,45.940367],[-99.385565,45.940407],[-99.378486,45.940403],[-99.34496,45.940299],[-99.344774,45.940299],[-99.317875,45.940263],[-99.297272,45.940165],[-99.283968,45.940195],[-99.276266,45.940188],[-99.257745,45.94006],[-99.222269,45.940071],[-99.221672,45.940069],[-99.213644,45.940116],[-99.212571,45.940108],[-99.102372,45.940158],[-99.092868,45.940184],[-99.005754,45.939944],[-99.005642,45.939944],[-98.905477,45.93952],[-98.904429,45.93952],[-98.724375,45.938686],[-98.625379,45.938228],[-98.414518,45.936504],[-98.18563,45.936185],[-98.184637,45.936183],[-98.070515,45.93618],[-98.008202,45.936096],[-98.008102,45.936095],[-97.986893,45.935961],[-97.978778,45.935937],[-97.958718,45.935878],[-97.784575,45.935327],[-97.77704,45.935393],[-97.696691,45.935352],[-97.542598,45.935258],[-97.519035,45.935304],[-97.518944,45.935304],[-97.491892,45.935111],[-97.481967,45.935138],[-97.318899,45.935054],[-97.312184,45.935077],[-97.228323,45.935141],[-97.228304,45.935141],[-97.228291,45.935141],[-97.144987,45.935278],[-97.118053,45.935485],[-97.103218,45.935991],[-97.019596,45.935382],[-97.000361,45.935233],[-96.998652,45.9357],[-96.805155,45.935431],[-96.791505,45.935857],[-96.701313,45.935807],[-96.680646,45.935716],[-96.659895,45.93556],[-96.639066,45.935318],[-96.618295,45.935407],[-96.607142,45.935301],[-96.597432,45.935209],[-96.576897,45.935259],[-96.56328,45.935238],[-96.564518,45.926256],[-96.564317,45.921074],[-96.564002,45.91956],[-96.566562,45.916931],[-96.56703,45.915682],[-96.566534,45.911876],[-96.565541,45.910883],[-96.56442,45.909415],[-96.567268,45.905393],[-96.568315,45.902902],[-96.568053,45.898697],[-96.568281,45.891203],[-96.568772,45.888072],[-96.571354,45.886673],[-96.572651,45.876474],[-96.571871,45.871846],[-96.574667,45.866816],[-96.574417,45.86501],[-96.572984,45.861602],[-96.574517,45.843098],[-96.576544,45.839945],[-96.577534,45.83793],[-96.577484,45.833108],[-96.57974,45.82582],[-96.583085,45.820024],[-96.587093,45.816445],[-96.593216,45.813873],[-96.596704,45.811801],[-96.601863,45.806343],[-96.607621,45.79907],[-96.612512,45.794442],[-96.618195,45.791063],[-96.625347,45.787924],[-96.627778,45.786239],[-96.629426,45.784211],[-96.630512,45.781157],[-96.636646,45.773702],[-96.638726,45.770171],[-96.639685,45.7654],[-96.641941,45.759871],[-96.652226,45.746809],[-96.662595,45.738682],[-96.672665,45.732336],[-96.687224,45.725931],[-96.711157,45.717561],[-96.745086,45.701576],[-96.75035,45.698782],[-96.757174,45.690957],[-96.760866,45.687518],[-96.800156,45.668355],[-96.82616,45.654164],[-96.827428,45.653067],[-96.832659,45.651716],[-96.835769,45.649648],[-96.840746,45.645294],[-96.844211,45.639583],[-96.851621,45.619412],[-96.852392,45.61484],[-96.856657,45.609041],[-96.857751,45.605962],[-96.853646,45.602307],[-96.849444,45.598944],[-96.844334,45.594375],[-96.843957,45.594003],[-96.835451,45.586129],[-96.801987,45.555414],[-96.799102,45.554225],[-96.79384,45.550724],[-96.784863,45.5413],[-96.781036,45.535972],[-96.76528,45.521414],[-96.760591,45.514895],[-96.752865,45.502163],[-96.745487,45.488712],[-96.743683,45.484439],[-96.743486,45.480649],[-96.742509,45.478723],[-96.738446,45.473499],[-96.736837,45.466775],[-96.732739,45.458737],[-96.731396,45.45702],[-96.72425,45.451482],[-96.710786,45.43693],[-96.702006,45.426247],[-96.692541,45.417338],[-96.683753,45.411556],[-96.680454,45.410499],[-96.675447,45.410216],[-96.670301,45.410545],[-96.662258,45.409011],[-96.647888,45.410126],[-96.640624,45.409227],[-96.631204,45.409238],[-96.617726,45.408092],[-96.60118,45.403181],[-96.584764,45.395705],[-96.578879,45.392295],[-96.571364,45.389871],[-96.562142,45.38609],[-96.545973,45.38105],[-96.539722,45.380338],[-96.530944,45.378495],[-96.521787,45.375645],[-96.508132,45.367832],[-96.502006,45.365473],[-96.489065,45.357071],[-96.482556,45.346273],[-96.479323,45.339644],[-96.470387,45.326605],[-96.469246,45.324941],[-96.468756,45.320564],[-96.468027,45.318619],[-96.466644,45.317162],[-96.46191,45.313884],[-96.457781,45.30761],[-96.456941,45.303652],[-96.454094,45.301546],[-96.453067,45.298115],[-96.452791,45.28428],[-96.452949,45.269059],[-96.452948,45.268925],[-96.452315,45.208986],[-96.452152,45.204849],[-96.452162,45.203109],[-96.452304,45.178563],[-96.452353,45.124071],[-96.452418,45.122677],[-96.452026,45.095138],[-96.452219,45.093836],[-96.45221,45.051602],[-96.452177,45.050185],[-96.45224,45.042347],[-96.452092,44.977494],[-96.452092,44.977475],[-96.452347,44.962734],[-96.452047,44.910695],[-96.451853,44.906672],[-96.452009,44.89008],[-96.45156,44.805569],[-96.451559,44.805468],[-96.451829,44.797691],[-96.451888,44.792299],[-96.451823,44.790471],[-96.45162,44.776191],[-96.45138,44.761788],[-96.451573,44.76051],[-96.451232,44.718375],[-96.451543,44.703135],[-96.451761,44.63135],[-96.451761,44.631194],[-96.45172,44.630708],[-96.451888,44.544058],[-96.45199,44.543639],[-96.452016,44.543533],[-96.452236,44.526871],[-96.45201,44.516929],[-96.451974,44.506849],[-96.452122,44.473043],[-96.452218,44.470873],[-96.451816,44.460402],[-96.451924,44.441549],[-96.452073,44.38969],[-96.452134,44.383679],[-96.452213,44.360149],[-96.452282,44.354857],[-96.452305,44.345332],[-96.452152,44.342219],[-96.452248,44.340642],[-96.452309,44.328094],[-96.452372,44.325991],[-96.452248,44.313362],[-96.452369,44.312071],[-96.452239,44.298655],[-96.452334,44.297009],[-96.4525,44.285687],[-96.452617,44.282702],[-96.452365,44.271972],[-96.452369,44.268967],[-96.452419,44.255274],[-96.452673,44.254588],[-96.452774,44.196895],[-96.452774,44.19678],[-96.453187,44.03835],[-96.453313,44.03643],[-96.453405,44.025413],[-96.453373,44.023744],[-96.453053,44.008887],[-96.453116,44.006876],[-96.453297,43.994723],[-96.453328,43.992871],[-96.453263,43.980277],[-96.453389,43.97806],[-96.453292,43.96718],[-96.453165,43.96654],[-96.453289,43.950814],[-96.453352,43.949122],[-96.453183,43.87865],[-96.453304,43.878583],[-96.453335,43.877029],[-96.453264,43.849604],[-96.453264,43.849506],[-96.453264,43.849501],[-96.453088,43.805123],[-96.453281,43.791435],[-96.45338,43.689637],[-96.453408,43.675008],[-96.453387,43.609944],[-96.453356,43.607544],[-96.453383,43.588183],[-96.453352,43.58704],[-96.453049,43.500415],[-96.591213,43.500514],[-96.598928,43.500457],[-96.598929,43.500441],[-96.599182,43.496011],[-96.598396,43.495074],[-96.594722,43.493314],[-96.591676,43.494367],[-96.590452,43.494298],[-96.586274,43.491099],[-96.585049,43.489887],[-96.580997,43.481384],[-96.586364,43.478251],[-96.585137,43.471141],[-96.584603,43.46961],[-96.587929,43.464878],[-96.600039,43.45708],[-96.60286,43.450907],[-96.602608,43.449649],[-96.594254,43.434153],[-96.592905,43.43317],[-96.587884,43.431685],[-96.581956,43.432212],[-96.575181,43.431756],[-96.570224,43.428601],[-96.569628,43.427527],[-96.570788,43.423755],[-96.573579,43.419228],[-96.568499,43.417217],[-96.562728,43.412782],[-96.557586,43.406792],[-96.553008,43.404117],[-96.537116,43.395063],[-96.531159,43.39561],[-96.530124,43.39641],[-96.530124,43.397553],[-96.529152,43.397735],[-96.525453,43.396317],[-96.524044,43.394762],[-96.521572,43.38564],[-96.521297,43.375947],[-96.521323,43.374607],[-96.522203,43.371947],[-96.526467,43.368314],[-96.527345,43.368109],[-96.527223,43.362257],[-96.526635,43.351833],[-96.52551,43.348335],[-96.524476,43.348151],[-96.524289,43.347214],[-96.531905,43.33869],[-96.534913,43.336473],[-96.533101,43.328587],[-96.528817,43.316561],[-96.525564,43.312467],[-96.526004,43.309999],[-96.530392,43.300034],[-96.541037,43.295556],[-96.553087,43.29286],[-96.555246,43.294803],[-96.563523,43.294804],[-96.56429,43.294804],[-96.56911,43.295535],[-96.570707,43.296701],[-96.571646,43.298187],[-96.573556,43.29917],[-96.580346,43.298204],[-96.581052,43.297118],[-96.580409,43.295854],[-96.579478,43.29511],[-96.579094,43.293797],[-96.578823,43.291095],[-96.577588,43.2788],[-96.580904,43.2748],[-96.582876,43.274594],[-96.582939,43.276536],[-96.583533,43.276879],[-96.586317,43.274319],[-96.58522,43.268878],[-96.582904,43.26769],[-96.576804,43.268308],[-96.568576,43.262662],[-96.564165,43.260239],[-96.560099,43.259279],[-96.55697,43.259096],[-96.554968,43.259998],[-96.554965,43.259999],[-96.553217,43.259141],[-96.552591,43.257769],[-96.55203,43.251117],[-96.552963,43.247281],[-96.559186,43.245155],[-96.565253,43.244241],[-96.571194,43.238961],[-96.568505,43.231554],[-96.56044,43.224219],[-96.558995,43.224126],[-96.557317,43.224778],[-96.556313,43.226135],[-96.554937,43.226775],[-96.548184,43.226912],[-96.544902,43.225928],[-96.540088,43.225698],[-96.535741,43.22764],[-96.526865,43.224071],[-96.522084,43.22096],[-96.520961,43.21824],[-96.519273,43.21769],[-96.512458,43.218556],[-96.500759,43.220767],[-96.496454,43.223652],[-96.485264,43.224183],[-96.476697,43.222014],[-96.475571,43.221054],[-96.474912,43.217351],[-96.472158,43.209534],[-96.470626,43.207225],[-96.470781,43.205099],[-96.473777,43.198766],[-96.473834,43.189804],[-96.472395,43.185644],[-96.468802,43.184525],[-96.467146,43.184502],[-96.465146,43.182971],[-96.464896,43.182034],[-96.467292,43.164066],[-96.467384,43.159608],[-96.466537,43.150281],[-96.465099,43.147515],[-96.459978,43.143516],[-96.458854,43.143356],[-96.455544,43.144157],[-96.450361,43.142237],[-96.443431,43.133825],[-96.442711,43.128841],[-96.441644,43.124687],[-96.440801,43.123129],[-96.439615,43.121963],[-96.436589,43.120842],[-96.439335,43.113916],[-96.448134,43.104452],[-96.451877,43.100474],[-96.460516,43.09494],[-96.462855,43.091419],[-96.462636,43.089614],[-96.455337,43.088129],[-96.454526,43.086826],[-96.454088,43.084197],[-96.454188,43.083379],[-96.455209,43.075053],[-96.458201,43.067554],[-96.46085,43.064033],[-96.463094,43.062981],[-96.468207,43.06186],[-96.469953,43.062088],[-96.473165,43.06355],[-96.476905,43.062383],[-96.486722,43.055498],[-96.488155,43.054013],[-96.488839,43.051475],[-96.490365,43.050789],[-96.501748,43.048632],[-96.505239,43.048726],[-96.508916,43.049985],[-96.510256,43.049917],[-96.518431,43.042068],[-96.517319,43.040247],[-96.515752,43.039388],[-96.513873,43.039814],[-96.511605,43.039927],[-96.509145,43.037297],[-96.509146,43.03668],[-96.510802,43.031902],[-96.512916,43.029962],[-96.513085,43.028437],[-96.511804,43.025799],[-96.510995,43.024701],[-96.503209,43.019805],[-96.499187,43.019213],[-96.494416,43.014551],[-96.49167,43.009707],[-96.492693,43.005089],[-96.494341,43.001819],[-96.496699,42.998807],[-96.49782,42.998143],[-96.502728,42.997066],[-96.507337,42.996519],[-96.509986,42.995126],[-96.512886,42.991424],[-96.512203,42.988818],[-96.512237,42.985937],[-96.516724,42.981458],[-96.520773,42.980385],[-96.520246,42.977643],[-96.515922,42.972886],[-96.510693,42.97126],[-96.506148,42.971348],[-96.505028,42.970844],[-96.503132,42.968192],[-96.500308,42.959391],[-96.504857,42.954659],[-96.508069,42.948534],[-96.509472,42.945151],[-96.510749,42.944397],[-96.514888,42.943668],[-96.519994,42.93976],[-96.52012,42.938183],[-96.516419,42.935438],[-96.516203,42.933769],[-96.516888,42.932512],[-96.518258,42.931849],[-96.519378,42.931987],[-96.520559,42.932765],[-96.52118,42.934846],[-96.523513,42.935784],[-96.525536,42.935511],[-96.541098,42.924496],[-96.541689,42.922576],[-96.541628,42.920678],[-96.540229,42.918666],[-96.537837,42.910709],[-96.537354,42.908791],[-96.536564,42.905656],[-96.538555,42.904605],[-96.542473,42.90504],[-96.542971,42.90456],[-96.542847,42.903737],[-96.539397,42.899964],[-96.536007,42.900901],[-96.528886,42.89795],[-96.526563,42.893755],[-96.526357,42.891852],[-96.52774,42.890588],[-96.534395,42.890659],[-96.540116,42.889678],[-96.540396,42.888877],[-96.538438,42.886111],[-96.537851,42.878475],[-96.543908,42.874614],[-96.546394,42.874464],[-96.547327,42.87371],[-96.549659,42.870281],[-96.550469,42.863742],[-96.550439,42.863171],[-96.546556,42.857273],[-96.545282,42.857158],[-96.54379,42.858254],[-96.543417,42.859466],[-96.542702,42.859717],[-96.541708,42.858871],[-96.54146,42.857682],[-96.544321,42.851282],[-96.545502,42.849956],[-96.550847,42.847648],[-96.553772,42.847501],[-96.554709,42.846142],[-96.554203,42.843648],[-96.552184,42.841864],[-96.549976,42.840705],[-96.549513,42.839143],[-96.551285,42.836606],[-96.552092,42.836057],[-96.553987,42.836034],[-96.556162,42.836675],[-96.558584,42.839487],[-96.560572,42.839373],[-96.56284,42.836309],[-96.563058,42.831051],[-96.565605,42.830434],[-96.571353,42.837155],[-96.579772,42.838093],[-96.581604,42.837521],[-96.58238,42.833657],[-96.577813,42.828719],[-96.577937,42.827645],[-96.584488,42.818979],[-96.585699,42.818041],[-96.591039,42.815365],[-96.594983,42.815844],[-96.596008,42.815044],[-96.595664,42.810426],[-96.592155,42.809924],[-96.590913,42.808987],[-96.590757,42.808255],[-96.592493,42.801122],[-96.595283,42.792982],[-96.602575,42.787767],[-96.603784,42.78372],[-96.604559,42.783034],[-96.615579,42.784996],[-96.61949,42.784034],[-96.621875,42.779255],[-96.626406,42.773518],[-96.630311,42.770885],[-96.632142,42.770863],[-96.633168,42.768325],[-96.632212,42.761512],[-96.628741,42.757532],[-96.62412,42.757808],[-96.622538,42.758449],[-96.621235,42.758084],[-96.620272,42.757124],[-96.619494,42.754792],[-96.620548,42.753534],[-96.626108,42.752729],[-96.630485,42.750378],[-96.632314,42.745641],[-96.635886,42.741002],[-96.639704,42.737071],[-96.638621,42.734921],[-96.631931,42.725086],[-96.626317,42.725951],[-96.624704,42.725497],[-96.624446,42.714294],[-96.627233,42.709947],[-96.629777,42.708852],[-96.630617,42.70588],[-96.629625,42.705102],[-96.619536,42.700189],[-96.615257,42.698613],[-96.614516,42.698654],[-96.613912,42.698704],[-96.613409,42.698704],[-96.613058,42.698603],[-96.612555,42.698402],[-96.612203,42.698151],[-96.611851,42.697548],[-96.611901,42.697095],[-96.612124,42.69658],[-96.612061,42.695688],[-96.61017,42.694568],[-96.60614,42.694661],[-96.604839,42.695119],[-96.601989,42.697429],[-96.600789,42.697698],[-96.59908,42.697296],[-96.596625,42.695122],[-96.595548,42.691222],[-96.596405,42.688514],[-96.591602,42.688081],[-96.58562,42.687076],[-96.575299,42.682665],[-96.574064,42.67801],[-96.574318,42.676997],[-96.575272,42.675417],[-96.578148,42.672765],[-96.578581,42.672079],[-96.576381,42.671302],[-96.572261,42.670776],[-96.570743,42.671691],[-96.570247,42.674068],[-96.569194,42.675509],[-96.568078,42.676241],[-96.566684,42.675942],[-96.56055,42.669198],[-96.556244,42.664396],[-96.556461,42.663939],[-96.558939,42.663642],[-96.5599,42.662819],[-96.559962,42.658543],[-96.559281,42.657903],[-96.556214,42.657949],[-96.546827,42.661491],[-96.543698,42.661377],[-96.542366,42.660736],[-96.537877,42.655431],[-96.5376,42.652161],[-96.538468,42.648092],[-96.537881,42.646446],[-96.533701,42.643541],[-96.526766,42.641184],[-96.516338,42.630435],[-96.51535,42.627645],[-96.515918,42.624994],[-96.516599,42.622361],[-96.518542,42.62035],[-96.521158,42.619229],[-96.523998,42.618631],[-96.528185,42.618447],[-96.530896,42.617129],[-96.531604,42.615148],[-96.529894,42.610432],[-96.527928,42.608986],[-96.525671,42.609312],[-96.522309,42.612558],[-96.519514,42.614371],[-96.517048,42.615343],[-96.513237,42.614894],[-96.509468,42.61273],[-96.504654,42.605001],[-96.500183,42.594106],[-96.500243,42.592731],[-96.501434,42.59061],[-96.501037,42.589247],[-96.499885,42.588539],[-96.496792,42.587655],[-96.494777,42.585741],[-96.494676,42.584028],[-96.49557,42.582722],[-96.496066,42.580872],[-96.49545,42.579474],[-96.491402,42.577023],[-96.486606,42.576062],[-96.485796,42.575001],[-96.485937,42.573524],[-96.486855,42.572198],[-96.489328,42.5708],[-96.493279,42.570736],[-96.497186,42.571464],[-96.498709,42.57087],[-96.499414,42.567552],[-96.498439,42.560876],[-96.498041,42.558153],[-96.494699,42.556745],[-96.476952,42.556079],[-96.476962,42.546434],[-96.477709,42.535595],[-96.479809,42.529595],[-96.479009,42.526395],[-96.479909,42.524195],[-96.490802,42.520331],[-96.49297,42.517282],[-96.490089,42.512441],[-96.483592,42.510345],[-96.479384,42.511138],[-96.477454,42.509589],[-96.473339,42.503537],[-96.474709,42.500095],[-96.476909,42.497795],[-96.476509,42.493595],[-96.474409,42.491895],[-96.46255,42.490788],[-96.456348,42.492478],[-96.443408,42.489495],[-96.459709,42.486037],[-96.465671,42.483132],[-96.475565,42.480036],[-96.478792,42.479635],[-96.489497,42.480112],[-96.501321,42.482749],[-96.505704,42.484723],[-96.508587,42.486691],[-96.515891,42.49427],[-96.517557,42.496902],[-96.518752,42.500839],[-96.520683,42.504761],[-96.525142,42.510234],[-96.528753,42.513273],[-96.531616,42.51517],[-96.538036,42.518131],[-96.548791,42.520547],[-96.557775,42.52038],[-96.567896,42.517877],[-96.57251,42.515737],[-96.584348,42.507834],[-96.591121,42.50541],[-96.595992,42.504621],[-96.603468,42.50446],[-96.608883,42.505218],[-96.611489,42.506088],[-96.625958,42.513576],[-96.628179,42.516963],[-96.631494,42.524318],[-96.631494,42.524319],[-96.632882,42.528987],[-96.633343,42.531984],[-96.633321,42.540211],[-96.63533,42.54764],[-96.638033,42.55196],[-96.643589,42.557604],[-96.648135,42.560877],[-96.658754,42.566426],[-96.675952,42.5716],[-96.681369,42.574486],[-96.685746,42.577944],[-96.697313,42.590412],[-96.706416,42.599413],[-96.7093,42.603753],[-96.710995,42.608128],[-96.711546,42.614758],[-96.711312,42.617375],[-96.709485,42.621932],[-96.70729,42.625317],[-96.696852,42.637596],[-96.692599,42.64204],[-96.689083,42.644081],[-96.687788,42.645992],[-96.686982,42.649783],[-96.687082,42.652093],[-96.687669,42.653126],[-96.691269,42.6562],[-96.697639,42.659143],[-96.728024,42.666882],[-96.73546,42.667164],[-96.746949,42.666223],[-96.749372,42.665733],[-96.751239,42.66436],[-96.76406,42.661985],[-96.778182,42.662993],[-96.793238,42.666024],[-96.798745,42.668243],[-96.800986,42.669758],[-96.802178,42.672237],[-96.800193,42.684346],[-96.800485,42.692466],[-96.801652,42.698774],[-96.806219,42.704149],[-96.806223,42.704154],[-96.813148,42.706397],[-96.819452,42.707774],[-96.829554,42.708441],[-96.843419,42.712024],[-96.849956,42.715034],[-96.860436,42.720797],[-96.872789,42.724096],[-96.886845,42.725222],[-96.906797,42.7338],[-96.920494,42.731432],[-96.924156,42.730327],[-96.930247,42.726441],[-96.936773,42.723428],[-96.941111,42.721569],[-96.948902,42.719465],[-96.955862,42.719178],[-96.961576,42.719841],[-96.963531,42.720643],[-96.964776,42.722455],[-96.965679,42.724532],[-96.965833,42.727096],[-96.961291,42.736569],[-96.960866,42.739089],[-96.96123,42.740623],[-96.96888,42.754278],[-96.975339,42.758321],[-96.97912,42.76009],[-96.982197,42.760554],[-96.99282,42.759481],[-97.015825,42.761599],[-97.02485,42.76243],[-97.030189,42.763712],[-97.033229,42.765904],[-97.05218,42.770187],[-97.065592,42.772189],[-97.071849,42.772305],[-97.079356,42.771406],[-97.085463,42.770061],[-97.096128,42.76934],[-97.101265,42.769697],[-97.111622,42.76939],[-97.131331,42.771929],[-97.134461,42.774494],[-97.137101,42.778932],[-97.137028,42.780963],[-97.138216,42.783428],[-97.144595,42.790113],[-97.150763,42.795566],[-97.160352,42.799733],[-97.163857,42.801257],[-97.166978,42.802087],[-97.172083,42.802925],[-97.178488,42.80323],[-97.1876,42.804835],[-97.200431,42.805485],[-97.204726,42.806505],[-97.210126,42.809296],[-97.211654,42.810684],[-97.213084,42.813007],[-97.213957,42.820143],[-97.215059,42.822977],[-97.21783,42.827766],[-97.218269,42.829561],[-97.217411,42.843519],[-97.218825,42.845848],[-97.231929,42.851335],[-97.237868,42.853139],[-97.248556,42.855386],[-97.251764,42.855432],[-97.256752,42.853913],[-97.267946,42.852583],[-97.289859,42.855499],[-97.302075,42.86566],[-97.306677,42.867604],[-97.308853,42.867307],[-97.311091,42.865821],[-97.318066,42.863247],[-97.324457,42.861998],[-97.326348,42.861289],[-97.328511,42.859501],[-97.330749,42.858406],[-97.336156,42.856802],[-97.341181,42.855882],[-97.359569,42.854816],[-97.361784,42.855123],[-97.368643,42.858419],[-97.375337,42.862991],[-97.376695,42.865195],[-97.393966,42.86425],[-97.399303,42.864835],[-97.404442,42.86775],[-97.408315,42.868334],[-97.413422,42.867351],[-97.417066,42.865918],[-97.42319,42.861168],[-97.425087,42.858221],[-97.425543,42.856658],[-97.431951,42.851542],[-97.439114,42.84711],[-97.442279,42.846224],[-97.452177,42.846048],[-97.456383,42.846937],[-97.458772,42.848322],[-97.461666,42.849176],[-97.470529,42.850455],[-97.484921,42.850368],[-97.49149,42.851625],[-97.49623,42.853231],[-97.499088,42.855197],[-97.500341,42.85722],[-97.504847,42.858477],[-97.515948,42.853752],[-97.531867,42.850105],[-97.547473,42.848028],[-97.561928,42.847552],[-97.574551,42.849653],[-97.591916,42.853837],[-97.59926,42.856229],[-97.603762,42.858329],[-97.611811,42.858367],[-97.620276,42.856598],[-97.635412,42.851449],[-97.646719,42.847602],[-97.657846,42.844626],[-97.668294,42.843031],[-97.686506,42.842435],[-97.70103,42.843797],[-97.72045,42.847439],[-97.750343,42.849493],[-97.753801,42.849012],[-97.76473,42.8491],[-97.774456,42.849774],[-97.788462,42.853375],[-97.801344,42.858003],[-97.817075,42.861781],[-97.825804,42.867532],[-97.828496,42.868797],[-97.834172,42.868794],[-97.84527,42.867734],[-97.857957,42.865093],[-97.865695,42.86286],[-97.875345,42.858724],[-97.877003,42.854394],[-97.876887,42.852663],[-97.875651,42.850307],[-97.875849,42.847725],[-97.878976,42.843673],[-97.879878,42.835395],[-97.884864,42.826231],[-97.888562,42.817251],[-97.890241,42.815113],[-97.89439,42.811682],[-97.905001,42.798872],[-97.908983,42.794909],[-97.915947,42.789901],[-97.921434,42.788352],[-97.932962,42.778203],[-97.936716,42.775754],[-97.950147,42.769619],[-97.953492,42.76904],[-97.962044,42.768708],[-97.977588,42.769923],[-97.992507,42.765111],[-98.000348,42.763256],[-98.002532,42.763264],[-98.005739,42.764167],[-98.013046,42.762299],[-98.017228,42.762411],[-98.035034,42.764205],[-98.037114,42.765724],[-98.042011,42.767316],[-98.044688,42.768029],[-98.051624,42.768769],[-98.056625,42.770781],[-98.059838,42.772772],[-98.061254,42.777954],[-98.062913,42.781119],[-98.067388,42.784759],[-98.082782,42.794342],[-98.087819,42.795789],[-98.094574,42.799309],[-98.1047,42.808475],[-98.107688,42.810633],[-98.127489,42.820127],[-98.129038,42.821228],[-98.137912,42.832728],[-98.146933,42.839823],[-98.14806,42.840013],[-98.153079,42.839065],[-98.163262,42.837143],[-98.167523,42.836925],[-98.171113,42.837114],[-98.189765,42.841628],[-98.204506,42.846845],[-98.219826,42.853157],[-98.224231,42.855521],[-98.226512,42.857742],[-98.231922,42.86114],[-98.24683,42.868397],[-98.24982,42.871843],[-98.25181,42.872824],[-98.258276,42.87439],[-98.268363,42.874152],[-98.280007,42.874996],[-98.297465,42.880059],[-98.309769,42.88256],[-98.319513,42.88454],[-98.325864,42.8865],[-98.329663,42.888441],[-98.332423,42.890501],[-98.333497,42.891532],[-98.335846,42.895654],[-98.33799,42.89776],[-98.342408,42.900847],[-98.34623,42.902747],[-98.358047,42.907516],[-98.375358,42.913132],[-98.386445,42.918407],[-98.399298,42.922465],[-98.407824,42.92575],[-98.42074,42.931924],[-98.426287,42.9321],[-98.430934,42.931504],[-98.434503,42.929227],[-98.437285,42.928393],[-98.439743,42.928195],[-98.444145,42.929242],[-98.445861,42.93062],[-98.447047,42.935117],[-98.448309,42.936428],[-98.45222,42.938389],[-98.458515,42.943374],[-98.461673,42.944427],[-98.467356,42.947556],[-98.478919,42.963539],[-98.490483,42.977948],[-98.495747,42.988032],[-98.49855,42.99856],[-98.565072,42.9984],[-98.568936,42.998537],[-98.663712,42.998444],[-98.665613,42.998536],[-98.742394,42.998343],[-98.764378,42.998323],[-98.801304,42.998241],[-98.823989,42.99831],[-98.899944,42.998122],[-98.903154,42.998306],[-98.919136,42.998242],[-98.919234,42.998241],[-98.962081,42.998286],[-99.00037,42.998273],[-99.021909,42.998365],[-99.0223,42.998237],[-99.080011,42.998357],[-99.08188,42.998288],[-99.135961,42.998301],[-99.139045,42.998508],[-99.151143,42.998344],[-99.161388,42.998465],[-99.195199,42.998107],[-99.234462,42.998281],[-99.254297,42.998138],[-99.254454,42.99814],[-99.26271,42.998234],[-99.288045,42.998152],[-99.347283,42.998217],[-99.368628,42.99814],[-99.371121,42.998093],[-99.374268,42.998047],[-99.395568,42.99817],[-99.471353,42.997967],[-99.474531,42.998081],[-99.490798,42.998143],[-99.494287,42.998118],[-99.534049,42.998041],[-99.535375,42.998038],[-99.569277,42.997995],[-99.699234,42.99788],[-99.701446,42.997994],[-99.719177,42.997899],[-99.726788,42.997892],[-99.743138,42.997912],[-99.768524,42.998125],[-99.788247,42.998016],[-99.800306,42.997972],[-99.803328,42.998064],[-99.809373,42.998178],[-99.821868,42.997995],[-99.850037,42.998171],[-99.859945,42.997962],[-99.869885,42.998094],[-99.877697,42.998094],[-99.918401,42.998057],[-99.927645,42.998113],[-99.950411,42.998286],[-99.950921,42.998291],[-99.961204,42.998335],[-100.004757,42.998392],[-100.027815,42.998424],[-100.034389,42.998425],[-100.119297,42.998689],[-100.126427,42.99871],[-100.126896,42.998711],[-100.198412,42.998542],[-100.198413,42.998542],[-100.198434,42.998542],[-100.277793,42.998674],[-100.283713,42.998767],[-100.349548,42.99874],[-100.355406,42.99876],[-100.472742,42.999288],[-100.534335,42.999017],[-100.544018,42.998795],[-100.553131,42.998721],[-100.625414,42.998584],[-100.631728,42.998092],[-100.867473,42.998266],[-100.887898,42.997881],[-100.906714,42.99791],[-100.958365,42.997796],[-100.96419,42.997886],[-101.000429,42.99753],[-101.043147,42.99796],[-101.226494,42.997901],[-101.226853,42.997896],[-101.228104,42.997874],[-101.229203,42.997854],[-101.230325,42.997899],[-101.500424,42.997115],[-101.625424,42.996238],[-101.713573,42.99662],[-101.849982,42.999329],[-102.082486,42.999356],[-102.082546,42.999356],[-102.440547,42.999609],[-102.487329,42.999559],[-102.792111,42.99998],[-103.000897,43.000474],[-103.13174,43.000783],[-103.132955,43.000784],[-103.340829,43.000879],[-103.404579,43.000737],[-103.5051,43.00077],[-103.505219,43.00077],[-103.506151,43.000771],[-103.506556,43.000771],[-103.576329,43.000807],[-103.576966,43.000746],[-103.618334,43.000679],[-103.652919,43.001409],[-103.715084,43.000983],[-103.813939,43.001378],[-103.815573,43.001279],[-103.924921,43.000918],[-103.96627,43.001708],[-103.991077,43.001691],[-104.053127,43.000585],[-104.053876,43.289801],[-104.053884,43.297047],[-104.054218,43.30437],[-104.054403,43.325914],[-104.054614,43.390949],[-104.054766,43.428914],[-104.054779,43.477815],[-104.054786,43.503072],[-104.054787,43.503328],[-104.055032,43.558603],[-104.05484,43.579368],[-104.054885,43.583512],[-104.054902,43.583852],[-104.055133,43.747105],[-104.055138,43.750421],[-104.055488,43.853476],[-104.055488,43.853477],[-104.055077,43.936535],[-104.05495,43.93809],[-104.054562,44.141081],[-104.054487,44.180381]]]}}]} diff --git a/Where/RegionKit/Sources/Resources/regions/us-TN.geojson b/Where/RegionKit/Sources/Resources/regions/us-TN.geojson new file mode 100644 index 00000000..e2f9cd85 --- /dev/null +++ b/Where/RegionKit/Sources/Resources/regions/us-TN.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"region":"us-TN","name":"Tennessee"},"geometry":{"type":"Polygon","coordinates":[[[-83.472108,36.597284],[-83.374904,36.597386],[-83.2763,36.598187],[-83.261099,36.593887],[-83.250304,36.593935],[-83.249899,36.593898],[-83.248933,36.593827],[-83.028357,36.593893],[-83.02725,36.593847],[-82.985124,36.59373],[-82.888013,36.593461],[-82.830433,36.593761],[-82.69578,36.593698],[-82.679879,36.593698],[-82.609176,36.594099],[-82.561074,36.5948],[-82.559774,36.5948],[-82.554294,36.594876],[-82.487238,36.595822],[-82.478668,36.595588],[-82.466613,36.594481],[-82.296995,36.595704],[-82.294152,36.595706],[-82.243196,36.595734],[-82.226653,36.595743],[-82.225716,36.595744],[-82.223445,36.595721],[-82.221713,36.595814],[-82.211005,36.59586],[-82.210497,36.595772],[-82.188491,36.595179],[-82.18074,36.594928],[-82.177247,36.594768],[-82.173982,36.594607],[-82.150727,36.594673],[-82.148569,36.594718],[-82.14607,36.594712],[-81.934144,36.594213],[-81.922644,36.616213],[-81.826742,36.614215],[-81.73694,36.612379],[-81.6469,36.611918],[-81.677535,36.588117],[-81.680137,36.585518],[-81.679036,36.578918],[-81.677236,36.574406],[-81.677036,36.570718],[-81.679936,36.568618],[-81.686436,36.567918],[-81.690236,36.568718],[-81.692506,36.565748],[-81.692167,36.562695],[-81.690132,36.559643],[-81.689115,36.555912],[-81.69003,36.552154],[-81.693844,36.549083],[-81.697539,36.544359],[-81.699962,36.539714],[-81.699962,36.536829],[-81.707963,36.536209],[-81.708262,36.532113],[-81.707573,36.526101],[-81.702543,36.520317],[-81.700553,36.51519],[-81.700093,36.514158],[-81.699601,36.512883],[-81.699446,36.511504],[-81.697744,36.508448],[-81.697829,36.507544],[-81.69729,36.504887],[-81.69797,36.504063],[-81.699923,36.500865],[-81.700238,36.500475],[-81.699928,36.498018],[-81.698265,36.497221],[-81.697261,36.496141],[-81.696835,36.493393],[-81.695907,36.49158],[-81.697287,36.484738],[-81.696281,36.475499],[-81.694829,36.474463],[-81.694533,36.473283],[-81.695311,36.467912],[-81.697975,36.464741],[-81.699223,36.463959],[-81.701076,36.464212],[-81.708247,36.462217],[-81.71489,36.45722],[-81.715082,36.453365],[-81.714277,36.450978],[-81.714212,36.447045],[-81.715229,36.444332],[-81.715569,36.44128],[-81.715229,36.438567],[-81.715229,36.436532],[-81.716925,36.43314],[-81.717939,36.428762],[-81.720734,36.422537],[-81.729924,36.415422],[-81.734312,36.413342],[-81.738292,36.410756],[-81.739648,36.406686],[-81.739648,36.401599],[-81.737952,36.39719],[-81.733877,36.39457],[-81.731509,36.392103],[-81.730491,36.390407],[-81.729813,36.388033],[-81.730737,36.382943],[-81.732187,36.379894],[-81.732865,36.376502],[-81.731178,36.374062],[-81.726082,36.368893],[-81.724047,36.364293],[-81.724047,36.360901],[-81.723708,36.358527],[-81.722691,36.354797],[-81.721334,36.353101],[-81.718282,36.350388],[-81.713873,36.34937],[-81.707785,36.346007],[-81.705299,36.341852],[-81.705966,36.338496],[-81.707438,36.335171],[-81.713194,36.334108],[-81.717186,36.336169],[-81.721015,36.338645],[-81.725938,36.340364],[-81.730976,36.341187],[-81.7349,36.340891],[-81.739498,36.339757],[-81.744461,36.337778],[-81.747842,36.337356],[-81.75442,36.337044],[-81.757962,36.3375],[-81.760675,36.338178],[-81.762371,36.338856],[-81.766102,36.338517],[-81.768977,36.341042],[-81.777972,36.346318],[-81.781318,36.347656],[-81.784077,36.347674],[-81.787468,36.348692],[-81.790181,36.351744],[-81.791877,36.354797],[-81.795269,36.357849],[-81.800812,36.358073],[-81.808255,36.354121],[-81.812904,36.351066],[-81.822493,36.348819],[-81.833202,36.347339],[-81.841268,36.343321],[-81.845638,36.34036],[-81.850889,36.3375],[-81.857333,36.334787],[-81.863148,36.330209],[-81.874336,36.31919],[-81.876182,36.316075],[-81.879382,36.313767],[-81.887243,36.309193],[-81.894569,36.307183],[-81.897701,36.307446],[-81.908137,36.302013],[-81.918113,36.28711],[-81.932994,36.264881],[-81.938897,36.256067],[-81.960101,36.228131],[-82.02664,36.130222],[-82.02634,36.129222],[-82.02874,36.124322],[-82.033141,36.120422],[-82.037941,36.121122],[-82.043941,36.125421],[-82.054142,36.126821],[-82.056042,36.123921],[-82.056042,36.120721],[-82.061342,36.113121],[-82.067142,36.11202],[-82.079743,36.10652],[-82.080143,36.10572],[-82.080303,36.105728],[-82.085943,36.10602],[-82.098544,36.105719],[-82.101644,36.106219],[-82.105444,36.108119],[-82.109145,36.107218],[-82.115245,36.104618],[-82.127146,36.104417],[-82.130646,36.106417],[-82.137974,36.119576],[-82.136546,36.123717],[-82.136547,36.128817],[-82.140847,36.136216],[-82.144147,36.144216],[-82.147948,36.149516],[-82.155948,36.148115],[-82.160883,36.146548],[-82.169249,36.146614],[-82.172149,36.146414],[-82.173849,36.145314],[-82.17561,36.14387],[-82.178861,36.143296],[-82.182549,36.143714],[-82.18365,36.144414],[-82.18475,36.145414],[-82.18785,36.147886],[-82.19195,36.148813],[-82.19535,36.150013],[-82.199251,36.152713],[-82.201812,36.154963],[-82.204872,36.157067],[-82.211251,36.159012],[-82.213852,36.159112],[-82.218451,36.157832],[-82.222052,36.156911],[-82.223232,36.154772],[-82.224852,36.150011],[-82.228288,36.146622],[-82.234807,36.14172],[-82.235479,36.140748],[-82.236415,36.139926],[-82.237737,36.139189],[-82.241553,36.137111],[-82.243353,36.134311],[-82.244461,36.132777],[-82.247521,36.130865],[-82.251853,36.13221],[-82.253253,36.13371],[-82.256319,36.133925],[-82.260353,36.13371],[-82.263354,36.13011],[-82.26569,36.127614],[-82.26875,36.12704],[-82.270954,36.12761],[-82.274054,36.12941],[-82.278654,36.12851],[-82.280354,36.12881],[-82.288455,36.13541],[-82.289455,36.13571],[-82.297655,36.13351],[-82.302855,36.13131],[-82.307255,36.12851],[-82.308655,36.12651],[-82.318156,36.12091],[-82.321448,36.119551],[-82.325169,36.119363],[-82.329177,36.117427],[-82.332289,36.116935],[-82.336756,36.114909],[-82.346857,36.115209],[-82.348422,36.115929],[-82.349957,36.117109],[-82.355157,36.115609],[-82.360357,36.111609],[-82.360919,36.110614],[-82.366566,36.10765],[-82.371383,36.106388],[-82.375558,36.105609],[-82.378758,36.102809],[-82.380458,36.099309],[-82.389958,36.096909],[-82.404458,36.087609],[-82.409458,36.083409],[-82.416671,36.072758],[-82.460658,36.007809],[-82.464558,36.006508],[-82.47419,36.000108],[-82.482292,35.997823],[-82.483498,35.996284],[-82.483666,35.993866],[-82.484678,35.992849],[-82.487411,35.991634],[-82.487451,35.991557],[-82.500206,35.982561],[-82.505384,35.97768],[-82.507068,35.977475],[-82.512598,35.975664],[-82.516444,35.975958],[-82.52066,35.974633],[-82.522702,35.973436],[-82.531292,35.972188],[-82.534763,35.969887],[-82.539273,35.969115],[-82.542463,35.967994],[-82.549682,35.964275],[-82.553192,35.960627],[-82.557874,35.953901],[-82.567503,35.955552],[-82.57517,35.958384],[-82.576678,35.959255],[-82.577719,35.964196],[-82.581003,35.965557],[-82.591977,35.966385],[-82.59486,35.965347],[-82.60037,35.964626],[-82.607761,35.966023],[-82.610889,35.967409],[-82.611602,35.971418],[-82.610885,35.974442],[-82.60674,35.984446],[-82.604239,35.987319],[-82.606944,35.99217],[-82.612604,35.993488],[-82.613028,35.994],[-82.615062,36.000306],[-82.614362,36.003506],[-82.613862,36.004706],[-82.611862,36.006206],[-82.604327,36.018187],[-82.600089,36.021774],[-82.595525,36.026012],[-82.594873,36.029598],[-82.596177,36.03188],[-82.598785,36.034162],[-82.600741,36.037422],[-82.602877,36.039833],[-82.606163,36.041006],[-82.609663,36.044906],[-82.613563,36.046406],[-82.618164,36.047005],[-82.618064,36.051205],[-82.617264,36.054205],[-82.618664,36.056105],[-82.628365,36.062105],[-82.632265,36.065705],[-82.637165,36.065805],[-82.643565,36.062805],[-82.650165,36.057805],[-82.654815,36.056225],[-82.657249,36.056636],[-82.662665,36.055005],[-82.668365,36.052905],[-82.672965,36.050405],[-82.683565,36.046104],[-82.684765,36.045004],[-82.685565,36.042004],[-82.688865,36.038604],[-82.701065,36.034404],[-82.703165,36.032404],[-82.707465,36.030104],[-82.715165,36.028604],[-82.715565,36.026904],[-82.715365,36.024253],[-82.715965,36.022804],[-82.725065,36.018204],[-82.727865,36.018504],[-82.731865,36.017604],[-82.750065,36.006004],[-82.754465,36.004304],[-82.759165,36.004203],[-82.765365,36.003003],[-82.776001,36.000103],[-82.777283,35.998811],[-82.778589,35.997001],[-82.779397,35.992511],[-82.785267,35.987927],[-82.785558,35.977795],[-82.781809,35.974562],[-82.780319,35.974365],[-82.778625,35.974792],[-82.776434,35.973886],[-82.774905,35.971978],[-82.777751,35.966912],[-82.783085,35.964982],[-82.784536,35.963905],[-82.785356,35.96253],[-82.785191,35.959231],[-82.787465,35.952163],[-82.800431,35.944155],[-82.805851,35.937938],[-82.806174,35.936908],[-82.805771,35.935316],[-82.802769,35.930129],[-82.802892,35.929013],[-82.804997,35.927168],[-82.809038,35.927241],[-82.811067,35.926801],[-82.81613,35.923986],[-82.821861,35.921839],[-82.82257,35.922531],[-82.826045,35.929721],[-82.828933,35.932932],[-82.830112,35.932972],[-82.833268,35.934993],[-82.839994,35.940166],[-82.841259,35.941721],[-82.849849,35.947772],[-82.852554,35.949089],[-82.860724,35.94743],[-82.869315,35.950565],[-82.870666,35.95199],[-82.874159,35.952698],[-82.883933,35.949192],[-82.892659,35.945182],[-82.896947,35.944624],[-82.898505,35.945101],[-82.898506,35.9451],[-82.901713,35.937713],[-82.901577,35.931446],[-82.902374,35.929852],[-82.903436,35.928524],[-82.906358,35.927196],[-82.910608,35.92693],[-82.911405,35.925868],[-82.911936,35.921618],[-82.911671,35.914711],[-82.906917,35.907397],[-82.904543,35.897011],[-82.901843,35.89293],[-82.901843,35.890274],[-82.903702,35.887617],[-82.903968,35.885492],[-82.901046,35.882305],[-82.899718,35.879914],[-82.899186,35.877524],[-82.899718,35.874602],[-82.901301,35.872593],[-82.916452,35.866102],[-82.918312,35.863977],[-82.919374,35.860523],[-82.920974,35.851073],[-82.919108,35.844851],[-82.920171,35.841664],[-82.923358,35.839273],[-82.927569,35.838586],[-82.931859,35.836351],[-82.933221,35.832915],[-82.937437,35.82732],[-82.94383,35.825638],[-82.945515,35.824662],[-82.952026,35.816183],[-82.955751,35.809802],[-82.956127,35.807874],[-82.95895,35.803323],[-82.961724,35.800491],[-82.962842,35.795126],[-82.962206,35.792755],[-82.962818,35.791853],[-82.964088,35.78998],[-82.969648,35.789663],[-82.974463,35.78679],[-82.978414,35.78261],[-82.98397,35.77801],[-82.992053,35.773948],[-82.995803,35.773128],[-83.001473,35.773752],[-83.006067,35.778404],[-83.012377,35.779818],[-83.036209,35.787405],[-83.03951,35.786777],[-83.042666,35.785407],[-83.044108,35.785347],[-83.046307,35.785853],[-83.04853,35.787706],[-83.052677,35.789548],[-83.05834,35.788241],[-83.061507,35.786774],[-83.063975,35.786643],[-83.072221,35.78831],[-83.07403,35.790016],[-83.078732,35.789472],[-83.085205,35.785794],[-83.086054,35.783627],[-83.097193,35.776067],[-83.100225,35.774765],[-83.100329,35.774804],[-83.100233,35.774745],[-83.10232,35.775071],[-83.104584,35.77423],[-83.104805,35.77348],[-83.110491,35.770913],[-83.113662,35.770211],[-83.120183,35.766234],[-83.127707,35.768093],[-83.14697,35.765124],[-83.14808,35.764295],[-83.15408,35.76428],[-83.159208,35.764892],[-83.161537,35.763363],[-83.164909,35.759965],[-83.165427,35.7587],[-83.16477,35.754618],[-83.170173,35.746107],[-83.171867,35.745978],[-83.177499,35.743913],[-83.180836,35.738882],[-83.182097,35.735492],[-83.185685,35.72989],[-83.18837,35.729798],[-83.198267,35.725494],[-83.200126,35.725331],[-83.203752,35.726553],[-83.214501,35.724434],[-83.216972,35.725752],[-83.219981,35.726601],[-83.222627,35.726138],[-83.232042,35.726098],[-83.240669,35.72676],[-83.242132,35.723638],[-83.243501,35.722533],[-83.251247,35.719916],[-83.255351,35.71623],[-83.255489,35.714974],[-83.254481,35.712362],[-83.25423,35.709478],[-83.255108,35.707096],[-83.256111,35.703961],[-83.255126,35.701493],[-83.25561,35.696061],[-83.258117,35.691924],[-83.261252,35.689165],[-83.26539,35.687535],[-83.269277,35.685403],[-83.271378,35.681476],[-83.27548,35.679463],[-83.281178,35.677802],[-83.289165,35.674509],[-83.290682,35.672638],[-83.291075,35.667131],[-83.293676,35.661919],[-83.297154,35.65775],[-83.302279,35.656064],[-83.31049,35.654452],[-83.312757,35.654809],[-83.317905,35.659015],[-83.321101,35.662815],[-83.334965,35.665471],[-83.337683,35.663074],[-83.347262,35.660474],[-83.349255,35.660854],[-83.35156,35.659858],[-83.353776,35.657478],[-83.355537,35.654632],[-83.355367,35.652338],[-83.356202,35.650019],[-83.358209,35.647277],[-83.366941,35.638728],[-83.368162,35.638202],[-83.370369,35.638204],[-83.372174,35.63931],[-83.373712,35.638935],[-83.376785,35.636638],[-83.377984,35.634496],[-83.380251,35.634705],[-83.388722,35.633584],[-83.388602,35.632352],[-83.392652,35.625095],[-83.396626,35.62272],[-83.403569,35.621313],[-83.406061,35.620185],[-83.411852,35.61692],[-83.42037,35.613467],[-83.420964,35.611596],[-83.421576,35.611186],[-83.432298,35.609941],[-83.441197,35.611739],[-83.445802,35.611803],[-83.447137,35.608664],[-83.452431,35.602918],[-83.455722,35.598045],[-83.462678,35.5926],[-83.471362,35.590304],[-83.472668,35.589125],[-83.472684,35.586552],[-83.475367,35.584775],[-83.479082,35.583316],[-83.479317,35.582764],[-83.478523,35.579202],[-83.480617,35.576633],[-83.485527,35.568204],[-83.491647,35.566867],[-83.498335,35.562981],[-83.517564,35.562871],[-83.520469,35.565602],[-83.534169,35.564668],[-83.540826,35.565702],[-83.552167,35.564346],[-83.559264,35.564796],[-83.56609,35.565993],[-83.572424,35.565518],[-83.576345,35.564019],[-83.582,35.562684],[-83.58559,35.562941],[-83.58714,35.564017],[-83.587827,35.566963],[-83.59427,35.572912],[-83.601854,35.578228],[-83.604806,35.57934],[-83.608889,35.579451],[-83.615312,35.574026],[-83.629734,35.567889],[-83.632358,35.569093],[-83.635832,35.568169],[-83.637182,35.567096],[-83.640498,35.566075],[-83.645481,35.565825],[-83.653159,35.568309],[-83.657933,35.569211],[-83.660925,35.568207],[-83.662957,35.569138],[-83.666272,35.569389],[-83.673093,35.568974],[-83.676268,35.570289],[-83.684154,35.568848],[-83.697827,35.568352],[-83.700663,35.567621],[-83.702099,35.567634],[-83.703846,35.568476],[-83.707199,35.568533],[-83.720787,35.563347],[-83.723459,35.561874],[-83.732947,35.563149],[-83.735669,35.565455],[-83.749894,35.561146],[-83.756917,35.563604],[-83.759675,35.562492],[-83.764606,35.561538],[-83.771736,35.562118],[-83.773092,35.557465],[-83.780129,35.550387],[-83.786802,35.5472],[-83.802434,35.541588],[-83.808713,35.536415],[-83.809798,35.53431],[-83.82559,35.523829],[-83.827428,35.524653],[-83.831895,35.524766],[-83.840203,35.52156],[-83.848502,35.519259],[-83.853898,35.521059],[-83.859261,35.521851],[-83.866413,35.52091],[-83.87263,35.521145],[-83.880074,35.518745],[-83.882563,35.517182],[-83.884262,35.512754],[-83.892074,35.503089],[-83.893031,35.502253],[-83.895669,35.501868],[-83.901381,35.496553],[-83.901403,35.495278],[-83.9002,35.494191],[-83.900338,35.493095],[-83.901527,35.491026],[-83.905612,35.48906],[-83.90804,35.484397],[-83.909265,35.479714],[-83.911773,35.476028],[-83.916801,35.473612],[-83.919564,35.473367],[-83.924895,35.473884],[-83.929743,35.47333],[-83.937015,35.471511],[-83.942172,35.467254],[-83.942987,35.465084],[-83.949389,35.461164],[-83.952814,35.460645],[-83.952882,35.460635],[-83.955416,35.463456],[-83.957821,35.464211],[-83.961053,35.464143],[-83.961056,35.463738],[-83.961054,35.462838],[-83.9614,35.459496],[-83.965229,35.455399],[-83.966656,35.454941],[-83.969845,35.455443],[-83.971439,35.455145],[-83.973171,35.452582],[-83.973057,35.448921],[-83.978286,35.44782],[-83.983233,35.44235],[-83.992568,35.438065],[-83.996619,35.433761],[-83.998154,35.430786],[-83.999242,35.42614],[-83.999906,35.425201],[-84.00225,35.422548],[-84.005306,35.420883],[-84.011706,35.415383],[-84.014707,35.411983],[-84.017607,35.411183],[-84.020633,35.409843],[-84.021782,35.407418],[-84.021507,35.404183],[-84.018807,35.399783],[-84.018107,35.399083],[-84.015207,35.398483],[-84.014107,35.397783],[-84.008207,35.390383],[-84.008207,35.389683],[-84.010607,35.386183],[-84.011207,35.384383],[-84.009807,35.382683],[-84.008307,35.378883],[-84.007586,35.371661],[-84.015121,35.364868],[-84.019193,35.359569],[-84.020188,35.357503],[-84.023456,35.354217],[-84.024756,35.353896],[-84.035343,35.350833],[-84.037494,35.34985],[-84.038081,35.348363],[-84.03243,35.336845],[-84.031272,35.336438],[-84.029377,35.333197],[-84.030409,35.330483],[-84.032209,35.328583],[-84.03245,35.32653],[-84.032479,35.325318],[-84.03551,35.317783],[-84.03571,35.312883],[-84.03501,35.311983],[-84.02871,35.310383],[-84.02651,35.309283],[-84.02141,35.301383],[-84.02351,35.295783],[-84.02791,35.292783],[-84.02911,35.292176],[-84.036011,35.288683],[-84.042711,35.278383],[-84.052612,35.269982],[-84.055712,35.268182],[-84.063712,35.266682],[-84.070612,35.263782],[-84.074713,35.263182],[-84.081117,35.261146],[-84.082813,35.258882],[-84.082913,35.257082],[-84.092213,35.249981],[-84.097508,35.247382],[-84.10227,35.248115],[-84.103135,35.248781],[-84.108449,35.25033],[-84.113314,35.248981],[-84.114414,35.249081],[-84.115048,35.249765],[-84.115279,35.250438],[-84.12115,35.250644],[-84.124915,35.24983],[-84.125615,35.249381],[-84.126815,35.246481],[-84.127315,35.244414],[-84.12889,35.243679],[-84.13057,35.243364],[-84.133299,35.243679],[-84.136415,35.24478],[-84.139715,35.24618],[-84.143124,35.246879],[-84.155316,35.24648],[-84.158916,35.24588],[-84.160416,35.24388],[-84.161316,35.24348],[-84.168616,35.24578],[-84.170416,35.245779],[-84.177016,35.242379],[-84.178516,35.240679],[-84.188417,35.239979],[-84.192217,35.243079],[-84.199117,35.243679],[-84.200117,35.244679],[-84.201717,35.247779],[-84.202879,35.255772],[-84.205317,35.258279],[-84.205517,35.259679],[-84.211818,35.266078],[-84.216318,35.267978],[-84.223718,35.269078],[-84.227818,35.267878],[-84.231818,35.264778],[-84.240219,35.255178],[-84.243019,35.253178],[-84.252819,35.249477],[-84.257719,35.246177],[-84.260319,35.241877],[-84.27542,35.234777],[-84.28252,35.227877],[-84.28322,35.226577],[-84.287982,35.224468],[-84.289621,35.224677],[-84.29024,35.225572],[-84.292321,35.206677],[-84.295238,35.182442],[-84.298006,35.167468],[-84.304809,35.121702],[-84.308437,35.093173],[-84.308576,35.092761],[-84.310022,35.078883],[-84.321869,34.988408],[-84.393935,34.988068],[-84.394903,34.98803],[-84.509052,34.988033],[-84.509886,34.98801],[-84.621483,34.988329],[-84.624933,34.987978],[-84.727434,34.98802],[-84.731022,34.988088],[-84.775852,34.9878],[-84.808127,34.987592],[-84.809184,34.987569],[-84.810477,34.987607],[-84.810742,34.987615],[-84.817279,34.987753],[-84.820478,34.987913],[-84.82401,34.987707],[-84.831799,34.988004],[-84.858032,34.987746],[-84.861314,34.987791],[-84.939306,34.987916],[-84.94442,34.987864],[-84.955623,34.98783],[-84.976973,34.987669],[-84.97986,34.987647],[-85.045052,34.986859],[-85.045183,34.986883],[-85.180553,34.986075],[-85.185905,34.985995],[-85.216554,34.985675],[-85.217854,34.985675],[-85.220554,34.985575],[-85.221854,34.985475],[-85.230354,34.985475],[-85.235555,34.985475],[-85.254955,34.985175],[-85.265055,34.985075],[-85.275856,34.984975],[-85.277556,34.984975],[-85.2945,34.984651],[-85.301488,34.984475],[-85.305457,34.984475],[-85.308257,34.984375],[-85.363919,34.983375],[-85.384967,34.982987],[-85.466713,34.982972],[-85.474105,34.983063],[-85.605165,34.984678],[-85.824411,34.988142],[-85.828724,34.988165],[-85.863935,34.988379],[-86.311274,34.991098],[-86.318761,34.991147],[-86.397203,34.99166],[-86.433927,34.991085],[-86.467798,34.990692],[-86.528485,34.990677],[-86.555864,34.990971],[-86.571217,34.991011],[-86.588962,34.991197],[-86.600039,34.99124],[-86.641212,34.99174],[-86.65961,34.991792],[-86.670853,34.992],[-86.67436,34.992001],[-86.676726,34.99207],[-86.677616,34.99207],[-86.783628,34.991925],[-86.783648,34.991925],[-86.820657,34.991764],[-86.836306,34.991764],[-86.83637,34.991764],[-86.846466,34.99186],[-86.849794,34.991924],[-86.862147,34.991956],[-86.96712,34.9944],[-86.970236,34.994546],[-86.972613,34.99461],[-86.974412,34.994513],[-87.000007,34.995121],[-87.011174,34.995162],[-87.210759,34.999024],[-87.216683,34.999148],[-87.224053,34.999327],[-87.230544,34.999484],[-87.270014,35.00039],[-87.299185,35.000915],[-87.349251,35.001662],[-87.359281,35.001823],[-87.381071,35.002118],[-87.391314,35.002374],[-87.4174,35.002669],[-87.421543,35.002679],[-87.428613,35.002795],[-87.606178,35.003642],[-87.625025,35.003732],[-87.664123,35.003523],[-87.671405,35.003537],[-87.696834,35.003852],[-87.700543,35.003988],[-87.702321,35.003945],[-87.709491,35.004089],[-87.75889,35.004711],[-87.767602,35.004783],[-87.773586,35.004946],[-87.851886,35.005656],[-87.853411,35.005576],[-87.853528,35.005541],[-87.872626,35.005571],[-87.877742,35.005512],[-87.877969,35.005468],[-87.984916,35.005881],[-88.000032,35.005939],[-88.202959,35.008028],[-88.201987,35.005421],[-88.20082,34.997774],[-88.200064,34.995634],[-88.253825,34.995553],[-88.258111,34.995463],[-88.363531,34.99559],[-88.380508,34.99561],[-88.469801,34.996052],[-88.469877,34.996033],[-88.786612,34.995252],[-88.823049,34.995158],[-88.851037,34.995085],[-88.886979,34.995868],[-88.925241,34.994842],[-89.017127,34.994945],[-89.02654,34.994956],[-89.138997,34.99433],[-89.139136,34.994307],[-89.156827,34.993926],[-89.198288,34.994484],[-89.217433,34.994729],[-89.35268,34.994123],[-89.434954,34.993754],[-89.486897,34.993975],[-89.493739,34.994361],[-89.511153,34.994755],[-89.644282,34.995293],[-89.724324,34.995212],[-89.741785,34.995194],[-89.795187,34.994293],[-89.848488,34.994193],[-89.883365,34.994261],[-89.893402,34.994356],[-90.309297,34.995694],[-90.310298,35.004295],[-90.309877,35.00975],[-90.306897,35.018194],[-90.300697,35.028793],[-90.297296,35.037893],[-90.295596,35.040093],[-90.291996,35.041793],[-90.265296,35.040293],[-90.263796,35.039593],[-90.263396,35.037493],[-90.262396,35.036393],[-90.256495,35.034493],[-90.230611,35.03132],[-90.224791,35.029961],[-90.216258,35.026049],[-90.214382,35.025795],[-90.209397,35.026546],[-90.200124,35.032813],[-90.196095,35.0374],[-90.19686,35.043667],[-90.197146,35.050731],[-90.196583,35.056137],[-90.195133,35.061793],[-90.181387,35.091401],[-90.176843,35.112088],[-90.173603,35.118073],[-90.165328,35.125228],[-90.160058,35.12883],[-90.155994,35.130991],[-90.144691,35.134984],[-90.142794,35.135091],[-90.139024,35.133995],[-90.109393,35.118891],[-90.100593,35.116691],[-90.09061,35.118287],[-90.08671,35.119779],[-90.08342,35.12167],[-90.071192,35.131591],[-90.066591,35.13599],[-90.065392,35.137691],[-90.064612,35.140621],[-90.066482,35.151074],[-90.066958,35.151839],[-90.069402,35.153646],[-90.090371,35.15627],[-90.092944,35.157228],[-90.096549,35.160976],[-90.099777,35.164474],[-90.103216,35.16798],[-90.105525,35.170695],[-90.108075,35.174571],[-90.109177,35.178451],[-90.111091,35.178639],[-90.114214,35.181691],[-90.117393,35.18789],[-90.117542,35.19057],[-90.116182,35.198498],[-90.109076,35.199105],[-90.097408,35.194794],[-90.096466,35.194848],[-90.093285,35.203282],[-90.088597,35.212376],[-90.08412,35.210423],[-90.081173,35.208153],[-90.07682,35.208817],[-90.074547,35.211214],[-90.074271,35.211504],[-90.074155,35.21707],[-90.07492,35.220452],[-90.076879,35.224405],[-90.07875,35.227806],[-90.082939,35.231824],[-90.086322,35.235719],[-90.090892,35.242189],[-90.097947,35.249983],[-90.09949,35.251393],[-90.105093,35.254288],[-90.110106,35.255456],[-90.116493,35.255788],[-90.123593,35.254989],[-90.132116,35.25318],[-90.140394,35.252289],[-90.152094,35.255989],[-90.158865,35.262577],[-90.166594,35.274588],[-90.168794,35.279088],[-90.168871,35.281997],[-90.165194,35.293188],[-90.163812,35.296115],[-90.161225,35.298951],[-90.158913,35.300637],[-90.153394,35.302588],[-90.149794,35.303288],[-90.139504,35.298828],[-90.132393,35.300488],[-90.123707,35.30453],[-90.121864,35.304535],[-90.117219,35.303384],[-90.109093,35.304987],[-90.106824,35.324618],[-90.103862,35.332405],[-90.110293,35.342786],[-90.108817,35.342587],[-90.107312,35.343143],[-90.100294,35.351619],[-90.096825,35.357216],[-90.093492,35.360486],[-90.090492,35.360886],[-90.087903,35.36327],[-90.083824,35.368798],[-90.074992,35.384152],[-90.077971,35.384501],[-90.07993,35.385272],[-90.087743,35.390838],[-90.093589,35.393333],[-90.09665,35.395257],[-90.104842,35.401487],[-90.106775,35.403339],[-90.110543,35.408595],[-90.112504,35.410153],[-90.116902,35.411692],[-90.130475,35.413745],[-90.135125,35.412977],[-90.137881,35.41151],[-90.14166,35.408563],[-90.143448,35.406671],[-90.145085,35.403757],[-90.146191,35.399468],[-90.14587,35.395079],[-90.143475,35.387602],[-90.13551,35.376668],[-90.144924,35.374633],[-90.166246,35.374745],[-90.172388,35.377681],[-90.178341,35.382092],[-90.179265,35.385194],[-90.1707,35.410065],[-90.170599,35.418352],[-90.169002,35.421853],[-90.14018,35.436484],[-90.129448,35.441931],[-90.123142,35.459853],[-90.120619,35.465741],[-90.11839,35.468791],[-90.114412,35.472467],[-90.107723,35.476935],[-90.101759,35.476889],[-90.098719,35.478595],[-90.085009,35.478835],[-90.080128,35.476844],[-90.072154,35.470752],[-90.067798,35.466224],[-90.067138,35.464833],[-90.067206,35.460957],[-90.071327,35.450338],[-90.074063,35.439611],[-90.074082,35.433983],[-90.070549,35.423291],[-90.062018,35.41518],[-90.069283,35.408306],[-90.054585,35.389604],[-90.054451,35.38965],[-90.044856,35.392964],[-90.041563,35.39662],[-90.045104,35.397317],[-90.056644,35.403786],[-90.046598,35.412966],[-90.045306,35.415435],[-90.044216,35.419231],[-90.04264,35.421237],[-90.04057,35.422925],[-90.031584,35.427662],[-90.031267,35.431576],[-90.02931,35.435245],[-90.02737,35.43789],[-90.026584,35.440103],[-90.026899,35.444869],[-90.026604,35.447788],[-90.024247,35.45426],[-90.022064,35.457375],[-90.018842,35.464816],[-90.018998,35.467803],[-90.020386,35.470257],[-90.034976,35.480705],[-90.043517,35.492298],[-90.045805,35.496533],[-90.048519,35.504357],[-90.050277,35.515275],[-90.04909,35.522257],[-90.046227,35.529592],[-90.044748,35.531657],[-90.041962,35.537468],[-90.039744,35.548041],[-90.037615,35.550329],[-90.032938,35.55344],[-90.02862,35.555249],[-90.023903,35.556336],[-90.017312,35.555996],[-90.011262,35.559105],[-90.008293,35.560065],[-89.998996,35.56116],[-89.992975,35.560774],[-89.989363,35.560043],[-89.97631,35.553872],[-89.958498,35.541703],[-89.956706,35.539369],[-89.955641,35.534518],[-89.95578,35.533214],[-89.957739,35.530125],[-89.957715,35.527192],[-89.956347,35.525594],[-89.951248,35.521866],[-89.94801,35.52009],[-89.945026,35.519388],[-89.933614,35.518538],[-89.923161,35.514428],[-89.919331,35.51387],[-89.9154,35.515119],[-89.911931,35.51741],[-89.909022,35.520548],[-89.90766,35.522944],[-89.903882,35.534175],[-89.904392,35.535701],[-89.905582,35.536774],[-89.908826,35.538031],[-89.909205,35.538164],[-89.910787,35.538718],[-89.910885,35.541072],[-89.909923,35.544037],[-89.910789,35.547515],[-89.914177,35.549713],[-89.917424,35.550308],[-89.924145,35.550561],[-89.929101,35.551545],[-89.941393,35.556555],[-89.944754,35.560308],[-89.946911,35.56358],[-89.954196,35.57605],[-89.95669,35.581426],[-89.957924,35.585499],[-89.957896,35.587261],[-89.956749,35.590511],[-89.954145,35.594264],[-89.951147,35.597491],[-89.945405,35.601611],[-89.9325,35.607865],[-89.919619,35.612236],[-89.912172,35.617055],[-89.910687,35.617536],[-89.906029,35.616145],[-89.899789,35.615061],[-89.896999,35.614882],[-89.894346,35.615535],[-89.876548,35.626653],[-89.863875,35.630788],[-89.856619,35.634444],[-89.85389,35.638261],[-89.851825,35.644262],[-89.850863,35.650208],[-89.851176,35.657432],[-89.85351,35.663034],[-89.858935,35.66906],[-89.861277,35.670064],[-89.864782,35.670385],[-89.872078,35.668487],[-89.877158,35.666136],[-89.878534,35.66482],[-89.882893,35.657463],[-89.884932,35.655107],[-89.886979,35.653637],[-89.89051,35.652408],[-89.898916,35.650904],[-89.906147,35.651145],[-89.915427,35.652782],[-89.922749,35.655293],[-89.931036,35.660044],[-89.937383,35.665711],[-89.9427,35.675121],[-89.950161,35.682433],[-89.953303,35.686418],[-89.955753,35.690621],[-89.956589,35.695486],[-89.956933,35.711677],[-89.958882,35.723834],[-89.958687,35.727706],[-89.956254,35.733386],[-89.953983,35.73616],[-89.950278,35.738493],[-89.915491,35.754917],[-89.913132,35.757302],[-89.909996,35.759396],[-89.905538,35.759063],[-89.888163,35.750077],[-89.883535,35.744984],[-89.877256,35.741369],[-89.872845,35.741299],[-89.863874,35.747592],[-89.857707,35.750077],[-89.846343,35.755732],[-89.832895,35.754905],[-89.824923,35.755715],[-89.821216,35.756716],[-89.814456,35.759941],[-89.812891,35.761154],[-89.80928,35.764379],[-89.799249,35.775439],[-89.797231,35.780117],[-89.797053,35.782648],[-89.799331,35.788503],[-89.796324,35.792807],[-89.781793,35.805084],[-89.765457,35.809513],[-89.765442,35.811214],[-89.757874,35.810415],[-89.743025,35.805817],[-89.734044,35.806174],[-89.723426,35.809382],[-89.719915,35.811557],[-89.706085,35.81826],[-89.703875,35.820281],[-89.70175,35.824238],[-89.701045,35.828227],[-89.701407,35.830985],[-89.702883,35.834153],[-89.704351,35.835726],[-89.709261,35.838911],[-89.729517,35.847632],[-89.749424,35.852955],[-89.764343,35.858313],[-89.769413,35.861558],[-89.772467,35.865098],[-89.773294,35.867426],[-89.773564,35.871697],[-89.772855,35.876244],[-89.771726,35.879724],[-89.768743,35.886663],[-89.765689,35.891299],[-89.756312,35.89806],[-89.741241,35.906749],[-89.714934,35.906247],[-89.688141,35.896946],[-89.68182,35.88999],[-89.677012,35.88572],[-89.669553,35.883281],[-89.665672,35.883301],[-89.657771,35.88575],[-89.655452,35.886912],[-89.65068,35.89088],[-89.64727,35.89492],[-89.644838,35.904351],[-89.646711,35.908008],[-89.65034,35.917795],[-89.652279,35.921462],[-89.656147,35.92581],[-89.671117,35.935795],[-89.676621,35.940539],[-89.686924,35.947716],[-89.699871,35.954063],[-89.710227,35.959826],[-89.714565,35.963034],[-89.718796,35.968283],[-89.719679,35.970939],[-89.71997,35.97462],[-89.718801,35.985015],[-89.719168,35.985976],[-89.728442,35.993568],[-89.731218,35.996879],[-89.733095,36.000608],[-89.706932,36.000981],[-89.705677,36.005018],[-89.703571,36.00804],[-89.692437,36.020507],[-89.688577,36.029238],[-89.687254,36.034048],[-89.684439,36.051719],[-89.681946,36.072336],[-89.680029,36.082494],[-89.678821,36.084636],[-89.672463,36.091837],[-89.666598,36.095802],[-89.657709,36.099128],[-89.64302,36.10362],[-89.628305,36.106853],[-89.625078,36.108131],[-89.615128,36.113816],[-89.601936,36.11947],[-89.598946,36.121778],[-89.594,36.12719],[-89.59307,36.129699],[-89.592102,36.135637],[-89.591605,36.144096],[-89.592206,36.15012],[-89.594397,36.155457],[-89.600871,36.164558],[-89.607004,36.171179],[-89.618228,36.179966],[-89.623804,36.183128],[-89.629452,36.185382],[-89.636893,36.188951],[-89.64479,36.194101],[-89.654876,36.20153],[-89.664144,36.20652],[-89.679548,36.215911],[-89.69263,36.224959],[-89.699677,36.230821],[-89.704459,36.235468],[-89.70525,36.236568],[-89.705545,36.238136],[-89.705328,36.239898],[-89.703511,36.243412],[-89.699817,36.248384],[-89.698568,36.250591],[-89.695235,36.252766],[-89.691308,36.252079],[-89.686229,36.249507],[-89.678046,36.248284],[-89.652518,36.250692],[-89.642182,36.249486],[-89.63679,36.248079],[-89.624416,36.243305],[-89.611145,36.239271],[-89.60651,36.238328],[-89.602374,36.238106],[-89.587326,36.239484],[-89.577544,36.242262],[-89.573928,36.243843],[-89.564997,36.250067],[-89.562206,36.250909],[-89.557991,36.251037],[-89.553563,36.250341],[-89.548952,36.2482],[-89.544743,36.247484],[-89.541621,36.247891],[-89.539229,36.248821],[-89.534745,36.252576],[-89.534507,36.261802],[-89.535529,36.270541],[-89.537675,36.275279],[-89.539487,36.277368],[-89.544797,36.280458],[-89.546577,36.280439],[-89.549219,36.27875],[-89.554289,36.277751],[-89.578492,36.288317],[-89.584337,36.29334],[-89.58982,36.296814],[-89.611819,36.309088],[-89.619242,36.320726],[-89.620255,36.323006],[-89.6198,36.329546],[-89.615841,36.336085],[-89.610689,36.340442],[-89.605668,36.342234],[-89.600544,36.342985],[-89.581636,36.342357],[-89.560439,36.337746],[-89.545006,36.336809],[-89.538079,36.337496],[-89.531822,36.339246],[-89.527029,36.341679],[-89.522695,36.344789],[-89.519,36.3486],[-89.513178,36.359897],[-89.509722,36.373626],[-89.509558,36.375065],[-89.51038,36.378356],[-89.513956,36.384891],[-89.525293,36.400446],[-89.542337,36.420103],[-89.544221,36.423684],[-89.545255,36.427079],[-89.545503,36.4307],[-89.545061,36.434915],[-89.543406,36.43877],[-89.540868,36.441559],[-89.527274,36.451545],[-89.52519,36.453991],[-89.523427,36.456572],[-89.521021,36.461934],[-89.51972,36.467002],[-89.519501,36.475419],[-89.520642,36.478668],[-89.522674,36.481305],[-89.534524,36.491432],[-89.5391,36.498201],[-89.498036,36.497887],[-89.492537,36.497775],[-89.485106,36.497692],[-89.48671,36.494954],[-89.493495,36.4787],[-89.494248,36.475972],[-89.494074,36.473225],[-89.493198,36.470124],[-89.49067,36.465528],[-89.486215,36.46162],[-89.476532,36.457846],[-89.471718,36.457001],[-89.464153,36.457189],[-89.460436,36.45814],[-89.453081,36.461285],[-89.448468,36.46442],[-89.436763,36.474432],[-89.429311,36.481875],[-89.422942,36.489381],[-89.41977,36.493896],[-89.417293,36.499033],[-89.403913,36.499141],[-89.391044,36.499079],[-89.381792,36.500062],[-89.380085,36.500416],[-89.356593,36.502195],[-89.346056,36.50321],[-89.346053,36.50321],[-89.300284,36.507147],[-89.282298,36.506782],[-89.279091,36.506511],[-89.211409,36.50563],[-89.163429,36.504526],[-89.163224,36.504522],[-89.119805,36.503647],[-89.117537,36.503603],[-89.090146,36.503392],[-89.072118,36.503249],[-89.058871,36.503157],[-89.034649,36.502964],[-89.010439,36.50271],[-89.006825,36.502684],[-89.000063,36.502633],[-88.964471,36.502191],[-88.89951,36.502218],[-88.884557,36.501704],[-88.874725,36.502446],[-88.834866,36.502911],[-88.834626,36.502914],[-88.827301,36.502852],[-88.827012,36.50285],[-88.816765,36.502815],[-88.799594,36.502757],[-88.747523,36.502834],[-88.715255,36.502662],[-88.661133,36.502243],[-88.577283,36.50194],[-88.545192,36.501814],[-88.516427,36.50143],[-88.516346,36.501431],[-88.51227,36.501506],[-88.51192,36.501457],[-88.48921,36.501068],[-88.489075,36.501068],[-88.472564,36.501028],[-88.452543,36.500872],[-88.450161,36.501101],[-88.41636,36.500756],[-88.330799,36.500531],[-88.325895,36.500483],[-88.320794,36.500432],[-88.127378,36.49854],[-88.053292,36.497131],[-88.053205,36.497129],[-88.050466,36.500053],[-88.045304,36.504081],[-88.039481,36.510408],[-88.037822,36.51385],[-88.037329,36.51783],[-88.03783,36.521015],[-88.03727,36.523783],[-88.035854,36.525912],[-88.034132,36.53112],[-88.032489,36.540662],[-88.033802,36.551733],[-88.035625,36.561736],[-88.039625,36.572783],[-88.041196,36.584123],[-88.045127,36.602939],[-88.055738,36.630475],[-88.055604,36.63571],[-88.057042,36.64054],[-88.05858,36.643315],[-88.064401,36.650854],[-88.068208,36.659747],[-88.070532,36.678118],[-88.044772,36.677983],[-88.011792,36.677025],[-87.872062,36.665089],[-87.849567,36.663701],[-87.853204,36.633247],[-87.744768,36.636151],[-87.694191,36.637071],[-87.64115,36.638036],[-87.641146,36.638036],[-87.564928,36.639113],[-87.563052,36.639113],[-87.436509,36.640747],[-87.425009,36.641047],[-87.414309,36.641047],[-87.347796,36.64144],[-87.344131,36.64151],[-87.33598,36.641543],[-87.281506,36.641761],[-87.278398,36.641718],[-87.247655,36.641841],[-87.231037,36.641888],[-87.23053,36.641895],[-87.114983,36.642414],[-87.114976,36.642414],[-87.060846,36.643217],[-87.011522,36.643949],[-86.906583,36.646255],[-86.906023,36.646302],[-86.854268,36.646884],[-86.833155,36.64721],[-86.818405,36.647639],[-86.816186,36.647722],[-86.813037,36.647647],[-86.763295,36.648907],[-86.75892,36.649018],[-86.713786,36.649341],[-86.606394,36.652107],[-86.605042,36.652125],[-86.589906,36.652486],[-86.564254,36.633554],[-86.564143,36.633472],[-86.551292,36.637985],[-86.550054,36.644817],[-86.543388,36.64389],[-86.543777,36.640536],[-86.507771,36.652445],[-86.473497,36.651671],[-86.473413,36.651676],[-86.47219,36.651763],[-86.468497,36.651841],[-86.411386,36.650596],[-86.374991,36.649803],[-86.373784,36.650126],[-86.359073,36.649845],[-86.333051,36.648778],[-86.293357,36.645356],[-86.222151,36.640891],[-86.219081,36.640824],[-86.21641,36.640595],[-86.216183,36.640527],[-86.205468,36.639783],[-86.204859,36.639741],[-86.197573,36.639363],[-86.081944,36.633848],[-86.080666,36.63394],[-86.038366,36.630804],[-86.033139,36.630413],[-86.03277,36.630367],[-85.975846,36.628611],[-85.959981,36.628121],[-85.873857,36.623642],[-85.832172,36.622046],[-85.80149,36.622418],[-85.788645,36.621846],[-85.788613,36.621845],[-85.731862,36.620429],[-85.677789,36.618157],[-85.552017,36.615782],[-85.551483,36.615727],[-85.488353,36.614994],[-85.436433,36.618523],[-85.430123,36.618952],[-85.334124,36.622951],[-85.324654,36.62455],[-85.300402,36.624437],[-85.296073,36.625824],[-85.295949,36.625838],[-85.290627,36.62645],[-85.276289,36.626511],[-85.276284,36.626511],[-85.195372,36.625498],[-85.096128,36.622483],[-85.086415,36.621913],[-85.024627,36.619354],[-84.986448,36.616668],[-84.974875,36.615552],[-84.943948,36.612569],[-84.859738,36.606495],[-84.859759,36.606428],[-84.843091,36.605127],[-84.803744,36.604265],[-84.7854,36.603375],[-84.785341,36.603372],[-84.778456,36.603209],[-84.624939,36.599575],[-84.543138,36.596277],[-84.499938,36.596678],[-84.442837,36.596079],[-84.271176,36.591882],[-84.261339,36.591981],[-84.261333,36.591981],[-84.227332,36.592181],[-84.227194,36.59218],[-84.127503,36.591413],[-83.987842,36.5896],[-83.987611,36.589592],[-83.930761,36.587694],[-83.894421,36.586481],[-83.789017,36.583881],[-83.690714,36.582581],[-83.688814,36.584382],[-83.687514,36.587182],[-83.683014,36.592182],[-83.679514,36.594082],[-83.677114,36.596582],[-83.675614,36.598582],[-83.675413,36.600814],[-83.670141,36.600797],[-83.670128,36.600764],[-83.645586,36.600002],[-83.622624,36.598061],[-83.55681,36.597384],[-83.472108,36.597284]]]}}]} diff --git a/Where/RegionKit/Sources/Resources/regions/us-TX.geojson b/Where/RegionKit/Sources/Resources/regions/us-TX.geojson new file mode 100644 index 00000000..5e5b7f81 --- /dev/null +++ b/Where/RegionKit/Sources/Resources/regions/us-TX.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"region":"us-TX","name":"Texas"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-97.134356,27.896329],[-97.1336,27.897445],[-97.132473,27.897767],[-97.130145,27.897522],[-97.113127,27.893137],[-97.110173,27.892303],[-97.108609,27.891679],[-97.107511,27.890378],[-97.107588,27.88888],[-97.108157,27.887107],[-97.108921,27.886308],[-97.113442,27.883619],[-97.115165,27.882853],[-97.116078,27.882596],[-97.117779,27.882668],[-97.11895,27.884121],[-97.118788,27.88542],[-97.118788,27.88613],[-97.118667,27.886341],[-97.129022,27.889029],[-97.132489,27.888889],[-97.133166,27.888991],[-97.134344,27.889407],[-97.135065,27.8909],[-97.135132,27.891827],[-97.134988,27.894559],[-97.134685,27.89577],[-97.134356,27.896329]]],[[[-97.240849,26.411504],[-97.243167,26.434263],[-97.247619,26.456261],[-97.254166,26.471188],[-97.262546,26.482972],[-97.276425,26.521729],[-97.292399,26.528014],[-97.31073,26.556558],[-97.308112,26.571223],[-97.308635,26.576723],[-97.317015,26.597673],[-97.318458,26.60027],[-97.324872,26.611814],[-97.338489,26.647429],[-97.336394,26.666022],[-97.345822,26.700589],[-97.363105,26.71054],[-97.370438,26.723896],[-97.370961,26.736204],[-97.367557,26.740394],[-97.364153,26.758987],[-97.364646,26.767122],[-97.368866,26.774699],[-97.370438,26.781508],[-97.368343,26.795649],[-97.373056,26.808481],[-97.387459,26.820789],[-97.383531,26.875521],[-97.385626,26.888876],[-97.391649,26.90197],[-97.389554,26.945965],[-97.39034,27.052286],[-97.389816,27.067213],[-97.386412,27.083187],[-97.387459,27.090519],[-97.390602,27.094186],[-97.390078,27.156512],[-97.377508,27.199459],[-97.379865,27.202863],[-97.386674,27.204696],[-97.382222,27.229051],[-97.37489,27.250262],[-97.373318,27.27645],[-97.372861,27.278069],[-97.367033,27.298709],[-97.364676,27.302637],[-97.359963,27.304732],[-97.357606,27.307875],[-97.36232,27.32673],[-97.366771,27.333276],[-97.361796,27.359988],[-97.346607,27.390365],[-97.336132,27.402411],[-97.331157,27.412362],[-97.329585,27.418124],[-97.330895,27.425456],[-97.329847,27.43436],[-97.317277,27.46369],[-97.293709,27.497209],[-97.282972,27.521564],[-97.266474,27.542514],[-97.257832,27.556393],[-97.26176,27.563464],[-97.260451,27.567392],[-97.252071,27.578652],[-97.247877,27.581366],[-97.247619,27.581533],[-97.236882,27.598293],[-97.241072,27.602483],[-97.242643,27.607458],[-97.231383,27.632336],[-97.221955,27.63286],[-97.219075,27.630241],[-97.214099,27.631551],[-97.200743,27.650144],[-97.197339,27.664547],[-97.197601,27.678426],[-97.203474,27.684533],[-97.203089,27.688001],[-97.190007,27.692829],[-97.170628,27.720326],[-97.166176,27.732372],[-97.1612,27.734074],[-97.153606,27.733289],[-97.147321,27.735384],[-97.130823,27.75162],[-97.127942,27.75581],[-97.127681,27.76],[-97.103326,27.789068],[-97.102279,27.798233],[-97.098874,27.808447],[-97.092851,27.81447],[-97.092589,27.819183],[-97.098874,27.82285],[-97.126109,27.819707],[-97.130299,27.820493],[-97.134489,27.825206],[-97.132394,27.827301],[-97.056713,27.842294],[-97.055823,27.843404],[-97.043226,27.859119],[-97.013634,27.90678],[-97.017955,27.911494],[-97.016384,27.917255],[-96.985745,27.954048],[-96.977889,27.976439],[-96.978805,27.978272],[-96.9809,27.978272],[-96.986007,27.976177],[-96.986661,27.980759],[-96.978282,28.001709],[-96.967807,28.020041],[-96.966759,28.020368],[-96.965188,28.013297],[-96.962569,28.012381],[-96.952618,28.01644],[-96.946988,28.026522],[-96.932454,28.035426],[-96.92643,28.043413],[-96.929573,28.0514],[-96.927085,28.057292],[-96.906004,28.076147],[-96.890947,28.076802],[-96.886233,28.084396],[-96.888328,28.086622],[-96.889113,28.099454],[-96.886887,28.11713],[-96.879424,28.131402],[-96.874972,28.133236],[-96.870782,28.131271],[-96.864628,28.126296],[-96.857165,28.115559],[-96.84538,28.108881],[-96.83003,28.111842],[-96.827049,28.112417],[-96.816574,28.119618],[-96.81042,28.126034],[-96.810944,28.136378],[-96.816836,28.158048],[-96.820315,28.163494],[-96.822859,28.167476],[-96.818656,28.17228],[-96.816443,28.174808],[-96.791958,28.188687],[-96.733037,28.190913],[-96.703838,28.198246],[-96.697422,28.202959],[-96.702659,28.211208],[-96.703314,28.216446],[-96.686816,28.21841],[-96.662462,28.227314],[-96.660628,28.228885],[-96.663116,28.233206],[-96.651856,28.251275],[-96.607992,28.27707],[-96.608123,28.280081],[-96.611527,28.281391],[-96.61048,28.283093],[-96.592934,28.296972],[-96.581019,28.30221],[-96.55326,28.302341],[-96.546975,28.305614],[-96.542131,28.315958],[-96.528906,28.322505],[-96.476269,28.330754],[-96.450998,28.337039],[-96.434108,28.344764],[-96.418919,28.354846],[-96.415253,28.362833],[-96.417217,28.367154],[-96.412896,28.369511],[-96.403206,28.371475],[-96.401242,28.366892],[-96.397846,28.343513],[-96.4137,28.327343],[-96.439099,28.319052],[-96.547774,28.270798],[-96.621534,28.2297],[-96.694666,28.18212],[-96.758141,28.136873],[-96.849624,28.064939],[-96.853455,28.061345],[-96.929053,27.99044],[-96.966996,27.950531],[-97.001441,27.911442],[-97.03166,27.869975],[-97.041799,27.852926],[-97.045409,27.837452],[-97.04598,27.835004],[-97.085395,27.793245],[-97.116277,27.752599],[-97.166682,27.676583],[-97.201866,27.614858],[-97.221912,27.576315],[-97.276091,27.472145],[-97.30447,27.407734],[-97.326523,27.347612],[-97.347438,27.277963],[-97.350398,27.268105],[-97.363401,27.210366],[-97.370941,27.161166],[-97.377001,27.101021],[-97.37913,27.047996],[-97.378362,26.992877],[-97.370731,26.909706],[-97.364726,26.871693],[-97.351413,26.808604],[-97.333028,26.736479],[-97.30069,26.635375],[-97.287885,26.600341],[-97.275119,26.565415],[-97.269392,26.554046],[-97.229844,26.433569],[-97.223728,26.411492],[-97.194644,26.306513],[-97.185844,26.267103],[-97.173265,26.192314],[-97.161471,26.088705],[-97.154271,26.066841],[-97.161462,26.06764],[-97.169842,26.077853],[-97.171781,26.102522],[-97.179532,26.146202],[-97.178746,26.177103],[-97.183983,26.214289],[-97.194458,26.27164],[-97.214885,26.353606],[-97.226931,26.385555],[-97.240286,26.405981],[-97.240849,26.411504]]],[[[-94.886539,29.510724],[-94.887878,29.512447],[-94.893756,29.51924],[-94.894381,29.520915],[-94.894747,29.52697],[-94.889158,29.522061],[-94.882384,29.5149],[-94.881294,29.51288],[-94.881121,29.512727],[-94.880429,29.512118],[-94.87675,29.507922],[-94.87615,29.506664],[-94.875838,29.504015],[-94.878969,29.502674],[-94.881755,29.502059],[-94.883233,29.507356],[-94.885316,29.50915],[-94.886539,29.510724]]],[[[-97.868235,26.056656],[-97.871187,26.058083],[-97.876983,26.064483],[-97.88653,26.066339],[-97.913882,26.056539],[-97.93542,26.052688],[-97.944345,26.059621],[-97.950095,26.061828],[-97.967358,26.051718],[-97.978769,26.059708],[-97.981335,26.067182],[-98.010971,26.063863],[-98.028759,26.06647],[-98.033102,26.061039],[-98.034403,26.051375],[-98.039239,26.041275],[-98.070021,26.047992],[-98.070025,26.051466],[-98.076544,26.068042],[-98.080495,26.070932],[-98.084755,26.070808],[-98.085849,26.069208],[-98.081567,26.066108],[-98.081884,26.063724],[-98.091038,26.059169],[-98.094432,26.058625],[-98.097643,26.060271],[-98.105505,26.067537],[-98.127032,26.062248],[-98.128331,26.061929],[-98.146622,26.049412],[-98.149463,26.051579],[-98.149463,26.055813],[-98.151731,26.058187],[-98.177897,26.074672],[-98.18906,26.063258],[-98.191534,26.057118],[-98.197046,26.056153],[-98.200871,26.059161],[-98.20496,26.066419],[-98.220673,26.076467],[-98.230097,26.077155],[-98.248806,26.073101],[-98.264514,26.085507],[-98.277218,26.098802],[-98.272898,26.10629],[-98.270034,26.10709],[-98.265698,26.12037],[-98.296195,26.120321],[-98.299523,26.11749],[-98.302979,26.11005],[-98.323828,26.121249],[-98.335204,26.137617],[-98.33842,26.151344],[-98.333316,26.1588],[-98.333156,26.162336],[-98.336837,26.166432],[-98.345781,26.166016],[-98.354645,26.15304],[-98.386694,26.157872],[-98.404433,26.182564],[-98.41812,26.184648],[-98.442536,26.199151],[-98.444376,26.201407],[-98.443682,26.213339],[-98.450976,26.219904],[-98.465077,26.222335],[-98.481646,26.219277],[-98.483269,26.216439],[-98.496684,26.212853],[-98.500575,26.213826],[-98.503492,26.214798],[-98.509327,26.222822],[-98.516621,26.223551],[-98.52659,26.221606],[-98.535241,26.225677],[-98.538017,26.231331],[-98.543852,26.234492],[-98.5616,26.230845],[-98.576188,26.235221],[-98.58178,26.243001],[-98.585184,26.254429],[-98.587314,26.254914],[-98.599154,26.257612],[-98.613465,26.252028],[-98.626654,26.25221],[-98.63418,26.242612],[-98.654221,26.23596],[-98.669397,26.23632],[-98.675206,26.239989],[-98.679042,26.245554],[-98.677766,26.255568],[-98.681167,26.26271],[-98.687156,26.26512],[-98.698856,26.265619],[-98.707451,26.272152],[-98.710602,26.279018],[-98.709171,26.284186],[-98.711233,26.289687],[-98.729196,26.299027],[-98.734613,26.29897],[-98.745272,26.303096],[-98.745615,26.317193],[-98.749054,26.321662],[-98.755242,26.3251],[-98.779912,26.326542],[-98.789822,26.331575],[-98.796252,26.349104],[-98.798211,26.360166],[-98.807348,26.369421],[-98.824571,26.370715],[-98.832909,26.363338],[-98.844057,26.358638],[-98.847707,26.359595],[-98.853415,26.365023],[-98.861354,26.36599],[-98.890965,26.357569],[-98.90556,26.364024],[-98.921277,26.381426],[-98.924926,26.381987],[-98.937556,26.376093],[-98.942046,26.375532],[-98.950186,26.380303],[-98.958325,26.394056],[-98.967587,26.398266],[-98.990321,26.395459],[-99.008003,26.395459],[-99.014739,26.398827],[-99.021935,26.407902],[-99.032316,26.412082],[-99.039107,26.412947],[-99.045466,26.409816],[-99.053185,26.402006],[-99.062093,26.397371],[-99.082002,26.39651],[-99.085126,26.398782],[-99.089413,26.4081],[-99.110855,26.426278],[-99.113808,26.434002],[-99.103083,26.441515],[-99.091635,26.476977],[-99.105031,26.500335],[-99.127782,26.525199],[-99.143659,26.527901],[-99.166742,26.536079],[-99.170704,26.540316],[-99.171404,26.549848],[-99.16741,26.560001],[-99.169464,26.571674],[-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.316753,26.865831],[-99.3289,26.879761],[-99.321819,26.906846],[-99.324684,26.915973],[-99.337297,26.922759],[-99.361144,26.928921],[-99.367054,26.929034],[-99.379149,26.93449],[-99.388253,26.944217],[-99.393748,26.96073],[-99.390189,26.966348],[-99.377312,26.973819],[-99.376593,26.977717],[-99.378435,26.980034],[-99.387367,26.982399],[-99.403694,26.997356],[-99.407321,27.005809],[-99.415476,27.01724],[-99.420447,27.016568],[-99.42938,27.010833],[-99.432155,27.010699],[-99.438721,27.01463],[-99.446524,27.023008],[-99.44697,27.026026],[-99.444062,27.031253],[-99.443973,27.036458],[-99.452316,27.062669],[-99.450282,27.067705],[-99.43447,27.078517],[-99.429209,27.090982],[-99.430275,27.094872],[-99.437646,27.100442],[-99.442123,27.106839],[-99.441109,27.110042],[-99.43337,27.119218],[-99.430581,27.126612],[-99.431355,27.13758],[-99.438265,27.144792],[-99.439971,27.151072],[-99.437951,27.154121],[-99.429984,27.159149],[-99.426348,27.176262],[-99.432795,27.209693],[-99.441928,27.217985],[-99.445238,27.223341],[-99.441407,27.236758],[-99.441549,27.24992],[-99.452391,27.264046],[-99.453949,27.264673],[-99.463309,27.268437],[-99.480688,27.259989],[-99.48791,27.260721],[-99.492407,27.264118],[-99.496615,27.271708],[-99.487513,27.29024],[-99.487937,27.294941],[-99.494604,27.303542],[-99.502036,27.306121],[-99.511531,27.304077],[-99.523658,27.304138],[-99.529654,27.306051],[-99.536443,27.312538],[-99.537771,27.316073],[-99.531376,27.323809],[-99.52126,27.324784],[-99.504837,27.338289],[-99.507831,27.348637],[-99.507779,27.354247],[-99.499076,27.37314],[-99.492144,27.380517],[-99.487521,27.412396],[-99.495699,27.438884],[-99.495104,27.451518],[-99.483819,27.467297],[-99.480419,27.481596],[-99.480219,27.485796],[-99.483519,27.491096],[-99.497519,27.500496],[-99.51332,27.499496],[-99.51932,27.496896],[-99.52582,27.496696],[-99.52832,27.498896],[-99.521919,27.544094],[-99.518819,27.553194],[-99.514319,27.556994],[-99.511119,27.564494],[-99.512219,27.568094],[-99.515978,27.572131],[-99.530138,27.580207],[-99.539722,27.603281],[-99.55495,27.614454],[-99.556812,27.614336],[-99.559467,27.609076],[-99.562869,27.607264],[-99.580006,27.602251],[-99.584843,27.603903],[-99.585148,27.606398],[-99.57816,27.610369],[-99.578099,27.619196],[-99.584782,27.622007],[-99.591372,27.627464],[-99.594038,27.638573],[-99.596231,27.639858],[-99.603533,27.641992],[-99.624515,27.634515],[-99.625322,27.631137],[-99.638929,27.626758],[-99.654324,27.629616],[-99.665948,27.635968],[-99.665422,27.640275],[-99.6595,27.645246],[-99.658295,27.650158],[-99.661845,27.655753],[-99.668942,27.659974],[-99.685813,27.661015],[-99.699356,27.655417],[-99.704601,27.654954],[-99.711511,27.658365],[-99.721519,27.666155],[-99.723716,27.673328],[-99.732448,27.685425],[-99.757539,27.711853],[-99.758534,27.717071],[-99.77074,27.732134],[-99.774901,27.73354],[-99.785366,27.730355],[-99.788845,27.730718],[-99.796342,27.735586],[-99.801651,27.741771],[-99.80567,27.758688],[-99.813086,27.773952],[-99.819092,27.776019],[-99.822193,27.766855],[-99.825793,27.764374],[-99.835127,27.762881],[-99.841708,27.766464],[-99.844737,27.778809],[-99.850877,27.793974],[-99.870066,27.794627],[-99.877677,27.799427],[-99.87784,27.824376],[-99.876003,27.837968],[-99.877202,27.842179],[-99.882015,27.850392],[-99.89365,27.856193],[-99.901486,27.864162],[-99.904385,27.875284],[-99.901232,27.884406],[-99.894091,27.89295],[-99.893456,27.899208],[-99.895828,27.904178],[-99.90008,27.912142],[-99.917461,27.917973],[-99.937142,27.940537],[-99.938541,27.954059],[-99.932161,27.96771],[-99.931812,27.980967],[-99.962769,27.983536],[-99.984923,27.990729],[-99.991447,27.99456],[-100.008631,28.023964],[-100.012839,28.037203],[-100.017914,28.064787],[-100.028725,28.073118],[-100.046108,28.079068],[-100.053123,28.08473],[-100.056983,28.094207],[-100.055596,28.101141],[-100.056493,28.104186],[-100.067652,28.113602],[-100.075474,28.124882],[-100.083393,28.144035],[-100.090289,28.148313],[-100.119628,28.155588],[-100.141098,28.168149],[-100.16059,28.16816],[-100.168438,28.171542],[-100.174413,28.179448],[-100.185694,28.185781],[-100.196499,28.190218],[-100.208059,28.190383],[-100.212105,28.19651],[-100.212137,28.196837],[-100.21345,28.210416],[-100.217565,28.226934],[-100.220284,28.23221],[-100.22363,28.235224],[-100.227575,28.235857],[-100.2462,28.234092],[-100.251634,28.236177],[-100.267604,28.250269],[-100.280518,28.267969],[-100.289384,28.273491],[-100.293468,28.278475],[-100.294296,28.284381],[-100.287554,28.301093],[-100.286471,28.312296],[-100.288639,28.316978],[-100.314198,28.345859],[-100.317246,28.357382],[-100.320393,28.362117],[-100.341869,28.384953],[-100.3444,28.389662],[-100.349586,28.402604],[-100.343945,28.410119],[-100.337059,28.427151],[-100.336186,28.430181],[-100.337797,28.44296],[-100.341533,28.449571],[-100.350786,28.459246],[-100.357498,28.463642],[-100.368288,28.477196],[-100.365982,28.481116],[-100.352235,28.482638],[-100.344181,28.486249],[-100.33714,28.491729],[-100.333814,28.499252],[-100.338518,28.501833],[-100.362148,28.508399],[-100.379079,28.511639],[-100.38886,28.515748],[-100.405058,28.53578],[-100.411414,28.551899],[-100.39727,28.575637],[-100.3968,28.580401],[-100.398385,28.584884],[-100.429856,28.596441],[-100.44732,28.609325],[-100.448648,28.616774],[-100.445529,28.637144],[-100.447091,28.642197],[-100.462866,28.641364],[-100.474494,28.647071],[-100.479636,28.655225],[-100.495863,28.658569],[-100.500354,28.66196],[-100.510055,28.690723],[-100.511998,28.705352],[-100.506701,28.716745],[-100.507613,28.740599],[-100.519226,28.756161],[-100.533017,28.76328],[-100.537772,28.780776],[-100.532431,28.791063],[-100.53583,28.805888],[-100.547324,28.825817],[-100.55313,28.828249],[-100.561443,28.829174],[-100.57051,28.826317],[-100.574699,28.828787],[-100.576846,28.836168],[-100.572992,28.848464],[-100.580502,28.856008],[-100.59104,28.863054],[-100.598877,28.875591],[-100.602654,28.88766],[-100.602054,28.901944],[-100.627206,28.903734],[-100.631611,28.902839],[-100.640568,28.914212],[-100.63917,28.916289],[-100.638857,28.927622],[-100.651512,28.943432],[-100.646993,28.957079],[-100.645894,28.986421],[-100.650946,29.008254],[-100.653758,29.015356],[-100.65611,29.017224],[-100.660208,29.031497],[-100.663212,29.048042],[-100.662508,29.058107],[-100.664065,29.073206],[-100.668356,29.08397],[-100.674656,29.099777],[-100.684472,29.110657],[-100.692327,29.115228],[-100.709966,29.119684],[-100.727462,29.129123],[-100.737795,29.139079],[-100.739116,29.141658],[-100.737591,29.147407],[-100.739681,29.150486],[-100.74614,29.154149],[-100.759726,29.15715],[-100.772649,29.168492],[-100.775905,29.173344],[-100.766031,29.185849],[-100.767059,29.195287],[-100.785521,29.228137],[-100.791372,29.225945],[-100.795681,29.22773],[-100.797046,29.235586],[-100.795127,29.241767],[-100.794912,29.242459],[-100.797671,29.246943],[-100.823533,29.261742],[-100.83404,29.2614],[-100.839016,29.263259],[-100.848664,29.271421],[-100.856469,29.275664],[-100.864659,29.276076],[-100.876049,29.279585],[-100.878883,29.282193],[-100.882052,29.299045],[-100.886842,29.307848],[-100.904835,29.31201],[-100.926678,29.326584],[-100.940615,29.333109],[-100.943196,29.341985],[-100.948972,29.347246],[-100.964325,29.347342],[-100.971743,29.351371],[-100.972916,29.354545],[-100.995607,29.363403],[-101.004207,29.364772],[-101.010614,29.368669],[-101.024016,29.393698],[-101.036604,29.406108],[-101.0386,29.410714],[-101.037642,29.414681],[-101.043364,29.42988],[-101.056957,29.440773],[-101.060151,29.458661],[-101.087149,29.469414],[-101.103699,29.47055],[-101.115254,29.468459],[-101.130038,29.47842],[-101.137503,29.473542],[-101.144337,29.473246],[-101.151877,29.477005],[-101.171663,29.50395],[-101.173821,29.514566],[-101.19272,29.520285],[-101.227419,29.52235],[-101.235275,29.524854],[-101.254895,29.520342],[-101.260837,29.529933],[-101.261175,29.536777],[-101.244355,29.569187],[-101.242023,29.592512],[-101.251353,29.604174],[-101.259127,29.607284],[-101.265347,29.607284],[-101.274677,29.602619],[-101.28323,29.594844],[-101.297224,29.587069],[-101.307332,29.587847],[-101.314329,29.595622],[-101.307332,29.640716],[-101.311219,29.648491],[-101.316661,29.655488],[-101.325214,29.657821],[-101.350093,29.654711],[-101.361756,29.657821],[-101.367198,29.664041],[-101.37886,29.69825],[-101.396948,29.713947],[-101.398362,29.717],[-101.396294,29.727055],[-101.397009,29.733963],[-101.400636,29.738079],[-101.410024,29.741498],[-101.415584,29.746534],[-101.415402,29.756561],[-101.424732,29.758116],[-101.441059,29.753451],[-101.446502,29.755006],[-101.453499,29.759671],[-101.455224,29.771874],[-101.467494,29.779886],[-101.475269,29.780663],[-101.503223,29.764582],[-101.522695,29.759671],[-101.532802,29.764336],[-101.537467,29.782996],[-101.546797,29.796991],[-101.561569,29.794658],[-101.575564,29.774444],[-101.582562,29.771334],[-101.603681,29.774399],[-101.625958,29.771063],[-101.630319,29.768729],[-101.635128,29.758675],[-101.646418,29.754304],[-101.652401,29.758795],[-101.654578,29.765163],[-101.662453,29.77128],[-101.689992,29.771213],[-101.706636,29.762737],[-101.714224,29.76766],[-101.735202,29.771592],[-101.754323,29.777662],[-101.76092,29.782458],[-101.763274,29.78417],[-101.777161,29.789327],[-101.785668,29.788252],[-101.791003,29.783038],[-101.79687,29.782619],[-101.806508,29.78639],[-101.809441,29.790161],[-101.814889,29.793095],[-101.831232,29.789323],[-101.852604,29.801895],[-101.862242,29.800219],[-101.8754,29.794023],[-101.892739,29.797891],[-101.912406,29.79785],[-101.917557,29.792676],[-101.922585,29.790161],[-101.929709,29.789323],[-101.93809,29.796028],[-101.946471,29.797704],[-101.953595,29.796866],[-101.959462,29.799381],[-101.966167,29.807343],[-101.970357,29.810276],[-101.974548,29.810276],[-101.987539,29.801057],[-102.001786,29.804828],[-102.021919,29.802491],[-102.034759,29.804028],[-102.039013,29.802655],[-102.041088,29.79961],[-102.038412,29.792832],[-102.039227,29.790977],[-102.050044,29.78507],[-102.073646,29.786926],[-102.077348,29.792421],[-102.084439,29.794962],[-102.091816,29.792854],[-102.115682,29.79239],[-102.142326,29.802854],[-102.159601,29.814356],[-102.161674,29.819487],[-102.181894,29.846034],[-102.18615,29.848462],[-102.188672,29.848943],[-102.205381,29.842438],[-102.227553,29.843534],[-102.261389,29.853283],[-102.264041,29.855964],[-102.261777,29.864002],[-102.264954,29.867806],[-102.268817,29.867991],[-102.276755,29.862978],[-102.281249,29.863117],[-102.297331,29.875194],[-102.301381,29.877674],[-102.315389,29.87992],[-102.320619,29.87898],[-102.320693,29.878857],[-102.324634,29.872307],[-102.333384,29.868046],[-102.341033,29.869305],[-102.349861,29.862317],[-102.364542,29.845387],[-102.362514,29.833156],[-102.369522,29.820395],[-102.377254,29.800163],[-102.377313,29.789971],[-102.386678,29.76688],[-102.392906,29.765569],[-102.412062,29.768062],[-102.433301,29.776608],[-102.468946,29.779817],[-102.490331,29.783948],[-102.508313,29.783219],[-102.512687,29.780303],[-102.513381,29.76576],[-102.539417,29.751629],[-102.545492,29.7509],[-102.551081,29.752358],[-102.559343,29.760377],[-102.565661,29.761592],[-102.576353,29.754302],[-102.587774,29.750657],[-102.59716,29.751608],[-102.612879,29.748182],[-102.622534,29.736632],[-102.630151,29.734315],[-102.645665,29.73391],[-102.661252,29.736123],[-102.670971,29.741954],[-102.677192,29.738261],[-102.688164,29.722487],[-102.690238,29.707482],[-102.698347,29.695591],[-102.699317,29.685029],[-102.693466,29.676507],[-102.724231,29.648415],[-102.736948,29.641538],[-102.742031,29.632142],[-102.738428,29.621929],[-102.739991,29.599041],[-102.746202,29.592875],[-102.757066,29.597799],[-102.761811,29.598397],[-102.768341,29.594734],[-102.762241,29.579449],[-102.766124,29.572348],[-102.773961,29.573084],[-102.777531,29.556497],[-102.775725,29.552189],[-102.771429,29.548546],[-102.808692,29.522319],[-102.807327,29.494009],[-102.813954,29.482806],[-102.83097,29.444267],[-102.832539,29.433109],[-102.827355,29.418262],[-102.824564,29.399558],[-102.840778,29.376962],[-102.843021,29.357988],[-102.86163,29.351639],[-102.871857,29.352093],[-102.876866,29.354059],[-102.879534,29.353327],[-102.883722,29.348059],[-102.879805,29.338755],[-102.890489,29.309499],[-102.888328,29.291947],[-102.891022,29.287113],[-102.902605,29.279441],[-102.906296,29.260011],[-102.903189,29.254029],[-102.887902,29.245612],[-102.881135,29.246022],[-102.871347,29.241625],[-102.866846,29.225015],[-102.87802,29.214698],[-102.890064,29.208814],[-102.899231,29.208863],[-102.908787,29.219337],[-102.912131,29.218902],[-102.915866,29.215878],[-102.915554,29.211342],[-102.912448,29.206255],[-102.917805,29.190697],[-102.925482,29.193723],[-102.932612,29.194113],[-102.944911,29.18882],[-102.947156,29.180777],[-102.95089,29.176835],[-102.953475,29.176308],[-102.977266,29.186226],[-102.989432,29.183174],[-102.994653,29.17962],[-102.998096,29.172676],[-102.995688,29.161219],[-103.002434,29.150261],[-103.008362,29.148293],[-103.010325,29.137822],[-103.015028,29.12577],[-103.032983,29.114118],[-103.033303,29.107356],[-103.035683,29.103029],[-103.040442,29.099351],[-103.05537,29.096539],[-103.074407,29.088534],[-103.076355,29.085722],[-103.076847,29.076059],[-103.100266,29.0577],[-103.102532,29.040507],[-103.100368,29.026877],[-103.101608,29.018123],[-103.107811,29.013812],[-103.117238,29.000209],[-103.113922,28.988547],[-103.115328,28.98527],[-103.126748,28.982124],[-103.134931,28.983525],[-103.143274,28.978074],[-103.156646,28.972831],[-103.163865,28.972099],[-103.165923,28.974002],[-103.166235,28.978836],[-103.227801,28.991532],[-103.239109,28.981651],[-103.245121,28.98024],[-103.249155,28.980952],[-103.253285,28.986687],[-103.260308,28.989731],[-103.266003,28.990206],[-103.270357,28.988114],[-103.273357,28.982844],[-103.28119,28.982138],[-103.284749,28.987121],[-103.285936,28.994003],[-103.289258,28.999698],[-103.296614,29.004444],[-103.312987,29.010139],[-103.331022,29.021766],[-103.33292,29.026987],[-103.332446,29.033394],[-103.334819,29.039801],[-103.341463,29.041224],[-103.34787,29.037428],[-103.350816,29.028567],[-103.355428,29.021529],[-103.361998,29.018914],[-103.382125,29.024249],[-103.427754,29.042334],[-103.434668,29.055317],[-103.453029,29.067467],[-103.457386,29.068597],[-103.463196,29.066822],[-103.469167,29.069242],[-103.471265,29.073115],[-103.471426,29.081345],[-103.474815,29.086671],[-103.484429,29.094524],[-103.503236,29.11911],[-103.524613,29.120998],[-103.523384,29.133389],[-103.525027,29.137354],[-103.558679,29.154962],[-103.579462,29.149965],[-103.59236,29.15026],[-103.606438,29.160411],[-103.61054,29.165773],[-103.645635,29.159286],[-103.65318,29.162864],[-103.656808,29.169099],[-103.660203,29.170934],[-103.68867,29.178294],[-103.697314,29.177194],[-103.71377,29.185008],[-103.724743,29.19147],[-103.742175,29.20861],[-103.755943,29.225545],[-103.76857,29.227361],[-103.777623,29.232265],[-103.78166,29.248804],[-103.789034,29.257502],[-103.793967,29.2599],[-103.816642,29.270927],[-103.838303,29.278304],[-103.856893,29.281852],[-103.880606,29.284962],[-103.917106,29.284216],[-103.91891,29.285042],[-103.918857,29.290107],[-103.924976,29.293913],[-103.943698,29.294946],[-103.965796,29.298587],[-103.975235,29.296017],[-104.038282,29.320156],[-104.055596,29.33091],[-104.057244,29.337694],[-104.075924,29.345075],[-104.08215,29.345923],[-104.091022,29.353692],[-104.093326,29.359926],[-104.098378,29.366756],[-104.106467,29.373127],[-104.125475,29.380922],[-104.143692,29.383278],[-104.166563,29.399352],[-104.18007,29.412764],[-104.181273,29.426265],[-104.19599,29.442884],[-104.208194,29.448201],[-104.212529,29.452439],[-104.213948,29.456222],[-104.213239,29.47301],[-104.220569,29.477976],[-104.229081,29.48105],[-104.233825,29.486545],[-104.233487,29.492734],[-104.235847,29.496744],[-104.260293,29.509425],[-104.264155,29.514001],[-104.308813,29.524337],[-104.318074,29.527938],[-104.327483,29.522188],[-104.334811,29.519463],[-104.338113,29.519967],[-104.371175,29.543063],[-104.381041,29.543406],[-104.394589,29.556087],[-104.394351,29.560535],[-104.399591,29.572319],[-104.452301,29.60366],[-104.46652,29.609296],[-104.483502,29.627741],[-104.493659,29.634017],[-104.507568,29.639624],[-104.539761,29.676074],[-104.540559,29.681129],[-104.53577,29.687248],[-104.536302,29.690441],[-104.552241,29.717123],[-104.555601,29.731221],[-104.55466,29.740726],[-104.565951,29.758795],[-104.565688,29.770462],[-104.592472,29.810276],[-104.594023,29.809221],[-104.599149,29.811007],[-104.610166,29.819118],[-104.619039,29.844445],[-104.62435,29.845222],[-104.630103,29.853314],[-104.63036,29.863377],[-104.633275,29.870485],[-104.656783,29.889333],[-104.65865,29.891557],[-104.659042,29.901413],[-104.672327,29.911112],[-104.679772,29.924659],[-104.684322,29.956086],[-104.679661,29.975272],[-104.685479,29.989943],[-104.689641,30.01495],[-104.693592,30.019077],[-104.702311,30.021322],[-104.703998,30.02421],[-104.701102,30.035534],[-104.706874,30.050685],[-104.703582,30.06453],[-104.698233,30.065287],[-104.692778,30.069757],[-104.685003,30.085643],[-104.685687,30.095957],[-104.692094,30.107304],[-104.695366,30.13213],[-104.692123,30.138663],[-104.687507,30.162203],[-104.687296,30.179464],[-104.702788,30.211736],[-104.711236,30.222921],[-104.713166,30.237957],[-104.733822,30.261221],[-104.73736,30.26138],[-104.740448,30.259454],[-104.749664,30.26126],[-104.751567,30.263644],[-104.757894,30.282396],[-104.761634,30.301148],[-104.779356,30.313188],[-104.797291,30.330336],[-104.809794,30.334926],[-104.813478,30.347061],[-104.814779,30.360497],[-104.817596,30.365915],[-104.824314,30.370466],[-104.837493,30.373909],[-104.859521,30.390413],[-104.85744,30.408957],[-104.85242,30.418792],[-104.861074,30.428897],[-104.869872,30.458645],[-104.868711,30.46323],[-104.866119,30.46479],[-104.866094,30.46738],[-104.876787,30.511004],[-104.889376,30.535144],[-104.892228,30.55142],[-104.899001,30.5704],[-104.924796,30.604832],[-104.939873,30.603939],[-104.967167,30.608107],[-104.972071,30.61026],[-104.980291,30.62204],[-104.982131,30.628605],[-104.983981,30.635206],[-104.9863,30.661059],[-105.00124,30.672583],[-105.002057,30.680972],[-105.006801,30.686039],[-105.020142,30.683637],[-105.04293,30.687256],[-105.049885,30.680817],[-105.062334,30.686303],[-105.062626,30.698222],[-105.098282,30.718914],[-105.108076,30.73005],[-105.110706,30.73775],[-105.110682,30.743366],[-105.113816,30.746001],[-105.123265,30.749504],[-105.140207,30.752502],[-105.152362,30.751452],[-105.15764,30.754008],[-105.160153,30.757059],[-105.16123,30.767468],[-105.164819,30.772493],[-105.178279,30.772134],[-105.183436,30.776645],[-105.185931,30.784392],[-105.195144,30.792138],[-105.206161,30.786454],[-105.212917,30.785415],[-105.215967,30.786492],[-105.216685,30.789543],[-105.214891,30.79726],[-105.21866,30.801567],[-105.238364,30.803109],[-105.255416,30.797029],[-105.261361,30.798078],[-105.287238,30.822206],[-105.29563,30.822206],[-105.303673,30.816961],[-105.314863,30.816961],[-105.31766,30.825004],[-105.320108,30.827452],[-105.347695,30.838065],[-105.360672,30.847384],[-105.377417,30.848645],[-105.394242,30.852979],[-105.39669,30.855427],[-105.394249,30.871961],[-105.399609,30.888941],[-105.413505,30.899808],[-105.430089,30.905792],[-105.488027,30.943278],[-105.496856,30.950494],[-105.497964,30.957279],[-105.502257,30.96268],[-105.533088,30.984859],[-105.543676,30.984746],[-105.55743,30.990229],[-105.579114,31.021645],[-105.581404,31.026847],[-105.579542,31.035396],[-105.585323,31.057488],[-105.595921,31.064842],[-105.598773,31.074926],[-105.60333,31.082625],[-105.627349,31.098545],[-105.64189,31.098322],[-105.646731,31.113908],[-105.648834,31.115902],[-105.709491,31.136375],[-105.717006,31.141438],[-105.71954,31.149161],[-105.742678,31.164897],[-105.763531,31.164121],[-105.773257,31.166897],[-105.780021,31.182666],[-105.779725,31.191283],[-105.782895,31.197563],[-105.794386,31.20224],[-105.818835,31.230681],[-105.835722,31.246812],[-105.869353,31.288634],[-105.876015,31.291589],[-105.890872,31.290014],[-105.895035,31.290978],[-105.903461,31.306769],[-105.908771,31.312774],[-105.932553,31.313121],[-105.938452,31.318735],[-105.948091,31.340069],[-105.945903,31.35281],[-105.953943,31.364749],[-105.970101,31.365937],[-105.997486,31.386792],[-106.004926,31.392458],[-106.080258,31.398702],[-106.106877,31.421403],[-106.112169,31.423578],[-106.132782,31.425367],[-106.158218,31.438885],[-106.175675,31.456279],[-106.185482,31.459433],[-106.203969,31.465378],[-106.205827,31.465976],[-106.207837,31.468188],[-106.218843,31.4803],[-106.223909,31.500422],[-106.236804,31.513376],[-106.246203,31.541153],[-106.25478,31.547997],[-106.280811,31.562062],[-106.287785,31.584445],[-106.303536,31.620413],[-106.334737,31.664112],[-106.349538,31.696711],[-106.370139,31.71071],[-106.373839,31.71481],[-106.378039,31.72831],[-106.381039,31.73211],[-106.41794,31.752009],[-106.431541,31.754209],[-106.451541,31.764808],[-106.467642,31.759608],[-106.470742,31.753508],[-106.475542,31.750109],[-106.484642,31.747809],[-106.489542,31.748408],[-106.507342,31.761208],[-106.523643,31.776207],[-106.528643,31.781807],[-106.528543,31.783907],[-106.528543,31.784407],[-106.527997,31.786945],[-106.527623,31.789119],[-106.527738,31.789761],[-106.527943,31.790507],[-106.530515,31.792103],[-106.53248,31.791914],[-106.533,31.791829],[-106.533043,31.791907],[-106.534743,31.796107],[-106.535154,31.797089],[-106.535343,31.797507],[-106.535843,31.798607],[-106.542097,31.802146],[-106.542144,31.802107],[-106.544714,31.804287],[-106.545344,31.805007],[-106.547144,31.807305],[-106.558444,31.810406],[-106.562945,31.811104],[-106.563444,31.812606],[-106.566844,31.813306],[-106.570944,31.810206],[-106.577244,31.810406],[-106.581344,31.813906],[-106.582144,31.815506],[-106.588045,31.822106],[-106.589045,31.822706],[-106.593826,31.824901],[-106.602727,31.825024],[-106.605267,31.827912],[-106.601945,31.839605],[-106.602045,31.844405],[-106.605245,31.845905],[-106.605845,31.846305],[-106.614637,31.84649],[-106.621857,31.852854],[-106.625763,31.856276],[-106.627808,31.860593],[-106.635926,31.866235],[-106.63588,31.871514],[-106.634873,31.874478],[-106.630799,31.879697],[-106.629197,31.883717],[-106.630692,31.886411],[-106.633927,31.889184],[-106.638154,31.891663],[-106.6429,31.892933],[-106.645296,31.894859],[-106.645646,31.895649],[-106.645479,31.89867],[-106.64084,31.904598],[-106.633668,31.90979],[-106.625947,31.912227],[-106.623445,31.914034],[-106.614346,31.918003],[-106.611846,31.920003],[-106.623933,31.925335],[-106.628663,31.923614],[-106.629747,31.92657],[-106.625322,31.930053],[-106.622529,31.934863],[-106.622117,31.936621],[-106.622377,31.940863],[-106.623659,31.94551],[-106.616136,31.948439],[-106.614702,31.956],[-106.617708,31.956008],[-106.622819,31.952891],[-106.625123,31.954531],[-106.625535,31.957476],[-106.624299,31.961054],[-106.620454,31.963403],[-106.619371,31.964777],[-106.618745,31.966955],[-106.619569,31.971578],[-106.621873,31.972933],[-106.623216,31.97291],[-106.626466,31.97069],[-106.630114,31.971258],[-106.638186,31.97682],[-106.639529,31.980348],[-106.636492,31.985719],[-106.631182,31.989809],[-106.623568,31.990999],[-106.619448,31.994733],[-106.618486,32.000495],[-106.599096,32.000731],[-106.598639,32.000754],[-106.595333,32.000778],[-106.587972,32.000749],[-106.566056,32.000759],[-106.565142,32.000736],[-106.411075,32.001334],[-106.394298,32.001484],[-106.377165,32.001177],[-106.376861,32.001172],[-106.313307,32.001512],[-106.205915,32.001762],[-106.200699,32.001785],[-106.18184,32.00205],[-106.125534,32.002533],[-106.099756,32.002492],[-105.998003,32.002328],[-105.9006,32.0021],[-105.886159,32.00197],[-105.854061,32.00235],[-105.750527,32.002206],[-105.731362,32.001564],[-105.429281,32.000577],[-105.428582,32.0006],[-105.427049,32.000638],[-105.390396,32.000607],[-105.153994,32.000497],[-105.15031,32.000497],[-105.14824,32.000485],[-105.132916,32.000518],[-105.131377,32.000524],[-105.11804,32.000485],[-105.078605,32.000533],[-105.077046,32.000579],[-104.918272,32.000496],[-104.847757,32.000482],[-104.643526,32.000443],[-104.640918,32.000396],[-104.531937,32.000311],[-104.531756,32.000117],[-104.024521,32.00001],[-103.980179,32.000125],[-103.875476,32.000554],[-103.748317,32.000198],[-103.722853,32.000208],[-103.326501,32.00037],[-103.278521,32.000419],[-103.270383,32.000326],[-103.267708,32.000324],[-103.267633,32.000475],[-103.215641,32.000513],[-103.088698,32.000453],[-103.085876,32.000465],[-103.064423,32.000518],[-103.064344,32.087051],[-103.064348,32.123041],[-103.064422,32.145006],[-103.064696,32.522193],[-103.064761,32.587983],[-103.064788,32.600397],[-103.064761,32.601863],[-103.064815,32.624537],[-103.064633,32.64642],[-103.064864,32.682647],[-103.064798,32.690761],[-103.064799,32.708694],[-103.064827,32.726628],[-103.064807,32.777303],[-103.064698,32.783602],[-103.064711,32.784593],[-103.064699,32.827531],[-103.064672,32.82847],[-103.064889,32.849359],[-103.064916,32.85726],[-103.064807,32.857696],[-103.064862,32.868346],[-103.064701,32.879355],[-103.064569,32.900014],[-103.064657,32.959097],[-103.064679,32.964373],[-103.064625,32.999899],[-103.064452,33.01029],[-103.06398,33.038693],[-103.063905,33.042055],[-103.060103,33.219225],[-103.05972,33.256262],[-103.059242,33.260371],[-103.057856,33.315234],[-103.057487,33.329477],[-103.056655,33.388416],[-103.056655,33.388438],[-103.05261,33.570599],[-103.051664,33.629489],[-103.051363,33.64195],[-103.051535,33.650487],[-103.051087,33.658186],[-103.050532,33.672408],[-103.050148,33.701971],[-103.049608,33.737766],[-103.049096,33.74627],[-103.047346,33.824675],[-103.046907,33.8503],[-103.045644,33.901537],[-103.045698,33.906299],[-103.044893,33.945617],[-103.04395,33.974629],[-103.043617,34.003633],[-103.043531,34.018014],[-103.043555,34.032714],[-103.043746,34.037294],[-103.043771,34.041538],[-103.043721,34.04232],[-103.043767,34.043545],[-103.043744,34.049986],[-103.043686,34.063078],[-103.043516,34.079382],[-103.043569,34.087947],[-103.043644,34.256903],[-103.043719,34.289441],[-103.043936,34.302585],[-103.043979,34.312749],[-103.043979,34.312764],[-103.043946,34.379555],[-103.043944,34.37966],[-103.043919,34.380916],[-103.043693,34.383578],[-103.04363,34.38469],[-103.043614,34.384969],[-103.043613,34.388679],[-103.043613,34.390442],[-103.043585,34.393716],[-103.043611,34.397105],[-103.043583,34.400678],[-103.043538,34.405463],[-103.043582,34.455657],[-103.043588,34.459662],[-103.043589,34.459774],[-103.043594,34.46266],[-103.043072,34.619782],[-103.043286,34.653099],[-103.042827,34.671188],[-103.042769,34.747361],[-103.04277,34.792224],[-103.042781,34.850243],[-103.042521,34.899546],[-103.042552,34.954101],[-103.042642,35.109913],[-103.043261,35.125058],[-103.04252,35.135596],[-103.0426,35.142766],[-103.042711,35.144735],[-103.042568,35.159318],[-103.042395,35.178573],[-103.042339,35.181922],[-103.042366,35.182786],[-103.042377,35.183149],[-103.042377,35.183156],[-103.042497,35.211862],[-103.042775,35.241237],[-103.042366,35.250056],[-103.041554,35.622487],[-103.041272,35.739274],[-103.041146,35.791583],[-103.041917,35.796441],[-103.041716,35.814072],[-103.042186,35.825217],[-103.041305,35.837694],[-103.040824,36.055231],[-103.041674,36.317534],[-103.041745,36.318267],[-103.041924,36.500439],[-103.002434,36.500397],[-102.250453,36.500369],[-102.24499,36.500704],[-102.162463,36.500326],[-102.12545,36.500324],[-102.122066,36.500684],[-102.032339,36.50061],[-101.930245,36.500526],[-101.826565,36.499654],[-101.826498,36.499535],[-101.78811,36.499678],[-101.783359,36.499709],[-101.781987,36.499718],[-101.78061,36.499727],[-101.779435,36.499734],[-101.709314,36.499722],[-101.698685,36.499508],[-101.653708,36.499573],[-101.649966,36.499573],[-101.623915,36.499528],[-101.085156,36.499244],[-101.052418,36.499563],[-101.045331,36.49954],[-100.977088,36.499595],[-100.954153,36.499599],[-100.936058,36.499602],[-100.918513,36.499621],[-100.884174,36.499682],[-100.88408,36.499682],[-100.859657,36.499687],[-100.85084,36.4997],[-100.824236,36.499618],[-100.824218,36.499618],[-100.80619,36.499674],[-100.806172,36.499634],[-100.802909,36.499621],[-100.802886,36.499621],[-100.761811,36.499618],[-100.761811,36.49958],[-100.724362,36.49958],[-100.724361,36.499558],[-100.708626,36.499553],[-100.708628,36.499521],[-100.657763,36.499483],[-100.657763,36.4995],[-100.648343,36.499495],[-100.648344,36.499463],[-100.592614,36.499469],[-100.592556,36.499469],[-100.592551,36.499429],[-100.583539,36.499483],[-100.583379,36.499443],[-100.578114,36.499463],[-100.578114,36.499439],[-100.546145,36.499343],[-100.531215,36.499341],[-100.531215,36.49929],[-100.530478,36.49924],[-100.530314,36.499357],[-100.522227,36.499291],[-100.441065,36.49949],[-100.441064,36.499462],[-100.433959,36.499456],[-100.421328,36.499447],[-100.421301,36.499488],[-100.413634,36.499444],[-100.41355,36.499469],[-100.378634,36.499517],[-100.378592,36.499445],[-100.351852,36.499487],[-100.351842,36.499473],[-100.334464,36.49942],[-100.334441,36.49944],[-100.32415,36.499679],[-100.311245,36.499631],[-100.311018,36.499688],[-100.310643,36.499642],[-100.181221,36.499633],[-100.090021,36.499634],[-100.003762,36.499699],[-100.000406,36.499702],[-100.000399,36.055677],[-100.000396,35.880948],[-100.000392,35.619115],[-100.000389,35.422364],[-100.000385,35.182702],[-100.000384,35.030385],[-100.000381,34.746461],[-100.000381,34.746358],[-100.000381,34.560509],[-99.997501,34.560424],[-99.985833,34.560079],[-99.974762,34.561318],[-99.971555,34.562179],[-99.965608,34.565844],[-99.958898,34.571271],[-99.957541,34.572709],[-99.957553,34.574169],[-99.956717,34.576524],[-99.954567,34.578195],[-99.94572,34.579273],[-99.929334,34.576714],[-99.923211,34.574552],[-99.921801,34.570253],[-99.915771,34.565975],[-99.898943,34.555804],[-99.896007,34.55553],[-99.89376,34.554219],[-99.887147,34.549047],[-99.874403,34.537095],[-99.873254,34.535351],[-99.872357,34.532096],[-99.868953,34.527615],[-99.853066,34.511593],[-99.844658,34.506787],[-99.832904,34.500068],[-99.825325,34.497596],[-99.818186,34.48784],[-99.818739,34.484976],[-99.814313,34.476204],[-99.793684,34.453894],[-99.782986,34.444364],[-99.775743,34.444225],[-99.765599,34.437488],[-99.764826,34.436434],[-99.764882,34.435266],[-99.767648,34.431854],[-99.767234,34.430502],[-99.754248,34.421289],[-99.740907,34.414763],[-99.730348,34.41124],[-99.720259,34.406295],[-99.716416,34.402815],[-99.715089,34.400754],[-99.714232,34.397822],[-99.714838,34.394524],[-99.712682,34.390928],[-99.707901,34.387539],[-99.696462,34.381036],[-99.678283,34.379799],[-99.671377,34.377714],[-99.665992,34.374185],[-99.662705,34.37368],[-99.659362,34.37439],[-99.654194,34.376519],[-99.649662,34.379885],[-99.630905,34.376007],[-99.624197,34.373577],[-99.600026,34.374688],[-99.596323,34.377137],[-99.587596,34.385867],[-99.585442,34.388914],[-99.584531,34.391205],[-99.585306,34.398122],[-99.58448,34.407673],[-99.58006,34.416653],[-99.574367,34.418281],[-99.569696,34.418418],[-99.562204,34.417319],[-99.555986,34.41464],[-99.549242,34.412715],[-99.529786,34.411452],[-99.52365,34.412206],[-99.517624,34.414494],[-99.51428,34.414035],[-99.499875,34.409608],[-99.497091,34.407731],[-99.494104,34.404755],[-99.490426,34.399694],[-99.487219,34.397955],[-99.477547,34.396355],[-99.475123,34.396398],[-99.470969,34.396471],[-99.452648,34.388252],[-99.445021,34.379892],[-99.44076,34.374123],[-99.430995,34.373414],[-99.420432,34.380464],[-99.408848,34.372776],[-99.407168,34.372605],[-99.40296,34.373481],[-99.399603,34.375079],[-99.397253,34.377871],[-99.391492,34.405631],[-99.393919,34.415274],[-99.396488,34.417291],[-99.396902,34.418688],[-99.39701,34.424003],[-99.394956,34.442099],[-99.381011,34.456936],[-99.375365,34.458845],[-99.36961,34.458699],[-99.358795,34.455863],[-99.354672,34.451857],[-99.354837,34.449658],[-99.356771,34.446542],[-99.357102,34.444915],[-99.356713,34.442144],[-99.350407,34.437083],[-99.341337,34.431061],[-99.334037,34.427536],[-99.328674,34.422383],[-99.324222,34.414458],[-99.319606,34.408869],[-99.318363,34.408296],[-99.316373,34.408205],[-99.308274,34.410014],[-99.299098,34.414228],[-99.294648,34.415373],[-99.289922,34.414731],[-99.264167,34.405149],[-99.261321,34.403499],[-99.25898,34.391243],[-99.261191,34.389548],[-99.264508,34.388085],[-99.273958,34.38756],[-99.27534,34.386599],[-99.274926,34.384904],[-99.271281,34.381604],[-99.258696,34.372634],[-99.254722,34.372405],[-99.251408,34.37508],[-99.248969,34.375984],[-99.242945,34.372668],[-99.237233,34.362717],[-99.234252,34.353459],[-99.233274,34.344101],[-99.232606,34.34238],[-99.229994,34.340538],[-99.226153,34.339726],[-99.221975,34.34002],[-99.219769,34.341377],[-99.217335,34.34152],[-99.213135,34.340369],[-99.210716,34.336304],[-99.209724,34.324935],[-99.2116,34.31397],[-99.213476,34.310672],[-99.211648,34.292232],[-99.209742,34.286345],[-99.207561,34.283505],[-99.203681,34.281926],[-99.200222,34.281152],[-99.19626,34.281463],[-99.195605,34.280839],[-99.19457,34.272424],[-99.196926,34.260929],[-99.197153,34.244298],[-99.195553,34.24006],[-99.191139,34.23234],[-99.190146,34.22966],[-99.190036,34.227186],[-99.192076,34.222192],[-99.192683,34.218825],[-99.192104,34.216694],[-99.189511,34.214312],[-99.159016,34.20888],[-99.143985,34.214763],[-99.13822,34.219159],[-99.130609,34.219408],[-99.128514,34.218766],[-99.127549,34.217986],[-99.126614,34.215329],[-99.127525,34.213771],[-99.13009,34.212192],[-99.131553,34.209352],[-99.131885,34.207382],[-99.129792,34.204403],[-99.126567,34.203004],[-99.119204,34.201747],[-99.108758,34.203401],[-99.092191,34.209316],[-99.079535,34.211518],[-99.075978,34.211221],[-99.066465,34.208404],[-99.060344,34.204761],[-99.059159,34.202929],[-99.0588,34.201256],[-99.058084,34.200569],[-99.048792,34.198209],[-99.043471,34.198208],[-99.040962,34.200842],[-99.039004,34.204667],[-99.037459,34.206454],[-99.036273,34.206912],[-99.013075,34.203222],[-99.00579,34.206647],[-99.002916,34.208782],[-99.003433,34.214466],[-99.000761,34.217643],[-98.990852,34.221633],[-98.987294,34.221223],[-98.981364,34.217583],[-98.978685,34.210231],[-98.976587,34.206291],[-98.974132,34.203566],[-98.969003,34.201299],[-98.966302,34.201323],[-98.96247,34.204668],[-98.962085,34.206386],[-98.962307,34.211312],[-98.960791,34.21303],[-98.958475,34.213855],[-98.952513,34.21265],[-98.952358,34.212579],[-98.950396,34.21168],[-98.94022,34.203686],[-98.928145,34.192689],[-98.927456,34.191155],[-98.923129,34.185978],[-98.920704,34.183435],[-98.918333,34.181831],[-98.909349,34.177499],[-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.868116,34.149635],[-98.86255,34.149111],[-98.860125,34.149913],[-98.858419,34.152732],[-98.8579,34.159627],[-98.857322,34.161094],[-98.855585,34.161621],[-98.831115,34.162154],[-98.812954,34.158444],[-98.80681,34.155901],[-98.792015,34.143736],[-98.76557,34.136376],[-98.761797,34.133785],[-98.760558,34.132388],[-98.759486,34.128882],[-98.759653,34.126912],[-98.757037,34.124633],[-98.749291,34.124238],[-98.741966,34.12553],[-98.739461,34.127394],[-98.737232,34.130992],[-98.73682,34.133374],[-98.735471,34.135208],[-98.734287,34.135758],[-98.717537,34.13645],[-98.716104,34.135947],[-98.696518,34.133521],[-98.690072,34.133155],[-98.655655,34.158258],[-98.650583,34.163113],[-98.648073,34.164441],[-98.643223,34.164531],[-98.63573,34.161618],[-98.621666,34.157195],[-98.616733,34.156418],[-98.611829,34.156558],[-98.610158,34.157099],[-98.608853,34.157521],[-98.603978,34.160249],[-98.599789,34.160571],[-98.577136,34.148962],[-98.572451,34.145091],[-98.560191,34.133202],[-98.558593,34.128254],[-98.550917,34.119334],[-98.536257,34.107343],[-98.530611,34.099843],[-98.5282,34.094961],[-98.504182,34.072371],[-98.486328,34.062598],[-98.48204,34.06227],[-98.475066,34.064269],[-98.449034,34.073462],[-98.446379,34.07543],[-98.445784,34.076827],[-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.423116,34.083548],[-98.422253,34.083037],[-98.419995,34.082488],[-98.417813,34.083029],[-98.414426,34.085074],[-98.399777,34.099973],[-98.398389,34.104566],[-98.39816,34.121396],[-98.400494,34.121778],[-98.400967,34.122236],[-98.398441,34.128456],[-98.384381,34.146317],[-98.381238,34.149454],[-98.367494,34.156191],[-98.364023,34.157109],[-98.325445,34.151025],[-98.32258,34.14972],[-98.31875,34.146421],[-98.300209,34.134579],[-98.293901,34.13302],[-98.280321,34.13075],[-98.256467,34.129481],[-98.247954,34.130717],[-98.241013,34.133103],[-98.225282,34.127245],[-98.2236,34.125093],[-98.216463,34.121821],[-98.203711,34.117676],[-98.200075,34.116783],[-98.191455,34.115753],[-98.16912,34.114171],[-98.157412,34.120467],[-98.154354,34.122734],[-98.142754,34.136359],[-98.138979,34.141805],[-98.13677,34.144992],[-98.130816,34.150532],[-98.123377,34.15454],[-98.114506,34.154727],[-98.109462,34.154111],[-98.107065,34.152531],[-98.101937,34.14683],[-98.090224,34.130181],[-98.089755,34.128211],[-98.09066,34.12198],[-98.092421,34.116917],[-98.095118,34.11119],[-98.099328,34.104295],[-98.104309,34.0982],[-98.119417,34.084474],[-98.121039,34.081266],[-98.120208,34.072127],[-98.11803,34.067065],[-98.114587,34.06228],[-98.099096,34.048639],[-98.096177,34.044625],[-98.096542,34.040976],[-98.097272,34.038969],[-98.098001,34.03824],[-98.102015,34.037327],[-98.104022,34.036233],[-98.105482,34.033861],[-98.105482,34.031307],[-98.103617,34.029207],[-98.088203,34.005481],[-98.08526,34.003259],[-98.082839,34.002412],[-98.055197,33.995841],[-98.041117,33.993456],[-98.027672,33.993357],[-98.019485,33.993804],[-98.005667,33.995964],[-97.987388,33.999823],[-97.982806,34.001949],[-97.978243,34.005387],[-97.974173,34.006716],[-97.97167,34.005434],[-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.956917,33.958502],[-97.960351,33.951928],[-97.965737,33.947392],[-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.957155,33.914454],[-97.960615,33.910354],[-97.964461,33.907398],[-97.969873,33.905999],[-97.973143,33.908014],[-97.976963,33.912549],[-97.978804,33.912548],[-97.979985,33.911402],[-97.983552,33.904002],[-97.98454,33.900703],[-97.984566,33.899077],[-97.983769,33.8972],[-97.977859,33.889929],[-97.977808,33.889883],[-97.974178,33.886643],[-97.967777,33.88243],[-97.958438,33.879179],[-97.951215,33.878424],[-97.946464,33.878883],[-97.94273,33.879845],[-97.938802,33.879891],[-97.936743,33.879204],[-97.905467,33.863531],[-97.896738,33.857985],[-97.877387,33.850236],[-97.871447,33.849001],[-97.865765,33.849393],[-97.834333,33.857671],[-97.805423,33.877167],[-97.803473,33.88019],[-97.801578,33.885138],[-97.784657,33.890632],[-97.780618,33.895533],[-97.779683,33.899243],[-97.78034,33.904833],[-97.783717,33.91056],[-97.772672,33.914382],[-97.765446,33.913532],[-97.76377,33.914241],[-97.760224,33.917194],[-97.759399,33.91882],[-97.759834,33.92521],[-97.762661,33.930846],[-97.762768,33.934396],[-97.752957,33.937049],[-97.738478,33.937421],[-97.736554,33.936575],[-97.733723,33.936392],[-97.732267,33.936691],[-97.725289,33.941045],[-97.716772,33.947666],[-97.709684,33.954997],[-97.704159,33.963336],[-97.697921,33.977331],[-97.69311,33.983699],[-97.688023,33.986607],[-97.671772,33.99137],[-97.661489,33.990818],[-97.65621,33.989488],[-97.633778,33.981257],[-97.609091,33.968093],[-97.589598,33.953554],[-97.588828,33.951882],[-97.591514,33.9282],[-97.595084,33.922954],[-97.596155,33.922106],[-97.596979,33.920228],[-97.597115,33.917868],[-97.596289,33.913769],[-97.589254,33.903922],[-97.587441,33.902479],[-97.582744,33.900785],[-97.561176,33.897537],[-97.55827,33.897099],[-97.555002,33.897282],[-97.551541,33.897947],[-97.543246,33.901289],[-97.532723,33.906577],[-97.525277,33.911751],[-97.519171,33.913638],[-97.50096,33.919643],[-97.494858,33.919258],[-97.486505,33.916994],[-97.484037,33.915762],[-97.460376,33.903948],[-97.458069,33.901635],[-97.450954,33.891398],[-97.451469,33.87093],[-97.457617,33.855126],[-97.459566,33.853316],[-97.461486,33.84956],[-97.462857,33.841772],[-97.459068,33.834581],[-97.453057,33.828536],[-97.444193,33.823773],[-97.426493,33.819398],[-97.410387,33.818845],[-97.372941,33.819454],[-97.368744,33.821471],[-97.365507,33.823763],[-97.358513,33.830018],[-97.348338,33.843876],[-97.3409,33.860236],[-97.339392,33.86763],[-97.336524,33.872827],[-97.33294,33.87444],[-97.329176,33.87444],[-97.327563,33.873903],[-97.326487,33.872648],[-97.324158,33.866017],[-97.322365,33.864941],[-97.318243,33.865121],[-97.315913,33.865838],[-97.314413,33.866989],[-97.30749,33.878204],[-97.302471,33.880175],[-97.299245,33.880175],[-97.294227,33.876412],[-97.285983,33.868526],[-97.279108,33.864555],[-97.275348,33.863225],[-97.271532,33.86256],[-97.256625,33.863286],[-97.255636,33.863698],[-97.254235,33.865323],[-97.249209,33.875101],[-97.24618,33.900344],[-97.244946,33.903092],[-97.242092,33.906277],[-97.226522,33.914642],[-97.210921,33.916064],[-97.206141,33.91428],[-97.185458,33.9007],[-97.180845,33.895204],[-97.179609,33.89225],[-97.166629,33.847311],[-97.166824,33.840395],[-97.171627,33.835335],[-97.18137,33.831375],[-97.186254,33.830894],[-97.19369,33.831307],[-97.195831,33.830803],[-97.197477,33.829795],[-97.1997,33.827322],[-97.203514,33.821825],[-97.204995,33.81887],[-97.205652,33.809824],[-97.205431,33.801488],[-97.203236,33.797343],[-97.194786,33.785344],[-97.190397,33.781153],[-97.187792,33.769702],[-97.181843,33.75587],[-97.172192,33.737545],[-97.163149,33.729322],[-97.16281,33.729118],[-97.155066,33.724442],[-97.149394,33.721967],[-97.13753,33.718664],[-97.126102,33.716941],[-97.121102,33.717174],[-97.113265,33.718804],[-97.108936,33.720294],[-97.104525,33.722608],[-97.097154,33.727809],[-97.094085,33.730992],[-97.091072,33.735115],[-97.086195,33.743933],[-97.084693,33.753147],[-97.084613,33.759993],[-97.085218,33.765512],[-97.087852,33.774099],[-97.093917,33.789052],[-97.095236,33.794136],[-97.094771,33.798532],[-97.092112,33.804097],[-97.087999,33.808747],[-97.07859,33.812756],[-97.067977,33.814476],[-97.062632,33.816079],[-97.058623,33.818752],[-97.055416,33.82383],[-97.055148,33.825701],[-97.055683,33.830779],[-97.057821,33.83452],[-97.058623,33.837728],[-97.057554,33.840133],[-97.055416,33.841202],[-97.052209,33.841737],[-97.048734,33.840935],[-97.041245,33.837761],[-97.038858,33.838264],[-97.023899,33.844213],[-97.017857,33.850142],[-96.985567,33.886522],[-96.983971,33.892083],[-96.984939,33.904866],[-96.988745,33.918468],[-96.993997,33.928979],[-96.995023,33.932035],[-96.996183,33.941728],[-96.995368,33.947302],[-96.994288,33.949206],[-96.990835,33.952701],[-96.987892,33.954671],[-96.981337,33.956378],[-96.979415,33.956178],[-96.979347,33.95513],[-96.980676,33.951814],[-96.981031,33.94916],[-96.979818,33.941588],[-96.976955,33.937453],[-96.973807,33.935697],[-96.972542,33.935795],[-96.952313,33.944582],[-96.944611,33.949217],[-96.934791,33.954359],[-96.932252,33.955688],[-96.924268,33.959159],[-96.922114,33.959579],[-96.918618,33.958926],[-96.9163,33.957798],[-96.911336,33.95396],[-96.907387,33.950025],[-96.905253,33.947219],[-96.902434,33.942018],[-96.899442,33.933728],[-96.896469,33.913318],[-96.897194,33.902954],[-96.895728,33.896414],[-96.88301,33.868019],[-96.875281,33.860505],[-96.866438,33.853149],[-96.85609,33.84749],[-96.850593,33.847211],[-96.845896,33.848975],[-96.841592,33.852894],[-96.840819,33.863645],[-96.839778,33.868396],[-96.837413,33.871349],[-96.832157,33.874835],[-96.812778,33.872646],[-96.794276,33.868886],[-96.783485,33.863534],[-96.780569,33.860098],[-96.779588,33.857939],[-96.777202,33.848162],[-96.776766,33.841976],[-96.770676,33.829621],[-96.769378,33.827477],[-96.766235,33.825458],[-96.761588,33.824406],[-96.754041,33.824658],[-96.746038,33.825699],[-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.682209,33.873876],[-96.682103,33.876645],[-96.683464,33.884217],[-96.680947,33.896204],[-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.64405,33.905962],[-96.630117,33.895422],[-96.628294,33.894477],[-96.607562,33.894735],[-96.592948,33.895616],[-96.588519,33.894881],[-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.625399,33.856542],[-96.628969,33.852407],[-96.629747,33.850866],[-96.630022,33.847541],[-96.62929,33.845488],[-96.623155,33.841483],[-96.601258,33.834327],[-96.592926,33.830916],[-96.587067,33.828009],[-96.572937,33.819098],[-96.566298,33.818511],[-96.551223,33.819129],[-96.532865,33.823005],[-96.529234,33.822127],[-96.526655,33.820891],[-96.523863,33.818114],[-96.519911,33.811347],[-96.516584,33.803168],[-96.515959,33.798934],[-96.515912,33.787795],[-96.511914,33.781478],[-96.502286,33.77346],[-96.500268,33.772583],[-96.48606,33.77301],[-96.459154,33.775232],[-96.456254,33.776035],[-96.45051,33.780588],[-96.448045,33.781031],[-96.436455,33.78005],[-96.430214,33.778654],[-96.422643,33.776041],[-96.419961,33.773034],[-96.417562,33.769038],[-96.416146,33.766099],[-96.413408,33.757714],[-96.408469,33.751192],[-96.403507,33.746289],[-96.384116,33.730141],[-96.379404,33.725816],[-96.36959,33.716809],[-96.366945,33.711222],[-96.363253,33.70105],[-96.363135,33.694215],[-96.362198,33.691818],[-96.355946,33.687155],[-96.348306,33.686379],[-96.342665,33.686975],[-96.321103,33.6951],[-96.31876,33.696753],[-96.316925,33.698997],[-96.309964,33.710489],[-96.307035,33.719987],[-96.306596,33.726786],[-96.307389,33.735005],[-96.3061,33.741002],[-96.303009,33.750878],[-96.301706,33.753756],[-96.294867,33.764771],[-96.292482,33.766419],[-96.277269,33.769735],[-96.269896,33.768405],[-96.248232,33.758986],[-96.229023,33.748021],[-96.220521,33.74739],[-96.1999,33.752117],[-96.186554,33.756375],[-96.178059,33.760518],[-96.174633,33.763699],[-96.169452,33.770131],[-96.162757,33.788769],[-96.162123,33.79614],[-96.166837,33.797908],[-96.170373,33.799382],[-96.173025,33.80056],[-96.17515,33.801951],[-96.17734,33.805117],[-96.178964,33.810553],[-96.17691,33.813934],[-96.17589,33.814627],[-96.164217,33.817001],[-96.150765,33.816987],[-96.148792,33.819197],[-96.15163,33.831946],[-96.150147,33.835856],[-96.14807,33.837799],[-96.138905,33.839159],[-96.122951,33.839964],[-96.118169,33.837884],[-96.109993,33.832396],[-96.104075,33.83073],[-96.09936,33.83047],[-96.097448,33.832725],[-96.097638,33.837935],[-96.099153,33.842409],[-96.100785,33.84423],[-96.101349,33.845721],[-96.101473,33.846709],[-96.100095,33.847971],[-96.084626,33.846656],[-96.063924,33.841523],[-96.055358,33.838262],[-96.048834,33.836468],[-96.037191,33.841245],[-96.031271,33.850758],[-96.029463,33.852402],[-96.025188,33.852073],[-96.022229,33.850923],[-96.0219,33.849114],[-96.022507,33.84613],[-96.022065,33.843196],[-96.021407,33.841881],[-96.019599,33.840566],[-96.005296,33.845505],[-95.998351,33.851049],[-95.997709,33.852182],[-95.997405,33.855526],[-95.997734,33.860951],[-95.996748,33.864403],[-95.993624,33.866211],[-95.991487,33.866869],[-95.988857,33.866869],[-95.984254,33.864403],[-95.980966,33.859307],[-95.972156,33.856371],[-95.951609,33.857017],[-95.944284,33.859811],[-95.941267,33.861619],[-95.936631,33.870615],[-95.935325,33.875099],[-95.935308,33.878724],[-95.935637,33.880371],[-95.936817,33.882386],[-95.937202,33.884652],[-95.936132,33.886826],[-95.935198,33.887101],[-95.922712,33.883758],[-95.915961,33.881148],[-95.905343,33.875629],[-95.893306,33.868161],[-95.887491,33.863856],[-95.881292,33.860627],[-95.859469,33.852456],[-95.849864,33.844952],[-95.845628,33.840777],[-95.843773,33.838949],[-95.840012,33.836486],[-95.837516,33.83564],[-95.831948,33.835161],[-95.828245,33.836054],[-95.822787,33.838756],[-95.820784,33.840564],[-95.819358,33.842785],[-95.818976,33.844456],[-95.819525,33.848439],[-95.820677,33.850751],[-95.821666,33.855443],[-95.821666,33.856633],[-95.820596,33.858465],[-95.805149,33.861304],[-95.800842,33.861212],[-95.789867,33.857686],[-95.787891,33.856336],[-95.776255,33.845145],[-95.773282,33.843834],[-95.772067,33.843817],[-95.763622,33.847954],[-95.758016,33.85008],[-95.75431,33.853992],[-95.753513,33.856464],[-95.757458,33.867957],[-95.760805,33.870911],[-95.76184,33.87295],[-95.762559,33.874367],[-95.761916,33.883402],[-95.758344,33.890611],[-95.756367,33.892625],[-95.747335,33.895756],[-95.737508,33.895967],[-95.728449,33.893704],[-95.71354,33.885124],[-95.710878,33.884552],[-95.696962,33.885218],[-95.684831,33.890232],[-95.676925,33.897237],[-95.669978,33.905844],[-95.665338,33.908132],[-95.659818,33.909092],[-95.647273,33.905976],[-95.636978,33.906613],[-95.603657,33.927195],[-95.599678,33.934247],[-95.585945,33.93448],[-95.563424,33.932193],[-95.561007,33.931552],[-95.559414,33.930179],[-95.556915,33.92702],[-95.551148,33.914566],[-95.549145,33.90795],[-95.549475,33.901311],[-95.552331,33.89442],[-95.552085,33.888422],[-95.548325,33.882744],[-95.545197,33.880294],[-95.53979,33.879904],[-95.533283,33.881162],[-95.525322,33.885487],[-95.520138,33.889329],[-95.515302,33.891142],[-95.510063,33.890135],[-95.506234,33.886306],[-95.506495,33.878589],[-95.506085,33.87639],[-95.502304,33.874742],[-95.492028,33.874822],[-95.478575,33.879301],[-95.469962,33.886105],[-95.464925,33.886709],[-95.46291,33.885903],[-95.461499,33.883686],[-95.464211,33.873372],[-95.463346,33.872313],[-95.44737,33.86885],[-95.407795,33.866308],[-95.375233,33.868243],[-95.352338,33.867789],[-95.339122,33.868873],[-95.334854,33.876831],[-95.334523,33.885788],[-95.333452,33.886286],[-95.325572,33.885704],[-95.309458,33.880304],[-95.294789,33.875388],[-95.287865,33.874946],[-95.283445,33.877746],[-95.281677,33.882902],[-95.28153,33.887617],[-95.280351,33.896751],[-95.279762,33.899109],[-95.277846,33.900877],[-95.275342,33.901761],[-95.272542,33.902055],[-95.26385,33.899256],[-95.261051,33.899993],[-95.255747,33.902939],[-95.253095,33.905444],[-95.250885,33.913105],[-95.250737,33.917083],[-95.251327,33.924155],[-95.25302,33.927237],[-95.253623,33.92971],[-95.252906,33.933648],[-95.230491,33.960764],[-95.226393,33.961954],[-95.219358,33.961567],[-95.184075,33.950353],[-95.168746,33.941606],[-95.166686,33.939728],[-95.161109,33.937598],[-95.155888,33.937032],[-95.149462,33.936336],[-95.131056,33.936925],[-95.1247,33.934675],[-95.121184,33.931307],[-95.1225,33.921717],[-95.122365,33.918632],[-95.119951,33.915815],[-95.110964,33.912998],[-95.103318,33.913669],[-95.10077,33.912193],[-95.098489,33.909913],[-95.095002,33.904816],[-95.09527,33.899316],[-95.093929,33.895963],[-95.090441,33.89328],[-95.084002,33.89328],[-95.078905,33.898377],[-95.07126,33.901597],[-95.065492,33.899585],[-95.061065,33.895292],[-95.058834,33.886813],[-95.049025,33.86409],[-95.046568,33.862565],[-95.037207,33.86025],[-95.022325,33.859813],[-95.016422,33.861392],[-95.008376,33.866089],[-95.000223,33.862505],[-94.995524,33.857438],[-94.992671,33.852455],[-94.988487,33.851],[-94.983303,33.851354],[-94.98165,33.852284],[-94.976208,33.859847],[-94.973411,33.861731],[-94.971435,33.862123],[-94.968895,33.860916],[-94.965888,33.848422],[-94.964401,33.837021],[-94.957676,33.835004],[-94.949533,33.825708],[-94.948716,33.818023],[-94.944302,33.812138],[-94.93956,33.810503],[-94.9358,33.810339],[-94.932366,33.810993],[-94.928442,33.812628],[-94.924518,33.812792],[-94.921902,33.811811],[-94.91945,33.810176],[-94.917815,33.808704],[-94.916834,33.804617],[-94.916998,33.80151],[-94.919614,33.794153],[-94.920104,33.789575],[-94.919614,33.786305],[-94.911427,33.778383],[-94.906245,33.778192],[-94.902276,33.776289],[-94.888368,33.76724],[-94.886226,33.764594],[-94.881448,33.765549],[-94.879218,33.764912],[-94.876033,33.760771],[-94.875497,33.755483],[-94.87708,33.75222],[-94.874668,33.749164],[-94.8693,33.745871],[-94.849296,33.739585],[-94.841634,33.739431],[-94.830804,33.740068],[-94.827938,33.741342],[-94.826027,33.74389],[-94.824753,33.749305],[-94.821886,33.750897],[-94.817427,33.752172],[-94.812012,33.751853],[-94.809145,33.749305],[-94.798634,33.744527],[-94.789716,33.74612],[-94.775064,33.755038],[-94.770924,33.754401],[-94.768057,33.753446],[-94.766465,33.750897],[-94.766146,33.748031],[-94.768057,33.742616],[-94.767739,33.73752],[-94.762961,33.731787],[-94.759139,33.729557],[-94.753087,33.729557],[-94.742576,33.727009],[-94.739391,33.72255],[-94.73748,33.716179],[-94.739072,33.710128],[-94.737618,33.706008],[-94.737161,33.704713],[-94.732384,33.700254],[-94.728243,33.699617],[-94.725695,33.702483],[-94.724102,33.705669],[-94.721873,33.707261],[-94.719006,33.708217],[-94.714865,33.707261],[-94.711043,33.705669],[-94.709451,33.699617],[-94.710725,33.696113],[-94.710725,33.691654],[-94.710088,33.68815],[-94.707858,33.686876],[-94.684792,33.684353],[-94.659167,33.692138],[-94.652265,33.690979],[-94.649628,33.688049],[-94.648457,33.684534],[-94.647871,33.680432],[-94.648457,33.673401],[-94.646113,33.6693],[-94.64289,33.668421],[-94.635273,33.669886],[-94.630586,33.673401],[-94.627656,33.677796],[-94.621211,33.681018],[-94.616817,33.679554],[-94.611543,33.674866],[-94.607442,33.67223],[-94.603047,33.671351],[-94.596895,33.671351],[-94.593673,33.673987],[-94.59045,33.677503],[-94.586641,33.678968],[-94.57962,33.677623],[-94.576974,33.673401],[-94.572872,33.669886],[-94.569943,33.66637],[-94.569357,33.663441],[-94.571993,33.659632],[-94.572286,33.656995],[-94.570821,33.654945],[-94.568771,33.654652],[-94.564669,33.655824],[-94.557052,33.656702],[-94.552072,33.65348],[-94.551193,33.650257],[-94.551312,33.64457],[-94.553537,33.642054],[-94.552658,33.638246],[-94.549142,33.635902],[-94.543869,33.635902],[-94.538889,33.637953],[-94.533322,33.63766],[-94.529221,33.634437],[-94.528342,33.62975],[-94.529807,33.627406],[-94.528928,33.62184],[-94.526291,33.619203],[-94.520725,33.616567],[-94.504615,33.620682],[-94.491503,33.625115],[-94.487514,33.628939],[-94.485875,33.637867],[-94.481313,33.638819],[-94.476415,33.638947],[-94.466075,33.636262],[-94.464186,33.637655],[-94.461453,33.643616],[-94.459198,33.645146],[-94.45482,33.644903],[-94.448637,33.642766],[-94.446871,33.640178],[-94.447514,33.636255],[-94.448451,33.634497],[-94.458817,33.632444],[-94.462736,33.63091],[-94.461129,33.625415],[-94.460286,33.624421],[-94.455255,33.622917],[-94.452711,33.622621],[-94.452325,33.618817],[-94.452961,33.616986],[-94.454769,33.615156],[-94.462336,33.610567],[-94.469451,33.607316],[-94.472166,33.604199],[-94.471974,33.602665],[-94.471152,33.601588],[-94.468086,33.599436],[-94.458232,33.59827],[-94.453996,33.592223],[-94.451622,33.591361],[-94.449112,33.590894],[-94.442364,33.591243],[-94.441537,33.591502],[-94.439518,33.594154],[-94.430039,33.591124],[-94.427578,33.589319],[-94.425982,33.586425],[-94.413155,33.569368],[-94.412175,33.568691],[-94.408901,33.568197],[-94.403342,33.568424],[-94.397342,33.571608],[-94.385927,33.581888],[-94.382887,33.583268],[-94.379649,33.580607],[-94.378076,33.577019],[-94.37776,33.574609],[-94.378561,33.571329],[-94.380091,33.568943],[-94.382534,33.567057],[-94.388052,33.565511],[-94.392357,33.565287],[-94.394656,33.564059],[-94.397398,33.562314],[-94.399227,33.559903],[-94.399393,33.557077],[-94.399144,33.555498],[-94.397957,33.55439],[-94.392573,33.551142],[-94.389515,33.546778],[-94.386086,33.544923],[-94.381667,33.544035],[-94.373393,33.544471],[-94.371598,33.545001],[-94.363297,33.544957],[-94.361351,33.544613],[-94.35897,33.54323],[-94.355945,33.54318],[-94.348945,33.548359],[-94.347383,33.551078],[-94.34729,33.552197],[-94.352653,33.560611],[-94.352433,33.562172],[-94.345513,33.567313],[-94.344023,33.567824],[-94.340577,33.567878],[-94.338422,33.567082],[-94.33494,33.563592],[-94.33438,33.562536],[-94.333895,33.557461],[-94.333203,33.555366],[-94.331833,33.553348],[-94.33059,33.552692],[-94.32366,33.549835],[-94.319492,33.548864],[-94.309582,33.551673],[-94.30641,33.555616],[-94.306215,33.557676],[-94.307181,33.559797],[-94.303577,33.56828],[-94.301023,33.573022],[-94.298392,33.576218],[-94.293258,33.580419],[-94.289129,33.582144],[-94.287025,33.58241],[-94.283582,33.581891],[-94.282648,33.580978],[-94.280849,33.577187],[-94.280605,33.574908],[-94.282172,33.572989],[-94.290372,33.567905],[-94.291687,33.563481],[-94.290901,33.558872],[-94.28944,33.557635],[-94.287572,33.557178],[-94.27909,33.557026],[-94.275601,33.557964],[-94.274473,33.558652],[-94.271998,33.561518],[-94.270979,33.563221],[-94.270853,33.564783],[-94.265669,33.573589],[-94.262755,33.577354],[-94.257801,33.582508],[-94.252656,33.586144],[-94.245932,33.589114],[-94.242777,33.589709],[-94.240179,33.589536],[-94.236972,33.587411],[-94.236363,33.585992],[-94.236836,33.580914],[-94.237975,33.577757],[-94.238868,33.576722],[-94.244366,33.573549],[-94.251108,33.56528],[-94.252331,33.561855],[-94.252283,33.560445],[-94.251569,33.558188],[-94.250197,33.556765],[-94.237904,33.552675],[-94.231844,33.552088],[-94.226392,33.552912],[-94.222921,33.554088],[-94.219221,33.556096],[-94.213604,33.563134],[-94.208078,33.566911],[-94.205634,33.567229],[-94.203594,33.566546],[-94.201237,33.557826],[-94.199486,33.556085],[-94.197817,33.555238],[-94.196395,33.555123],[-94.193248,33.556154],[-94.191333,33.557666],[-94.189884,33.562454],[-94.192483,33.570425],[-94.194399,33.573678],[-94.196367,33.57478],[-94.201106,33.575851],[-94.204265,33.575005],[-94.207405,33.574353],[-94.209665,33.57351],[-94.211329,33.573774],[-94.216141,33.576392],[-94.217408,33.57926],[-94.217198,33.580737],[-94.214431,33.583187],[-94.212997,33.583487],[-94.210967,33.583143],[-94.205788,33.58138],[-94.203588,33.580816],[-94.199752,33.581098],[-94.196536,33.581719],[-94.194465,33.582886],[-94.190891,33.587474],[-94.183913,33.594682],[-94.18088,33.592612],[-94.176327,33.591077],[-94.162266,33.588906],[-94.161082,33.587972],[-94.16201,33.580877],[-94.161277,33.579271],[-94.156782,33.575749],[-94.152626,33.575923],[-94.148732,33.580197],[-94.146048,33.581975],[-94.144383,33.582098],[-94.14216,33.58139],[-94.141852,33.57959],[-94.143024,33.577725],[-94.145669,33.5756],[-94.149506,33.573602],[-94.151257,33.571793],[-94.151755,33.569476],[-94.151456,33.568387],[-94.14852,33.565678],[-94.145239,33.564987],[-94.143402,33.565505],[-94.136864,33.571],[-94.136046,33.571388],[-94.135142,33.571033],[-94.134308,33.569209],[-94.133048,33.557953],[-94.131382,33.552934],[-94.128658,33.550952],[-94.126898,33.550647],[-94.123898,33.5521],[-94.122879,33.553112],[-94.120719,33.560555],[-94.120355,33.5655],[-94.119902,33.566999],[-94.112843,33.566991],[-94.103176,33.57035],[-94.100107,33.572568],[-94.09744,33.573719],[-94.088943,33.575322],[-94.082641,33.575492],[-94.07267,33.572234],[-94.072231,33.572605],[-94.072032,33.573523],[-94.072032,33.574162],[-94.071713,33.574601],[-94.071353,33.57484],[-94.070395,33.574561],[-94.069517,33.574162],[-94.068559,33.573563],[-94.06828,33.571967],[-94.067801,33.570131],[-94.066846,33.568909],[-94.061283,33.568805],[-94.056598,33.567825],[-94.056096,33.567252],[-94.055663,33.561887],[-94.056442,33.560998],[-94.05985,33.559249],[-94.06118,33.559159],[-94.066685,33.560954],[-94.067985,33.560961],[-94.07172,33.559682],[-94.073744,33.558285],[-94.073826,33.555834],[-94.072156,33.553864],[-94.069092,33.553406],[-94.06548,33.550909],[-94.061896,33.549764],[-94.056096,33.550726],[-94.051882,33.552585],[-94.050212,33.551083],[-94.04604,33.551321],[-94.04345,33.552253],[-94.043428,33.551425],[-94.043375,33.542315],[-94.043009,33.493039],[-94.043279,33.49103],[-94.043188,33.470324],[-94.042988,33.435824],[-94.042988,33.431024],[-94.042887,33.420225],[-94.043053,33.377716],[-94.042869,33.37117],[-94.043128,33.358757],[-94.043067,33.352097],[-94.043067,33.347351],[-94.043067,33.330498],[-94.04299,33.271243],[-94.04299,33.271227],[-94.04305,33.260904],[-94.043004,33.250128],[-94.04273,33.241823],[-94.042876,33.215219],[-94.042892,33.202666],[-94.042875,33.199785],[-94.042719,33.160291],[-94.043185,33.143476],[-94.043077,33.138162],[-94.043007,33.13389],[-94.04287,33.092727],[-94.043036,33.079485],[-94.042964,33.019219],[-94.043088,32.955592],[-94.043067,32.937903],[-94.043092,32.910021],[-94.042885,32.898911],[-94.042859,32.892771],[-94.042886,32.881089],[-94.042886,32.880965],[-94.043025,32.880446],[-94.042785,32.871486],[-94.043026,32.797476],[-94.042747,32.786973],[-94.042829,32.785277],[-94.042938,32.780558],[-94.043027,32.776863],[-94.042947,32.767991],[-94.043147,32.693031],[-94.043147,32.69303],[-94.042913,32.655127],[-94.04278,32.643466],[-94.042824,32.640305],[-94.042926,32.622015],[-94.042929,32.61826],[-94.042919,32.610142],[-94.043083,32.564261],[-94.043142,32.559502],[-94.043081,32.513613],[-94.042885,32.505145],[-94.042911,32.492852],[-94.043089,32.486561],[-94.043072,32.4843],[-94.042955,32.480261],[-94.042995,32.478004],[-94.042902,32.472906],[-94.042875,32.471348],[-94.042903,32.470386],[-94.042908,32.439891],[-94.042986,32.435507],[-94.042899,32.400659],[-94.042923,32.399918],[-94.042901,32.392283],[-94.042763,32.373332],[-94.042739,32.363559],[-94.042733,32.269696],[-94.042732,32.26962],[-94.042662,32.218146],[-94.042621,32.196005],[-94.042566,32.166894],[-94.042539,32.166826],[-94.042591,32.158097],[-94.042681,32.137956],[-94.042752,32.125163],[-94.042337,32.119914],[-94.0427,32.056012],[-94.04272,31.999265],[-94.041833,31.992402],[-94.038412,31.992437],[-94.029283,31.995865],[-94.018664,31.990843],[-94.012796,31.981668],[-93.977461,31.926419],[-93.971712,31.920384],[-93.953546,31.910563],[-93.943541,31.908564],[-93.938002,31.906917],[-93.935008,31.903773],[-93.932463,31.895539],[-93.927672,31.891497],[-93.923929,31.88985],[-93.919588,31.890748],[-93.915949,31.892861],[-93.909557,31.893144],[-93.904766,31.890599],[-93.901173,31.885958],[-93.901888,31.880063],[-93.896981,31.873382],[-93.889197,31.867693],[-93.888149,31.856914],[-93.884117,31.847606],[-93.879294,31.843977],[-93.874822,31.840611],[-93.874761,31.821661],[-93.870917,31.816837],[-93.85339,31.805467],[-93.846188,31.802021],[-93.839951,31.798597],[-93.836868,31.794159],[-93.836868,31.788734],[-93.834649,31.783309],[-93.831197,31.780227],[-93.827451,31.777741],[-93.823443,31.775098],[-93.822598,31.773559],[-93.827343,31.75937],[-93.830112,31.754555],[-93.830647,31.745811],[-93.824579,31.734397],[-93.819048,31.728858],[-93.815657,31.719043],[-93.815836,31.711905],[-93.814587,31.707444],[-93.810304,31.705481],[-93.80727,31.704232],[-93.803419,31.700686],[-93.802694,31.697783],[-93.802452,31.693186],[-93.804479,31.685664],[-93.817425,31.672146],[-93.822051,31.673967],[-93.826462,31.666919],[-93.825661,31.661022],[-93.818037,31.647892],[-93.816838,31.622509],[-93.818717,31.614556],[-93.823977,31.614228],[-93.827852,31.616551],[-93.838057,31.606795],[-93.839383,31.599075],[-93.834924,31.586211],[-93.834923,31.58621],[-93.822958,31.56813],[-93.820764,31.558221],[-93.818582,31.554826],[-93.798087,31.534044],[-93.787687,31.527344],[-93.780835,31.525384],[-93.760062,31.523933],[-93.75386,31.525331],[-93.751899,31.525602],[-93.74987,31.526211],[-93.746826,31.526008],[-93.743376,31.525196],[-93.74155,31.522558],[-93.741111,31.520101],[-93.740332,31.517079],[-93.739318,31.51505],[-93.733433,31.513223],[-93.726736,31.5116],[-93.725925,31.504092],[-93.728766,31.496786],[-93.730998,31.492119],[-93.737168,31.484622],[-93.741885,31.483535],[-93.745608,31.481973],[-93.747841,31.480958],[-93.74987,31.478929],[-93.74987,31.475276],[-93.749476,31.46869],[-93.709416,31.442995],[-93.70093,31.437784],[-93.697603,31.428409],[-93.704678,31.4189],[-93.704879,31.410881],[-93.701611,31.409334],[-93.695866,31.409392],[-93.674117,31.397681],[-93.671644,31.393352],[-93.670182,31.387184],[-93.668533,31.379357],[-93.668146,31.375103],[-93.669693,31.371815],[-93.66892,31.3664],[-93.665052,31.363886],[-93.663892,31.361953],[-93.663698,31.360019],[-93.664665,31.357698],[-93.665825,31.355184],[-93.668439,31.353012],[-93.677277,31.330483],[-93.687851,31.309835],[-93.68688,31.305166],[-93.684039,31.301771],[-93.67544,31.30104],[-93.668928,31.297975],[-93.657004,31.281736],[-93.642516,31.269508],[-93.620343,31.271025],[-93.613942,31.259375],[-93.614288,31.251631],[-93.616308,31.244595],[-93.616007,31.23396],[-93.609828,31.229661],[-93.607409,31.227243],[-93.60526,31.224153],[-93.604319,31.220794],[-93.604319,31.215286],[-93.607288,31.205403],[-93.602443,31.182541],[-93.600308,31.176158],[-93.598828,31.174679],[-93.588503,31.165581],[-93.579215,31.167422],[-93.569563,31.177574],[-93.560943,31.182482],[-93.552649,31.185575],[-93.55254,31.185605],[-93.548931,31.186601],[-93.535097,31.185614],[-93.533307,31.184463],[-93.531744,31.180817],[-93.53683,31.15862],[-93.540253,31.156579],[-93.54401,31.153015],[-93.544888,31.148844],[-93.544888,31.143137],[-93.544702,31.135889],[-93.540278,31.128868],[-93.539619,31.121844],[-93.541375,31.113502],[-93.549717,31.10516],[-93.551693,31.097258],[-93.551034,31.091111],[-93.546644,31.082989],[-93.540129,31.078003],[-93.53104,31.074699],[-93.526044,31.070773],[-93.52301,31.065241],[-93.52533,31.060601],[-93.529256,31.057567],[-93.532069,31.055264],[-93.531219,31.051678],[-93.523248,31.037842],[-93.516943,31.032584],[-93.516407,31.02955],[-93.516943,31.023662],[-93.539526,31.008498],[-93.555581,31.003919],[-93.562626,31.005995],[-93.566017,31.004567],[-93.56798,31.001534],[-93.569764,30.996715],[-93.571906,30.987614],[-93.567972,30.977981],[-93.560533,30.971286],[-93.549841,30.967118],[-93.532549,30.950696],[-93.526245,30.939411],[-93.526147,30.930035],[-93.530936,30.924534],[-93.542489,30.920064],[-93.54503,30.920837],[-93.546884,30.921511],[-93.549244,30.921006],[-93.551942,30.918646],[-93.55565,30.911228],[-93.556493,30.901451],[-93.564248,30.895045],[-93.567788,30.888302],[-93.567451,30.878524],[-93.565428,30.87431],[-93.558617,30.869424],[-93.558608,30.868822],[-93.558172,30.839974],[-93.553626,30.83514],[-93.554057,30.824941],[-93.561666,30.807739],[-93.563243,30.806218],[-93.569303,30.802969],[-93.578395,30.802047],[-93.584265,30.796663],[-93.589381,30.786681],[-93.589896,30.77776],[-93.592828,30.763986],[-93.607757,30.757657],[-93.619129,30.742002],[-93.617688,30.738479],[-93.609719,30.729182],[-93.609544,30.723139],[-93.611192,30.718053],[-93.616184,30.71398],[-93.620774,30.704122],[-93.621093,30.695159],[-93.629904,30.67994],[-93.638213,30.673058],[-93.654971,30.670184],[-93.670354,30.658034],[-93.6831,30.640763],[-93.685121,30.625201],[-93.683397,30.608041],[-93.680813,30.602993],[-93.679828,30.599758],[-93.681235,30.596102],[-93.684329,30.592586],[-93.687282,30.591601],[-93.689534,30.592759],[-93.692869,30.594382],[-93.712454,30.588479],[-93.727844,30.57407],[-93.727746,30.566487],[-93.725847,30.556978],[-93.729195,30.544842],[-93.740253,30.539569],[-93.732793,30.52996],[-93.727721,30.525671],[-93.714322,30.518562],[-93.710117,30.5064],[-93.716678,30.494006],[-93.705845,30.457748],[-93.697828,30.443838],[-93.6978,30.440583],[-93.702665,30.429947],[-93.722314,30.420729],[-93.740245,30.402263],[-93.745333,30.397022],[-93.751437,30.396288],[-93.757654,30.390423],[-93.758554,30.387077],[-93.755894,30.370709],[-93.756352,30.356166],[-93.765822,30.333318],[-93.764265,30.330223],[-93.760328,30.329924],[-93.738699,30.303794],[-93.72422,30.295134],[-93.718684,30.29501],[-93.714319,30.294282],[-93.711118,30.291372],[-93.708645,30.288317],[-93.706608,30.281187],[-93.70719,30.275513],[-93.709132,30.271827],[-93.707271,30.249937],[-93.705519,30.244185],[-93.705083,30.242752],[-93.713359,30.225261],[-93.71922,30.218542],[-93.720946,30.209852],[-93.717397,30.193439],[-93.710468,30.180671],[-93.703764,30.173936],[-93.697748,30.152944],[-93.688212,30.141376],[-93.692868,30.135217],[-93.69498,30.135185],[-93.698276,30.138608],[-93.701252,30.137376],[-93.702436,30.112721],[-93.723765,30.09413],[-93.732485,30.088914],[-93.734085,30.08613],[-93.731605,30.081282],[-93.716405,30.069122],[-93.70218,30.065474],[-93.70058,30.063666],[-93.699396,30.05925],[-93.70082,30.056274],[-93.70394,30.054291],[-93.720805,30.053043],[-93.722791,30.051162],[-93.737446,30.037283],[-93.739158,30.032627],[-93.739734,30.023987],[-93.741078,30.021571],[-93.786935,29.99058],[-93.789431,29.987812],[-93.807815,29.954549],[-93.813735,29.935126],[-93.81655,29.920726],[-93.818998,29.914822],[-93.830374,29.894359],[-93.838374,29.882855],[-93.854343,29.864991],[-93.85514,29.864099],[-93.86357,29.857177],[-93.872446,29.85165],[-93.890679,29.843159],[-93.900728,29.836967],[-93.91636,29.824968],[-93.922744,29.818808],[-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.893862,29.767289],[-93.890821,29.761673],[-93.893829,29.753033],[-93.891637,29.744618],[-93.888821,29.742234],[-93.873941,29.73777],[-93.87002,29.735482],[-93.863204,29.724059],[-93.837971,29.690619],[-93.852868,29.675885],[-93.866981,29.673085],[-93.88999,29.674013],[-93.931,29.679612],[-94.001406,29.681486],[-94.056506,29.671163],[-94.132577,29.646217],[-94.354163,29.561459],[-94.370866,29.55507],[-94.500807,29.505367],[-94.594853,29.467903],[-94.631084,29.451464],[-94.670389,29.43078],[-94.694158,29.415632],[-94.708473,29.403049],[-94.723959,29.383268],[-94.731047,29.369141],[-94.744834,29.369158],[-94.761491,29.361883],[-94.778691,29.361483],[-94.782356,29.364266],[-94.783131,29.375642],[-94.766848,29.393489],[-94.7541,29.401],[-94.723818,29.426536],[-94.706365,29.436805],[-94.686386,29.466509],[-94.681541,29.471389],[-94.6724,29.476843],[-94.665853,29.478401],[-94.656737,29.478033],[-94.645948,29.473769],[-94.628217,29.475986],[-94.608557,29.483345],[-94.594211,29.492127],[-94.59544,29.507669],[-94.591407,29.513858],[-94.580274,29.525295],[-94.566674,29.531988],[-94.55399,29.529559],[-94.546994,29.524379],[-94.532348,29.5178],[-94.511045,29.51965],[-94.495025,29.525031],[-94.503429,29.54325],[-94.509487,29.54259],[-94.511086,29.542971],[-94.522421,29.545672],[-94.523743,29.545987],[-94.526336,29.552634],[-94.532021,29.558379],[-94.541108,29.567561],[-94.542532,29.569],[-94.546385,29.572048],[-94.553988,29.573882],[-94.570006,29.572232],[-94.570593,29.571878],[-94.570867,29.571713],[-94.578211,29.567281],[-94.593518,29.561319],[-94.610147,29.556947],[-94.618028,29.554875],[-94.621819,29.553878],[-94.621953,29.553843],[-94.62589,29.552808],[-94.682706,29.539825],[-94.689353,29.538306],[-94.691625,29.537787],[-94.718276,29.533547],[-94.740699,29.525858],[-94.755514,29.524776],[-94.757689,29.524617],[-94.757788,29.524626],[-94.757883,29.524635],[-94.767246,29.525523],[-94.768676,29.525659],[-94.769418,29.525988],[-94.769573,29.526057],[-94.77084,29.526618],[-94.774571,29.528271],[-94.774798,29.528372],[-94.779674,29.530533],[-94.779708,29.530548],[-94.779831,29.530602],[-94.780938,29.531093],[-94.783296,29.535314],[-94.784034,29.536635],[-94.786512,29.541073],[-94.786649,29.541319],[-94.78954,29.546494],[-94.790605,29.548401],[-94.779439,29.549472],[-94.771053,29.548439],[-94.755237,29.562782],[-94.734626,29.584046],[-94.708741,29.625226],[-94.693154,29.694453],[-94.692434,29.70361],[-94.695317,29.723052],[-94.724616,29.774766],[-94.735271,29.785433],[-94.740919,29.787081],[-94.771512,29.773889],[-94.792238,29.767433],[-94.816085,29.75671],[-94.851108,29.721373],[-94.865007,29.695337],[-94.867438,29.678768],[-94.872551,29.67125],[-94.893107,29.661336],[-94.915413,29.656614],[-94.921318,29.658178],[-94.931154,29.673874],[-94.934167,29.678682],[-94.936089,29.692704],[-94.942681,29.697778],[-94.965963,29.70033],[-94.972666,29.68487],[-94.988924,29.672202],[-95.005398,29.659366],[-95.005648,29.658985],[-95.006381,29.657871],[-95.007623,29.65598],[-95.011025,29.650803],[-95.011683,29.649802],[-95.01272,29.647088],[-95.013777,29.644322],[-95.015636,29.639457],[-95.0156,29.639285],[-95.013623,29.62979],[-95.013499,29.629194],[-95.01166,29.627768],[-95.000781,29.619331],[-95.00046,29.619082],[-94.999481,29.618323],[-94.999082,29.618014],[-94.988871,29.610095],[-94.984831,29.604361],[-94.982936,29.60167],[-94.982706,29.601344],[-94.982855,29.601103],[-94.982923,29.600992],[-94.988993,29.591155],[-95.00767,29.574257],[-95.016145,29.559336],[-95.016353,29.55897],[-95.016627,29.558487],[-95.016672,29.558388],[-95.018253,29.554885],[-95.018198,29.554618],[-95.018191,29.554584],[-95.016889,29.548303],[-95.015165,29.539989],[-95.013378,29.537822],[-94.999581,29.521093],[-94.981916,29.511141],[-94.958443,29.505013],[-94.934876,29.501079],[-94.933483,29.500847],[-94.933039,29.500773],[-94.909898,29.49691],[-94.909465,29.496838],[-94.913385,29.487254],[-94.925914,29.469047],[-94.930861,29.450504],[-94.919401,29.448031],[-94.8908,29.433432],[-94.8873,29.415132],[-94.886536,29.366386],[-94.894234,29.338],[-94.893994,29.30817],[-94.910902,29.291866],[-94.921593,29.281556],[-94.952526,29.290122],[-95.022482,29.229684],[-95.058619,29.203199],[-95.099101,29.173529],[-95.151925,29.151162],[-95.16525,29.113566],[-95.136221,29.084537],[-95.121883,29.098095],[-95.092439,29.12594],[-95.003923,29.184474],[-94.991549,29.201131],[-94.879239,29.285839],[-94.865126,29.293977],[-94.84973,29.297345],[-94.824953,29.306005],[-94.822547,29.321882],[-94.822307,29.344254],[-94.810696,29.353435],[-94.784895,29.335535],[-94.779995,29.334935],[-94.777064,29.336811],[-94.745529,29.334235],[-94.744945,29.33641],[-94.73132,29.338066],[-94.72253,29.331446],[-94.731082,29.331833],[-94.769695,29.304936],[-94.786095,29.290737],[-94.803695,29.279237],[-95.026219,29.148064],[-95.081773,29.111222],[-95.110484,29.088224],[-95.119271,29.077844],[-95.122525,29.074],[-95.125134,29.067321],[-95.191391,29.02309],[-95.238924,28.988644],[-95.272266,28.961546],[-95.297147,28.934073],[-95.309704,28.928262],[-95.353451,28.898145],[-95.376979,28.87616],[-95.38239,28.866348],[-95.416174,28.859482],[-95.439594,28.859022],[-95.486769,28.836287],[-95.507041,28.824755],[-95.568136,28.789998],[-95.812504,28.664942],[-95.884026,28.633098],[-96.000682,28.588238],[-96.077868,28.556626],[-96.194412,28.502224],[-96.220376,28.491966],[-96.244751,28.475055],[-96.270391,28.46193],[-96.303212,28.441871],[-96.32156,28.425148],[-96.328817,28.423659],[-96.341617,28.417334],[-96.371117,28.397661],[-96.372101,28.393875],[-96.370717,28.387667],[-96.378616,28.383909],[-96.379372,28.386089],[-96.381864,28.393276],[-96.37596,28.401682],[-96.374138,28.404275],[-96.335119,28.437795],[-96.268341,28.477992],[-96.223825,28.495067],[-96.218978,28.500383],[-96.21505,28.509679],[-96.145448,28.544741],[-96.104735,28.559499],[-96.046211,28.58698],[-96.032979,28.589016],[-96.007534,28.599703],[-95.98616,28.606319],[-95.982088,28.614461],[-95.985651,28.621077],[-95.983106,28.641942],[-95.978526,28.650594],[-95.986066,28.655468],[-95.996338,28.658736],[-96.002954,28.656192],[-96.006516,28.648049],[-96.033488,28.652629],[-96.047737,28.649067],[-96.072165,28.635326],[-96.099137,28.624639],[-96.148501,28.611408],[-96.187178,28.593596],[-96.198374,28.58698],[-96.221784,28.580364],[-96.228909,28.580873],[-96.233998,28.596649],[-96.233998,28.601738],[-96.222293,28.607336],[-96.21415,28.613443],[-96.212624,28.622604],[-96.230944,28.641433],[-96.208552,28.662298],[-96.214659,28.665352],[-96.192267,28.687744],[-96.19125,28.69436],[-96.19583,28.69894],[-96.202446,28.700976],[-96.222802,28.698431],[-96.231453,28.696395],[-96.256899,28.68469],[-96.263515,28.683673],[-96.268604,28.688762],[-96.287942,28.683164],[-96.304227,28.671459],[-96.305245,28.660263],[-96.303718,28.644996],[-96.322921,28.64186],[-96.328655,28.640924],[-96.373439,28.626675],[-96.376492,28.620059],[-96.384635,28.615988],[-96.473694,28.57324],[-96.487943,28.569677],[-96.482854,28.580364],[-96.480309,28.596649],[-96.485907,28.607845],[-96.490488,28.610899],[-96.510844,28.61497],[-96.510335,28.617515],[-96.497612,28.625148],[-96.496595,28.630746],[-96.499648,28.635835],[-96.506264,28.63838],[-96.54545,28.645505],[-96.555119,28.646013],[-96.563262,28.644487],[-96.572931,28.667897],[-96.570386,28.674003],[-96.55919,28.687235],[-96.559699,28.691306],[-96.561226,28.696395],[-96.566824,28.697922],[-96.575141,28.702837],[-96.577727,28.704365],[-96.57802,28.704538],[-96.579639,28.712312],[-96.579669,28.712455],[-96.580564,28.716752],[-96.584091,28.722798],[-96.584127,28.722859],[-96.584196,28.722877],[-96.591647,28.724838],[-96.593796,28.725403],[-96.604921,28.72221],[-96.634419,28.713743],[-96.634912,28.713601],[-96.645867,28.710457],[-96.648758,28.709627],[-96.655528,28.704167],[-96.664534,28.696904],[-96.657918,28.687744],[-96.635018,28.668914],[-96.634,28.654665],[-96.627893,28.650085],[-96.623313,28.649576],[-96.615679,28.644487],[-96.61059,28.638889],[-96.61059,28.636344],[-96.61975,28.627693],[-96.622804,28.622095],[-96.611099,28.585962],[-96.608045,28.583418],[-96.573949,28.584436],[-96.565297,28.5824],[-96.564279,28.576293],[-96.561226,28.570695],[-96.536289,28.559499],[-96.526111,28.557972],[-96.52204,28.55441],[-96.514406,28.535071],[-96.505755,28.525911],[-96.450284,28.490796],[-96.419749,28.467387],[-96.410589,28.459244],[-96.402446,28.449066],[-96.403973,28.44245],[-96.46148,28.421585],[-96.481836,28.407844],[-96.504737,28.397666],[-96.520513,28.394104],[-96.542905,28.385452],[-96.559699,28.377819],[-96.570386,28.368658],[-96.59176,28.357462],[-96.600412,28.354409],[-96.650794,28.346775],[-96.672677,28.335579],[-96.688453,28.347284],[-96.69456,28.347284],[-96.698122,28.342704],[-96.705247,28.348811],[-96.700158,28.369676],[-96.705756,28.400211],[-96.710336,28.406827],[-96.72255,28.408862],[-96.749013,28.408862],[-96.762245,28.411916],[-96.76696,28.410737],[-96.768352,28.410389],[-96.772209,28.408074],[-96.775985,28.405809],[-96.780796,28.398421],[-96.790235,28.383926],[-96.794554,28.365688],[-96.794796,28.364668],[-96.794815,28.364587],[-96.794812,28.364515],[-96.794812,28.364503],[-96.794357,28.350865],[-96.794306,28.34932],[-96.794016,28.347249],[-96.793926,28.346606],[-96.793835,28.345959],[-96.793765,28.345453],[-96.79254,28.336705],[-96.790744,28.323874],[-96.791159,28.319095],[-96.791761,28.31217],[-96.806011,28.296902],[-96.809573,28.290287],[-96.806011,28.282144],[-96.799302,28.272716],[-96.787181,28.255681],[-96.787181,28.250083],[-96.800413,28.224128],[-96.810037,28.217086],[-96.842143,28.193594],[-96.872678,28.176291],[-96.898123,28.152881],[-96.910337,28.147283],[-96.934765,28.123873],[-96.962755,28.123365],[-97.000414,28.137614],[-97.007539,28.136087],[-97.027014,28.148408],[-97.021303,28.1841],[-97.027824,28.184693],[-97.037008,28.185528],[-97.153601,28.13318],[-97.214039,28.087494],[-97.21535,28.076575],[-97.215467,28.075597],[-97.176444,28.059892],[-97.137421,28.057037],[-97.103633,28.078452],[-97.05176,28.106054],[-97.025693,28.11216],[-97.022806,28.107588],[-97.023824,28.103517],[-97.031966,28.093848],[-97.035528,28.084688],[-97.035528,28.074],[-97.031457,28.053644],[-97.025859,28.041939],[-97.030948,28.033288],[-97.040618,28.028708],[-97.04876,28.022092],[-97.061992,27.996138],[-97.075732,27.986977],[-97.121534,27.923364],[-97.129168,27.919801],[-97.134801,27.902467],[-97.135783,27.899445],[-97.136615,27.898956],[-97.144435,27.894356],[-97.155122,27.880615],[-97.183455,27.833231],[-97.184639,27.831251],[-97.186709,27.825453],[-97.186871,27.825001],[-97.187183,27.824126],[-97.188866,27.823772],[-97.192874,27.822928],[-97.193701,27.822754],[-97.196852,27.822091],[-97.209127,27.822091],[-97.209575,27.822091],[-97.211226,27.822391],[-97.219738,27.823939],[-97.220771,27.824126],[-97.222212,27.824649],[-97.222957,27.824919],[-97.225176,27.825723],[-97.225435,27.826145],[-97.225811,27.826755],[-97.226012,27.827083],[-97.227317,27.829204],[-97.227317,27.830939],[-97.227317,27.831258],[-97.227317,27.832895],[-97.227317,27.832952],[-97.226514,27.838307],[-97.228388,27.843661],[-97.234512,27.849063],[-97.241127,27.857714],[-97.241393,27.858953],[-97.242654,27.864839],[-97.242922,27.865208],[-97.250797,27.876035],[-97.256394,27.877901],[-97.258305,27.878538],[-97.26301,27.880106],[-97.272253,27.881427],[-97.273698,27.881633],[-97.276632,27.881144],[-97.285466,27.879672],[-97.295072,27.878071],[-97.301455,27.875907],[-97.317892,27.870335],[-97.325097,27.867893],[-97.327494,27.866405],[-97.354614,27.849572],[-97.360212,27.85059],[-97.360547,27.850363],[-97.361246,27.849891],[-97.379042,27.837867],[-97.391764,27.813948],[-97.393291,27.782905],[-97.386166,27.76662],[-97.368355,27.741683],[-97.34698,27.725398],[-97.316446,27.712676],[-97.253955,27.696696],[-97.259957,27.679597],[-97.266064,27.678579],[-97.296598,27.613947],[-97.298634,27.604787],[-97.297616,27.59868],[-97.294054,27.5941],[-97.302196,27.585957],[-97.321535,27.571199],[-97.325118,27.560927],[-97.336802,27.527433],[-97.343418,27.517764],[-97.347489,27.503005],[-97.350543,27.478578],[-97.359194,27.458221],[-97.36581,27.450588],[-97.371917,27.425142],[-97.369881,27.41242],[-97.372935,27.401224],[-97.37955,27.390028],[-97.399398,27.344735],[-97.401942,27.335574],[-97.404996,27.329977],[-97.413138,27.321325],[-97.420263,27.317254],[-97.430441,27.313691],[-97.450798,27.313691],[-97.482859,27.297915],[-97.508304,27.275014],[-97.532223,27.278577],[-97.544437,27.284175],[-97.546981,27.290791],[-97.536803,27.289264],[-97.526625,27.291808],[-97.524589,27.297915],[-97.517465,27.30504],[-97.504742,27.30504],[-97.498126,27.308602],[-97.502706,27.322343],[-97.499144,27.327941],[-97.483877,27.338628],[-97.483877,27.351351],[-97.48693,27.358984],[-97.501688,27.366618],[-97.514411,27.361529],[-97.520518,27.352877],[-97.53833,27.335574],[-97.5709,27.315727],[-97.584132,27.30962],[-97.609068,27.285193],[-97.621791,27.287228],[-97.63146,27.28621],[-97.636549,27.282139],[-97.63668,27.281727],[-97.640111,27.270943],[-97.639094,27.253131],[-97.635022,27.247024],[-97.628916,27.242953],[-97.597363,27.242444],[-97.582605,27.240409],[-97.573953,27.238882],[-97.561231,27.232775],[-97.54291,27.229213],[-97.520009,27.231248],[-97.509831,27.23532],[-97.503215,27.2399],[-97.500162,27.24448],[-97.485149,27.250841],[-97.467083,27.25364],[-97.458431,27.259493],[-97.450289,27.262546],[-97.42408,27.264073],[-97.422299,27.257712],[-97.434767,27.202241],[-97.444945,27.144734],[-97.443673,27.116235],[-97.452324,27.115217],[-97.455887,27.110383],[-97.45665,27.099695],[-97.461739,27.095624],[-97.47548,27.098423],[-97.480569,27.102494],[-97.49151,27.101222],[-97.495836,27.094098],[-97.493291,27.078067],[-97.477515,27.066108],[-97.479042,27.0628],[-97.482257,27.061942],[-97.48693,27.057711],[-97.487693,27.053639],[-97.486676,27.03481],[-97.477515,27.03252],[-97.473953,27.029212],[-97.473444,27.02285],[-97.478533,26.999186],[-97.480569,26.997659],[-97.484131,27.000458],[-97.536803,26.999695],[-97.549271,26.995878],[-97.555378,26.99028],[-97.551053,26.980865],[-97.549526,26.965344],[-97.552325,26.952112],[-97.555378,26.947277],[-97.555378,26.93888],[-97.540874,26.90631],[-97.540111,26.900967],[-97.547999,26.895114],[-97.552325,26.888499],[-97.552325,26.867633],[-97.558432,26.864325],[-97.563266,26.842188],[-97.552579,26.827938],[-97.547745,26.824631],[-97.537566,26.824885],[-97.509831,26.803511],[-97.484385,26.763562],[-97.478024,26.7572],[-97.471663,26.758727],[-97.468609,26.740915],[-97.467337,26.710126],[-97.444945,26.633535],[-97.445708,26.609362],[-97.441206,26.599901],[-97.428151,26.572466],[-97.416955,26.553637],[-97.422299,26.520303],[-97.425861,26.516741],[-97.430696,26.506563],[-97.430696,26.494603],[-97.42637,26.484425],[-97.429169,26.478064],[-97.43553,26.470176],[-97.441383,26.466614],[-97.441383,26.455418],[-97.437566,26.44982],[-97.425861,26.446003],[-97.421026,26.446766],[-97.41721,26.44982],[-97.411612,26.447275],[-97.412884,26.433026],[-97.42179,26.417249],[-97.4195,26.413178],[-97.406014,26.409107],[-97.398126,26.410888],[-97.394309,26.41445],[-97.395072,26.417249],[-97.382485,26.411326],[-97.377769,26.409107],[-97.369627,26.394603],[-97.374461,26.380862],[-97.388965,26.36585],[-97.392019,26.339386],[-97.391001,26.332262],[-97.387947,26.330481],[-97.376242,26.336333],[-97.372171,26.339895],[-97.369372,26.348547],[-97.358176,26.356435],[-97.343418,26.359234],[-97.335275,26.355672],[-97.330441,26.350582],[-97.336802,26.331753],[-97.352833,26.318521],[-97.354359,26.313941],[-97.34698,26.311396],[-97.347489,26.292821],[-97.343927,26.267376],[-97.341128,26.265595],[-97.331967,26.265595],[-97.322807,26.271956],[-97.311866,26.273737],[-97.307031,26.253126],[-97.308049,26.249055],[-97.32128,26.236078],[-97.32128,26.228699],[-97.304486,26.20249],[-97.296598,26.200709],[-97.294817,26.192312],[-97.296089,26.182388],[-97.306776,26.159487],[-97.296598,26.142439],[-97.28536,26.128378],[-97.282094,26.120301],[-97.283112,26.117757],[-97.294054,26.11394],[-97.295072,26.108342],[-97.279804,26.092057],[-97.270898,26.086459],[-97.24698,26.080352],[-97.208048,26.079589],[-97.199651,26.077044],[-97.195071,26.04193],[-97.204995,26.030225],[-97.214918,26.030734],[-97.224842,26.027426],[-97.226114,26.024372],[-97.219244,25.996128],[-97.216954,25.993838],[-97.208557,25.991802],[-97.195834,25.993074],[-97.17446,26.000072],[-97.167208,26.007069],[-97.162755,26.014576],[-97.162628,26.023482],[-97.172043,26.044729],[-97.178659,26.045492],[-97.18273,26.053126],[-97.164982,26.063876],[-97.152009,26.062108],[-97.15321,26.038906],[-97.151922,26.017653],[-97.145567,25.971132],[-97.146881,25.969781],[-97.146294,25.955606],[-97.147785,25.953132],[-97.156608,25.949022],[-97.160294,25.950243],[-97.168199,25.959262],[-97.178362,25.962114],[-97.187583,25.958174],[-97.206945,25.960899],[-97.229226,25.958753],[-97.239867,25.954974],[-97.248033,25.948097],[-97.276707,25.952147],[-97.281389,25.948037],[-97.277163,25.935438],[-97.303602,25.936704],[-97.320561,25.929802],[-97.324914,25.924041],[-97.338346,25.923125],[-97.350398,25.925241],[-97.367642,25.91568],[-97.37443,25.907444],[-97.372365,25.905016],[-97.365976,25.902447],[-97.365521,25.890476],[-97.360082,25.868874],[-97.36542,25.849826],[-97.372864,25.840117],[-97.394513,25.837377],[-97.422636,25.840378],[-97.445113,25.850026],[-97.448271,25.859463],[-97.449172,25.871678],[-97.454727,25.879337],[-97.468262,25.884162],[-97.48606,25.878758],[-97.496861,25.880058],[-97.521762,25.886458],[-97.528628,25.905219],[-97.530322,25.916797],[-97.542957,25.920035],[-97.54517,25.923975],[-97.546421,25.934077],[-97.555379,25.937136],[-97.559364,25.932257],[-97.582565,25.937857],[-97.580419,25.945116],[-97.583044,25.955443],[-97.598043,25.957556],[-97.607734,25.972745],[-97.608283,25.976594],[-97.627226,25.996727],[-97.634804,25.999509],[-97.644011,26.006614],[-97.643708,26.016943],[-97.649176,26.021499],[-97.661326,26.019373],[-97.668298,26.019956],[-97.671351,26.024233],[-97.697069,26.023455],[-97.703247,26.030309],[-97.711145,26.033043],[-97.71992,26.030838],[-97.758838,26.032131],[-97.763091,26.03365],[-97.764913,26.037903],[-97.770077,26.041548],[-97.779191,26.042763],[-97.784051,26.040637],[-97.789823,26.04246],[-97.792253,26.044282],[-97.795291,26.055218],[-97.801344,26.060017],[-97.825546,26.055702],[-97.836608,26.051651],[-97.860504,26.052918],[-97.868235,26.056656]]]]}}]} diff --git a/Where/RegionKit/Sources/Resources/regions/us-UT.geojson b/Where/RegionKit/Sources/Resources/regions/us-UT.geojson new file mode 100644 index 00000000..33743c16 --- /dev/null +++ b/Where/RegionKit/Sources/Resources/regions/us-UT.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"region":"us-UT","name":"Utah"},"geometry":{"type":"Polygon","coordinates":[[[-111.046551,41.251716],[-111.046723,40.997959],[-110.750727,40.996847],[-110.715026,40.996347],[-110.539819,40.996346],[-110.500718,40.994746],[-110.375714,40.994947],[-110.250709,40.996089],[-110.237848,40.995427],[-110.125709,40.99655],[-110.121639,40.997101],[-110.048476,40.997555],[-110.006495,40.997815],[-110.000708,40.997352],[-109.999838,40.99733],[-109.97553,40.997912],[-109.855299,40.997614],[-109.854302,40.997661],[-109.715409,40.998191],[-109.713877,40.998266],[-109.676421,40.998395],[-109.534926,40.998143],[-109.500694,40.999127],[-109.250735,41.001009],[-109.231985,41.002059],[-109.173682,41.000859],[-109.050076,41.000659],[-109.048455,40.826081],[-109.049088,40.714562],[-109.048373,40.662602],[-109.048249,40.653601],[-109.048044,40.619231],[-109.050074,40.540358],[-109.049955,40.539901],[-109.050698,40.499963],[-109.050314,40.495092],[-109.050946,40.444368],[-109.050969,40.222662],[-109.050973,40.180849],[-109.050944,40.180712],[-109.050813,40.059579],[-109.050873,40.058915],[-109.050615,39.87497],[-109.05104,39.660472],[-109.051363,39.497674],[-109.050765,39.366677],[-109.051512,39.126095],[-109.052436,38.999985],[-109.053292,38.942878],[-109.053233,38.942467],[-109.053797,38.905284],[-109.053943,38.904414],[-109.054189,38.874984],[-109.057388,38.795456],[-109.059541,38.719888],[-109.060253,38.599328],[-109.059962,38.499987],[-109.060062,38.275489],[-109.054648,38.244921],[-109.041762,38.16469],[-109.041837,38.153022],[-109.04282,37.999301],[-109.042819,37.997068],[-109.043121,37.97426],[-109.041058,37.907236],[-109.041653,37.88117],[-109.041844,37.872788],[-109.041723,37.842051],[-109.041754,37.835826],[-109.041461,37.800105],[-109.042098,37.74999],[-109.041636,37.74021],[-109.04176,37.713182],[-109.041732,37.711214],[-109.042269,37.666067],[-109.042089,37.623795],[-109.042131,37.617662],[-109.041806,37.604171],[-109.041865,37.530726],[-109.041915,37.530653],[-109.043137,37.499992],[-109.043464,37.484711],[-109.04581,37.374993],[-109.046039,37.249993],[-109.045584,37.249351],[-109.045487,37.210844],[-109.045978,37.201831],[-109.045995,37.177279],[-109.045156,37.112064],[-109.045203,37.111958],[-109.045173,37.109464],[-109.045189,37.096271],[-109.044995,37.086429],[-109.045058,37.074661],[-109.045166,37.072742],[-109.045223,36.999084],[-109.181196,36.999271],[-109.233848,36.999266],[-109.246917,36.999346],[-109.26339,36.999263],[-109.268213,36.999242],[-109.270097,36.999266],[-109.378039,36.999135],[-109.381226,36.999148],[-109.495338,36.999105],[-109.625668,36.998308],[-109.875673,36.998504],[-110.000677,36.997968],[-110.000876,36.998502],[-110.021778,36.998602],[-110.47019,36.997997],[-110.490908,37.003566],[-110.50069,37.00426],[-110.599512,37.003448],[-110.625605,37.003416],[-110.62569,37.003721],[-110.75069,37.003197],[-111.066496,37.002389],[-111.133718,37.000779],[-111.254853,37.001077],[-111.278286,37.000465],[-111.405517,37.001497],[-111.405869,37.001481],[-111.412784,37.001478],[-112.35769,37.001025],[-112.368946,37.001125],[-112.534545,37.000684],[-112.538593,37.000674],[-112.540368,37.000669],[-112.545094,37.000734],[-112.558974,37.000692],[-112.609787,37.000753],[-112.899366,37.000319],[-112.966471,37.000219],[-113.965907,36.999976],[-113.965907,37.000025],[-114.0506,37.000396],[-114.051749,37.088434],[-114.051822,37.090976],[-114.052827,37.103961],[-114.051867,37.134292],[-114.052179,37.14711],[-114.051673,37.172368],[-114.051405,37.233854],[-114.051974,37.283848],[-114.051974,37.284511],[-114.0518,37.293044],[-114.0518,37.293548],[-114.051927,37.370459],[-114.051927,37.370734],[-114.051765,37.418083],[-114.052448,37.43144],[-114.052701,37.492014],[-114.052685,37.502513],[-114.052718,37.517264],[-114.052689,37.517859],[-114.052962,37.592783],[-114.052472,37.604776],[-114.051728,37.745997],[-114.051785,37.746249],[-114.05167,37.746958],[-114.051109,37.756276],[-114.049919,37.765586],[-114.048473,37.809861],[-114.049677,37.823645],[-114.049928,37.852508],[-114.049658,37.881368],[-114.050423,37.999961],[-114.049903,38.148601],[-114.050138,38.24996],[-114.049417,38.2647],[-114.05012,38.404536],[-114.050091,38.404673],[-114.050485,38.499955],[-114.049834,38.543784],[-114.049862,38.547764],[-114.050154,38.57292],[-114.049883,38.677365],[-114.049749,38.72921],[-114.049168,38.749951],[-114.049465,38.874949],[-114.048521,38.876197],[-114.048054,38.878693],[-114.049104,39.005509],[-114.047079,39.499943],[-114.047728,39.542742],[-114.047273,39.759413],[-114.047783,39.79416],[-114.047214,39.821024],[-114.047134,39.906037],[-114.046555,39.996899],[-114.046835,40.030131],[-114.046386,40.097896],[-114.046741,40.104231],[-114.046683,40.116931],[-114.046153,40.231971],[-114.046178,40.398313],[-114.045826,40.424823],[-114.045218,40.430282],[-114.045518,40.494474],[-114.045577,40.495801],[-114.045281,40.506586],[-114.043505,40.726292],[-114.043831,40.758666],[-114.043803,40.759205],[-114.043176,40.771675],[-114.042145,40.999926],[-114.041447,41.207752],[-114.042553,41.210923],[-114.041396,41.219958],[-114.040231,41.49169],[-114.040942,41.499921],[-114.040437,41.615377],[-114.039968,41.62492],[-114.039901,41.753781],[-114.041152,41.850595],[-114.041107,41.850573],[-114.039648,41.884816],[-114.041723,41.99372],[-113.993903,41.992698],[-113.893261,41.988057],[-113.822163,41.988479],[-113.796082,41.989104],[-113.76453,41.989459],[-113.500837,41.992799],[-113.496548,41.993305],[-113.431563,41.993799],[-113.40223,41.994161],[-113.396497,41.99425],[-113.357611,41.993859],[-113.340072,41.994747],[-113.250829,41.99561],[-113.249159,41.996203],[-113.000821,41.998223],[-113.00082,41.998223],[-112.979218,41.998263],[-112.909587,41.998791],[-112.882367,41.998922],[-112.880619,41.998921],[-112.833125,41.999345],[-112.833084,41.999305],[-112.788542,41.999681],[-112.709375,42.000309],[-112.648019,42.000307],[-112.450814,42.000953],[-112.450567,42.001092],[-112.38617,42.001126],[-112.264936,42.000991],[-112.239107,42.001217],[-112.192976,42.001167],[-112.173352,41.996568],[-112.163956,41.996708],[-112.109532,41.997598],[-112.01218,41.99835],[-111.915837,41.998519],[-111.915622,41.998496],[-111.876491,41.998528],[-111.750778,41.99933],[-111.507264,41.999518],[-111.471381,41.999739],[-111.425535,42.00084],[-111.420898,42.000793],[-111.415873,42.000748],[-111.046689,42.001567],[-111.045818,41.579845],[-111.045789,41.565571],[-111.046264,41.377731],[-111.0466,41.360692],[-111.046551,41.251716]]]}}]} diff --git a/Where/RegionKit/Sources/Resources/regions/us-VA.geojson b/Where/RegionKit/Sources/Resources/regions/us-VA.geojson new file mode 100644 index 00000000..d4145897 --- /dev/null +++ b/Where/RegionKit/Sources/Resources/regions/us-VA.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"region":"us-VA","name":"Virginia"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-75.973607,37.835817],[-75.971705,37.830928],[-75.977301,37.825821],[-75.982158,37.806226],[-75.987301,37.804917],[-75.9983,37.812626],[-76.001116,37.834947],[-75.999658,37.848198],[-75.996859,37.85042],[-75.992556,37.848889],[-75.988018,37.841085],[-75.982098,37.837253],[-75.973607,37.835817]]],[[[-76.029405,37.953776],[-76.022325,37.953878],[-76.021714,37.953887],[-76.020932,37.953879],[-76.020796,37.953877],[-76.017686,37.953832],[-76.005888,37.953662],[-75.994739,37.953501],[-75.993905,37.953489],[-76.00313,37.947997],[-76.017592,37.935161],[-76.032491,37.915008],[-76.035802,37.929008],[-76.04653,37.953586],[-76.045561,37.953669],[-76.041691,37.954],[-76.041402,37.954006],[-76.038026,37.953901],[-76.030122,37.953655],[-76.029463,37.953775],[-76.029405,37.953776]]],[[[-75.242266,38.027209],[-75.296871,37.959043],[-75.319335,37.922484],[-75.334296,37.893477],[-75.349338,37.873143],[-75.359036,37.864143],[-75.36683,37.859446],[-75.374642,37.859454],[-75.392008,37.867738],[-75.40054,37.874865],[-75.428956,37.875305],[-75.437868,37.872324],[-75.452681,37.86351],[-75.467951,37.851328],[-75.487485,37.832136],[-75.514921,37.799149],[-75.548082,37.742383],[-75.556868,37.72441],[-75.572464,37.701565],[-75.581333,37.683593],[-75.586136,37.660653],[-75.60322,37.620243],[-75.610808,37.605909],[-75.612237,37.585602],[-75.608123,37.578018],[-75.595716,37.576657],[-75.594044,37.569698],[-75.60672,37.55717],[-75.63337,37.52214],[-75.666178,37.472124],[-75.6655,37.467319],[-75.664311,37.458901],[-75.66179,37.455028],[-75.665957,37.439209],[-75.672648,37.429915],[-75.697914,37.405301],[-75.720739,37.373129],[-75.727335,37.360346],[-75.725634,37.358416],[-75.726691,37.350127],[-75.735829,37.335426],[-75.765401,37.305596],[-75.778817,37.297176],[-75.780766,37.297222],[-75.784634,37.300976],[-75.791913,37.300589],[-75.798448,37.296285],[-75.79083,37.276207],[-75.799343,37.251779],[-75.795881,37.236922],[-75.790386,37.231225],[-75.789929,37.228134],[-75.790903,37.225066],[-75.804446,37.208011],[-75.800468,37.201029],[-75.800755,37.197297],[-75.830341,37.1706],[-75.87767,37.135604],[-75.886369,37.126085],[-75.897298,37.118037],[-75.906734,37.114193],[-75.912308,37.115154],[-75.913222,37.119849],[-75.92552,37.133601],[-75.942539,37.125142],[-75.945872,37.120514],[-75.962596,37.117535],[-75.97043,37.118608],[-75.970004,37.128861],[-75.978083,37.157338],[-75.998647,37.188739],[-76.006094,37.19481],[-76.013071,37.205366],[-76.013778,37.219263],[-76.010535,37.231579],[-76.014026,37.235381],[-76.025753,37.257407],[-76.023664,37.268971],[-76.015507,37.280874],[-76.023475,37.289067],[-76.018645,37.31782],[-76.014251,37.331943],[-75.997778,37.351739],[-75.987122,37.368548],[-75.97997,37.404608],[-75.983105,37.415802],[-75.981624,37.434116],[-75.976491,37.444878],[-75.960877,37.467562],[-75.963496,37.475352],[-75.963326,37.481785],[-75.958966,37.500133],[-75.949974,37.521876],[-75.940318,37.534582],[-75.937665,37.549652],[-75.937299,37.551729],[-75.941153,37.558436],[-75.941182,37.563839],[-75.924756,37.600215],[-75.909586,37.622671],[-75.877059,37.660641],[-75.868481,37.668224],[-75.869523,37.674356],[-75.868355,37.687609],[-75.859262,37.703111],[-75.845579,37.707993],[-75.837685,37.712985],[-75.830773,37.725486],[-75.831438,37.73169],[-75.827922,37.737986],[-75.82481,37.741671],[-75.812155,37.749502],[-75.803041,37.762464],[-75.812125,37.776589],[-75.818125,37.791698],[-75.793399,37.804493],[-75.784599,37.806826],[-75.770607,37.804602],[-75.743097,37.806656],[-75.73588,37.816561],[-75.723224,37.820124],[-75.71659,37.826696],[-75.714487,37.837777],[-75.709114,37.8477],[-75.702914,37.849659],[-75.689837,37.861817],[-75.685293,37.873341],[-75.687584,37.88634],[-75.709626,37.900622],[-75.72049,37.901926],[-75.724505,37.900184],[-75.726699,37.897299],[-75.753048,37.896605],[-75.758796,37.897615],[-75.759835,37.899333],[-75.757694,37.903912],[-75.712065,37.936082],[-75.704318,37.92901],[-75.693942,37.930362],[-75.669711,37.950796],[-75.665012,37.949387],[-75.655681,37.945435],[-75.647606,37.947027],[-75.648229,37.966775],[-75.644725,37.969779],[-75.641823,37.975967],[-75.638221,37.979397],[-75.635736,37.979536],[-75.634209,37.977672],[-75.63201,37.97602],[-75.630992,37.975667],[-75.629532,37.975966],[-75.628839,37.976789],[-75.628855,37.977798],[-75.633712,37.983057],[-75.633833,37.984519],[-75.632532,37.986693],[-75.630869,37.987818],[-75.627607,37.988521],[-75.625612,37.9898],[-75.624342,37.994208],[-75.624341,37.994211],[-75.435956,38.010282],[-75.42881,38.010854],[-75.398839,38.013277],[-75.377851,38.015145],[-75.263779,38.025295],[-75.262088,38.025445],[-75.260635,38.025574],[-75.256076,38.02598],[-75.250358,38.026489],[-75.242296,38.027206],[-75.242266,38.027209]]],[[[-77.041898,38.741514],[-77.040998,38.737914],[-77.041398,38.724515],[-77.042045,38.720202],[-77.042298,38.718515],[-77.045498,38.714315],[-77.053199,38.709915],[-77.065322,38.709564],[-77.071861,38.710581],[-77.072807,38.711526],[-77.079499,38.709515],[-77.086329,38.706128],[-77.0918,38.703415],[-77.099,38.698615],[-77.1027,38.698315],[-77.1059,38.696815],[-77.122001,38.685816],[-77.132501,38.673816],[-77.135901,38.649817],[-77.131901,38.644217],[-77.132201,38.641217],[-77.1302,38.635017],[-77.157501,38.636417],[-77.174902,38.624217],[-77.202002,38.617217],[-77.204302,38.617817],[-77.205103,38.623917],[-77.216303,38.637817],[-77.22235,38.638091],[-77.240604,38.638917],[-77.246704,38.635217],[-77.248904,38.628617],[-77.245104,38.620717],[-77.246441,38.599532],[-77.247003,38.590618],[-77.26443,38.582845],[-77.265304,38.580319],[-77.26083,38.56533],[-77.276603,38.54712],[-77.276303,38.53962],[-77.283503,38.525221],[-77.291103,38.515721],[-77.29582,38.511457],[-77.298844,38.508724],[-77.300776,38.506978],[-77.302457,38.504683],[-77.310334,38.493926],[-77.322622,38.467131],[-77.32544,38.44885],[-77.319036,38.417803],[-77.310719,38.397669],[-77.312201,38.390958],[-77.314848,38.389579],[-77.317288,38.383576],[-77.296077,38.369797],[-77.288145,38.359477],[-77.28835,38.351286],[-77.286202,38.347025],[-77.286202,38.347024],[-77.279633,38.339444],[-77.265295,38.333165],[-77.240072,38.331598],[-77.199433,38.34089],[-77.17934,38.341915],[-77.162692,38.345994],[-77.155191,38.351047],[-77.138224,38.367917],[-77.104717,38.369655],[-77.094665,38.367715],[-77.08481,38.368297],[-77.069956,38.377895],[-77.056032,38.3962],[-77.051437,38.399083],[-77.043526,38.400548],[-77.024866,38.386791],[-77.011827,38.374554],[-77.016932,38.341697],[-77.020947,38.329273],[-77.030683,38.311623],[-77.026304,38.302685],[-76.99767,38.278047],[-76.990255,38.273935],[-76.981372,38.274214],[-76.96215,38.256486],[-76.957796,38.243183],[-76.957417,38.236341],[-76.962375,38.230093],[-76.966553,38.229542],[-76.967335,38.227185],[-76.962311,38.214075],[-76.937134,38.202384],[-76.916922,38.199751],[-76.910832,38.197073],[-76.875272,38.172207],[-76.838795,38.163476],[-76.824274,38.163639],[-76.802968,38.167988],[-76.788445,38.169199],[-76.760241,38.166581],[-76.749685,38.162114],[-76.743064,38.156988],[-76.740278,38.152824],[-76.738938,38.14651],[-76.721722,38.137635],[-76.704048,38.149264],[-76.701297,38.155718],[-76.684892,38.156497],[-76.665127,38.147638],[-76.643448,38.14825],[-76.638983,38.151476],[-76.629476,38.15305],[-76.613939,38.148587],[-76.604131,38.128771],[-76.600937,38.110084],[-76.579497,38.09487],[-76.543155,38.076971],[-76.535919,38.069532],[-76.522354,38.04259],[-76.519536,38.034814],[-76.516547,38.026566],[-76.491998,38.017222],[-76.469343,38.013544],[-76.465291,38.010226],[-76.462542,37.998572],[-76.427487,37.977038],[-76.416299,37.966828],[-76.391439,37.958742],[-76.360211,37.952329],[-76.343848,37.947345],[-76.265998,37.91138],[-76.236725,37.889174],[-76.245072,37.861918],[-76.251358,37.833072],[-76.266057,37.8174],[-76.275178,37.812664],[-76.280544,37.812597],[-76.282592,37.814109],[-76.281985,37.818068],[-76.284904,37.822308],[-76.293525,37.822717],[-76.307482,37.81235],[-76.310307,37.794849],[-76.306489,37.788646],[-76.312108,37.750522],[-76.304917,37.729913],[-76.312858,37.720338],[-76.302803,37.704474],[-76.300067,37.695364],[-76.302545,37.689],[-76.312079,37.684651],[-76.315161,37.68472],[-76.320216,37.680666],[-76.324808,37.676983],[-76.339892,37.655966],[-76.332562,37.645817],[-76.306464,37.642005],[-76.292534,37.636098],[-76.287959,37.631771],[-76.279447,37.618225],[-76.28037,37.613715],[-76.309174,37.621892],[-76.36232,37.610368],[-76.381106,37.627003],[-76.390054,37.630326],[-76.399236,37.628636],[-76.443254,37.652347],[-76.472392,37.665772],[-76.489576,37.666201],[-76.491799,37.663614],[-76.497564,37.647056],[-76.501522,37.643762],[-76.510187,37.642324],[-76.536548,37.663574],[-76.537698,37.66893],[-76.535302,37.687516],[-76.537228,37.698892],[-76.54005,37.704432],[-76.560476,37.727827],[-76.576387,37.757493],[-76.584289,37.76889],[-76.593835,37.772848],[-76.595939,37.77168],[-76.602024,37.772731],[-76.615351,37.780759],[-76.642276,37.792317],[-76.651413,37.796239],[-76.658302,37.806815],[-76.680197,37.825654],[-76.692747,37.82277],[-76.701606,37.822677],[-76.722156,37.83668],[-76.72718,37.842263],[-76.733046,37.852009],[-76.738395,37.865373],[-76.747552,37.875864],[-76.765711,37.879274],[-76.77539,37.874306],[-76.784618,37.869569],[-76.782826,37.863184],[-76.766328,37.840437],[-76.7512,37.824141],[-76.734309,37.79866],[-76.723863,37.788503],[-76.715498,37.785873],[-76.689773,37.78519],[-76.683775,37.781391],[-76.681901,37.778118],[-76.683343,37.775783],[-76.683359,37.770258],[-76.683372,37.765507],[-76.680922,37.759647],[-76.677002,37.7561],[-76.663887,37.751887],[-76.639962,37.750941],[-76.61971,37.744795],[-76.617373,37.742347],[-76.621433,37.737973],[-76.61997,37.731271],[-76.606466,37.724819],[-76.597213,37.717269],[-76.595943,37.712989],[-76.598073,37.70912],[-76.597868,37.702918],[-76.579591,37.671508],[-76.583143,37.661986],[-76.574049,37.646781],[-76.542666,37.616857],[-76.533777,37.61253],[-76.527188,37.611315],[-76.435474,37.612807],[-76.420252,37.598686],[-76.410781,37.581815],[-76.383188,37.573056],[-76.357835,37.573699],[-76.332641,37.570042],[-76.300144,37.561734],[-76.29796,37.557636],[-76.302762,37.551295],[-76.330598,37.536391],[-76.339989,37.53833],[-76.348992,37.536548],[-76.355084,37.527364],[-76.360474,37.51924],[-76.359378,37.513426],[-76.352678,37.504913],[-76.32947,37.49492],[-76.306952,37.497488],[-76.297739,37.506863],[-76.296445,37.511235],[-76.298456,37.512677],[-76.297651,37.515424],[-76.293599,37.516499],[-76.288167,37.514118],[-76.281043,37.507821],[-76.265056,37.481365],[-76.252415,37.447274],[-76.250454,37.421886],[-76.246617,37.404122],[-76.245283,37.386839],[-76.24846,37.375135],[-76.258277,37.36202],[-76.262407,37.360786],[-76.264847,37.357399],[-76.272888,37.335174],[-76.272005,37.322194],[-76.275552,37.309964],[-76.282555,37.319107],[-76.291324,37.324145],[-76.308581,37.329366],[-76.31205,37.338088],[-76.337476,37.364014],[-76.366751,37.374495],[-76.387112,37.385061],[-76.391437,37.390284],[-76.393958,37.39594],[-76.393125,37.398068],[-76.404756,37.400213],[-76.415167,37.402133],[-76.418719,37.3978],[-76.418176,37.385064],[-76.422503,37.381355],[-76.437525,37.37975],[-76.445333,37.36646],[-76.434965,37.354524],[-76.406388,37.332924],[-76.38777,37.30767],[-76.385603,37.294108],[-76.381075,37.28534],[-76.369029,37.279311],[-76.352556,37.278334],[-76.349489,37.273963],[-76.36229,37.270226],[-76.392788,37.264973],[-76.417173,37.26395],[-76.421765,37.255198],[-76.429141,37.25331],[-76.475927,37.250543],[-76.48284,37.254831],[-76.493302,37.24947],[-76.4989,37.241015],[-76.50364,37.233856],[-76.494008,37.225408],[-76.471799,37.216016],[-76.394132,37.22515],[-76.389793,37.222981],[-76.3936,37.214049],[-76.396052,37.201087],[-76.389284,37.193503],[-76.391252,37.179887],[-76.397883,37.164415],[-76.399659,37.160272],[-76.394756,37.157568],[-76.381379,37.155711],[-76.375255,37.16084],[-76.35969,37.16858],[-76.348658,37.170655],[-76.343234,37.166207],[-76.344898,37.164479],[-76.34405,37.160367],[-76.340129,37.151823],[-76.334017,37.144223],[-76.330481,37.141727],[-76.324353,37.142895],[-76.311088,37.138495],[-76.292344,37.126615],[-76.287236,37.117453],[-76.274463,37.094544],[-76.271262,37.084544],[-76.292863,37.035145],[-76.300352,37.00885],[-76.304272,37.001378],[-76.312048,37.000371],[-76.315008,37.001683],[-76.314624,37.00933],[-76.318065,37.013846],[-76.329531,37.014556],[-76.34011,37.015212],[-76.340666,37.015246],[-76.348066,37.006747],[-76.356366,37.002947],[-76.373567,36.998347],[-76.383367,36.993347],[-76.387711,36.989671],[-76.396368,36.982347],[-76.408568,36.969147],[-76.411768,36.962847],[-76.418969,36.964047],[-76.428869,36.969947],[-76.452118,36.998163],[-76.452461,37.004603],[-76.449891,37.004868],[-76.448231,37.007705],[-76.464471,37.027547],[-76.46949,37.030414],[-76.507614,37.052188],[-76.509339,37.053173],[-76.512289,37.054858],[-76.518242,37.055351],[-76.526273,37.062947],[-76.527973,37.068247],[-76.526573,37.070047],[-76.526203,37.077773],[-76.528997,37.079388],[-76.536875,37.083942],[-76.555066,37.075859],[-76.564219,37.077507],[-76.567931,37.080467],[-76.579499,37.096627],[-76.618252,37.119347],[-76.62478,37.127091],[-76.622252,37.142146],[-76.617084,37.144498],[-76.604476,37.160034],[-76.606684,37.166674],[-76.610972,37.166994],[-76.611018,37.167097],[-76.612517,37.170486],[-76.613599,37.172931],[-76.614221,37.174335],[-76.616268,37.178962],[-76.616804,37.18126],[-76.617537,37.184409],[-76.618008,37.186429],[-76.61934,37.192146],[-76.619962,37.193184],[-76.621113,37.195103],[-76.623292,37.198738],[-76.629868,37.206738],[-76.639608,37.214783],[-76.641085,37.216002],[-76.649869,37.220914],[-76.689166,37.222866],[-76.693373,37.221228],[-76.698943,37.219059],[-76.730951,37.213813],[-76.73432,37.204211],[-76.74,37.195379],[-76.74304,37.192611],[-76.75047,37.190098],[-76.757765,37.191658],[-76.773752,37.206061],[-76.780532,37.209336],[-76.791555,37.207564],[-76.801023,37.206043],[-76.803198,37.201513],[-76.802511,37.198308],[-76.796905,37.189404],[-76.756899,37.161582],[-76.747632,37.150548],[-76.73728,37.146164],[-76.73032,37.145395],[-76.715295,37.148035],[-76.696735,37.174403],[-76.692926,37.186147],[-76.691918,37.195731],[-76.685614,37.198851],[-76.669886,37.183571],[-76.663774,37.173875],[-76.66427,37.171027],[-76.66867,37.166771],[-76.67147,37.158739],[-76.671588,37.14206],[-76.669604,37.140534],[-76.666542,37.138179],[-76.665833,37.136098],[-76.665641,37.135534],[-76.66375,37.129979],[-76.656894,37.109843],[-76.657101,37.107617],[-76.657703,37.101161],[-76.65811,37.096787],[-76.659394,37.094019],[-76.66555,37.080746],[-76.666526,37.078643],[-76.667219,37.077149],[-76.667646,37.076228],[-76.668295,37.072656],[-76.669118,37.068132],[-76.669822,37.06426],[-76.66835,37.05506],[-76.662558,37.045748],[-76.653998,37.039172],[-76.646013,37.036228],[-76.612124,37.035604],[-76.586491,37.02874],[-76.584478,37.027349],[-76.579393,37.023835],[-76.579236,37.023726],[-76.57816,37.022982],[-76.577531,37.022548],[-76.576617,37.021374],[-76.565803,37.007493],[-76.562923,37.003796],[-76.551246,36.998946],[-76.524853,36.983833],[-76.522971,36.981085],[-76.524142,36.978316],[-76.521006,36.973187],[-76.513363,36.968057],[-76.500355,36.965212],[-76.487559,36.952372],[-76.484107,36.928916],[-76.482407,36.917364],[-76.482135,36.901108],[-76.483369,36.896239],[-76.469914,36.882898],[-76.454692,36.884077],[-76.45329,36.887031],[-76.453941,36.89274],[-76.447413,36.90322],[-76.441605,36.906116],[-76.43122,36.904532],[-76.407507,36.897444],[-76.406908,36.897507],[-76.387567,36.899547],[-76.385867,36.923247],[-76.353765,36.922747],[-76.345569,36.924531],[-76.344663,36.919313],[-76.333158,36.917293],[-76.328864,36.918447],[-76.330765,36.938647],[-76.327365,36.959447],[-76.322764,36.959147],[-76.315867,36.955351],[-76.299364,36.965547],[-76.297663,36.968147],[-76.285063,36.968747],[-76.267962,36.964547],[-76.234961,36.945147],[-76.22166,36.939547],[-76.189959,36.931447],[-76.177019,36.92929],[-76.139557,36.923047],[-76.095508,36.908817],[-76.087955,36.908647],[-76.058154,36.916947],[-76.043054,36.927547],[-76.033454,36.931946],[-76.013753,36.930746],[-76.007553,36.929047],[-75.996252,36.922047],[-75.991552,36.910847],[-75.972151,36.842268],[-75.965451,36.812449],[-75.94955,36.76115],[-75.921748,36.692051],[-75.890946,36.630753],[-75.874145,36.583853],[-75.867044,36.550754],[-75.879744,36.550754],[-75.880644,36.550754],[-75.885945,36.550754],[-75.886545,36.550754],[-75.891945,36.550754],[-75.893245,36.550654],[-75.894145,36.550754],[-75.903445,36.550654],[-75.904745,36.550654],[-75.909046,36.550654],[-75.911446,36.550654],[-75.922046,36.550654],[-75.952847,36.550553],[-75.953447,36.550553],[-75.955748,36.550553],[-75.957648,36.550553],[-76.02675,36.550553],[-76.034751,36.550653],[-76.12236,36.550621],[-76.313196,36.550551],[-76.313215,36.550551],[-76.465268,36.550951],[-76.491483,36.550732],[-76.541394,36.550314],[-76.541687,36.550312],[-76.575496,36.550744],[-76.738329,36.550985],[-76.749678,36.550381],[-76.781296,36.550659],[-76.807078,36.550606],[-76.915897,36.552093],[-76.916989,36.550742],[-76.917318,36.546046],[-76.916048,36.543815],[-77.095062,36.544626],[-77.124812,36.543986],[-77.152691,36.544078],[-77.1645,36.54633],[-77.16966,36.547315],[-77.190175,36.546164],[-77.205156,36.544581],[-77.296875,36.544739],[-77.749706,36.54552],[-77.767117,36.545414],[-77.87528,36.544754],[-77.882357,36.544737],[-77.899771,36.544663],[-78.038938,36.544173],[-78.03942,36.544196],[-78.046202,36.544168],[-78.132911,36.543811],[-78.133323,36.543847],[-78.245462,36.544411],[-78.246681,36.544341],[-78.323912,36.543809],[-78.436333,36.542666],[-78.441199,36.542687],[-78.45697,36.542474],[-78.470792,36.542316],[-78.471022,36.542307],[-78.509965,36.541065],[-78.529722,36.540981],[-78.533013,36.541004],[-78.605304,36.541092],[-78.663317,36.542011],[-78.670051,36.542035],[-78.734122,36.541902],[-78.758392,36.541852],[-78.76543,36.541727],[-78.7963,36.541713],[-78.914543,36.541972],[-78.91542,36.541974],[-78.942009,36.542113],[-78.942254,36.542079],[-78.970577,36.542154],[-78.971814,36.542123],[-79.124736,36.541568],[-79.126078,36.541533],[-79.137936,36.541739],[-79.208686,36.541571],[-79.20948,36.541594],[-79.218636,36.541491],[-79.24974,36.541139],[-79.342686,36.541176],[-79.445687,36.541218],[-79.445961,36.541195],[-79.470047,36.541025],[-79.510647,36.540738],[-79.510961,36.54074],[-79.666827,36.541772],[-79.667309,36.541772],[-79.71484,36.542002],[-79.887262,36.542838],[-79.904662,36.542438],[-79.920238,36.542447],[-79.966979,36.542475],[-79.967511,36.542502],[-80.027269,36.542495],[-80.053458,36.542537],[-80.122183,36.542646],[-80.169535,36.54319],[-80.171636,36.543219],[-80.225408,36.543748],[-80.228263,36.543867],[-80.295243,36.543973],[-80.431605,36.550219],[-80.432628,36.550302],[-80.4401,36.55063],[-80.612045,36.557871],[-80.624788,36.558408],[-80.653349,36.559221],[-80.704831,36.562319],[-80.730351,36.562349],[-80.773663,36.560307],[-80.80392,36.560813],[-80.837089,36.559154],[-80.837641,36.559118],[-80.837954,36.559131],[-80.901726,36.561751],[-80.901836,36.561754],[-80.944338,36.563058],[-80.945988,36.563196],[-81.003802,36.563629],[-81.011402,36.564429],[-81.058844,36.566976],[-81.061866,36.56702],[-81.083206,36.567328],[-81.124809,36.569227],[-81.14181,36.569527],[-81.171212,36.571026],[-81.176712,36.571926],[-81.249816,36.573225],[-81.262303,36.573924],[-81.307511,36.575024],[-81.353169,36.574724],[-81.353322,36.574723],[-81.374824,36.574673],[-81.442228,36.576822],[-81.47643,36.580421],[-81.489387,36.579026],[-81.499831,36.57982],[-81.521032,36.58052],[-81.600934,36.587019],[-81.677535,36.588117],[-81.6469,36.611918],[-81.73694,36.612379],[-81.826742,36.614215],[-81.922644,36.616213],[-81.934144,36.594213],[-82.14607,36.594712],[-82.148569,36.594718],[-82.150727,36.594673],[-82.173982,36.594607],[-82.177247,36.594768],[-82.18074,36.594928],[-82.188491,36.595179],[-82.210497,36.595772],[-82.211005,36.59586],[-82.221713,36.595814],[-82.223445,36.595721],[-82.225716,36.595744],[-82.226653,36.595743],[-82.243196,36.595734],[-82.294152,36.595706],[-82.296995,36.595704],[-82.466613,36.594481],[-82.478668,36.595588],[-82.487238,36.595822],[-82.554294,36.594876],[-82.559774,36.5948],[-82.561074,36.5948],[-82.609176,36.594099],[-82.679879,36.593698],[-82.69578,36.593698],[-82.830433,36.593761],[-82.888013,36.593461],[-82.985124,36.59373],[-83.02725,36.593847],[-83.028357,36.593893],[-83.248933,36.593827],[-83.249899,36.593898],[-83.250304,36.593935],[-83.261099,36.593887],[-83.2763,36.598187],[-83.374904,36.597386],[-83.472108,36.597284],[-83.55681,36.597384],[-83.622624,36.598061],[-83.645586,36.600002],[-83.670128,36.600764],[-83.670141,36.600797],[-83.675413,36.600814],[-83.674614,36.603082],[-83.673114,36.604682],[-83.665614,36.605782],[-83.663614,36.606782],[-83.657714,36.611782],[-83.649513,36.616683],[-83.648314,36.622683],[-83.645213,36.624183],[-83.639813,36.624783],[-83.635013,36.622883],[-83.628913,36.624083],[-83.625013,36.625183],[-83.619913,36.627983],[-83.616413,36.631383],[-83.614513,36.633983],[-83.607913,36.637083],[-83.605613,36.637783],[-83.604313,36.637683],[-83.603013,36.636883],[-83.600713,36.637084],[-83.584512,36.641384],[-83.577312,36.641784],[-83.569812,36.645684],[-83.565712,36.648384],[-83.562612,36.651284],[-83.554112,36.653784],[-83.547312,36.654484],[-83.541812,36.656584],[-83.533112,36.661884],[-83.533012,36.663284],[-83.531912,36.664984],[-83.529612,36.666184],[-83.527112,36.665985],[-83.516011,36.667585],[-83.511711,36.669085],[-83.506911,36.668685],[-83.501411,36.669085],[-83.499911,36.670185],[-83.498011,36.670485],[-83.493911,36.670085],[-83.48891,36.667685],[-83.48261,36.666185],[-83.466483,36.6647],[-83.461015,36.664878],[-83.460808,36.664885],[-83.458009,36.665785],[-83.454709,36.664785],[-83.448108,36.665285],[-83.440808,36.666885],[-83.436508,36.666185],[-83.431708,36.666485],[-83.423707,36.667385],[-83.419507,36.668486],[-83.411807,36.670786],[-83.395806,36.676786],[-83.394906,36.677586],[-83.395607,36.678987],[-83.395306,36.679486],[-83.389306,36.684986],[-83.386099,36.686589],[-83.367505,36.692686],[-83.364005,36.694586],[-83.362105,36.694786],[-83.360205,36.693586],[-83.359205,36.693586],[-83.356405,36.694686],[-83.354606,36.696153],[-83.353613,36.696699],[-83.350805,36.697386],[-83.349705,36.698386],[-83.342804,36.701286],[-83.315703,36.708187],[-83.313003,36.709087],[-83.311403,36.710287],[-83.307103,36.711387],[-83.287802,36.713787],[-83.286902,36.713987],[-83.285702,36.715187],[-83.275501,36.717987],[-83.272501,36.717787],[-83.269301,36.718487],[-83.263601,36.720987],[-83.2555,36.721787],[-83.2463,36.725287],[-83.238499,36.727087],[-83.236399,36.726887],[-83.219999,36.731287],[-83.199698,36.737487],[-83.194597,36.739487],[-83.175696,36.739587],[-83.167396,36.739187],[-83.161496,36.739887],[-83.156696,36.742187],[-83.146095,36.741788],[-83.136395,36.743088],[-83.134294,36.746588],[-83.130994,36.749788],[-83.127833,36.750828],[-83.128272,36.75637],[-83.128813,36.757864],[-83.126719,36.761],[-83.125728,36.761276],[-83.125655,36.761407],[-83.132477,36.764398],[-83.132286,36.76561],[-83.131245,36.767105],[-83.128894,36.769888],[-83.128494,36.775588],[-83.131694,36.781488],[-83.128794,36.785388],[-83.123341,36.786654],[-83.119144,36.789531],[-83.114693,36.796088],[-83.110793,36.800388],[-83.108029,36.802181],[-83.103092,36.806689],[-83.098492,36.814289],[-83.098892,36.822989],[-83.099792,36.824889],[-83.101692,36.826689],[-83.102092,36.828189],[-83.101792,36.829089],[-83.098892,36.831789],[-83.091291,36.834389],[-83.088991,36.835989],[-83.086991,36.838189],[-83.07969,36.840589],[-83.07519,36.840889],[-83.07379,36.844889],[-83.07559,36.850589],[-83.07259,36.854589],[-83.06929,36.853589],[-83.066189,36.851889],[-83.063989,36.851689],[-83.060489,36.853789],[-83.052489,36.851989],[-83.047589,36.851789],[-83.044288,36.852989],[-83.042188,36.854389],[-83.026887,36.855489],[-83.025887,36.855289],[-83.024387,36.851689],[-83.021887,36.849989],[-83.012587,36.847289],[-83.009222,36.847295],[-83.006086,36.847889],[-83.003786,36.851789],[-82.998376,36.85663],[-82.988707,36.859137],[-82.979227,36.859693],[-82.973395,36.859097],[-82.971934,36.857767],[-82.970253,36.857686],[-82.960955,36.862536],[-82.951685,36.866152],[-82.937573,36.867275],[-82.92241,36.873925],[-82.911824,36.874243],[-82.91169,36.874248],[-82.910315,36.874055],[-82.907774,36.874706],[-82.907276,36.875643],[-82.908004,36.877233],[-82.907981,36.878749],[-82.906325,36.87974],[-82.895445,36.882145],[-82.890028,36.884287],[-82.887627,36.88689],[-82.884626,36.888477],[-82.879492,36.889085],[-82.878569,36.889585],[-82.877862,36.891843],[-82.878362,36.893218],[-82.878639,36.893981],[-82.876438,36.896238],[-82.873213,36.897263],[-82.870068,36.901735],[-82.872561,36.903376],[-82.877473,36.90796],[-82.876215,36.910218],[-82.873777,36.912299],[-82.872136,36.913456],[-82.867116,36.917965],[-82.865192,36.920923],[-82.863468,36.922308],[-82.861943,36.924236],[-82.860032,36.925241],[-82.858635,36.927785],[-82.857965,36.929529],[-82.858461,36.932717],[-82.858784,36.933065],[-82.860537,36.937439],[-82.861684,36.939316],[-82.861282,36.944848],[-82.860633,36.94584],[-82.859969,36.949074],[-82.856099,36.952471],[-82.855705,36.953808],[-82.858443,36.954036],[-82.860534,36.956015],[-82.862866,36.957765],[-82.864211,36.957983],[-82.865404,36.958084],[-82.867358,36.963182],[-82.87023,36.965498],[-82.870274,36.965993],[-82.869183,36.974182],[-82.869183,36.974183],[-82.868455,36.976481],[-82.867535,36.977518],[-82.866689,36.978052],[-82.866019,36.978272],[-82.864909,36.97901],[-82.862926,36.979975],[-82.860561,36.978265],[-82.857936,36.978276],[-82.856768,36.979095],[-82.856417,36.982216],[-82.853729,36.985178],[-82.852614,36.984963],[-82.851397,36.984497],[-82.849429,36.983479],[-82.845002,36.983812],[-82.841252,36.986858],[-82.840051,36.987113],[-82.838549,36.987027],[-82.836008,36.988837],[-82.833843,36.991973],[-82.830802,36.993445],[-82.829125,36.997541],[-82.830588,37.000945],[-82.829961,37.003555],[-82.828592,37.005707],[-82.825224,37.006279],[-82.822684,37.004128],[-82.821798,37.00438],[-82.819715,37.006212],[-82.818006,37.006161],[-82.815748,37.007196],[-82.813579,37.00532],[-82.800531,37.007944],[-82.797487,37.009654],[-82.796187,37.008502],[-82.795695,37.006702],[-82.794824,37.005899],[-82.793441,37.005491],[-82.79089,37.00676],[-82.790462,37.007263],[-82.789092,37.007995],[-82.788897,37.00816],[-82.782144,37.008242],[-82.778386,37.012521],[-82.777368,37.015279],[-82.771795,37.015716],[-82.767083,37.020935],[-82.766408,37.023106],[-82.759175,37.027333],[-82.754051,37.026587],[-82.751852,37.025624],[-82.750715,37.024107],[-82.747981,37.025214],[-82.745562,37.029839],[-82.743684,37.041397],[-82.742454,37.04298],[-82.733603,37.044525],[-82.731722,37.043447],[-82.726279,37.042098],[-82.724714,37.042758],[-82.722472,37.045101],[-82.723279,37.047616],[-82.723128,37.052436],[-82.722254,37.057948],[-82.723904,37.062542],[-82.726312,37.06687],[-82.727022,37.073019],[-82.723747,37.075525],[-82.721676,37.07519],[-82.718353,37.075706],[-82.71674,37.07722],[-82.717204,37.079544],[-82.718183,37.080679],[-82.720597,37.081833],[-82.72304,37.084992],[-82.724954,37.091905],[-82.724358,37.09299],[-82.722179,37.094309],[-82.721617,37.101276],[-82.721941,37.105689],[-82.726294,37.111852],[-82.726449,37.114985],[-82.726201,37.115882],[-82.722097,37.120168],[-82.718334,37.122267],[-82.716334,37.122093],[-82.70787,37.125488],[-82.695667,37.131514],[-82.684601,37.135835],[-82.679428,37.135575],[-82.676765,37.134965],[-82.67153,37.138444],[-82.667717,37.141949],[-82.662449,37.143865],[-82.657468,37.145024],[-82.65476,37.150601],[-82.653268,37.151314],[-82.651646,37.151908],[-82.633493,37.154264],[-82.624878,37.162932],[-82.617423,37.168129],[-82.60829,37.173047],[-82.597447,37.177088],[-82.592766,37.180391],[-82.593232,37.18206],[-82.592451,37.182847],[-82.586718,37.185623],[-82.578988,37.188498],[-82.565375,37.196092],[-82.565329,37.196118],[-82.558178,37.199606],[-82.553841,37.202836],[-82.553835,37.202841],[-82.550372,37.204458],[-82.545804,37.20307],[-82.541302,37.20653],[-82.536627,37.20692],[-82.531576,37.209163],[-82.532051,37.210808],[-82.531787,37.212097],[-82.528746,37.213742],[-82.524464,37.214957],[-82.520117,37.212906],[-82.509431,37.218924],[-82.508062,37.220964],[-82.508342,37.222385],[-82.507895,37.222727],[-82.498858,37.227044],[-82.496308,37.227562],[-82.495243,37.225606],[-82.491486,37.225086],[-82.487219,37.227799],[-82.487317,37.230578],[-82.486439,37.231204],[-82.473275,37.235569],[-82.463073,37.238292],[-82.457016,37.238288],[-82.451998,37.242559],[-82.449164,37.243908],[-82.435728,37.246491],[-82.431022,37.246773],[-82.418085,37.251331],[-82.385663,37.259631],[-82.383285,37.260154],[-82.376595,37.2599],[-82.364535,37.264415],[-82.355343,37.26522],[-82.350948,37.267077],[-82.342068,37.274109],[-82.341849,37.280886],[-82.336942,37.279737],[-82.33157,37.282211],[-82.324619,37.28318],[-82.318957,37.287524],[-82.317395,37.290975],[-82.317083,37.293635],[-82.316028,37.294879],[-82.314718,37.295907],[-82.309415,37.300066],[-82.291908,37.311642],[-82.254352,37.337745],[-82.202688,37.374041],[-82.201745,37.375108],[-82.124854,37.427272],[-82.062809,37.470911],[-82.050888,37.480527],[-81.968297,37.537798],[-81.969279,37.534325],[-81.967583,37.532815],[-81.959362,37.53522],[-81.957379,37.535198],[-81.956947,37.534259],[-81.957436,37.533206],[-81.957693,37.529841],[-81.95663,37.52849],[-81.953524,37.528056],[-81.946022,37.531742],[-81.94401,37.530964],[-81.943981,37.5303],[-81.947545,37.52753],[-81.94766,37.52508],[-81.947085,37.523913],[-81.943693,37.521212],[-81.943779,37.519609],[-81.945475,37.51661],[-81.944756,37.513657],[-81.943865,37.512879],[-81.941968,37.512306],[-81.938749,37.512902],[-81.936996,37.51423],[-81.933088,37.518968],[-81.926391,37.514207],[-81.926736,37.51304],[-81.927759,37.512209],[-81.92787,37.512118],[-81.932279,37.511961],[-81.941151,37.509483],[-81.943045,37.508609],[-81.944188,37.506976],[-81.943912,37.502929],[-81.945957,37.501901],[-81.949188,37.502376],[-81.951831,37.50205],[-81.953147,37.501314],[-81.954077,37.499822],[-81.954364,37.496084],[-81.954167,37.495302],[-81.952735,37.494162],[-81.952681,37.492274],[-81.953264,37.491763],[-81.957213,37.491504],[-81.964986,37.493488],[-81.97073,37.489904],[-81.977593,37.484603],[-81.979169,37.484604],[-81.980327,37.485447],[-81.985703,37.485681],[-81.989849,37.484879],[-81.992916,37.482969],[-81.996578,37.476705],[-81.995649,37.469833],[-81.99227,37.460916],[-81.987006,37.454878],[-81.984891,37.454315],[-81.980013,37.45721],[-81.976176,37.457186],[-81.968795,37.451496],[-81.969342,37.450324],[-81.965582,37.446918],[-81.958672,37.448045],[-81.949367,37.445687],[-81.945765,37.440214],[-81.942856,37.439929],[-81.941175,37.440485],[-81.938843,37.440463],[-81.935621,37.438397],[-81.935316,37.43639],[-81.937838,37.432111],[-81.940553,37.429058],[-81.93695,37.41992],[-81.932468,37.415217],[-81.923481,37.411379],[-81.924506,37.407613],[-81.925764,37.406874],[-81.927338,37.406844],[-81.930042,37.405291],[-81.930786,37.401656],[-81.92828,37.398059],[-81.928778,37.393845],[-81.933601,37.389217],[-81.936744,37.38073],[-81.935872,37.378554],[-81.93388,37.377796],[-81.932763,37.374229],[-81.933895,37.372747],[-81.930194,37.366728],[-81.929915,37.366589],[-81.926697,37.364618],[-81.928497,37.360645],[-81.926589,37.358942],[-81.925643,37.357316],[-81.921571,37.356423],[-81.920711,37.355416],[-81.920279,37.353402],[-81.916678,37.349346],[-81.911951,37.349339],[-81.911487,37.348839],[-81.910875,37.348729],[-81.907895,37.343783],[-81.907322,37.343119],[-81.906368,37.34276],[-81.905945,37.342775],[-81.903795,37.34305],[-81.902992,37.34234],[-81.899495,37.341102],[-81.899459,37.340277],[-81.896001,37.331967],[-81.895489,37.332022],[-81.894797,37.332012],[-81.894768,37.331381],[-81.893773,37.330105],[-81.892876,37.330134],[-81.887722,37.331156],[-81.886952,37.330725],[-81.885075,37.330665],[-81.880886,37.331146],[-81.879601,37.332074],[-81.878713,37.331753],[-81.878343,37.328837],[-81.873213,37.325065],[-81.872662,37.323314],[-81.87018,37.320667],[-81.867425,37.320838],[-81.860267,37.315715],[-81.859928,37.313965],[-81.863712,37.31223],[-81.865429,37.31012],[-81.865683,37.309484],[-81.865219,37.308839],[-81.86476,37.308404],[-81.862031,37.305648],[-81.859624,37.304765],[-81.856032,37.306742],[-81.85446,37.30657],[-81.853645,37.300779],[-81.853978,37.300418],[-81.854465,37.299937],[-81.853488,37.294763],[-81.854059,37.291352],[-81.853551,37.287701],[-81.849949,37.285227],[-81.846807,37.284649],[-81.843167,37.285586],[-81.84231,37.285556],[-81.838762,37.286343],[-81.834432,37.285416],[-81.833406,37.284535],[-81.834387,37.283086],[-81.83447,37.281763],[-81.825065,37.279536],[-81.819625,37.279411],[-81.816702,37.279865],[-81.813222,37.281091],[-81.810559,37.28298],[-81.809184,37.283003],[-81.807232,37.283175],[-81.805382,37.285622],[-81.803275,37.285916],[-81.793595,37.284838],[-81.793115,37.283538],[-81.793639,37.282188],[-81.793425,37.281674],[-81.789294,37.284416],[-81.783122,37.28258],[-81.779362,37.279982],[-81.77935,37.277394],[-81.777319,37.275873],[-81.774747,37.274847],[-81.774684,37.274807],[-81.767837,37.274216],[-81.765195,37.275099],[-81.763836,37.275218],[-81.762776,37.275391],[-81.761752,37.275713],[-81.76022,37.275254],[-81.757631,37.274003],[-81.75773,37.271934],[-81.757714,37.271124],[-81.757531,37.27001],[-81.755012,37.26772],[-81.752912,37.266614],[-81.752123,37.265568],[-81.75129,37.265131],[-81.747656,37.264329],[-81.746109,37.263597],[-81.745505,37.26133],[-81.745445,37.258125],[-81.743008,37.255127],[-81.741662,37.254784],[-81.740974,37.254052],[-81.743505,37.247601],[-81.74342,37.245858],[-81.744291,37.244178],[-81.744003,37.242528],[-81.739277,37.238837],[-81.738543,37.238264],[-81.73332,37.238127],[-81.728194,37.239823],[-81.726171,37.240522],[-81.723061,37.240493],[-81.719554,37.237785],[-81.716248,37.234321],[-81.71573,37.228771],[-81.698954,37.218201],[-81.695113,37.21357],[-81.686717,37.213105],[-81.683544,37.211452],[-81.684012,37.211098],[-81.683268,37.205649],[-81.681379,37.203634],[-81.678603,37.202467],[-81.67821,37.201483],[-81.560625,37.206663],[-81.558353,37.208145],[-81.557315,37.207697],[-81.556892,37.207275],[-81.556119,37.207413],[-81.5536,37.208443],[-81.549248,37.213732],[-81.545211,37.220165],[-81.544437,37.220761],[-81.53307,37.223414],[-81.527458,37.225817],[-81.520729,37.226914],[-81.508786,37.232564],[-81.507325,37.2338],[-81.50626,37.239272],[-81.506428,37.244469],[-81.50488,37.247697],[-81.504168,37.250115],[-81.50319,37.252579],[-81.498874,37.258025],[-81.497775,37.257899],[-81.497773,37.25719],[-81.498445,37.256568],[-81.498045,37.254659],[-81.495738,37.252393],[-81.492287,37.25096],[-81.483559,37.250604],[-81.480144,37.251121],[-81.476431,37.255127],[-81.462107,37.259899],[-81.46,37.262547],[-81.459874,37.263901],[-81.460585,37.265527],[-81.458895,37.266466],[-81.454199,37.266999],[-81.449068,37.269583],[-81.448285,37.270575],[-81.43285,37.272697],[-81.427946,37.271015],[-81.416663,37.273214],[-81.411593,37.28033],[-81.409577,37.284025],[-81.409729,37.284837],[-81.409196,37.286071],[-81.403764,37.296597],[-81.40506,37.298794],[-81.402195,37.30166],[-81.398185,37.302965],[-81.396817,37.304498],[-81.397357,37.306358],[-81.398702,37.307806],[-81.398548,37.310635],[-81.394287,37.316411],[-81.388132,37.319903],[-81.386727,37.320474],[-81.38581,37.320085],[-81.384914,37.318832],[-81.384127,37.318596],[-81.380159,37.317838],[-81.377349,37.318447],[-81.374455,37.318614],[-81.37261,37.320195],[-81.371315,37.324115],[-81.367599,37.327569],[-81.36803,37.329447],[-81.369264,37.330568],[-81.369379,37.331827],[-81.36809,37.332423],[-81.367052,37.334504],[-81.366315,37.335927],[-81.362156,37.337687],[-81.320105,37.299323],[-81.225104,37.234874],[-81.204774,37.243013],[-81.178151,37.257979],[-81.167029,37.262881],[-81.158964,37.265382],[-81.142404,37.269165],[-81.112596,37.278497],[-81.09482,37.28264],[-81.084012,37.284401],[-81.037191,37.290251],[-81.021937,37.294143],[-81.008457,37.296073],[-81.000576,37.297868],[-80.996013,37.299545],[-80.979589,37.302279],[-80.979106,37.300581],[-80.982173,37.296023],[-80.981322,37.293465],[-80.980146,37.292743],[-80.973889,37.291444],[-80.966556,37.292158],[-80.947896,37.295872],[-80.938135,37.300278],[-80.931118,37.302872],[-80.92704,37.303683],[-80.919259,37.306163],[-80.900535,37.315],[-80.880103,37.328903],[-80.868986,37.338573],[-80.865321,37.340523],[-80.849451,37.346909],[-80.883248,37.383933],[-80.862761,37.411829],[-80.864455,37.41418],[-80.865174,37.416996],[-80.865148,37.419927],[-80.863142,37.424644],[-80.859563,37.429558],[-80.859556,37.429568],[-80.858473,37.428301],[-80.85836,37.428168],[-80.856997,37.427052],[-80.853163,37.426902],[-80.850656,37.426062],[-80.846324,37.423394],[-80.844213,37.423555],[-80.841672,37.425971],[-80.837678,37.425658],[-80.836446,37.424355],[-80.811639,37.407507],[-80.808769,37.406271],[-80.806358,37.404119],[-80.807134,37.401348],[-80.806129,37.398074],[-80.800447,37.395738],[-80.798869,37.395807],[-80.790317,37.395668],[-80.784188,37.394587],[-80.783324,37.392793],[-80.783382,37.390649],[-80.782295,37.389016],[-80.776766,37.384131],[-80.776649,37.383679],[-80.770082,37.372363],[-80.759886,37.374882],[-80.748722,37.38005],[-80.745527,37.380111],[-80.73804,37.382547],[-80.731589,37.38471],[-80.723596,37.388261],[-80.715479,37.390707],[-80.705203,37.394618],[-80.691709,37.401749],[-80.684576,37.40463],[-80.664971,37.414215],[-80.664112,37.41422],[-80.656687,37.417585],[-80.653589,37.419514],[-80.645893,37.422147],[-80.636947,37.427471],[-80.637554,37.428556],[-80.637379,37.429372],[-80.63439,37.431227],[-80.632365,37.432125],[-80.626365,37.433328],[-80.622664,37.433307],[-80.622117,37.435969],[-80.616802,37.439443],[-80.600204,37.446173],[-80.591377,37.45144],[-80.59024,37.453296],[-80.585856,37.456654],[-80.566297,37.466575],[-80.561442,37.469775],[-80.552036,37.473563],[-80.544836,37.474695],[-80.539786,37.474527],[-80.533449,37.476406],[-80.532372,37.477124],[-80.528349,37.477368],[-80.523481,37.476905],[-80.515139,37.478566],[-80.513409,37.479446],[-80.511391,37.481672],[-80.492981,37.457749],[-80.49728,37.444779],[-80.494867,37.43507],[-80.475601,37.422949],[-80.46482,37.426144],[-80.457313,37.432267],[-80.451367,37.434039],[-80.443025,37.438126],[-80.425656,37.449876],[-80.402816,37.460322],[-80.39988,37.462314],[-80.382535,37.470367],[-80.378308,37.471381],[-80.371952,37.474069],[-80.369449,37.476599],[-80.36317,37.480001],[-80.366838,37.484879],[-80.343789,37.492148],[-80.332038,37.493744],[-80.327103,37.495376],[-80.320627,37.49888],[-80.314806,37.500943],[-80.309331,37.50288],[-80.309833,37.503827],[-80.299789,37.508271],[-80.282385,37.533517],[-80.291644,37.536505],[-80.309346,37.527381],[-80.330306,37.536244],[-80.327489,37.540022],[-80.324384,37.541052],[-80.321249,37.541419],[-80.314464,37.54412],[-80.312393,37.546239],[-80.328504,37.564315],[-80.294882,37.57877],[-80.28244,37.585481],[-80.270342,37.591149],[-80.26356,37.593374],[-80.258919,37.595499],[-80.24978,37.602117],[-80.240272,37.606961],[-80.226017,37.620059],[-80.223386,37.623185],[-80.220984,37.627767],[-80.239288,37.637672],[-80.254431,37.642352],[-80.254469,37.642333],[-80.263281,37.645082],[-80.263291,37.645101],[-80.26483,37.645526],[-80.264874,37.645511],[-80.267228,37.646011],[-80.267455,37.646108],[-80.270352,37.648929],[-80.270323,37.648982],[-80.279372,37.657077],[-80.292258,37.683732],[-80.292337,37.683976],[-80.296138,37.691783],[-80.294108,37.693852],[-80.287107,37.696403],[-80.275007,37.707844],[-80.27199,37.711532],[-80.264406,37.718786],[-80.258143,37.720612],[-80.253077,37.725899],[-80.252227,37.727261],[-80.252024,37.729825],[-80.260313,37.733517],[-80.262765,37.738336],[-80.257411,37.756084],[-80.25641,37.756372],[-80.251622,37.755866],[-80.24979,37.757111],[-80.250427,37.761301],[-80.251319,37.762958],[-80.246902,37.768309],[-80.24139,37.769443],[-80.232011,37.775621],[-80.230458,37.778305],[-80.227498,37.778889],[-80.221827,37.778293],[-80.217634,37.776775],[-80.216899,37.776056],[-80.216498,37.776445],[-80.215658,37.777481],[-80.215892,37.781989],[-80.218616,37.783291],[-80.220092,37.78316],[-80.224189,37.787612],[-80.227965,37.791714],[-80.229489,37.792331],[-80.229228,37.79466],[-80.227092,37.798886],[-80.218611,37.809783],[-80.216939,37.809505],[-80.216229,37.80982],[-80.210965,37.812598],[-80.206482,37.81597],[-80.205841,37.818921],[-80.202853,37.82424],[-80.199633,37.827507],[-80.19465,37.831759],[-80.18638,37.837741],[-80.181768,37.838343],[-80.179391,37.839751],[-80.183555,37.84681],[-80.183062,37.850646],[-80.181815,37.852724],[-80.176712,37.854029],[-80.172076,37.860066],[-80.172033,37.862144],[-80.168957,37.867116],[-80.162202,37.875122],[-80.153832,37.881824],[-80.148951,37.886892],[-80.147316,37.885936],[-80.14613,37.884453],[-80.141947,37.882616],[-80.131931,37.8895],[-80.13104,37.890697],[-80.130464,37.893194],[-80.129555,37.894134],[-80.12362,37.897943],[-80.123021,37.898046],[-80.120613,37.896735],[-80.117747,37.89772],[-80.11748,37.900581],[-80.119106,37.902018],[-80.118967,37.903614],[-80.116884,37.906292],[-80.106819,37.914698],[-80.102931,37.918911],[-80.096563,37.918112],[-80.086954,37.929547],[-80.080823,37.935526],[-80.075441,37.939629],[-80.074514,37.942221],[-80.066569,37.947171],[-80.063682,37.947968],[-80.056839,37.951833],[-80.056329,37.952274],[-80.051043,37.956852],[-80.04841,37.957481],[-80.036236,37.96792],[-80.024168,37.976907],[-80.013145,37.984253],[-80.012555,37.985999],[-80.012891,37.987443],[-80.012193,37.988633],[-80.008888,37.99083],[-80.002507,37.992767],[-79.999384,37.995842],[-79.996134,38.000996],[-79.995398,38.003309],[-79.995901,38.005791],[-79.994985,38.007853],[-79.990114,38.013246],[-79.986142,38.014182],[-79.984842,38.01661],[-79.985792,38.018089],[-79.985619,38.01916],[-79.98029,38.027596],[-79.978427,38.029082],[-79.976732,38.029278],[-79.975269,38.030075],[-79.973701,38.032556],[-79.972165,38.036102],[-79.973777,38.038744],[-79.973895,38.040004],[-79.971231,38.044326],[-79.968189,38.047709],[-79.959844,38.063697],[-79.960093,38.068677],[-79.954369,38.080397],[-79.953509,38.081484],[-79.949113,38.084238],[-79.942364,38.091588],[-79.938274,38.094741],[-79.935101,38.096541],[-79.93425,38.097669],[-79.933911,38.099168],[-79.931034,38.101402],[-79.927645,38.104826],[-79.92633,38.107151],[-79.929687,38.109197],[-79.934364,38.109718],[-79.938051,38.110759],[-79.938952,38.111619],[-79.944843,38.131585],[-79.942747,38.134333],[-79.933751,38.135508],[-79.929031,38.139771],[-79.928747,38.144436],[-79.928683,38.144928],[-79.925512,38.150237],[-79.925251,38.150465],[-79.923125,38.150874],[-79.918662,38.15479],[-79.914884,38.167524],[-79.915065,38.168088],[-79.916072,38.168428],[-79.917924,38.168399],[-79.918913,38.170439],[-79.918629,38.172671],[-79.916765,38.175504],[-79.916622,38.177994],[-79.921026,38.179954],[-79.921196,38.180378],[-79.917061,38.183741],[-79.916174,38.184386],[-79.916344,38.186278],[-79.91441,38.188418],[-79.910961,38.18792],[-79.90609,38.188999],[-79.898426,38.193045],[-79.892916,38.199868],[-79.892345,38.202397],[-79.891999,38.203378],[-79.891591,38.204652],[-79.888045,38.20736],[-79.886413,38.207953],[-79.884234,38.207868],[-79.879087,38.211016],[-79.863625,38.223945],[-79.856962,38.231075],[-79.850324,38.233329],[-79.846445,38.240003],[-79.845207,38.241082],[-79.842981,38.241594],[-79.837494,38.241276],[-79.835124,38.241892],[-79.834171,38.242899],[-79.834031,38.244957],[-79.832971,38.247553],[-79.830882,38.249687],[-79.825283,38.250488],[-79.82101,38.248277],[-79.819623,38.248234],[-79.817149,38.249511],[-79.814865,38.251568],[-79.815719,38.253645],[-79.815708,38.255065],[-79.814202,38.258174],[-79.811987,38.260401],[-79.806333,38.259193],[-79.801274,38.261474],[-79.798295,38.265957],[-79.7961,38.266413],[-79.790134,38.267654],[-79.788945,38.268703],[-79.787542,38.273298],[-79.789791,38.281167],[-79.795448,38.290228],[-79.797848,38.292053],[-79.802778,38.292073],[-79.803346,38.296682],[-79.804026,38.298622],[-79.807542,38.301694],[-79.810115,38.305037],[-79.810154,38.306707],[-79.808711,38.309429],[-79.804093,38.313922],[-79.799617,38.317149],[-79.798159,38.319161],[-79.79655,38.32348],[-79.785972,38.330878],[-79.779272,38.331609],[-79.77309,38.335529],[-79.769906,38.341843],[-79.766403,38.350873],[-79.767263,38.353395],[-79.764432,38.356514],[-79.757626,38.357566],[-79.75556,38.357372],[-79.744105,38.353968],[-79.740615,38.354101],[-79.7346,38.356728],[-79.732059,38.360168],[-79.729344,38.36183],[-79.727053,38.362233],[-79.725973,38.363229],[-79.725597,38.363828],[-79.725804,38.366128],[-79.72679,38.370832],[-79.727676,38.371701],[-79.730494,38.372217],[-79.731698,38.373376],[-79.729895,38.380351],[-79.72635,38.38707],[-79.722653,38.389517],[-79.717365,38.401562],[-79.712904,38.405034],[-79.708965,38.409553],[-79.70914,38.412064],[-79.706634,38.41573],[-79.689675,38.431439],[-79.689909,38.432864],[-79.69093,38.433995],[-79.691656,38.436436],[-79.691377,38.439558],[-79.689544,38.442511],[-79.691478,38.446282],[-79.688962,38.449538],[-79.688205,38.450476],[-79.688365,38.45687],[-79.688882,38.458714],[-79.691088,38.463744],[-79.695588,38.469058],[-79.698929,38.469869],[-79.699622,38.473967],[-79.699006,38.475148],[-79.695565,38.477842],[-79.69418,38.478311],[-79.693424,38.481011],[-79.695462,38.481454],[-79.696959,38.484574],[-79.697572,38.487223],[-79.694506,38.494232],[-79.692273,38.496474],[-79.691301,38.496768],[-79.688345,38.496183],[-79.682974,38.501317],[-79.681606,38.504504],[-79.681574,38.508217],[-79.680374,38.510617],[-79.674074,38.510417],[-79.670474,38.507717],[-79.669128,38.510883],[-79.669128,38.510975],[-79.668774,38.512017],[-79.667574,38.512917],[-79.665674,38.513817],[-79.663474,38.514117],[-79.662074,38.515517],[-79.662974,38.518717],[-79.666774,38.524317],[-79.669774,38.526917],[-79.671574,38.527517],[-79.672974,38.528717],[-79.668774,38.534217],[-79.666874,38.538317],[-79.669675,38.543416],[-79.669275,38.549516],[-79.665075,38.560916],[-79.662575,38.560516],[-79.659275,38.562416],[-79.660675,38.566216],[-79.661575,38.567316],[-79.659375,38.572616],[-79.658175,38.573016],[-79.656109,38.5762],[-79.649075,38.591515],[-79.571771,38.563117],[-79.566271,38.562517],[-79.555471,38.560217],[-79.54257,38.553217],[-79.53827,38.551817],[-79.53687,38.550917],[-79.53337,38.546217],[-79.53317,38.544717],[-79.53187,38.542817],[-79.521469,38.533918],[-79.499768,38.49772],[-79.476638,38.457228],[-79.370302,38.427244],[-79.312276,38.411876],[-79.300081,38.414888],[-79.297758,38.416438],[-79.295712,38.418129],[-79.291813,38.419627],[-79.290529,38.420757],[-79.288432,38.42096],[-79.286874,38.420555],[-79.285613,38.419249],[-79.282971,38.418095],[-79.280149,38.42076],[-79.279678,38.424173],[-79.280263,38.425475],[-79.280581,38.426833],[-79.28247,38.429168],[-79.282663,38.431021],[-79.282762,38.431647],[-79.282225,38.432078],[-79.274529,38.436337],[-79.272064,38.437376],[-79.267414,38.438322],[-79.265327,38.441772],[-79.263376,38.443762],[-79.26291,38.444586],[-79.261107,38.448082],[-79.254435,38.455949],[-79.253067,38.455818],[-79.247342,38.453294],[-79.242641,38.454168],[-79.241854,38.457055],[-79.242024,38.464332],[-79.240059,38.469841],[-79.234408,38.473011],[-79.23162,38.474041],[-79.225669,38.476471],[-79.224192,38.477763],[-79.220961,38.48059],[-79.221406,38.484837],[-79.219067,38.487441],[-79.215212,38.489261],[-79.210591,38.492913],[-79.210026,38.494231],[-79.210008,38.494283],[-79.209703,38.495574],[-79.207873,38.500122],[-79.207884,38.500428],[-79.206959,38.503522],[-79.210959,38.507422],[-79.205859,38.524521],[-79.201459,38.527821],[-79.196959,38.536721],[-79.193458,38.542421],[-79.188958,38.54742],[-79.184058,38.55152],[-79.180858,38.55992],[-79.176658,38.56552],[-79.174881,38.566314],[-79.174512,38.566531],[-79.170958,38.56812],[-79.170658,38.56922],[-79.171658,38.57162],[-79.170858,38.574119],[-79.168058,38.578619],[-79.163458,38.583119],[-79.158657,38.592319],[-79.158257,38.593919],[-79.158957,38.594519],[-79.159158,38.601219],[-79.154357,38.606518],[-79.155557,38.609218],[-79.155355,38.611225],[-79.151257,38.620618],[-79.146974,38.625641],[-79.146741,38.625819],[-79.142657,38.634417],[-79.139657,38.637217],[-79.137557,38.638017],[-79.137012,38.640655],[-79.136374,38.6424],[-79.135546,38.643715],[-79.135472,38.644057],[-79.133557,38.646017],[-79.131057,38.653217],[-79.129757,38.655017],[-79.122256,38.659817],[-79.120256,38.660216],[-79.111556,38.659717],[-79.106356,38.656217],[-79.092955,38.659517],[-79.092755,38.662816],[-79.091055,38.669316],[-79.087855,38.673816],[-79.084355,38.686516],[-79.085555,38.688816],[-79.088055,38.690115],[-79.090755,38.692515],[-79.092271,38.699208],[-79.092555,38.700149],[-79.092755,38.702315],[-79.086555,38.716015],[-79.087255,38.720114],[-79.085455,38.724614],[-79.081955,38.729714],[-79.079655,38.734714],[-79.076555,38.739214],[-79.073855,38.742114],[-79.072755,38.744614],[-79.072555,38.747513],[-79.064854,38.754413],[-79.060954,38.756713],[-79.057554,38.760213],[-79.057253,38.761413],[-79.056754,38.766513],[-79.055654,38.770913],[-79.053754,38.772313],[-79.051554,38.772613],[-79.051254,38.773913],[-79.051654,38.778013],[-79.052454,38.779213],[-79.054354,38.780613],[-79.055654,38.783013],[-79.054954,38.785713],[-79.048954,38.790713],[-79.046554,38.792113],[-79.033153,38.791013],[-79.029253,38.791013],[-79.027253,38.792113],[-79.023053,38.798613],[-79.023453,38.802612],[-79.024453,38.803712],[-79.024053,38.809212],[-79.019553,38.817912],[-79.016752,38.820012],[-79.011952,38.820412],[-79.007952,38.822312],[-79.006552,38.823712],[-79.006152,38.824512],[-79.006352,38.826112],[-79.005152,38.829912],[-79.002352,38.836512],[-78.999014,38.840074],[-78.998863,38.840962],[-79.000252,38.845412],[-78.998171,38.847353],[-78.993997,38.850102],[-78.869276,38.762991],[-78.865905,38.767034],[-78.863684,38.7718],[-78.848187,38.794978],[-78.835191,38.811499],[-78.832267,38.814388],[-78.827262,38.82161],[-78.821167,38.830982],[-78.815116,38.841594],[-78.810943,38.849616],[-78.808181,38.856175],[-78.796213,38.874606],[-78.79161,38.877593],[-78.790078,38.880076],[-78.788031,38.885123],[-78.786025,38.887187],[-78.779198,38.892298],[-78.772793,38.893742],[-78.759085,38.900529],[-78.757278,38.903203],[-78.754516,38.905728],[-78.754658,38.907582],[-78.750517,38.916029],[-78.738921,38.927283],[-78.726222,38.930932],[-78.724062,38.930846],[-78.722451,38.931405],[-78.718482,38.934267],[-78.717076,38.936028],[-78.71962,38.92651],[-78.720095,38.923863],[-78.719806,38.922638],[-78.719755,38.922135],[-78.719451,38.92026],[-78.7209,38.909844],[-78.71981,38.905907],[-78.718647,38.904561],[-78.717178,38.904296],[-78.716168,38.90483],[-78.712622,38.908665],[-78.704323,38.915231],[-78.69738,38.915602],[-78.69145,38.922195],[-78.688266,38.92478],[-78.681617,38.92584],[-78.680456,38.925313],[-78.670679,38.9338],[-78.666594,38.9392],[-78.665886,38.941579],[-78.662083,38.945702],[-78.65905,38.947375],[-78.655043,38.953766],[-78.652352,38.960677],[-78.646589,38.968138],[-78.638423,38.966819],[-78.632471,38.974739],[-78.632452,38.976983],[-78.630846,38.979586],[-78.629553,38.980866],[-78.625672,38.982575],[-78.620453,38.982601],[-78.619914,38.981288],[-78.619982,38.977338],[-78.618676,38.974082],[-78.614312,38.97585],[-78.611184,38.976134],[-78.608369,38.969743],[-78.601655,38.964603],[-78.601399,38.96653],[-78.598894,38.969546],[-78.596015,38.970192],[-78.593261,38.971918],[-78.588704,38.978579],[-78.582928,38.985416],[-78.581981,38.988398],[-78.580465,38.990567],[-78.570462,39.001552],[-78.561711,39.009007],[-78.5594,39.011877],[-78.554919,39.015124],[-78.552321,39.016374],[-78.550467,39.018065],[-78.55738,39.021393],[-78.55964,39.024456],[-78.563294,39.026328],[-78.565073,39.025935],[-78.565837,39.026303],[-78.571901,39.031995],[-78.559997,39.041573],[-78.556748,39.044527],[-78.554263,39.048058],[-78.547734,39.054069],[-78.545679,39.055052],[-78.544101,39.056663],[-78.540216,39.060631],[-78.531695,39.066519],[-78.526543,39.068221],[-78.522714,39.071062],[-78.516789,39.077569],[-78.515955,39.080046],[-78.516479,39.081802],[-78.512103,39.084878],[-78.508132,39.08863],[-78.504384,39.091398],[-78.495984,39.09898],[-78.49516,39.100992],[-78.484283,39.107372],[-78.478426,39.109843],[-78.47732,39.109398],[-78.475376,39.107469],[-78.473209,39.108143],[-78.470261,39.110063],[-78.46953,39.111204],[-78.466662,39.112858],[-78.459869,39.113351],[-78.439429,39.132146],[-78.437771,39.135426],[-78.436658,39.141691],[-78.427294,39.152726],[-78.413943,39.158415],[-78.412599,39.160038],[-78.403697,39.167451],[-78.406966,39.170903],[-78.411972,39.172734],[-78.426315,39.182762],[-78.428697,39.187217],[-78.424292,39.192156],[-78.424905,39.193301],[-78.430846,39.196227],[-78.436662,39.196658],[-78.438651,39.198049],[-78.437053,39.199766],[-78.43213,39.204717],[-78.431167,39.205744],[-78.429803,39.207014],[-78.427911,39.208611],[-78.423968,39.212049],[-78.41789,39.217504],[-78.405585,39.231176],[-78.40498,39.238006],[-78.404214,39.241214],[-78.399669,39.243874],[-78.399785,39.244129],[-78.409116,39.252564],[-78.414631,39.255733],[-78.41612,39.25541],[-78.418584,39.256065],[-78.419422,39.257476],[-78.414204,39.26391],[-78.402783,39.275471],[-78.401813,39.276754],[-78.402275,39.277238],[-78.398682,39.281332],[-78.393371,39.282988],[-78.388785,39.288572],[-78.387194,39.291444],[-78.387242,39.29343],[-78.385888,39.294888],[-78.374728,39.305136],[-78.371604,39.307692],[-78.367242,39.310148],[-78.364686,39.317312],[-78.361567,39.318037],[-78.360035,39.317771],[-78.35894,39.319484],[-78.346301,39.339108],[-78.34546,39.341024],[-78.347634,39.34272],[-78.347409,39.343402],[-78.343685,39.346713],[-78.342514,39.346769],[-78.341308,39.345555],[-78.339284,39.348605],[-78.338958,39.349889],[-78.34048,39.353492],[-78.348698,39.354744],[-78.362267,39.357784],[-78.366867,39.35929],[-78.362632,39.362888],[-78.354837,39.371616],[-78.343214,39.388807],[-78.350014,39.392861],[-78.349436,39.397252],[-78.357949,39.404192],[-78.359918,39.409028],[-78.359352,39.412534],[-78.356627,39.415902],[-78.351236,39.420595],[-78.348354,39.424431],[-78.346718,39.427618],[-78.347942,39.430879],[-78.353227,39.436792],[-78.347773,39.440583],[-78.346546,39.442616],[-78.346061,39.445613],[-78.347333,39.447659],[-78.346962,39.450679],[-78.345823,39.453499],[-78.345143,39.459484],[-78.349476,39.462205],[-78.347087,39.466012],[-78.28798,39.428755],[-78.262785,39.414323],[-78.228766,39.391233],[-78.205401,39.375099],[-78.18737,39.363989],[-78.158194,39.343392],[-78.14092,39.333745],[-78.108746,39.31246],[-78.033187,39.264622],[-78.033185,39.264621],[-78.032841,39.264403],[-77.828157,39.132329],[-77.822182,39.139985],[-77.82223,39.142734],[-77.82299,39.145451],[-77.822874,39.147755],[-77.821413,39.15241],[-77.818446,39.155279],[-77.813206,39.165023],[-77.811295,39.167563],[-77.809125,39.168567],[-77.805991,39.172421],[-77.805099,39.174222],[-77.804415,39.178045],[-77.804712,39.179419],[-77.797943,39.192826],[-77.797714,39.19424],[-77.798478,39.199574],[-77.79819,39.200658],[-77.794596,39.206299],[-77.793631,39.210125],[-77.788763,39.215243],[-77.78364,39.224081],[-77.781268,39.226909],[-77.778068,39.229305],[-77.771415,39.236776],[-77.767277,39.24938],[-77.770589,39.249393],[-77.770876,39.24976],[-77.770669,39.255262],[-77.770281,39.255977],[-77.768992,39.256417],[-77.768,39.257657],[-77.766525,39.25734],[-77.762844,39.258445],[-77.761768,39.263031],[-77.761217,39.263721],[-77.758733,39.268114],[-77.758412,39.269197],[-77.755698,39.274575],[-77.755193,39.275191],[-77.753105,39.27734],[-77.75306,39.277971],[-77.753357,39.280331],[-77.752726,39.283373],[-77.750267,39.289284],[-77.747287,39.295001],[-77.734899,39.312409],[-77.730047,39.315666],[-77.721638,39.318494],[-77.719946,39.319693],[-77.719029,39.321125],[-77.715865,39.320641],[-77.707709,39.321559],[-77.697461,39.318633],[-77.692984,39.31845],[-77.687124,39.319914],[-77.681706,39.323666],[-77.677123,39.324077],[-77.675846,39.324192],[-77.671341,39.321675],[-77.66613,39.317008],[-77.650997,39.310784],[-77.640282,39.308241],[-77.636101,39.307782],[-77.615939,39.302722],[-77.6059,39.303688],[-77.598892,39.301883],[-77.592739,39.30129],[-77.588235,39.301955],[-77.578491,39.305228],[-77.570041,39.30635],[-77.566596,39.306121],[-77.56321,39.303903],[-77.561826,39.301913],[-77.562768,39.294501],[-77.560854,39.286152],[-77.553114,39.279268],[-77.551054,39.275882],[-77.545846,39.271535],[-77.544258,39.26966],[-77.543228,39.266937],[-77.540581,39.264947],[-77.534461,39.262361],[-77.522486,39.259086],[-77.520986,39.258491],[-77.519634,39.257232],[-77.508427,39.25263],[-77.496606,39.251045],[-77.486813,39.247586],[-77.484664,39.246123],[-77.480807,39.241664],[-77.471213,39.234509],[-77.46021,39.228359],[-77.45812,39.22614],[-77.45768,39.22502],[-77.457943,39.222023],[-77.458922,39.220336],[-77.459883,39.218682],[-77.470113,39.21184],[-77.47361,39.208407],[-77.475929,39.202024],[-77.475013,39.194934],[-77.477362,39.190495],[-77.478596,39.189168],[-77.485971,39.185665],[-77.505162,39.18205],[-77.510631,39.178484],[-77.516426,39.170891],[-77.521222,39.161057],[-77.524872,39.148455],[-77.527282,39.146236],[-77.526728,39.137315],[-77.524559,39.127821],[-77.519929,39.120925],[-77.51532,39.118591],[-77.499711,39.11395],[-77.494955,39.113038],[-77.4858,39.109303],[-77.481279,39.105658],[-77.47701,39.100331],[-77.472414,39.092524],[-77.469443,39.086387],[-77.462617,39.076248],[-77.46145,39.075151],[-77.458202,39.073723],[-77.452827,39.072468],[-77.4374,39.070611],[-77.42318,39.066878],[-77.41543,39.066435],[-77.404593,39.064496],[-77.399204,39.064784],[-77.38568,39.061987],[-77.380108,39.062808],[-77.375079,39.061297],[-77.367529,39.061087],[-77.359702,39.062004],[-77.350311,39.062133],[-77.340287,39.062991],[-77.335511,39.061771],[-77.33401,39.060989],[-77.333706,39.059508],[-77.328281,39.057795],[-77.324206,39.056508],[-77.314905,39.052208],[-77.310705,39.052008],[-77.301005,39.049508],[-77.293105,39.046508],[-77.274706,39.034091],[-77.266004,39.031909],[-77.255303,39.030009],[-77.248403,39.026909],[-77.246003,39.024909],[-77.244603,39.020109],[-77.246903,39.014809],[-77.251803,39.011409],[-77.255703,39.002409],[-77.253003,38.995709],[-77.249203,38.993709],[-77.248303,38.992309],[-77.249803,38.985909],[-77.234803,38.97631],[-77.232268,38.979502],[-77.231601,38.979917],[-77.229992,38.979858],[-77.228395,38.978404],[-77.224969,38.973349],[-77.221502,38.97131],[-77.211502,38.96941],[-77.209302,38.97041],[-77.203602,38.96891],[-77.202502,38.96791],[-77.197502,38.96681],[-77.188302,38.96751],[-77.183002,38.96881],[-77.171901,38.96751],[-77.168001,38.96741],[-77.166901,38.96811],[-77.165301,38.96801],[-77.151084,38.965832],[-77.148179,38.965002],[-77.146601,38.96421],[-77.137701,38.95531],[-77.131901,38.94741],[-77.127601,38.94001],[-77.1199,38.934311],[-77.119857,38.93427],[-77.1179,38.932411],[-77.1166,38.928911],[-77.1134,38.925211],[-77.1063,38.919111],[-77.1034,38.912911],[-77.1012,38.911111],[-77.0937,38.905911],[-77.0902,38.904211],[-77.0822,38.901911],[-77.070099,38.900711],[-77.068199,38.899811],[-77.067299,38.899211],[-77.063499,38.888611],[-77.058254,38.880069],[-77.055199,38.880012],[-77.054099,38.879112],[-77.051099,38.875212],[-77.051299,38.873212],[-77.049099,38.870712],[-77.046299,38.871312],[-77.045599,38.873012],[-77.046599,38.874912],[-77.045399,38.875212],[-77.043299,38.874012],[-77.040599,38.871212],[-77.039099,38.868112],[-77.038899,38.865812],[-77.039299,38.864312],[-77.031698,38.850512],[-77.032798,38.841712],[-77.041699,38.840212],[-77.044199,38.840212],[-77.044489,38.839595],[-77.044999,38.838512],[-77.044899,38.834712],[-77.043499,38.833212],[-77.042599,38.833812],[-77.041199,38.833712],[-77.039199,38.832212],[-77.038098,38.828612],[-77.039098,38.821413],[-77.038098,38.815613],[-77.035798,38.814913],[-77.038898,38.800813],[-77.038598,38.791513],[-77.039498,38.791113],[-77.040098,38.789913],[-77.040373,38.785355],[-77.041098,38.773313],[-77.041898,38.741514]]]]}}]} diff --git a/Where/RegionKit/Sources/Resources/regions/us-VT.geojson b/Where/RegionKit/Sources/Resources/regions/us-VT.geojson new file mode 100644 index 00000000..9419aecb --- /dev/null +++ b/Where/RegionKit/Sources/Resources/regions/us-VT.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"region":"us-VT","name":"Vermont"},"geometry":{"type":"Polygon","coordinates":[[[-72.433796,43.232999],[-72.434466,43.230432],[-72.437656,43.225266],[-72.4405,43.219049],[-72.440563,43.215254],[-72.438594,43.209013],[-72.437719,43.20275],[-72.438969,43.201035],[-72.45028,43.192485],[-72.449435,43.18917],[-72.443749,43.182221],[-72.443405,43.179729],[-72.444904,43.177969],[-72.452556,43.172117],[-72.451868,43.170174],[-72.4521,43.161414],[-72.451553,43.155155],[-72.451802,43.153486],[-72.452801,43.151977],[-72.456537,43.149528],[-72.45714,43.148493],[-72.45689,43.146558],[-72.451986,43.138924],[-72.448303,43.137187],[-72.444214,43.13737],[-72.441904,43.136615],[-72.440905,43.135793],[-72.440624,43.132203],[-72.44078,43.131472],[-72.442746,43.131152],[-72.442933,43.130192],[-72.440967,43.127608],[-72.435936,43.123381],[-72.432972,43.119655],[-72.432661,43.114077],[-72.433129,43.112637],[-72.434845,43.109917],[-72.440587,43.106145],[-72.442427,43.10363],[-72.443051,43.100841],[-72.439214,43.094852],[-72.435191,43.086622],[-72.435316,43.083536],[-72.43619,43.08173],[-72.43987,43.077043],[-72.445202,43.071352],[-72.45471,43.063487],[-72.463812,43.057404],[-72.466491,43.054729],[-72.467363,43.052648],[-72.466832,43.049197],[-72.465896,43.047505],[-72.462248,43.044214],[-72.460252,43.040671],[-72.460905,43.035961],[-72.46299,43.028531],[-72.462397,43.02556],[-72.458998,43.019388],[-72.457035,43.017285],[-72.452984,43.015731],[-72.444635,43.010566],[-72.443825,43.008965],[-72.443762,43.006245],[-72.444977,43.004416],[-72.448714,43.001169],[-72.451797,43.000577],[-72.456936,43.001306],[-72.459951,43.00008],[-72.46294,42.996943],[-72.464714,42.993582],[-72.465335,42.989558],[-72.464026,42.986107],[-72.461597,42.984049],[-72.461627,42.982906],[-72.465985,42.97847],[-72.473827,42.972045],[-72.476722,42.971746],[-72.479245,42.973597],[-72.481706,42.973985],[-72.486872,42.971789],[-72.492597,42.967648],[-72.504226,42.965815],[-72.507901,42.964171],[-72.518422,42.96317],[-72.532186,42.954945],[-72.534117,42.952133],[-72.534554,42.949894],[-72.533901,42.948591],[-72.531693,42.94651],[-72.529763,42.94612],[-72.52855,42.94532],[-72.527431,42.943148],[-72.526624,42.939901],[-72.526346,42.935717],[-72.527097,42.928584],[-72.524242,42.918501],[-72.52443,42.915575],[-72.525271,42.914363],[-72.529191,42.912719],[-72.530218,42.911576],[-72.531588,42.907164],[-72.531469,42.89795],[-72.532777,42.896076],[-72.537287,42.89187],[-72.540708,42.889379],[-72.546491,42.88714],[-72.552025,42.885631],[-72.552834,42.884968],[-72.555415,42.875428],[-72.555131,42.871058],[-72.556214,42.86695],[-72.556112,42.866252],[-72.555132,42.865731],[-72.554232,42.860038],[-72.557247,42.853019],[-72.553426,42.846709],[-72.54855,42.842021],[-72.547402,42.837587],[-72.547434,42.832603],[-72.546133,42.823938],[-72.542784,42.808482],[-72.5396,42.804832],[-72.518354,42.790651],[-72.515838,42.78856],[-72.511746,42.784114],[-72.508858,42.779919],[-72.508048,42.776885],[-72.508372,42.77461],[-72.510154,42.773221],[-72.514836,42.771436],[-72.516731,42.76867],[-72.516082,42.765949],[-72.513105,42.763822],[-72.510871,42.763752],[-72.507985,42.764414],[-72.50069,42.767657],[-72.499249,42.769054],[-72.498786,42.771981],[-72.497949,42.772918],[-72.495343,42.773286],[-72.491122,42.772465],[-72.487767,42.76938],[-72.4864,42.76698],[-72.484878,42.76554],[-72.479354,42.763119],[-72.477615,42.761245],[-72.475938,42.757702],[-72.474723,42.750729],[-72.473071,42.745916],[-72.467827,42.741209],[-72.461001,42.733209],[-72.458488,42.729094],[-72.458519,42.726853],[-72.809113,42.736581],[-72.930261,42.73916],[-73.022903,42.741133],[-73.264957,42.74594],[-73.276421,42.746019],[-73.290944,42.80192],[-73.286337,42.808038],[-73.28375,42.813864],[-73.287063,42.82014],[-73.285388,42.834093],[-73.284311,42.834954],[-73.278673,42.83341],[-73.275804,42.897249],[-73.274466,42.940361],[-73.274393,42.942482],[-73.274294,42.943652],[-73.26978,43.035923],[-73.265574,43.096223],[-73.258718,43.229894],[-73.256493,43.259249],[-73.254514,43.31467],[-73.253084,43.354714],[-73.252832,43.363493],[-73.252674,43.370285],[-73.252582,43.370997],[-73.248401,43.470443],[-73.247061,43.514919],[-73.24672,43.518875],[-73.247631,43.51924],[-73.247698,43.523173],[-73.246821,43.52578],[-73.243366,43.527726],[-73.241891,43.529418],[-73.24139,43.532345],[-73.241589,43.534973],[-73.242042,43.534925],[-73.246585,43.541855],[-73.247812,43.542814],[-73.250132,43.543429],[-73.250408,43.550425],[-73.24842,43.552577],[-73.248641,43.553857],[-73.252602,43.556851],[-73.258631,43.564949],[-73.264099,43.568884],[-73.26938,43.571973],[-73.279726,43.574241],[-73.280952,43.575407],[-73.281296,43.577579],[-73.284912,43.579272],[-73.293536,43.578518],[-73.294621,43.57897],[-73.295344,43.580235],[-73.29444,43.582494],[-73.292113,43.584509],[-73.292364,43.585104],[-73.296924,43.587323],[-73.293242,43.592558],[-73.292801,43.593861],[-73.292202,43.59816],[-73.292232,43.60255],[-73.293741,43.605203],[-73.29802,43.610028],[-73.300285,43.610806],[-73.302076,43.624364],[-73.302552,43.625708],[-73.304125,43.627057],[-73.306234,43.628018],[-73.307682,43.627492],[-73.310606,43.624114],[-73.312809,43.624602],[-73.317566,43.627355],[-73.323893,43.627629],[-73.327702,43.625913],[-73.342181,43.62607],[-73.347621,43.622509],[-73.358593,43.625065],[-73.35911,43.624598],[-73.365562,43.62344],[-73.367167,43.623622],[-73.368899,43.62471],[-73.371889,43.624489],[-73.372486,43.622751],[-73.36987,43.619711],[-73.369933,43.619093],[-73.374557,43.614677],[-73.376036,43.612596],[-73.372375,43.606014],[-73.372469,43.604848],[-73.373443,43.603292],[-73.377748,43.599656],[-73.383446,43.596778],[-73.383426,43.584727],[-73.382549,43.579193],[-73.383369,43.57677],[-73.384188,43.575512],[-73.39196,43.569915],[-73.395767,43.568087],[-73.398125,43.568065],[-73.400295,43.568889],[-73.405629,43.571179],[-73.416964,43.57773],[-73.420378,43.581489],[-73.426663,43.582974],[-73.428636,43.583994],[-73.430947,43.587036],[-73.431229,43.588285],[-73.430325,43.590532],[-73.424977,43.598775],[-73.421616,43.603023],[-73.422154,43.606511],[-73.423815,43.610989],[-73.423708,43.612356],[-73.417827,43.620586],[-73.417668,43.621687],[-73.418319,43.623325],[-73.42791,43.634428],[-73.428583,43.636543],[-73.426463,43.642598],[-73.425217,43.64429],[-73.423539,43.645676],[-73.418763,43.64788],[-73.415513,43.65245],[-73.414546,43.658209],[-73.408061,43.669438],[-73.407776,43.672519],[-73.404126,43.681339],[-73.403474,43.684694],[-73.405243,43.688367],[-73.404739,43.690213],[-73.402078,43.693106],[-73.398332,43.694625],[-73.395517,43.696831],[-73.393723,43.6992],[-73.39179,43.703481],[-73.385883,43.711336],[-73.382965,43.714058],[-73.377756,43.717712],[-73.370612,43.725329],[-73.369916,43.728789],[-73.370724,43.735571],[-73.370287,43.742269],[-73.369725,43.744274],[-73.362951,43.753181],[-73.354597,43.764167],[-73.350707,43.770463],[-73.350593,43.771939],[-73.354758,43.776721],[-73.355545,43.778468],[-73.357547,43.785933],[-73.362498,43.790211],[-73.368184,43.793346],[-73.376361,43.798766],[-73.377232,43.800565],[-73.37827,43.805995],[-73.379279,43.808391],[-73.37933,43.808476],[-73.380804,43.810951],[-73.383259,43.81331],[-73.390302,43.817371],[-73.392492,43.820779],[-73.392751,43.822196],[-73.390194,43.829364],[-73.388389,43.832404],[-73.381865,43.837315],[-73.376598,43.839357],[-73.373688,43.84261],[-73.372247,43.845337],[-73.372462,43.846266],[-73.373742,43.847693],[-73.380987,43.852633],[-73.382046,43.855008],[-73.381501,43.859235],[-73.379334,43.864648],[-73.37415,43.874163],[-73.374051,43.875563],[-73.376312,43.880292],[-73.383491,43.890951],[-73.395878,43.903044],[-73.397256,43.905668],[-73.400926,43.917048],[-73.407742,43.929887],[-73.408589,43.932933],[-73.405525,43.948813],[-73.406823,43.967317],[-73.411248,43.975596],[-73.412613,43.97998],[-73.412581,43.98272],[-73.411224,43.986202],[-73.405977,44.011485],[-73.405999,44.016229],[-73.407739,44.021312],[-73.410776,44.026944],[-73.414364,44.029526],[-73.42016,44.032004],[-73.42312,44.032759],[-73.427987,44.037708],[-73.430772,44.038746],[-73.43688,44.042578],[-73.43774,44.045006],[-73.431991,44.06345],[-73.430207,44.071716],[-73.429239,44.079414],[-73.416319,44.099422],[-73.411316,44.112686],[-73.411722,44.11754],[-73.413751,44.126068],[-73.41578,44.131523],[-73.415761,44.132826],[-73.41172,44.137825],[-73.408118,44.139373],[-73.403268,44.144295],[-73.402381,44.145856],[-73.399634,44.155326],[-73.398728,44.162248],[-73.395532,44.166122],[-73.395399,44.166903],[-73.396664,44.168831],[-73.397385,44.171596],[-73.396892,44.173846],[-73.395862,44.175785],[-73.390383,44.179486],[-73.389658,44.181249],[-73.390805,44.189072],[-73.390583,44.190886],[-73.388502,44.192318],[-73.385326,44.192597],[-73.383987,44.193158],[-73.382252,44.197178],[-73.377693,44.199453],[-73.375289,44.199868],[-73.372405,44.202165],[-73.370678,44.204546],[-73.362013,44.208545],[-73.361476,44.210374],[-73.357908,44.216193],[-73.355276,44.219554],[-73.355252,44.22287],[-73.354747,44.223599],[-73.350806,44.225943],[-73.349889,44.230356],[-73.342312,44.234531],[-73.34323,44.238049],[-73.336778,44.239557],[-73.334042,44.240971],[-73.3305,44.244254],[-73.329322,44.244504],[-73.324681,44.243614],[-73.323596,44.243897],[-73.319802,44.249547],[-73.316618,44.257769],[-73.313422,44.264199],[-73.312852,44.265346],[-73.311025,44.27424],[-73.312299,44.280025],[-73.316838,44.287683],[-73.322267,44.301523],[-73.324229,44.310023],[-73.324545,44.319247],[-73.323835,44.325418],[-73.323997,44.333842],[-73.325127,44.338534],[-73.327335,44.344369],[-73.334637,44.356877],[-73.334939,44.364441],[-73.333575,44.372288],[-73.330369,44.375987],[-73.320954,44.382669],[-73.317029,44.385978],[-73.315016,44.388513],[-73.312418,44.39471],[-73.310491,44.402601],[-73.296031,44.428339],[-73.293855,44.437556],[-73.293613,44.440559],[-73.295216,44.445884],[-73.300114,44.454711],[-73.298725,44.463957],[-73.298939,44.471304],[-73.299885,44.476652],[-73.304418,44.485739],[-73.304921,44.492209],[-73.306707,44.500334],[-73.312871,44.507246],[-73.319265,44.51196],[-73.320836,44.513631],[-73.321416,44.516454],[-73.321111,44.519857],[-73.322026,44.525289],[-73.323935,44.52712],[-73.328512,44.528478],[-73.329458,44.529203],[-73.330588,44.531034],[-73.330893,44.534269],[-73.331595,44.535924],[-73.338995,44.543302],[-73.3393,44.544477],[-73.33863,44.546842],[-73.33863,44.546844],[-73.338751,44.548046],[-73.342932,44.551907],[-73.350027,44.555392],[-73.355186,44.556918],[-73.356788,44.557918],[-73.360088,44.562546],[-73.361486,44.563518],[-73.367275,44.567545],[-73.374389,44.575455],[-73.375666,44.582038],[-73.377794,44.585128],[-73.381848,44.589316],[-73.38164,44.590583],[-73.377897,44.593848],[-73.376806,44.595455],[-73.376332,44.597218],[-73.376849,44.599598],[-73.380726,44.605239],[-73.382932,44.612184],[-73.38982,44.61721],[-73.390231,44.618353],[-73.389966,44.61962],[-73.387346,44.623672],[-73.386497,44.626924],[-73.385899,44.631044],[-73.387169,44.635542],[-73.386783,44.636369],[-73.379748,44.64036],[-73.378561,44.641475],[-73.383157,44.645764],[-73.377973,44.652918],[-73.378014,44.653846],[-73.378968,44.65518],[-73.379074,44.656772],[-73.374134,44.66234],[-73.373063,44.662713],[-73.37059,44.662518],[-73.369669,44.663478],[-73.370065,44.666071],[-73.37272,44.668739],[-73.371843,44.676956],[-73.371089,44.67753],[-73.367209,44.678513],[-73.367414,44.681292],[-73.369685,44.683758],[-73.370142,44.684853],[-73.365297,44.687546],[-73.361308,44.694523],[-73.361323,44.695369],[-73.36556,44.700297],[-73.365068,44.725646],[-73.365561,44.741786],[-73.363791,44.745254],[-73.357671,44.751018],[-73.354361,44.755296],[-73.348694,44.768246],[-73.347072,44.772988],[-73.344254,44.776282],[-73.335713,44.782086],[-73.333771,44.785192],[-73.333154,44.788759],[-73.333933,44.7992],[-73.33443,44.802188],[-73.335443,44.804602],[-73.3502,44.816394],[-73.353472,44.820386],[-73.354945,44.8215],[-73.35808,44.82331],[-73.365678,44.826451],[-73.369647,44.829136],[-73.371329,44.830742],[-73.375345,44.836307],[-73.378717,44.837358],[-73.379452,44.83801],[-73.381359,44.845021],[-73.381397,44.848805],[-73.379822,44.857037],[-73.375709,44.860745],[-73.371967,44.862414],[-73.369103,44.86668],[-73.366459,44.87504],[-73.362229,44.891463],[-73.360327,44.897236],[-73.35808,44.901325],[-73.356218,44.904492],[-73.353657,44.907346],[-73.347837,44.911309],[-73.341106,44.914632],[-73.338979,44.917681],[-73.338482,44.924112],[-73.339603,44.94337],[-73.337906,44.960541],[-73.338243,44.96475],[-73.338734,44.965886],[-73.34474,44.970468],[-73.350218,44.976222],[-73.352886,44.980644],[-73.354112,44.984062],[-73.354633,44.987352],[-73.353429,44.990165],[-73.350188,44.994304],[-73.343124,45.01084],[-73.249323,45.012181],[-73.241061,45.012752],[-73.191928,45.013621],[-73.085972,45.015494],[-73.084969,45.014751],[-73.065098,45.014786],[-73.059685,45.015869],[-73.052438,45.015721],[-73.048386,45.01479],[-73.015539,45.015072],[-73.014766,45.01498],[-72.968039,45.014098],[-72.93644,45.014267],[-72.936365,45.014656],[-72.930599,45.015152],[-72.845633,45.016659],[-72.777306,45.015873],[-72.67477,45.015459],[-72.58988,45.013237],[-72.586752,45.012881],[-72.582371,45.011543],[-72.555912,45.008304],[-72.55436,45.008275],[-72.532503,45.00786],[-72.481033,45.00887],[-72.448865,45.008537],[-72.401298,45.006589],[-72.348583,45.005625],[-72.310073,45.003822],[-72.291866,45.004496],[-72.270869,45.004186],[-72.160506,45.006185],[-72.103058,45.005598],[-72.052169,45.006369],[-72.033614,45.008878],[-72.029739,45.006782],[-72.023292,45.006792],[-71.986705,45.007872],[-71.947201,45.008359],[-71.915009,45.007791],[-71.897657,45.00822],[-71.767452,45.011437],[-71.691898,45.011419],[-71.60984,45.012709],[-71.560562,45.012555],[-71.502487,45.013367],[-71.464555,45.013637],[-71.466247,45.011959],[-71.473269,45.010586],[-71.476168,45.009054],[-71.477907,45.007453],[-71.479611,45.002905],[-71.487565,45.000936],[-71.497412,45.003878],[-71.501055,45.006742],[-71.505,45.008151],[-71.507767,45.00817],[-71.514609,45.003957],[-71.520022,45.002291],[-71.525016,45.001881],[-71.530091,44.999656],[-71.53698,44.994177],[-71.538592,44.988182],[-71.537784,44.984298],[-71.531605,44.976023],[-71.527163,44.973668],[-71.52237,44.966308],[-71.516223,44.964569],[-71.514843,44.958741],[-71.516814,44.947588],[-71.515498,44.94352],[-71.516144,44.940846],[-71.516949,44.939704],[-71.515189,44.927317],[-71.509207,44.923429],[-71.504483,44.919062],[-71.500788,44.914535],[-71.494403,44.911837],[-71.49392,44.910923],[-71.495844,44.90498],[-71.496968,44.904225],[-71.499528,44.904774],[-71.501088,44.904433],[-71.502473,44.90272],[-71.508642,44.897703],[-71.51387,44.894648],[-71.51435,44.893964],[-71.51409,44.893149],[-71.511712,44.891571],[-71.512292,44.890246],[-71.522393,44.880811],[-71.526638,44.879098],[-71.528342,44.877819],[-71.528889,44.876928],[-71.529154,44.873559],[-71.534588,44.869698],[-71.540116,44.868625],[-71.545901,44.866134],[-71.549533,44.862592],[-71.550176,44.861609],[-71.550304,44.859552],[-71.548377,44.857016],[-71.548345,44.85553],[-71.553656,44.852123],[-71.5556,44.850547],[-71.556805,44.848808],[-71.55675,44.846862],[-71.555036,44.845733],[-71.552654,44.842049],[-71.552005,44.839208],[-71.552218,44.837775],[-71.553712,44.836065],[-71.557672,44.834421],[-71.562256,44.824632],[-71.563701,44.823901],[-71.56476,44.823901],[-71.565146,44.824678],[-71.567907,44.823832],[-71.574314,44.818079],[-71.5755,44.816058],[-71.575139,44.813565],[-71.572864,44.810383],[-71.569216,44.808813],[-71.569098,44.807044],[-71.570402,44.805276],[-71.573129,44.797947],[-71.571706,44.79483],[-71.573247,44.791882],[-71.578938,44.78607],[-71.580005,44.78548],[-71.584392,44.785733],[-71.592966,44.782776],[-71.596949,44.778987],[-71.59668,44.777416],[-71.595913,44.776272],[-71.596035,44.775422],[-71.601471,44.772067],[-71.604615,44.767738],[-71.608234,44.765658],[-71.611767,44.764345],[-71.614267,44.760622],[-71.614238,44.758664],[-71.617941,44.755883],[-71.623924,44.755135],[-71.631255,44.753253],[-71.631883,44.752463],[-71.631967,44.750333],[-71.631109,44.748689],[-71.626909,44.747224],[-71.62518,44.743978],[-71.625059,44.737099],[-71.625638,44.735065],[-71.625611,44.730312],[-71.624922,44.729032],[-71.623266,44.727795],[-71.622593,44.727773],[-71.619067,44.729283],[-71.617656,44.728918],[-71.617431,44.72805],[-71.618516,44.723913],[-71.618355,44.72261],[-71.613094,44.718933],[-71.604912,44.70815],[-71.59975,44.705318],[-71.599205,44.703878],[-71.600772,44.700815],[-71.600772,44.699901],[-71.600162,44.698919],[-71.598656,44.698005],[-71.594136,44.696932],[-71.59436,44.695996],[-71.596858,44.694921],[-71.598042,44.692818],[-71.596437,44.687059],[-71.594224,44.683815],[-71.594671,44.681643],[-71.5964,44.679677],[-71.596304,44.679083],[-71.590024,44.675543],[-71.587365,44.674926],[-71.583009,44.674836],[-71.581983,44.673533],[-71.582527,44.672253],[-71.584478,44.670211],[-71.585645,44.669277],[-71.585645,44.667644],[-71.584574,44.665351],[-71.585246,44.663523],[-71.586578,44.661111],[-71.586578,44.659478],[-71.584848,44.657816],[-71.582965,44.656621],[-71.576013,44.655691],[-71.57571,44.654574],[-71.576312,44.653179],[-71.576079,44.652012],[-71.575145,44.650612],[-71.572163,44.650373],[-71.570235,44.650483],[-71.568677,44.651537],[-71.567645,44.65356],[-71.566144,44.653863],[-71.564411,44.652827],[-71.561772,44.650224],[-71.558571,44.644373],[-71.558026,44.641791],[-71.558859,44.640122],[-71.562636,44.639505],[-71.562636,44.637266],[-71.562124,44.63658],[-71.554634,44.632197],[-71.551722,44.627598],[-71.553156,44.626645],[-71.553898,44.62541],[-71.554666,44.625387],[-71.55576,44.624119],[-71.55656,44.616988],[-71.554097,44.609583],[-71.553873,44.607069],[-71.554833,44.605172],[-71.555781,44.603483],[-71.556014,44.601383],[-71.554449,44.598408],[-71.554614,44.595784],[-71.553447,44.593451],[-71.549268,44.593174],[-71.540601,44.590453],[-71.536251,44.588441],[-71.537724,44.584785],[-71.540123,44.582522],[-71.544922,44.579278],[-71.547448,44.578547],[-71.54927,44.579164],[-71.551145,44.580405],[-71.5532,44.580683],[-71.553699,44.579628],[-71.553755,44.578406],[-71.5533,44.576924],[-71.548952,44.573084],[-71.548728,44.571873],[-71.549655,44.570708],[-71.55167,44.569657],[-71.552629,44.569543],[-71.556497,44.570777],[-71.557972,44.570451],[-71.558985,44.568779],[-71.558565,44.565572],[-71.559846,44.564119],[-71.563399,44.563218],[-71.569599,44.562777],[-71.575519,44.564775],[-71.59017,44.565694],[-71.592091,44.565118],[-71.593923,44.563813],[-71.596137,44.560898],[-71.597797,44.557172],[-71.598116,44.555412],[-71.596804,44.553424],[-71.588076,44.54785],[-71.575193,44.540859],[-71.573083,44.53798],[-71.573019,44.536312],[-71.574456,44.53366],[-71.576884,44.530323],[-71.582505,44.524403],[-71.585731,44.522665],[-71.587104,44.522436],[-71.592855,44.523006],[-71.594259,44.52168],[-71.593971,44.519738],[-71.592117,44.517773],[-71.586909,44.514666],[-71.58595,44.513432],[-71.584959,44.510141],[-71.583233,44.508268],[-71.577771,44.504886],[-71.577068,44.504041],[-71.577643,44.502692],[-71.57876,44.501915],[-71.579974,44.501778],[-71.58387,44.503217],[-71.586648,44.502873],[-71.585881,44.500057],[-71.586972,44.498526],[-71.589622,44.498525],[-71.589623,44.499371],[-71.590256,44.500057],[-71.591917,44.500975],[-71.594303,44.500749],[-71.595027,44.498669],[-71.595484,44.494424],[-71.597917,44.488375],[-71.59948,44.486455],[-71.609568,44.484348],[-71.615923,44.485944],[-71.617614,44.485715],[-71.619624,44.484411],[-71.622089,44.481387],[-71.625019,44.481784],[-71.625676,44.483201],[-71.627655,44.484207],[-71.631007,44.484323],[-71.632795,44.48389],[-71.639312,44.477836],[-71.643111,44.476649],[-71.64589,44.475141],[-71.647693,44.473125],[-71.648178,44.472023],[-71.647864,44.469976],[-71.646551,44.468869],[-71.640847,44.465935],[-71.640404,44.464186],[-71.642851,44.461734],[-71.645068,44.460545],[-71.65232,44.461117],[-71.653348,44.460499],[-71.657313,44.454003],[-71.659021,44.444932],[-71.66183,44.440293],[-71.664191,44.438351],[-71.668944,44.436523],[-71.677384,44.435702],[-71.679263,44.435018],[-71.679933,44.434062],[-71.679158,44.432174],[-71.67995,44.427908],[-71.68585,44.423405],[-71.69092,44.421234],[-71.699434,44.416069],[-71.708041,44.411977],[-71.715087,44.41049],[-71.726199,44.411385],[-71.73152,44.411015],[-71.735923,44.410062],[-71.737836,44.408921],[-71.739921,44.406778],[-71.742308,44.402366],[-71.743104,44.401657],[-71.745011,44.401359],[-71.749533,44.401955],[-71.75434,44.405577],[-71.756091,44.406401],[-71.761966,44.407027],[-71.764734,44.406623],[-71.764977,44.406587],[-71.767888,44.405445],[-71.772801,44.403097],[-71.775399,44.401126],[-71.778613,44.399799],[-71.790688,44.40026],[-71.793924,44.399271],[-71.802353,44.39338],[-71.803488,44.39189],[-71.803489,44.390384],[-71.799899,44.385951],[-71.800316,44.384276],[-71.803461,44.383335],[-71.808828,44.383862],[-71.81313,44.382801],[-71.814388,44.381932],[-71.815773,44.375464],[-71.815251,44.374594],[-71.812424,44.372532],[-71.812235,44.371492],[-71.812832,44.370448],[-71.81549,44.368836],[-71.816157,44.367559],[-71.814991,44.363686],[-71.812473,44.358477],[-71.812206,44.357356],[-71.812902,44.355547],[-71.814351,44.354541],[-71.818838,44.352939],[-71.826246,44.352006],[-71.833261,44.350136],[-71.837647,44.347783],[-71.844319,44.344204],[-71.852628,44.340873],[-71.861941,44.340109],[-71.86991,44.336962],[-71.872472,44.336628],[-71.875863,44.33737],[-71.881895,44.340209],[-71.902332,44.347499],[-71.906909,44.348284],[-71.917434,44.346535],[-71.925088,44.342024],[-71.92911,44.337577],[-71.935395,44.33577],[-71.939049,44.335844],[-71.945163,44.337744],[-71.958119,44.337544],[-71.963133,44.336556],[-71.98112,44.3375],[-71.984617,44.336243],[-71.986484,44.331218],[-71.988306,44.329768],[-72.002314,44.324871],[-72.009977,44.321951],[-72.014543,44.321032],[-72.01913,44.320383],[-72.025783,44.322054],[-72.029061,44.322398],[-72.033136,44.320365],[-72.033806,44.317349],[-72.032341,44.315752],[-72.032317,44.306677],[-72.032541,44.303752],[-72.033465,44.301878],[-72.03703,44.297834],[-72.039004,44.296463],[-72.046302,44.291983],[-72.053355,44.290501],[-72.05888,44.28624],[-72.065434,44.277235],[-72.067774,44.270976],[-72.066464,44.268331],[-72.064544,44.267997],[-72.060846,44.269972],[-72.05874,44.270005],[-72.058475,44.267886],[-72.058969,44.265911],[-72.059832,44.264984],[-72.060378,44.264951],[-72.061174,44.263377],[-72.059782,44.256018],[-72.05399,44.246926],[-72.050112,44.244046],[-72.04846,44.241212],[-72.047889,44.238493],[-72.050656,44.233581],[-72.053582,44.22604],[-72.0539,44.222703],[-72.052662,44.218841],[-72.053233,44.216876],[-72.058605,44.208215],[-72.058066,44.206067],[-72.058987,44.202114],[-72.060067,44.200446],[-72.063561,44.198457],[-72.064577,44.196949],[-72.066166,44.189773],[-72.061338,44.184951],[-72.057496,44.179444],[-72.053021,44.167903],[-72.047593,44.161801],[-72.042387,44.160817],[-72.040719,44.157966],[-72.040167,44.157023],[-72.040082,44.155749],[-72.042708,44.15227],[-72.042867,44.151288],[-72.041983,44.137165],[-72.037859,44.133782],[-72.034242,44.132524],[-72.033703,44.131541],[-72.037506,44.124708],[-72.038839,44.124628],[-72.040728,44.125668],[-72.041948,44.125653],[-72.04643,44.123911],[-72.052342,44.119891],[-72.054675,44.112147],[-72.054831,44.110137],[-72.052391,44.101088],[-72.050997,44.098848],[-72.048334,44.096905],[-72.044909,44.096402],[-72.043482,44.096996],[-72.042943,44.097636],[-72.042592,44.100744],[-72.040911,44.102686],[-72.039674,44.103371],[-72.036883,44.103119],[-72.032983,44.101655],[-72.03124,44.100101],[-72.031019,44.097975],[-72.031878,44.093359],[-72.032894,44.09144],[-72.03429,44.090138],[-72.036291,44.089236],[-72.040012,44.088762],[-72.046235,44.089538],[-72.047684,44.088873],[-72.048781,44.087141],[-72.047305,44.085382],[-72.039783,44.081271],[-72.033739,44.07883],[-72.032009,44.077174],[-72.031898,44.076241],[-72.03345,44.074531],[-72.036641,44.073999],[-72.039076,44.07452],[-72.040912,44.076659],[-72.042088,44.077008],[-72.051166,44.075826],[-72.051602,44.075193],[-72.051144,44.07385],[-72.04857,44.071359],[-72.048289,44.069136],[-72.053482,44.06473],[-72.056341,44.059582],[-72.057173,44.058646],[-72.058863,44.057921],[-72.065415,44.058344],[-72.067612,44.058034],[-72.06915,44.054817],[-72.068405,44.054021],[-72.062713,44.051618],[-72.06215,44.049931],[-72.066422,44.049299],[-72.074881,44.045892],[-72.077372,44.044591],[-72.078989,44.042886],[-72.079595,44.041429],[-72.079397,44.039531],[-72.075486,44.034614],[-72.075004,44.032789],[-72.075648,44.031654],[-72.079996,44.029764],[-72.081357,44.028529],[-72.081864,44.026952],[-72.081673,44.023638],[-72.082432,44.022154],[-72.084871,44.021308],[-72.090478,44.024299],[-72.09203,44.024459],[-72.094056,44.023179],[-72.0951,44.021831],[-72.095669,44.019683],[-72.095193,44.016666],[-72.090504,44.012736],[-72.089807,44.011274],[-72.090059,44.009903],[-72.09123,44.009125],[-72.093257,44.009376],[-72.093384,44.01045],[-72.095247,44.01358],[-72.098897,44.015477],[-72.102475,44.014882],[-72.105292,44.012663],[-72.104941,44.009395],[-72.103576,44.004231],[-72.103765,44.002837],[-72.109019,44.000535],[-72.116985,43.99448],[-72.116706,43.991954],[-72.112813,43.98802],[-72.111756,43.984943],[-72.11249,43.975654],[-72.113078,43.97279],[-72.114702,43.969478],[-72.114726,43.968332],[-72.114273,43.967513],[-72.110945,43.966959],[-72.107042,43.969513],[-72.104972,43.96995],[-72.096161,43.968132],[-72.091104,43.966443],[-72.090214,43.965814],[-72.090357,43.965409],[-72.098563,43.963833],[-72.100543,43.962478],[-72.100894,43.960851],[-72.098955,43.958879],[-72.098689,43.95766],[-72.104421,43.950536],[-72.105875,43.94937],[-72.110872,43.947654],[-72.115268,43.947629],[-72.117839,43.946828],[-72.118698,43.94536],[-72.118985,43.943225],[-72.116766,43.935278],[-72.116767,43.933923],[-72.118013,43.923292],[-72.11919,43.920952],[-72.121002,43.918956],[-72.135117,43.910024],[-72.145041,43.905288],[-72.151324,43.901704],[-72.155724,43.89712],[-72.158585,43.892762],[-72.159216,43.888313],[-72.160819,43.887223],[-72.167224,43.886113],[-72.170604,43.886388],[-72.171648,43.885361],[-72.172785,43.883716],[-72.173576,43.87967],[-72.171904,43.876149],[-72.16978,43.873425],[-72.167476,43.86915],[-72.174774,43.866386],[-72.179386,43.866181],[-72.182956,43.865335],[-72.184788,43.863393],[-72.187916,43.856126],[-72.187379,43.853612],[-72.182864,43.845109],[-72.182203,43.834032],[-72.183337,43.830699],[-72.186238,43.826931],[-72.188255,43.822888],[-72.18857,43.821153],[-72.186424,43.815857],[-72.184184,43.812524],[-72.183333,43.808177],[-72.184847,43.804698],[-72.190754,43.800807],[-72.193184,43.794697],[-72.195552,43.791492],[-72.197036,43.790006],[-72.20407,43.786097],[-72.2053,43.784474],[-72.205521,43.782279],[-72.20476,43.771263],[-72.205193,43.770952],[-72.207535,43.769274],[-72.210815,43.767696],[-72.216491,43.766507],[-72.218099,43.765729],[-72.220116,43.763626],[-72.222069,43.759831],[-72.223645,43.757842],[-72.232713,43.748286],[-72.245068,43.743093],[-72.264245,43.734158],[-72.27118,43.734138],[-72.276072,43.727054],[-72.279855,43.724633],[-72.284805,43.72036],[-72.28695,43.717252],[-72.292215,43.711333],[-72.294894,43.709003],[-72.299715,43.706558],[-72.302867,43.702718],[-72.305326,43.69577],[-72.30602,43.683061],[-72.304351,43.681141],[-72.303092,43.678078],[-72.303408,43.674055],[-72.304322,43.669507],[-72.305771,43.666535],[-72.310841,43.659724],[-72.312887,43.658444],[-72.31402,43.656158],[-72.315059,43.649415],[-72.313863,43.646558],[-72.314083,43.64281],[-72.315247,43.641164],[-72.322517,43.638901],[-72.327395,43.636774],[-72.329126,43.635563],[-72.32966,43.634648],[-72.329471,43.632843],[-72.327362,43.631174],[-72.327236,43.630534],[-72.328966,43.626991],[-72.33236,43.62507],[-72.334401,43.61925],[-72.334745,43.614519],[-72.3327,43.610313],[-72.329522,43.608393],[-72.328232,43.606839],[-72.327665,43.602679],[-72.328514,43.600805],[-72.32962,43.600201],[-72.332382,43.599364],[-72.349926,43.587726],[-72.363916,43.583652],[-72.373126,43.579419],[-72.37944,43.574069],[-72.382625,43.564127],[-72.382783,43.562459],[-72.381187,43.554915],[-72.380383,43.54088],[-72.38331,43.53519],[-72.389097,43.528266],[-72.3907,43.527261],[-72.394218,43.5274],[-72.395949,43.52388],[-72.395825,43.52056],[-72.398563,43.513435],[-72.398376,43.510829],[-72.396305,43.508062],[-72.389556,43.503899],[-72.384773,43.500259],[-72.380894,43.493394],[-72.380362,43.491634],[-72.380428,43.488525],[-72.381723,43.480091],[-72.382951,43.476],[-72.384491,43.474195],[-72.391526,43.46878],[-72.3925,43.467364],[-72.392628,43.465078],[-72.390567,43.451225],[-72.391196,43.449305],[-72.393992,43.444666],[-72.395659,43.438541],[-72.395916,43.430974],[-72.399972,43.415249],[-72.400131,43.410997],[-72.403811,43.391935],[-72.405253,43.389992],[-72.413154,43.384302],[-72.415381,43.380211],[-72.415978,43.376531],[-72.415099,43.365896],[-72.414692,43.364273],[-72.413377,43.362741],[-72.403949,43.358098],[-72.400441,43.357685],[-72.39217,43.357865],[-72.390103,43.356926],[-72.39092,43.354984],[-72.395403,43.350414],[-72.399289,43.347581],[-72.400981,43.345775],[-72.409037,43.334395],[-72.410353,43.331675],[-72.410197,43.330395],[-72.408696,43.327674],[-72.402532,43.32038],[-72.397619,43.317064],[-72.395805,43.314617],[-72.395462,43.312994],[-72.401666,43.303395],[-72.407842,43.282892],[-72.41545,43.271374],[-72.421583,43.263442],[-72.435221,43.258483],[-72.436378,43.257454],[-72.438693,43.252905],[-72.438937,43.24424],[-72.436654,43.238319],[-72.434216,43.234958],[-72.433684,43.233427],[-72.433796,43.232999]]]}}]} diff --git a/Where/RegionKit/Sources/Resources/regions/us-WA.geojson b/Where/RegionKit/Sources/Resources/regions/us-WA.geojson new file mode 100644 index 00000000..95cdb9ae --- /dev/null +++ b/Where/RegionKit/Sources/Resources/regions/us-WA.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"region":"us-WA","name":"Washington"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-122.519535,48.288314],[-122.522756,48.285504],[-122.530976,48.282445],[-122.551793,48.281512],[-122.558332,48.282061],[-122.574872,48.294903],[-122.584086,48.297987],[-122.599532,48.298303],[-122.618466,48.294159],[-122.626757,48.288991],[-122.620748,48.282961],[-122.623779,48.269431],[-122.652639,48.265081],[-122.65343,48.25934],[-122.66921,48.240614],[-122.668385,48.223967],[-122.63126,48.220686],[-122.628352,48.222467],[-122.606406,48.208262],[-122.588138,48.18594],[-122.585778,48.182352],[-122.582595,48.170424],[-122.574905,48.155593],[-122.567936,48.148624],[-122.558205,48.119579],[-122.559911,48.114186],[-122.571615,48.105113],[-122.571853,48.102143],[-122.554559,48.077392],[-122.54512,48.05255],[-122.538953,48.050232],[-122.516314,48.057181],[-122.513994,48.059077],[-122.511081,48.075301],[-122.516906,48.081085],[-122.525422,48.096537],[-122.513276,48.097538],[-122.491104,48.094242],[-122.461606,48.068501],[-122.448419,48.054323],[-122.431266,48.045001],[-122.400628,48.036563],[-122.387382,48.03403],[-122.376259,48.034457],[-122.373263,48.000791],[-122.369161,47.995295],[-122.353611,47.981433],[-122.350254,47.969355],[-122.349597,47.958796],[-122.350741,47.953235],[-122.358812,47.93742],[-122.367876,47.932415],[-122.376837,47.923703],[-122.37578,47.910252],[-122.3773,47.905941],[-122.380497,47.904023],[-122.39042,47.905696],[-122.397349,47.912401],[-122.419274,47.912125],[-122.431035,47.914732],[-122.445519,47.930226],[-122.445759,47.93619],[-122.44079,47.946594],[-122.44076,47.951845],[-122.446682,47.963155],[-122.47266,47.988449],[-122.487505,47.990729],[-122.501257,47.987089],[-122.514813,47.981152],[-122.51778,47.974916],[-122.521219,47.972997],[-122.546824,47.967215],[-122.552053,47.973644],[-122.551032,47.977346],[-122.543063,47.985983],[-122.541564,47.992998],[-122.542924,47.996404],[-122.560018,48.006502],[-122.58178,48.010386],[-122.607342,48.030992],[-122.596786,48.038834],[-122.593621,48.0472],[-122.594922,48.056318],[-122.614028,48.072788],[-122.613217,48.079485],[-122.607291,48.088034],[-122.598301,48.110616],[-122.602109,48.135249],[-122.609568,48.15186],[-122.617464,48.159055],[-122.633167,48.163281],[-122.65602,48.162513],[-122.671235,48.157312],[-122.677337,48.154587],[-122.679556,48.155113],[-122.686626,48.174653],[-122.693084,48.181509],[-122.711508,48.193573],[-122.73503,48.199964],[-122.744612,48.20965],[-122.763042,48.215342],[-122.770045,48.224395],[-122.769939,48.227548],[-122.752563,48.260061],[-122.732022,48.279425],[-122.72259,48.304268],[-122.707077,48.315286],[-122.673731,48.354683],[-122.664928,48.374823],[-122.664659,48.401508],[-122.644798,48.405488],[-122.634991,48.404244],[-122.632643,48.401068],[-122.634024,48.398858],[-122.637339,48.398029],[-122.637892,48.395681],[-122.63582,48.395128],[-122.627809,48.3972],[-122.617174,48.407145],[-122.609715,48.411565],[-122.60198,48.409907],[-122.596732,48.405626],[-122.595351,48.3972],[-122.585038,48.395166],[-122.588891,48.363005],[-122.585162,48.353304],[-122.565525,48.348217],[-122.551334,48.342138],[-122.515979,48.320419],[-122.506568,48.310041],[-122.504729,48.300373],[-122.505828,48.297677],[-122.519535,48.288314]]],[[[-122.474684,47.511068],[-122.452399,47.503471],[-122.460442,47.493764],[-122.460027,47.48686],[-122.433385,47.46643],[-122.439415,47.458633],[-122.439931,47.417007],[-122.437656,47.407424],[-122.427327,47.402129],[-122.395054,47.399277],[-122.373628,47.388718],[-122.378482,47.38533],[-122.401767,47.381325],[-122.437809,47.365606],[-122.448398,47.354987],[-122.453997,47.343337],[-122.457493,47.342567],[-122.469702,47.344623],[-122.491236,47.335172],[-122.493122,47.330253],[-122.504913,47.33068],[-122.51885,47.33332],[-122.528128,47.345542],[-122.526029,47.358907],[-122.517797,47.368678],[-122.526733,47.398581],[-122.514703,47.414048],[-122.513328,47.449106],[-122.497862,47.475915],[-122.482739,47.483133],[-122.474684,47.511068]]],[[[-122.695907,48.737273],[-122.668947,48.706644],[-122.663259,48.697077],[-122.644901,48.691389],[-122.618225,48.670721],[-122.609576,48.645018],[-122.616956,48.645563],[-122.635299,48.651846],[-122.673538,48.680809],[-122.691795,48.711498],[-122.702223,48.717004],[-122.718833,48.716818],[-122.721981,48.723375],[-122.722262,48.731624],[-122.715709,48.748672],[-122.70306,48.743602],[-122.695907,48.737273]]],[[[-123.035393,49.002154],[-123.021459,48.977299],[-123.028091,48.973943],[-123.040967,48.977305],[-123.060717,48.975388],[-123.083834,48.976139],[-123.084498,48.986535],[-123.090546,49.001976],[-123.035393,49.002154]]],[[[-122.800217,48.60169],[-122.804869,48.595932],[-122.801096,48.585425],[-122.786586,48.576666],[-122.771206,48.562426],[-122.770349,48.558106],[-122.772384,48.552143],[-122.782618,48.545191],[-122.788503,48.530393],[-122.787347,48.523012],[-122.777467,48.517799],[-122.779124,48.508911],[-122.800414,48.494467],[-122.816332,48.487841],[-122.817912,48.483888],[-122.81973,48.458843],[-122.8131,48.452856],[-122.807708,48.444058],[-122.802509,48.433098],[-122.803521,48.428748],[-122.812208,48.422326],[-122.825803,48.424131],[-122.874135,48.418196],[-122.883759,48.418793],[-122.893646,48.422655],[-122.889016,48.435947],[-122.903214,48.436979],[-122.913888,48.443231],[-122.917771,48.439781],[-122.928004,48.439966],[-122.91646,48.453263],[-122.920099,48.458428],[-122.926901,48.460874],[-122.937881,48.456221],[-122.962009,48.451161],[-123.039156,48.460003],[-123.058154,48.471522],[-123.067675,48.479497],[-123.119451,48.492576],[-123.141478,48.505291],[-123.151065,48.513955],[-123.163234,48.529544],[-123.164057,48.535622],[-123.161853,48.539255],[-123.16147,48.547618],[-123.172412,48.556486],[-123.176266,48.562131],[-123.175852,48.568483],[-123.171958,48.572255],[-123.173061,48.579086],[-123.184941,48.58697],[-123.197754,48.586216],[-123.20268,48.590214],[-123.203026,48.596178],[-123.195725,48.607055],[-123.178425,48.622115],[-123.151643,48.623686],[-123.139705,48.622786],[-123.135645,48.620171],[-123.107362,48.622451],[-123.098462,48.612834],[-123.098254,48.610092],[-123.102074,48.604035],[-123.101552,48.59782],[-123.074611,48.591816],[-123.06004,48.582105],[-123.048403,48.569216],[-123.033669,48.563409],[-123.015046,48.560821],[-122.987296,48.561895],[-122.98611,48.569984],[-122.989649,48.574668],[-122.995026,48.578162],[-123.0048,48.580788],[-123.016647,48.580244],[-123.034101,48.591767],[-123.024902,48.594484],[-123.023433,48.599477],[-123.041189,48.611947],[-123.04653,48.61149],[-123.048652,48.621002],[-123.023495,48.634001],[-123.015592,48.642567],[-123.014829,48.647503],[-123.009924,48.655064],[-122.988884,48.667246],[-122.984853,48.672686],[-122.949116,48.693398],[-122.941316,48.702904],[-122.942367,48.706723],[-122.918252,48.713505],[-122.894599,48.71503],[-122.875938,48.71212],[-122.833124,48.698173],[-122.802545,48.682682],[-122.800267,48.67962],[-122.743049,48.661991],[-122.742082,48.660689],[-122.755031,48.649512],[-122.783875,48.635419],[-122.792147,48.633502],[-122.809622,48.619035],[-122.808864,48.61531],[-122.79901,48.604683],[-122.79877,48.602352],[-122.800217,48.60169]]],[[[-123.197953,48.68466],[-123.186076,48.684917],[-123.172066,48.679866],[-123.14799,48.668001],[-123.130962,48.656789],[-123.122016,48.647065],[-123.106165,48.633473],[-123.119677,48.632972],[-123.134956,48.63724],[-123.215917,48.669352],[-123.237148,48.683466],[-123.236567,48.68895],[-123.212892,48.689713],[-123.197953,48.68466]]],[[[-123.025486,48.717966],[-123.019699,48.721312],[-123.009787,48.722291],[-123.007511,48.718863],[-123.005086,48.694342],[-123.014449,48.684978],[-123.021215,48.681416],[-123.042337,48.675663],[-123.041645,48.678633],[-123.035672,48.68535],[-123.03636,48.69008],[-123.047058,48.695772],[-123.070427,48.699971],[-123.040179,48.717296],[-123.025486,48.717966]]],[[[-122.649405,48.588457],[-122.642597,48.588339],[-122.629321,48.5722],[-122.610841,48.561146],[-122.592901,48.553635],[-122.583985,48.551534],[-122.578856,48.54813],[-122.572967,48.529028],[-122.583565,48.53234],[-122.590194,48.536259],[-122.599948,48.536904],[-122.619858,48.529246],[-122.635738,48.526021],[-122.640414,48.52586],[-122.649256,48.528769],[-122.652041,48.531329],[-122.654342,48.537956],[-122.653612,48.548975],[-122.650786,48.554019],[-122.652385,48.583432],[-122.649405,48.588457]]],[[[-122.714512,48.60878],[-122.694672,48.596602],[-122.691745,48.590612],[-122.670638,48.568812],[-122.68944,48.543903],[-122.717278,48.539739],[-122.722407,48.540606],[-122.724031,48.549906],[-122.73048,48.565602],[-122.736199,48.569005],[-122.73944,48.573893],[-122.739898,48.583949],[-122.72493,48.603263],[-122.714512,48.60878]]],[[[-122.699266,48.621115],[-122.69806,48.62308],[-122.674173,48.629944],[-122.657016,48.609891],[-122.666149,48.608088],[-122.676796,48.610055],[-122.686136,48.613267],[-122.699266,48.621115]]],[[[-122.334524,48.018916],[-122.328343,48.021335],[-122.321721,48.019977],[-122.303455,48.005603],[-122.306629,48.004397],[-122.326115,48.010295],[-122.334524,48.018916]]],[[[-122.418268,47.320614],[-122.364168,47.335953],[-122.336934,47.341421],[-122.324833,47.348521],[-122.325734,47.391521],[-122.328434,47.400621],[-122.335234,47.408421],[-122.348035,47.415921],[-122.355135,47.441921],[-122.367036,47.447621],[-122.383136,47.450521],[-122.368036,47.459221],[-122.363062,47.475702],[-122.361336,47.481421],[-122.365236,47.48842],[-122.386637,47.50222],[-122.396538,47.51522],[-122.393938,47.52482],[-122.398338,47.55012],[-122.409839,47.56892],[-122.421139,47.57602],[-122.401839,47.58392],[-122.387139,47.59572],[-122.375421,47.585181],[-122.370167,47.583087],[-122.358238,47.58482],[-122.342937,47.59122],[-122.339513,47.599113],[-122.344937,47.60912],[-122.367819,47.624213],[-122.386039,47.63172],[-122.393739,47.63102],[-122.40424,47.63392],[-122.414645,47.639766],[-122.429841,47.658919],[-122.407841,47.680119],[-122.403841,47.689419],[-122.393248,47.701602],[-122.38044,47.709119],[-122.37644,47.716519],[-122.375607,47.719724],[-122.37314,47.729219],[-122.382641,47.749119],[-122.380241,47.758519],[-122.394442,47.772219],[-122.396422,47.777927],[-122.397043,47.779719],[-122.394944,47.803318],[-122.392044,47.807718],[-122.353244,47.840618],[-122.346544,47.842418],[-122.339944,47.846718],[-122.33595,47.852306],[-122.329545,47.869418],[-122.330145,47.875318],[-122.333543,47.880246],[-122.328546,47.897917],[-122.321847,47.911817],[-122.311927,47.923703],[-122.310747,47.925117],[-122.309747,47.929117],[-122.311148,47.936717],[-122.307048,47.949117],[-122.278047,47.956517],[-122.249007,47.959507],[-122.230046,47.970917],[-122.226346,47.976417],[-122.232391,47.987713],[-122.23022,48.007154],[-122.228767,48.012468],[-122.224979,48.016626],[-122.231761,48.029876],[-122.281087,48.049793],[-122.305838,48.073415],[-122.321709,48.085507],[-122.326119,48.092877],[-122.343241,48.097631],[-122.363842,48.12393],[-122.365078,48.125822],[-122.363797,48.142759],[-122.364744,48.151304],[-122.370253,48.164809],[-122.363479,48.174438],[-122.362044,48.187568],[-122.372492,48.193022],[-122.382102,48.207106],[-122.385703,48.217811],[-122.395499,48.228551],[-122.396121,48.229233],[-122.425572,48.232887],[-122.430578,48.236237],[-122.433767,48.23655],[-122.449605,48.232598],[-122.45371,48.228859],[-122.453618,48.22683],[-122.449513,48.214736],[-122.444508,48.214522],[-122.441731,48.211776],[-122.442051,48.20935],[-122.45493,48.196639],[-122.461888,48.193137],[-122.464801,48.194767],[-122.47025,48.194007],[-122.478535,48.188087],[-122.479008,48.175703],[-122.475803,48.166792],[-122.442383,48.130841],[-122.411649,48.11321],[-122.379481,48.087384],[-122.360345,48.061527],[-122.358375,48.056133],[-122.363107,48.054546],[-122.377114,48.057568],[-122.38769,48.065189],[-122.390787,48.069477],[-122.393413,48.078472],[-122.400692,48.085255],[-122.423703,48.102941],[-122.44966,48.114041],[-122.4675,48.130353],[-122.477983,48.129048],[-122.486736,48.12095],[-122.489986,48.120617],[-122.512031,48.133931],[-122.522576,48.161712],[-122.53722,48.183745],[-122.538916,48.209683],[-122.534431,48.223005],[-122.535209,48.240213],[-122.530996,48.249821],[-122.503786,48.257045],[-122.499648,48.256611],[-122.497727,48.253389],[-122.493448,48.252043],[-122.480925,48.251706],[-122.474494,48.255227],[-122.466803,48.269604],[-122.463962,48.270541],[-122.406516,48.25183],[-122.405757,48.252193],[-122.395328,48.257187],[-122.392058,48.269628],[-122.371693,48.287839],[-122.376818,48.296099],[-122.37821,48.29759],[-122.38431,48.304123],[-122.408718,48.326413],[-122.424102,48.334346],[-122.442678,48.337934],[-122.475529,48.359912],[-122.482423,48.361737],[-122.497686,48.361837],[-122.507437,48.364666],[-122.533452,48.383409],[-122.539449,48.39719],[-122.547492,48.399889],[-122.554536,48.40604],[-122.558403,48.426758],[-122.551221,48.439465],[-122.557298,48.444438],[-122.568348,48.44499],[-122.575254,48.443333],[-122.581607,48.429244],[-122.61448,48.41488],[-122.649839,48.408526],[-122.665338,48.416453],[-122.674158,48.424726],[-122.678928,48.439466],[-122.677072,48.444059],[-122.674188,48.443327],[-122.674085,48.441979],[-122.667249,48.442503],[-122.654844,48.454087],[-122.657753,48.47294],[-122.664623,48.478128],[-122.689121,48.476849],[-122.695725,48.464785],[-122.695587,48.460558],[-122.700603,48.457632],[-122.710362,48.461584],[-122.712322,48.464143],[-122.712981,48.47879],[-122.701644,48.497622],[-122.684521,48.509123],[-122.679122,48.507797],[-122.676922,48.504484],[-122.671386,48.50398],[-122.615183,48.521427],[-122.606961,48.522152],[-122.599951,48.520946],[-122.598469,48.512169],[-122.568071,48.50821],[-122.556834,48.498812],[-122.537355,48.466749],[-122.532845,48.466057],[-122.526943,48.468004],[-122.515056,48.465554],[-122.511348,48.461825],[-122.500721,48.460887],[-122.471832,48.470724],[-122.469634,48.472187],[-122.46967,48.474975],[-122.473763,48.47975],[-122.478851,48.481736],[-122.483501,48.49243],[-122.484996,48.50962],[-122.483872,48.521891],[-122.485288,48.528106],[-122.498463,48.556206],[-122.504428,48.564775],[-122.52537,48.567344],[-122.531978,48.568644],[-122.534719,48.574246],[-122.534787,48.57596],[-122.512372,48.578067],[-122.495904,48.575927],[-122.488421,48.564665],[-122.482406,48.559653],[-122.478431,48.559303],[-122.44456,48.570115],[-122.433059,48.581609],[-122.425271,48.599522],[-122.448702,48.622624],[-122.46425,48.625717],[-122.486878,48.643122],[-122.488754,48.645358],[-122.49399,48.651596],[-122.500308,48.656163],[-122.506718,48.669692],[-122.519172,48.713095],[-122.515511,48.720992],[-122.505684,48.724524],[-122.495301,48.737328],[-122.490401,48.751128],[-122.510902,48.757728],[-122.528203,48.768428],[-122.535803,48.776128],[-122.567498,48.779185],[-122.596844,48.771492],[-122.598033,48.769489],[-122.606787,48.759143],[-122.627808,48.74466],[-122.637146,48.735708],[-122.638082,48.732486],[-122.626287,48.72093],[-122.612562,48.714932],[-122.605733,48.701066],[-122.606105,48.698556],[-122.615169,48.693839],[-122.620338,48.693651],[-122.630422,48.696625],[-122.646323,48.708001],[-122.673472,48.733082],[-122.666953,48.748445],[-122.661111,48.753962],[-122.647443,48.773998],[-122.645743,48.781538],[-122.646777,48.785011],[-122.656528,48.784969],[-122.659708,48.786523],[-122.680246,48.80275],[-122.693683,48.804475],[-122.697219,48.80281],[-122.698675,48.800522],[-122.699507,48.794906],[-122.699303,48.789063],[-122.703106,48.786321],[-122.709815,48.786205],[-122.7112,48.79146],[-122.709169,48.817829],[-122.711805,48.832408],[-122.717073,48.84719],[-122.722685,48.852855],[-122.785659,48.885066],[-122.793175,48.892927],[-122.792584,48.894732],[-122.783747,48.894639],[-122.751289,48.911239],[-122.747514,48.915582],[-122.745371,48.921227],[-122.746596,48.930731],[-122.755624,48.93866],[-122.766096,48.941955],[-122.770432,48.942528],[-122.787539,48.931702],[-122.818232,48.939062],[-122.821631,48.941369],[-122.822464,48.944911],[-122.817226,48.95597],[-122.796887,48.975026],[-122.774276,48.991038],[-122.766307,48.991672],[-122.756318,48.996881],[-122.756037,48.999512],[-122.75802,49.002357],[-122.407829,49.002193],[-122.405989,49.002239],[-122.251063,49.002494],[-122.098357,49.002146],[-121.751252,48.997399],[-121.395543,48.999851],[-121.345295,49.000843],[-121.256933,49.000088],[-121.251244,49.000167],[-121.248949,49.000925],[-121.2299,49.001158],[-121.12624,49.001412],[-121.059966,49.000621],[-120.978955,49.000367],[-120.85138,49.00028],[-120.716604,49.000188],[-120.376216,49.000705],[-120.001199,48.999418],[-119.876195,49.000448],[-119.702016,49.000269],[-119.701218,49.000258],[-119.4577,49.000261],[-119.428678,49.000253],[-119.137274,49.000297],[-119.132102,49.000262],[-118.836898,49.000308],[-118.196824,49.000407],[-118.002046,49.000437],[-118.001106,48.999911],[-117.884398,48.999912],[-117.8761,49.000546],[-117.607323,49.000843],[-117.429509,49.000363],[-117.268192,48.999928],[-117.268247,48.999818],[-117.126075,48.998888],[-117.032351,48.999188],[-117.032107,48.874926],[-117.032386,48.846559],[-117.033335,48.749921],[-117.033671,48.656902],[-117.034358,48.628523],[-117.034499,48.620769],[-117.035425,48.499914],[-117.035285,48.430113],[-117.035285,48.429816],[-117.035254,48.423144],[-117.035289,48.422732],[-117.035178,48.371221],[-117.035178,48.370878],[-117.038602,48.207939],[-117.039599,48.184387],[-117.039615,48.184015],[-117.039582,48.181124],[-117.039582,48.180853],[-117.039583,48.180313],[-117.039618,48.178142],[-117.039413,48.17725],[-117.039552,48.17396],[-117.041107,48.124904],[-117.041401,48.0855],[-117.041676,48.04556],[-117.042265,47.977386],[-117.04236,47.966343],[-117.04247,47.839009],[-117.041999,47.822399],[-117.042064,47.77863],[-117.042485,47.766525],[-117.042521,47.764896],[-117.042623,47.761223],[-117.042657,47.760857],[-117.042059,47.7451],[-117.042135,47.7441],[-117.041634,47.7353],[-117.041678,47.72271],[-117.041633,47.7064],[-117.041532,47.683194],[-117.041431,47.68],[-117.041431,47.678185],[-117.041431,47.67814],[-117.04085,47.574124],[-117.041174,47.55853],[-117.041276,47.55821],[-117.040745,47.532909],[-117.040545,47.527562],[-117.040514,47.522351],[-117.039945,47.477823],[-117.039971,47.463309],[-117.039948,47.434885],[-117.03995,47.412412],[-117.039882,47.399085],[-117.040176,47.3749],[-117.04007,47.3661],[-117.039843,47.347201],[-117.040019,47.259272],[-117.039899,47.225515],[-117.039888,47.203282],[-117.039871,47.181858],[-117.039836,47.154734],[-117.039821,47.127265],[-117.039657,46.825798],[-117.039828,46.815443],[-117.039398,46.700186],[-117.039657,46.541785],[-117.039771,46.471779],[-117.039763,46.46957],[-117.039741,46.462704],[-117.039813,46.425425],[-117.036562,46.422596],[-117.034696,46.418318],[-117.035545,46.410012],[-117.036455,46.407792],[-117.038282,46.40604],[-117.041737,46.395195],[-117.04195,46.39216],[-117.046915,46.379577],[-117.049474,46.37682],[-117.051775,46.375641],[-117.057516,46.371396],[-117.061045,46.367747],[-117.062785,46.365287],[-117.062748,46.353624],[-117.06263,46.352522],[-117.060703,46.349015],[-117.055983,46.345531],[-117.051735,46.343833],[-117.045469,46.34249],[-117.03445,46.34132],[-117.030672,46.340315],[-117.027744,46.338751],[-117.023844,46.335976],[-117.023149,46.334759],[-117.022706,46.32899],[-117.023424,46.326427],[-117.022939,46.320175],[-117.022293,46.31747],[-117.020663,46.314793],[-117.016413,46.311236],[-117.007486,46.305302],[-116.99726,46.303151],[-116.989794,46.299395],[-116.986688,46.296662],[-116.98463,46.292705],[-116.98491,46.289738],[-116.990894,46.280372],[-116.991422,46.278467],[-116.991134,46.276342],[-116.987391,46.272865],[-116.976054,46.26601],[-116.972591,46.263271],[-116.970298,46.261233],[-116.966742,46.256923],[-116.964379,46.253282],[-116.958801,46.24232],[-116.955264,46.23088],[-116.956031,46.225976],[-116.959428,46.219812],[-116.96613,46.209453],[-116.966569,46.207501],[-116.965841,46.203417],[-116.962966,46.19968],[-116.952416,46.193514],[-116.941724,46.185034],[-116.923958,46.17092],[-116.92187,46.167808],[-116.921258,46.164795],[-116.922648,46.160744],[-116.935473,46.142448],[-116.948336,46.125885],[-116.950276,46.123464],[-116.95098,46.118853],[-116.951265,46.111161],[-116.955263,46.102237],[-116.959548,46.099058],[-116.974058,46.097707],[-116.976957,46.09667],[-116.978823,46.095731],[-116.981747,46.092881],[-116.982498,46.091347],[-116.982479,46.089389],[-116.981962,46.084915],[-116.978938,46.080007],[-116.970009,46.076769],[-116.96319,46.075905],[-116.960416,46.076346],[-116.957372,46.075449],[-116.948564,46.067933],[-116.942656,46.061],[-116.931706,46.039651],[-116.923005,46.018293],[-116.91868,45.999875],[-116.91718,45.996575],[-116.915989,45.995413],[-116.940681,45.996274],[-116.985882,45.996974],[-117.051304,45.996849],[-117.070047,45.99751],[-117.212616,45.998321],[-117.214534,45.99832],[-117.216731,45.998356],[-117.337668,45.998662],[-117.353928,45.996349],[-117.390738,45.998598],[-117.439943,45.998633],[-117.475148,45.997893],[-117.47536,45.997855],[-117.480103,45.99787],[-117.48013,45.99787],[-117.504833,45.998317],[-117.603163,45.998887],[-117.717852,45.999866],[-117.977767,46.000724],[-117.996911,46.000787],[-118.126197,46.000282],[-118.131019,46.00028],[-118.146028,46.000701],[-118.228941,46.000421],[-118.236584,46.000418],[-118.25253,46.000459],[-118.256368,46.000439],[-118.283526,46.000787],[-118.314982,46.000453],[-118.36779,46.000622],[-118.37836,46.000574],[-118.470756,46.000632],[-118.497027,46.00062],[-118.537119,46.00084],[-118.569392,46.000773],[-118.57571,46.000718],[-118.579906,46.000818],[-118.637725,46.00097],[-118.639332,46.000994],[-118.658717,46.000955],[-118.67787,46.000935],[-118.941242,46.000574],[-118.987129,45.999855],[-119.008558,45.97927],[-119.027056,45.969134],[-119.061462,45.958527],[-119.093221,45.942745],[-119.12612,45.932859],[-119.169496,45.927603],[-119.19553,45.92787],[-119.225745,45.932725],[-119.25715,45.939926],[-119.322509,45.933183],[-119.364396,45.921605],[-119.43189,45.918263],[-119.450256,45.917354],[-119.487829,45.906307],[-119.524632,45.908605],[-119.571584,45.925456],[-119.600549,45.919581],[-119.623393,45.905639],[-119.669877,45.856867],[-119.772927,45.845578],[-119.802655,45.84753],[-119.868135,45.835962],[-119.876144,45.834718],[-119.907461,45.828135],[-119.965744,45.824365],[-119.999502,45.812481],[-120.001148,45.811902],[-120.07015,45.785152],[-120.141352,45.773152],[-120.170453,45.761951],[-120.210754,45.725951],[-120.282156,45.72125],[-120.288656,45.72015],[-120.329057,45.71105],[-120.40396,45.699249],[-120.482362,45.694449],[-120.505863,45.700048],[-120.521964,45.709848],[-120.559465,45.738348],[-120.591166,45.746547],[-120.634968,45.745847],[-120.653559,45.737237],[-120.668869,45.730147],[-120.68937,45.715847],[-120.724171,45.706446],[-120.788872,45.686246],[-120.855674,45.671545],[-120.870042,45.661242],[-120.895575,45.642945],[-120.913476,45.640045],[-120.915876,45.641345],[-120.943977,45.656445],[-120.953077,45.656745],[-120.977978,45.649345],[-120.983478,45.648344],[-121.007449,45.653217],[-121.033582,45.650998],[-121.06437,45.652549],[-121.084933,45.647893],[-121.120064,45.623134],[-121.117052,45.618117],[-121.1222,45.616067],[-121.131953,45.609762],[-121.139483,45.611962],[-121.145534,45.607886],[-121.167852,45.606098],[-121.183841,45.606441],[-121.196556,45.616689],[-121.195233,45.629513],[-121.200367,45.649829],[-121.215779,45.671238],[-121.251183,45.67839],[-121.287323,45.687019],[-121.312198,45.699925],[-121.33777,45.704949],[-121.372574,45.703111],[-121.401739,45.692887],[-121.423592,45.69399],[-121.441045,45.69727],[-121.462849,45.701367],[-121.499153,45.720846],[-121.522392,45.724677],[-121.533106,45.726541],[-121.631167,45.704657],[-121.668362,45.705082],[-121.707358,45.694809],[-121.735104,45.694039],[-121.811304,45.706761],[-121.820055,45.704649],[-121.867167,45.693277],[-121.901855,45.670716],[-121.900858,45.662009],[-121.908267,45.654399],[-121.922236,45.649083],[-121.935149,45.644169],[-121.951838,45.644951],[-121.955734,45.643559],[-121.963547,45.632784],[-121.979797,45.624839],[-121.983038,45.622812],[-122.00369,45.61593],[-122.022571,45.615151],[-122.044374,45.609516],[-122.101675,45.583516],[-122.112356,45.581409],[-122.126197,45.582617],[-122.126197,45.582573],[-122.12949,45.582967],[-122.129548,45.582945],[-122.14075,45.584508],[-122.183695,45.577696],[-122.2017,45.564141],[-122.248993,45.547745],[-122.262625,45.544321],[-122.266701,45.543841],[-122.294901,45.543541],[-122.331502,45.548241],[-122.352802,45.569441],[-122.380302,45.575941],[-122.391802,45.574541],[-122.410706,45.567633],[-122.438674,45.563585],[-122.453891,45.567313],[-122.474659,45.578305],[-122.479315,45.579761],[-122.492259,45.583281],[-122.523668,45.589632],[-122.548149,45.596768],[-122.581406,45.60394],[-122.602606,45.607639],[-122.643907,45.609739],[-122.675008,45.618039],[-122.691008,45.624739],[-122.713309,45.637438],[-122.738109,45.644138],[-122.76381,45.657138],[-122.774511,45.680437],[-122.772511,45.699637],[-122.762182,45.728598],[-122.760108,45.734413],[-122.761451,45.759163],[-122.769532,45.780583],[-122.795605,45.81],[-122.795963,45.825024],[-122.785696,45.844216],[-122.785515,45.850536],[-122.785026,45.867699],[-122.798091,45.884333],[-122.81151,45.912725],[-122.806193,45.932416],[-122.813998,45.960984],[-122.837638,45.98082],[-122.856158,46.014469],[-122.878092,46.031281],[-122.884478,46.06028],[-122.904119,46.083734],[-122.962681,46.104817],[-123.004233,46.133823],[-123.009436,46.136043],[-123.022147,46.13911],[-123.03382,46.144336],[-123.041297,46.146351],[-123.051064,46.153599],[-123.105021,46.177676],[-123.115904,46.185268],[-123.166414,46.188973],[-123.213054,46.172541],[-123.231196,46.16615],[-123.251233,46.156452],[-123.280166,46.144843],[-123.301034,46.144632],[-123.332335,46.146132],[-123.363636,46.146324],[-123.371433,46.146372],[-123.430847,46.181827],[-123.427629,46.229348],[-123.447592,46.249832],[-123.468743,46.264531],[-123.474844,46.267831],[-123.479644,46.269131],[-123.501245,46.271004],[-123.516188,46.266153],[-123.526391,46.263404],[-123.538092,46.26061],[-123.547659,46.259109],[-123.547636,46.265595],[-123.559923,46.265098],[-123.564405,46.262172],[-123.581642,46.260502],[-123.613544,46.259988],[-123.669501,46.266832],[-123.679125,46.272502],[-123.68008,46.277943],[-123.678069,46.286469],[-123.67876,46.290721],[-123.680574,46.296025],[-123.687763,46.299235],[-123.700764,46.305278],[-123.724273,46.301161],[-123.724038,46.295058],[-123.727913,46.289661],[-123.728585,46.288725],[-123.741478,46.290274],[-123.75956,46.275073],[-123.766682,46.273499],[-123.775054,46.274599],[-123.782654,46.280227],[-123.795556,46.284501],[-123.806139,46.283588],[-123.875525,46.239787],[-123.909306,46.245491],[-123.919581,46.251217],[-123.954353,46.277001],[-123.969427,46.291398],[-123.970912,46.293866],[-123.970355,46.299352],[-123.974509,46.303063],[-123.985204,46.309039],[-124.001264,46.31326],[-124.020551,46.315737],[-124.029924,46.308312],[-124.035599,46.296843],[-124.038797,46.283675],[-124.044018,46.275925],[-124.060961,46.278761],[-124.080671,46.267239],[-124.082187,46.269159],[-124.081729,46.274714],[-124.076262,46.296498],[-124.071384,46.305504],[-124.064624,46.326899],[-124.058351,46.386503],[-124.057425,46.409315],[-124.057024,46.493338],[-124.061953,46.556165],[-124.06842,46.601397],[-124.069583,46.630651],[-124.068655,46.634879],[-124.062715,46.642582],[-124.056476,46.645645],[-124.048444,46.645827],[-124.035874,46.630822],[-124.052708,46.622796],[-124.050842,46.617421],[-124.028799,46.59104],[-124.023566,46.582559],[-124.023148,46.564113],[-124.026019,46.531589],[-124.031737,46.496375],[-124.026032,46.462978],[-124.001271,46.459992],[-123.990615,46.463019],[-123.99087,46.465738],[-123.994181,46.468868],[-123.99268,46.488617],[-123.988386,46.497008],[-123.983688,46.498542],[-123.979053,46.497378],[-123.979213,46.489949],[-123.97083,46.47537],[-123.968044,46.473497],[-123.943667,46.477197],[-123.921192,46.507731],[-123.896703,46.522665],[-123.897242,46.52848],[-123.894254,46.537028],[-123.903321,46.55191],[-123.916902,46.562633],[-123.920247,46.567343],[-123.922332,46.577057],[-123.928861,46.588875],[-123.939139,46.596326],[-123.955556,46.60357],[-123.959175,46.613581],[-123.960642,46.636364],[-123.940616,46.640862],[-123.921913,46.650262],[-123.920916,46.653576],[-123.923269,46.672708],[-123.915596,46.678649],[-123.895601,46.683672],[-123.864902,46.698685],[-123.851356,46.70256],[-123.84621,46.716795],[-123.848725,46.719898],[-123.862149,46.727749],[-123.870782,46.728327],[-123.87668,46.730657],[-123.893054,46.750204],[-123.898641,46.750205],[-123.910716,46.746715],[-123.916371,46.741322],[-123.91584,46.737322],[-123.91285,46.730647],[-123.916874,46.726739],[-123.929073,46.725278],[-123.948683,46.725369],[-123.968564,46.736106],[-123.974994,46.733391],[-123.979655,46.724658],[-123.975157,46.713971],[-123.966886,46.705184],[-123.973663,46.703353],[-123.987521,46.707507],[-123.994242,46.707929],[-124.003458,46.702337],[-124.022413,46.708973],[-124.042478,46.72004],[-124.042111,46.722783],[-124.046399,46.725686],[-124.063117,46.733664],[-124.080983,46.735003],[-124.092176,46.741624],[-124.096515,46.746202],[-124.095041,46.756812],[-124.096655,46.784374],[-124.098359,46.794157],[-124.101232,46.810656],[-124.108078,46.836388],[-124.122979,46.879809],[-124.138225,46.905534],[-124.117712,46.91238],[-124.110641,46.91252],[-124.093392,46.901168],[-124.090422,46.8955],[-124.089286,46.867716],[-124.073113,46.861493],[-124.066349,46.863504],[-124.061051,46.865127],[-124.055085,46.870429],[-124.049279,46.891253],[-124.046344,46.893972],[-124.03624,46.898473],[-124.01366,46.90363],[-124.009519,46.910325],[-123.985082,46.921916],[-123.979378,46.923038],[-123.957493,46.921261],[-123.915256,46.932964],[-123.882884,46.939946],[-123.86018,46.948556],[-123.876136,46.961054],[-123.889402,46.968904],[-123.898245,46.971927],[-123.921617,46.971864],[-123.939214,46.969739],[-123.947996,46.971818],[-123.959185,46.981759],[-123.991612,46.980215],[-124.012218,46.985176],[-124.019727,46.991189],[-124.010068,46.997882],[-124.005248,47.003915],[-124.017035,47.011717],[-124.016999,47.014848],[-124.026345,47.030187],[-124.065856,47.04114],[-124.106378,47.04264],[-124.122057,47.04165],[-124.141517,47.035142],[-124.149043,47.029294],[-124.151288,47.021112],[-124.139733,46.98837],[-124.138035,46.970959],[-124.124386,46.94387],[-124.141267,46.940266],[-124.158624,46.929439],[-124.180111,46.926357],[-124.174503,46.941623],[-124.171161,46.958443],[-124.169113,46.994508],[-124.173501,47.06637],[-124.176745,47.092999],[-124.183833,47.124807],[-124.182802,47.134041],[-124.185806,47.136017],[-124.189725,47.146827],[-124.195893,47.174],[-124.209017,47.218151],[-124.236349,47.287287],[-124.242234,47.295101],[-124.25359,47.30248],[-124.257452,47.304059],[-124.271193,47.305025],[-124.286369,47.325162],[-124.293288,47.339309],[-124.299943,47.34836],[-124.307509,47.352268],[-124.319379,47.355559],[-124.324091,47.367602],[-124.32665,47.388759],[-124.336724,47.415996],[-124.345155,47.48903],[-124.353651,47.53361],[-124.355955,47.545698],[-124.359028,47.547616],[-124.366221,47.582439],[-124.371746,47.599575],[-124.374927,47.603891],[-124.382215,47.632302],[-124.395983,47.665534],[-124.412106,47.691199],[-124.420219,47.725294],[-124.425195,47.738434],[-124.430546,47.746249],[-124.453927,47.765334],[-124.471687,47.766907],[-124.47657,47.769671],[-124.482154,47.797454],[-124.489737,47.816988],[-124.497987,47.822605],[-124.50668,47.82391],[-124.51278,47.822518],[-124.539927,47.836967],[-124.558254,47.855979],[-124.559034,47.863085],[-124.562363,47.866216],[-124.588172,47.877878],[-124.609538,47.879996],[-124.610763,47.880607],[-124.625512,47.887963],[-124.630153,47.892467],[-124.629706,47.896968],[-124.645442,47.935338],[-124.651966,47.943177],[-124.662334,47.951451],[-124.672427,47.964414],[-124.67083,47.982366],[-124.679024,48.015697],[-124.682157,48.035987],[-124.685393,48.049238],[-124.688359,48.054927],[-124.693676,48.058697],[-124.696542,48.069274],[-124.695114,48.087096],[-124.688602,48.092466],[-124.687101,48.098657],[-124.695088,48.114878],[-124.721725,48.153185],[-124.731703,48.160402],[-124.733174,48.163393],[-124.731746,48.169997],[-124.704153,48.184422],[-124.696111,48.198599],[-124.6909,48.212617],[-124.690389,48.219745],[-124.705031,48.238774],[-124.70592,48.239894],[-124.699663,48.245812],[-124.684677,48.255228],[-124.680877,48.26535],[-124.676319,48.295143],[-124.669265,48.296353],[-124.665908,48.299324],[-124.662068,48.31045],[-124.65894,48.331057],[-124.670072,48.341341],[-124.696703,48.349748],[-124.713817,48.366309],[-124.727022,48.371101],[-124.730863,48.3762],[-124.731828,48.381157],[-124.725839,48.386012],[-124.716947,48.389776],[-124.694511,48.389004],[-124.653243,48.390691],[-124.639389,48.385524],[-124.631108,48.376522],[-124.611782,48.378182],[-124.599278,48.381035],[-124.597331,48.381882],[-124.590733,48.373604],[-124.572864,48.366228],[-124.564841,48.367921],[-124.546259,48.353594],[-124.538821,48.349893],[-124.525453,48.349022],[-124.510582,48.343236],[-124.414007,48.300887],[-124.395593,48.288772],[-124.380874,48.284699],[-124.361351,48.287582],[-124.342412,48.277695],[-124.299146,48.268239],[-124.295589,48.262983],[-124.296924,48.261796],[-124.297643,48.260676],[-124.295693,48.259282],[-124.272017,48.25441],[-124.265824,48.254842],[-124.255109,48.258972],[-124.252267,48.261004],[-124.250882,48.264773],[-124.238582,48.262471],[-124.217873,48.253294],[-124.192692,48.246316],[-124.14129,48.227413],[-124.110974,48.220557],[-124.101773,48.216883],[-124.107215,48.200082],[-124.090717,48.196458],[-124.072124,48.189903],[-124.050734,48.177747],[-123.981032,48.164761],[-123.955347,48.165455],[-123.934921,48.16084],[-123.915589,48.159352],[-123.880068,48.160621],[-123.866677,48.154796],[-123.858821,48.154273],[-123.831571,48.157937],[-123.778122,48.155466],[-123.756395,48.161057],[-123.728736,48.1628],[-123.72829,48.160858],[-123.725352,48.159191],[-123.71835,48.158713],[-123.706226,48.1634],[-123.706432,48.165822],[-123.702743,48.166783],[-123.672445,48.162715],[-123.651408,48.156952],[-123.636967,48.150319],[-123.641108,48.146127],[-123.628819,48.139279],[-123.590839,48.134949],[-123.574214,48.140756],[-123.560591,48.150697],[-123.551131,48.151382],[-123.534879,48.14578],[-123.52232,48.135539],[-123.507235,48.131807],[-123.473379,48.134079],[-123.455458,48.140047],[-123.440128,48.142014],[-123.439127,48.141278],[-123.441972,48.124259],[-123.424668,48.118065],[-123.395048,48.114243],[-123.360923,48.115864],[-123.332699,48.11297],[-123.314578,48.113725],[-123.288265,48.121036],[-123.280178,48.117309],[-123.268917,48.116094],[-123.248615,48.115745],[-123.239129,48.118217],[-123.21719,48.127203],[-123.191521,48.143821],[-123.1644,48.165894],[-123.144783,48.175943],[-123.133445,48.177276],[-123.132417,48.174704],[-123.139258,48.16648],[-123.143229,48.156633],[-123.131422,48.152736],[-123.124816,48.153472],[-123.116479,48.150208],[-123.085154,48.127137],[-123.06621,48.120469],[-123.050446,48.102825],[-123.038727,48.081138],[-123.016651,48.08538],[-123.004128,48.090516],[-122.979413,48.09594],[-122.946119,48.098552],[-122.929095,48.096244],[-122.917942,48.091535],[-122.920911,48.088199],[-122.926644,48.0741],[-122.927975,48.06665],[-122.927146,48.065133],[-122.926851,48.064593],[-122.918602,48.058238],[-122.877641,48.047025],[-122.849273,48.053808],[-122.857727,48.065774],[-122.878255,48.076072],[-122.882013,48.100779],[-122.876282,48.110877],[-122.833173,48.134406],[-122.784076,48.142974],[-122.760448,48.14324],[-122.748911,48.117026],[-122.773177,48.106864],[-122.778466,48.106135],[-122.792902,48.09718],[-122.798464,48.092451],[-122.801399,48.087561],[-122.770559,48.053432],[-122.770496,48.047897],[-122.766648,48.04429],[-122.74229,48.049324],[-122.740007,48.054116],[-122.739271,48.069153],[-122.741184,48.070958],[-122.747389,48.070795],[-122.748345,48.072097],[-122.733257,48.091232],[-122.718558,48.097567],[-122.698465,48.103102],[-122.68724,48.101662],[-122.69164,48.096726],[-122.69222,48.087081],[-122.682264,48.042723],[-122.677153,48.036346],[-122.668942,48.032026],[-122.669868,48.017217],[-122.686898,48.008305],[-122.690066,48.00842],[-122.697185,48.014978],[-122.70184,48.016106],[-122.723374,48.008095],[-122.718082,47.987739],[-122.701294,47.972979],[-122.683223,47.972226],[-122.6788,47.96793],[-122.676215,47.958743],[-122.684688,47.944049],[-122.68445,47.939593],[-122.681924,47.936415],[-122.66238,47.9307],[-122.657722,47.931156],[-122.651063,47.920985],[-122.65399,47.91589],[-122.655085,47.905058],[-122.646494,47.894771],[-122.637425,47.889945],[-122.618873,47.890242],[-122.610341,47.887343],[-122.631857,47.874815],[-122.633879,47.868401],[-122.63636,47.866186],[-122.650083,47.86386],[-122.666417,47.867497],[-122.69376,47.868002],[-122.690974,47.860118],[-122.681602,47.850405],[-122.683742,47.838773],[-122.688596,47.831438],[-122.719609,47.813036],[-122.731956,47.809741],[-122.748061,47.800546],[-122.75054,47.773966],[-122.757885,47.757744],[-122.758498,47.746036],[-122.781682,47.70392],[-122.811929,47.679861],[-122.832139,47.695511],[-122.790619,47.792597],[-122.812616,47.840029],[-122.820178,47.835904],[-122.815027,47.807493],[-122.845612,47.777474],[-122.880462,47.720643],[-122.896524,47.674838],[-122.97244,47.6149],[-122.979918,47.606157],[-123.106486,47.45817],[-123.15598,47.355745],[-123.140169,47.347496],[-123.111298,47.362619],[-123.120234,47.39149],[-123.033938,47.496973],[-123.016432,47.520273],[-122.967284,47.585685],[-122.917103,47.620743],[-122.856611,47.649615],[-122.804498,47.653363],[-122.754186,47.671612],[-122.740159,47.736228],[-122.733012,47.737625],[-122.722686,47.748827],[-122.719712,47.760976],[-122.714801,47.768176],[-122.690562,47.778372],[-122.684085,47.798574],[-122.682015,47.800882],[-122.648108,47.825123],[-122.623192,47.836199],[-122.614585,47.850806],[-122.608105,47.856728],[-122.573672,47.857582],[-122.573098,47.874081],[-122.586339,47.902023],[-122.588235,47.912923],[-122.596228,47.92021],[-122.616701,47.925139],[-122.620316,47.931553],[-122.617022,47.938987],[-122.611956,47.940772],[-122.603861,47.940478],[-122.601507,47.931726],[-122.592184,47.922519],[-122.581846,47.920282],[-122.549072,47.919072],[-122.527593,47.905882],[-122.513986,47.880807],[-122.512778,47.863879],[-122.506122,47.831745],[-122.502224,47.826395],[-122.482529,47.815511],[-122.482437,47.809255],[-122.485214,47.804128],[-122.495346,47.79704],[-122.495458,47.786692],[-122.471402,47.765965],[-122.470333,47.757109],[-122.471844,47.749819],[-122.477344,47.746019],[-122.488491,47.743605],[-122.507638,47.74304],[-122.515193,47.743911],[-122.519325,47.74622],[-122.537318,47.74714],[-122.554454,47.745704],[-122.543161,47.710941],[-122.53094,47.704814],[-122.525851,47.705095],[-122.523962,47.708034],[-122.511196,47.708715],[-122.504604,47.699136],[-122.504452,47.685888],[-122.508709,47.670843],[-122.518277,47.65132],[-122.502116,47.639074],[-122.493205,47.635122],[-122.492809,47.629591],[-122.494518,47.623625],[-122.500357,47.617816],[-122.49824,47.598242],[-122.493933,47.588963],[-122.483805,47.586721],[-122.479089,47.583654],[-122.503672,47.575178],[-122.518367,47.57408],[-122.529915,47.568441],[-122.534664,47.566122],[-122.543118,47.556326],[-122.542355,47.53784],[-122.547207,47.528257],[-122.546611,47.52355],[-122.532909,47.522184],[-122.52305,47.524],[-122.500543,47.51528],[-122.494882,47.510265],[-122.530514,47.469041],[-122.531889,47.428827],[-122.546271,47.403145],[-122.551136,47.394456],[-122.537044,47.375896],[-122.551536,47.35954],[-122.55584,47.347519],[-122.57134,47.327219],[-122.575985,47.32642],[-122.573739,47.318419],[-122.571239,47.315619],[-122.550134,47.290496],[-122.547521,47.285344],[-122.578211,47.254804],[-122.588859,47.237136],[-122.589454,47.227618],[-122.602541,47.217506],[-122.611464,47.2181],[-122.668571,47.270449],[-122.692426,47.280026],[-122.697378,47.283969],[-122.671256,47.343774],[-122.634823,47.370583],[-122.632463,47.376394],[-122.639126,47.377822],[-122.671486,47.366876],[-122.725738,47.33047],[-122.74525,47.297158],[-122.749621,47.276408],[-122.718124,47.250045],[-122.696585,47.23901],[-122.667382,47.224049],[-122.648941,47.214531],[-122.644182,47.209177],[-122.641802,47.205013],[-122.647751,47.19728],[-122.673925,47.174675],[-122.691771,47.141958],[-122.711997,47.127681],[-122.74293,47.151475],[-122.750887,47.155812],[-122.771619,47.167109],[-122.832799,47.243412],[-122.816633,47.276457],[-122.799025,47.289306],[-122.796646,47.341654],[-122.803688,47.355071],[-122.804615,47.356835],[-122.821868,47.363069],[-122.825237,47.353398],[-122.819738,47.327964],[-122.822344,47.319763],[-122.84586,47.298405],[-122.863732,47.270221],[-122.856171,47.233788],[-122.838298,47.208353],[-122.858735,47.167955],[-122.85994,47.165574],[-122.852046,47.164359],[-122.814238,47.179482],[-122.775056,47.123114],[-122.721437,47.103179],[-122.701748,47.103491],[-122.67813,47.103866],[-122.650634,47.132738],[-122.631987,47.140589],[-122.614855,47.169143],[-122.590829,47.178107],[-122.587856,47.187422],[-122.580517,47.210416],[-122.561957,47.244099],[-122.527586,47.291531],[-122.547747,47.316403],[-122.547408,47.317734],[-122.540238,47.31852],[-122.533338,47.31662],[-122.471652,47.277321],[-122.4442,47.266723],[-122.437727,47.268046],[-122.429605,47.269707],[-122.418074,47.281765],[-122.409199,47.288556],[-122.413735,47.293921],[-122.424235,47.297521],[-122.432335,47.296021],[-122.444635,47.300421],[-122.443008,47.306333],[-122.423535,47.319121],[-122.418268,47.320614]]]]}}]} diff --git a/Where/RegionKit/Sources/Resources/regions/us-WI.geojson b/Where/RegionKit/Sources/Resources/regions/us-WI.geojson new file mode 100644 index 00000000..98a32d09 --- /dev/null +++ b/Where/RegionKit/Sources/Resources/regions/us-WI.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"region":"us-WI","name":"Wisconsin"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-90.403306,47.026693],[-90.403321,47.02659],[-90.403499,47.025366],[-90.403908,47.024864],[-90.405033,47.023482],[-90.409437,47.018072],[-90.411972,47.014958],[-90.412886,47.013836],[-90.413133,47.013533],[-90.413428,47.01317],[-90.425351,47.007526],[-90.42732,47.006593],[-90.428273,47.006142],[-90.428438,47.006064],[-90.429397,47.00561],[-90.429539,47.005565],[-90.448857,46.999452],[-90.453619,46.997946],[-90.457445,46.996735],[-90.464079,46.994636],[-90.464087,46.994681],[-90.465465,47.002593],[-90.465321,47.002777],[-90.457688,47.012484],[-90.457453,47.012783],[-90.457315,47.013488],[-90.457272,47.013707],[-90.456677,47.016737],[-90.4553,47.02375],[-90.455251,47.024],[-90.456008,47.032085],[-90.45638,47.036062],[-90.457076,47.043506],[-90.457128,47.044058],[-90.455502,47.051331],[-90.455113,47.053071],[-90.455024,47.05347],[-90.449572,47.064965],[-90.449083,47.065995],[-90.449075,47.066013],[-90.449024,47.066045],[-90.448439,47.066415],[-90.441968,47.070511],[-90.438734,47.072557],[-90.437271,47.073483],[-90.435387,47.073868],[-90.434762,47.073996],[-90.434543,47.07404],[-90.42837,47.075302],[-90.427087,47.075564],[-90.425277,47.075934],[-90.417272,47.07757],[-90.400234,47.077263],[-90.398913,47.077239],[-90.395367,47.077175],[-90.39517,47.077017],[-90.39495,47.076841],[-90.393848,47.075956],[-90.39383,47.075941],[-90.393723,47.074859],[-90.393115,47.068687],[-90.393111,47.068644],[-90.393077,47.068304],[-90.393035,47.067877],[-90.393241,47.066753],[-90.393277,47.066557],[-90.393342,47.066204],[-90.393351,47.066153],[-90.393507,47.065302],[-90.394212,47.061452],[-90.394312,47.060909],[-90.395988,47.056972],[-90.396177,47.056528],[-90.396275,47.056299],[-90.400067,47.047391],[-90.400219,47.047034],[-90.400365,47.046691],[-90.400409,47.046588],[-90.400427,47.046463],[-90.403306,47.026693]]],[[[-90.730883,46.873096],[-90.730233,46.873467],[-90.702346,46.88631],[-90.690783,46.891635],[-90.687995,46.892919],[-90.687054,46.893352],[-90.677989,46.897527],[-90.675713,46.895858],[-90.667776,46.890037],[-90.667678,46.889965],[-90.667941,46.889655],[-90.671235,46.885761],[-90.675239,46.881029],[-90.718547,46.864531],[-90.724585,46.858028],[-90.725087,46.857487],[-90.726805,46.855638],[-90.742231,46.839025],[-90.742257,46.838997],[-90.742631,46.838595],[-90.745356,46.83566],[-90.756052,46.830595],[-90.756725,46.831641],[-90.760991,46.838277],[-90.761406,46.838923],[-90.7601,46.841502],[-90.749816,46.861806],[-90.74948,46.862469],[-90.749196,46.862632],[-90.730883,46.873096]]],[[[-90.764857,46.946524],[-90.765291,46.947021],[-90.764757,46.947391],[-90.761123,46.949915],[-90.75727,46.952591],[-90.741417,46.9636],[-90.740544,46.964206],[-90.739643,46.963963],[-90.737952,46.963506],[-90.717456,46.957966],[-90.71511,46.957332],[-90.712213,46.954436],[-90.694487,46.93671],[-90.694429,46.936506],[-90.689302,46.918563],[-90.688988,46.917462],[-90.690517,46.917375],[-90.712609,46.916112],[-90.713074,46.916086],[-90.715623,46.91594],[-90.717773,46.915817],[-90.737107,46.914712],[-90.737192,46.91481],[-90.739612,46.917584],[-90.74032,46.918396],[-90.744393,46.923064],[-90.754837,46.935037],[-90.75822,46.938915],[-90.764857,46.946524]]],[[[-90.568938,46.847391],[-90.568874,46.847252],[-90.569108,46.847112],[-90.570652,46.846192],[-90.578263,46.841653],[-90.57839,46.841616],[-90.582347,46.840454],[-90.584489,46.839825],[-90.58505,46.839789],[-90.589921,46.839476],[-90.601288,46.838747],[-90.60329,46.838618],[-90.609501,46.838219],[-90.610306,46.838168],[-90.613569,46.837958],[-90.613822,46.837942],[-90.61424,46.837815],[-90.62548,46.834395],[-90.658031,46.824493],[-90.673838,46.819684],[-90.676133,46.818986],[-90.683356,46.813275],[-90.685753,46.805003],[-90.670438,46.799633],[-90.670049,46.799496],[-90.665389,46.799394],[-90.65531,46.799173],[-90.654861,46.798907],[-90.65455,46.798723],[-90.652916,46.797755],[-90.652906,46.797707],[-90.652343,46.795088],[-90.652236,46.794589],[-90.652219,46.794511],[-90.652591,46.794083],[-90.653417,46.793131],[-90.654103,46.792342],[-90.655339,46.790919],[-90.655375,46.790877],[-90.655483,46.790753],[-90.655611,46.790606],[-90.655682,46.790524],[-90.656358,46.789745],[-90.657179,46.7888],[-90.65892,46.7885],[-90.660541,46.788221],[-90.661154,46.788116],[-90.661517,46.788054],[-90.66326,46.787754],[-90.679469,46.784964],[-90.68763,46.78356],[-90.688602,46.783393],[-90.689259,46.78328],[-90.691473,46.782899],[-90.692974,46.782641],[-90.696465,46.78204],[-90.696934,46.782119],[-90.706594,46.783752],[-90.716456,46.785418],[-90.723938,46.781737],[-90.734915,46.772015],[-90.73884,46.768539],[-90.739425,46.768021],[-90.758019,46.757969],[-90.7625,46.755547],[-90.763647,46.754927],[-90.765221,46.754534],[-90.766611,46.754187],[-90.771228,46.753034],[-90.774436,46.753086],[-90.787751,46.753301],[-90.78781,46.753302],[-90.788304,46.75331],[-90.788515,46.753313],[-90.78843,46.753619],[-90.788285,46.754145],[-90.787554,46.756786],[-90.785415,46.76452],[-90.783086,46.772939],[-90.788926,46.779191],[-90.789243,46.779529],[-90.790965,46.781373],[-90.790992,46.781534],[-90.791085,46.782097],[-90.791358,46.783752],[-90.791392,46.783955],[-90.791517,46.784713],[-90.791562,46.784983],[-90.790231,46.786103],[-90.781682,46.788835],[-90.759119,46.796044],[-90.758586,46.796214],[-90.74572,46.798228],[-90.740603,46.799029],[-90.736609,46.799654],[-90.733231,46.800183],[-90.733001,46.800219],[-90.732823,46.800385],[-90.729581,46.803395],[-90.728546,46.804356],[-90.728384,46.805707],[-90.727952,46.809319],[-90.727818,46.810434],[-90.720932,46.815897],[-90.712381,46.820743],[-90.704619,46.823508],[-90.694496,46.827114],[-90.682954,46.831225],[-90.675364,46.833929],[-90.672908,46.835202],[-90.656946,46.843476],[-90.656109,46.844108],[-90.655873,46.844286],[-90.655691,46.844424],[-90.654497,46.845325],[-90.654472,46.845344],[-90.651804,46.847359],[-90.651231,46.847792],[-90.650914,46.848031],[-90.647486,46.85062],[-90.646982,46.851001],[-90.643218,46.853844],[-90.637885,46.859981],[-90.637091,46.860895],[-90.636718,46.861323],[-90.636386,46.861705],[-90.634048,46.864396],[-90.622048,46.872872],[-90.616452,46.874466],[-90.602619,46.872715],[-90.602552,46.872706],[-90.601924,46.872099],[-90.593899,46.864344],[-90.58819,46.858827],[-90.587392,46.858056],[-90.587306,46.858015],[-90.570006,46.849696],[-90.569868,46.849398],[-90.568938,46.847391]]],[[[-90.572383,46.958835],[-90.530597,46.968099],[-90.528804,46.968497],[-90.528182,46.968396],[-90.524874,46.96786],[-90.523298,46.967604],[-90.521791,46.966804],[-90.514782,46.963084],[-90.514616,46.962996],[-90.513328,46.962312],[-90.512884,46.962076],[-90.512211,46.961719],[-90.511623,46.961407],[-90.50988,46.959108],[-90.509372,46.958438],[-90.508157,46.956836],[-90.511124,46.952885],[-90.524018,46.935714],[-90.524056,46.935664],[-90.532652,46.932489],[-90.535368,46.931486],[-90.539947,46.92785],[-90.543583,46.923002],[-90.543852,46.918289],[-90.545105,46.917287],[-90.545872,46.916673],[-90.549104,46.915461],[-90.550371,46.915829],[-90.55328,46.916674],[-90.557319,46.918693],[-90.569169,46.920309],[-90.579568,46.91823],[-90.592933,46.915558],[-90.623547,46.909438],[-90.624635,46.909221],[-90.625685,46.909011],[-90.637124,46.906724],[-90.64412,46.908373],[-90.644144,46.908379],[-90.644218,46.908455],[-90.654796,46.919249],[-90.654805,46.919259],[-90.654797,46.919276],[-90.651834,46.925267],[-90.651043,46.926074],[-90.646351,46.93086],[-90.64534,46.931893],[-90.64479,46.932453],[-90.643966,46.933294],[-90.643328,46.933944],[-90.634507,46.942944],[-90.633915,46.943113],[-90.601876,46.952251],[-90.601153,46.952457],[-90.572383,46.958835]]],[[[-87.335299,45.211327],[-87.334158,45.211669],[-87.33353,45.20812],[-87.33303,45.205287],[-87.331962,45.199251],[-87.33622,45.173174],[-87.327284,45.157363],[-87.327643,45.157508],[-87.327875,45.157602],[-87.376777,45.177298],[-87.376742,45.177863],[-87.376238,45.185924],[-87.375569,45.196633],[-87.375468,45.198241],[-87.375403,45.199296],[-87.365771,45.202185],[-87.363468,45.202876],[-87.340915,45.209642],[-87.335299,45.211327]]],[[[-90.962901,46.962028],[-90.967327,46.964455],[-90.980316,46.971578],[-90.982231,46.975727],[-90.982613,46.976553],[-90.983886,46.979311],[-90.983106,46.98217],[-90.98222,46.985417],[-90.982101,46.985855],[-90.980825,46.986063],[-90.977278,46.986644],[-90.972904,46.98736],[-90.95473,46.990334],[-90.949383,46.991208],[-90.939866,47.001321],[-90.938748,47.001262],[-90.93104,47.000857],[-90.928563,47.000726],[-90.92474,46.990532],[-90.924272,46.989283],[-90.924242,46.989202],[-90.923764,46.987928],[-90.923209,46.98645],[-90.931127,46.965334],[-90.931559,46.964183],[-90.932132,46.962655],[-90.933906,46.962584],[-90.93431,46.962568],[-90.961876,46.961465],[-90.962901,46.962028]]],[[[-90.757147,47.03372],[-90.688544,47.043347],[-90.687048,47.043557],[-90.668593,47.042545],[-90.643623,47.041177],[-90.643003,47.040579],[-90.637583,47.035342],[-90.608824,47.007558],[-90.608526,47.00727],[-90.607868,47.007681],[-90.574356,47.028626],[-90.566073,47.033803],[-90.566041,47.033823],[-90.564843,47.034572],[-90.560936,47.037013],[-90.544875,47.017383],[-90.546066,47.014745],[-90.546272,47.014288],[-90.546656,47.013439],[-90.546766,47.013195],[-90.547011,47.012653],[-90.552867,46.999686],[-90.553203,46.998942],[-90.556441,46.998499],[-90.563332,46.997556],[-90.609715,46.991208],[-90.634105,46.970983],[-90.636035,46.969849],[-90.645889,46.964062],[-90.651645,46.960682],[-90.667685,46.951261],[-90.671581,46.948973],[-90.712032,46.98526],[-90.767985,47.002327],[-90.768349,47.003222],[-90.774473,47.018298],[-90.776921,47.024324],[-90.772945,47.026478],[-90.760423,47.03326],[-90.757147,47.03372]]],[[[-87.405658,44.860098],[-87.405541,44.860047],[-87.384821,44.865532],[-87.384593,44.869277],[-87.383874,44.881116],[-87.383839,44.881685],[-87.383833,44.881788],[-87.38367,44.884475],[-87.383655,44.884723],[-87.383631,44.885115],[-87.385396,44.889964],[-87.386111,44.890699],[-87.386375,44.890972],[-87.386396,44.890993],[-87.38649,44.89109],[-87.390604,44.895323],[-87.390651,44.895372],[-87.3908,44.895524],[-87.39107,44.895803],[-87.39198,44.896739],[-87.39227,44.897037],[-87.393399,44.898199],[-87.396972,44.899955],[-87.397184,44.900059],[-87.397359,44.900145],[-87.400488,44.901683],[-87.401947,44.9024],[-87.406199,44.90449],[-87.405361,44.909626],[-87.405005,44.911806],[-87.398368,44.925226],[-87.393752,44.933751],[-87.393672,44.933899],[-87.393405,44.934393],[-87.393058,44.934677],[-87.389006,44.937988],[-87.387253,44.939421],[-87.385066,44.942445],[-87.384669,44.942993],[-87.382436,44.94608],[-87.374805,44.956631],[-87.373046,44.960388],[-87.372599,44.961343],[-87.372568,44.96141],[-87.371854,44.962935],[-87.370075,44.966736],[-87.363492,44.980798],[-87.360288,44.987643],[-87.351487,44.997203],[-87.345091,45.004151],[-87.336548,45.013431],[-87.336457,45.01353],[-87.322117,45.034201],[-87.322022,45.03429],[-87.315879,45.040103],[-87.307394,45.04813],[-87.303475,45.051838],[-87.30342,45.05189],[-87.303149,45.052146],[-87.302831,45.052447],[-87.30247,45.052666],[-87.300887,45.053625],[-87.300724,45.053724],[-87.300146,45.054075],[-87.28428,45.063694],[-87.284208,45.06376],[-87.269231,45.077396],[-87.268737,45.077847],[-87.268695,45.077884],[-87.264877,45.081361],[-87.260631,45.092355],[-87.260542,45.092585],[-87.260595,45.106007],[-87.257449,45.121644],[-87.254072,45.126323],[-87.250487,45.131289],[-87.240813,45.137559],[-87.240308,45.137886],[-87.242331,45.146773],[-87.242924,45.149377],[-87.238426,45.166492],[-87.238229,45.167238],[-87.238224,45.167259],[-87.23822,45.167262],[-87.231925,45.172316],[-87.231214,45.172887],[-87.224065,45.174551],[-87.222316,45.174959],[-87.221971,45.175039],[-87.221707,45.174716],[-87.220937,45.173773],[-87.21437,45.165735],[-87.213483,45.165614],[-87.207963,45.164857],[-87.200385,45.163819],[-87.195876,45.163201],[-87.195213,45.16311],[-87.17517,45.173],[-87.175068,45.17305],[-87.173722,45.17485],[-87.171272,45.178123],[-87.171233,45.178175],[-87.170266,45.179468],[-87.170062,45.179741],[-87.168298,45.182099],[-87.168252,45.18216],[-87.167179,45.183594],[-87.163169,45.185331],[-87.147709,45.190711],[-87.147657,45.190719],[-87.142708,45.191437],[-87.13303,45.192843],[-87.132874,45.192794],[-87.12981,45.191825],[-87.128597,45.191441],[-87.124549,45.190162],[-87.123689,45.18989],[-87.119972,45.191103],[-87.119971,45.191125],[-87.119968,45.191198],[-87.119925,45.19228],[-87.119921,45.192386],[-87.119894,45.193071],[-87.119887,45.193242],[-87.119876,45.193527],[-87.119874,45.193581],[-87.119868,45.193724],[-87.119864,45.193843],[-87.119825,45.194814],[-87.119822,45.194908],[-87.119784,45.195866],[-87.11978,45.195965],[-87.119768,45.196271],[-87.119534,45.202184],[-87.119522,45.202488],[-87.119511,45.202754],[-87.119413,45.205237],[-87.119405,45.20544],[-87.11945,45.205529],[-87.119654,45.20593],[-87.121541,45.209649],[-87.121566,45.209698],[-87.121609,45.209783],[-87.122098,45.215121],[-87.122194,45.216168],[-87.122226,45.216519],[-87.122248,45.216764],[-87.122364,45.218023],[-87.122708,45.221786],[-87.122819,45.222997],[-87.121667,45.226337],[-87.121288,45.227438],[-87.121266,45.2275],[-87.117391,45.23874],[-87.116456,45.24145],[-87.116432,45.24152],[-87.109541,45.255397],[-87.109014,45.256458],[-87.108743,45.257003],[-87.10843,45.257093],[-87.101681,45.259027],[-87.078316,45.265723],[-87.071035,45.280355],[-87.070845,45.280532],[-87.057627,45.292838],[-87.053417,45.287901],[-87.052927,45.287326],[-87.052872,45.287262],[-87.051979,45.286215],[-87.0517,45.285888],[-87.050796,45.285758],[-87.048745,45.285464],[-87.043895,45.284767],[-87.043724,45.28482],[-87.043497,45.28489],[-87.04313,45.285003],[-87.041463,45.285518],[-87.034206,45.287758],[-87.034077,45.287844],[-87.021088,45.296541],[-87.017036,45.299254],[-87.015797,45.29919],[-86.994112,45.298061],[-86.993528,45.297915],[-86.993201,45.297833],[-86.984223,45.295585],[-86.98388,45.295499],[-86.983355,45.295368],[-86.983227,45.29526],[-86.980058,45.292598],[-86.97778,45.290684],[-86.977714,45.290575],[-86.970355,45.278455],[-86.972786,45.274591],[-86.973227,45.27389],[-86.974346,45.272113],[-86.974528,45.271823],[-86.974622,45.271752],[-86.977355,45.269687],[-86.983597,45.264971],[-86.984398,45.264366],[-86.984495,45.263409],[-86.984938,45.259036],[-86.984975,45.258674],[-86.984172,45.255346],[-86.983066,45.250764],[-86.982669,45.249117],[-86.982393,45.24898],[-86.976711,45.246146],[-86.973287,45.246381],[-86.973022,45.246399],[-86.973453,45.244966],[-86.97346,45.244944],[-86.973483,45.244867],[-86.973651,45.244308],[-86.974086,45.242864],[-86.978697,45.227538],[-86.978759,45.227333],[-86.98108,45.223646],[-86.981956,45.222254],[-86.983001,45.220593],[-86.983708,45.21947],[-86.985973,45.215872],[-86.988075,45.21536],[-86.995804,45.213478],[-86.997316,45.21311],[-87.000112,45.212429],[-87.002806,45.211773],[-87.005243,45.213607],[-87.005359,45.213694],[-87.005468,45.214114],[-87.00754,45.222127],[-87.007583,45.222127],[-87.032521,45.222274],[-87.032546,45.222274],[-87.032576,45.222235],[-87.034524,45.219734],[-87.040909,45.211535],[-87.040924,45.211421],[-87.041063,45.210375],[-87.041075,45.210283],[-87.041106,45.210052],[-87.045899,45.173902],[-87.045883,45.173543],[-87.045701,45.169351],[-87.045687,45.169016],[-87.045681,45.168889],[-87.04566,45.168403],[-87.04548,45.164271],[-87.045242,45.158798],[-87.045225,45.158401],[-87.044176,45.15763],[-87.041145,45.155404],[-87.038479,45.153445],[-87.036716,45.15215],[-87.034083,45.150216],[-87.030225,45.147382],[-87.029164,45.146603],[-87.02898,45.146467],[-87.028847,45.14637],[-87.028957,45.14625],[-87.030105,45.145009],[-87.030126,45.144986],[-87.031167,45.14386],[-87.031307,45.143709],[-87.032194,45.142748],[-87.032344,45.142586],[-87.032461,45.14246],[-87.03292,45.141963],[-87.033114,45.141753],[-87.033117,45.141752],[-87.033546,45.141522],[-87.03355,45.141519],[-87.034621,45.140946],[-87.034667,45.140921],[-87.035465,45.140494],[-87.035838,45.140294],[-87.040175,45.137972],[-87.041564,45.137228],[-87.042114,45.136933],[-87.042286,45.136841],[-87.045748,45.134987],[-87.054282,45.120074],[-87.054342,45.119968],[-87.051049,45.116172],[-87.05075,45.115111],[-87.049346,45.110122],[-87.049268,45.109845],[-87.049231,45.109712],[-87.048951,45.108718],[-87.048911,45.107665],[-87.048406,45.094259],[-87.048346,45.092647],[-87.048213,45.089124],[-87.048359,45.089098],[-87.05078,45.088663],[-87.057415,45.087472],[-87.057444,45.087467],[-87.058259,45.086304],[-87.061966,45.081015],[-87.063129,45.079356],[-87.063157,45.079316],[-87.063376,45.079202],[-87.064864,45.078427],[-87.079552,45.070783],[-87.079555,45.07077],[-87.080271,45.067154],[-87.080755,45.06471],[-87.081866,45.059103],[-87.082419,45.058879],[-87.086351,45.057287],[-87.090849,45.055465],[-87.091639,45.055145],[-87.091761,45.055158],[-87.092177,45.055203],[-87.096387,45.055654],[-87.097479,45.055771],[-87.121156,45.058311],[-87.124701,45.052936],[-87.124722,45.050833],[-87.124727,45.050344],[-87.124737,45.049268],[-87.124744,45.048608],[-87.124788,45.044141],[-87.124797,45.043262],[-87.124808,45.042167],[-87.132344,45.026862],[-87.134354,45.02278],[-87.138024,45.015327],[-87.139384,45.012565],[-87.141048,45.012175],[-87.154084,45.009117],[-87.163477,45.004913],[-87.163529,45.00489],[-87.163561,45.004848],[-87.167474,44.999736],[-87.16797,44.999088],[-87.169494,44.997096],[-87.169676,44.99686],[-87.169694,44.996836],[-87.181428,44.981505],[-87.181901,44.980887],[-87.182922,44.979221],[-87.187585,44.971606],[-87.189134,44.969078],[-87.189407,44.968632],[-87.189402,44.968524],[-87.189383,44.968164],[-87.188582,44.952193],[-87.188399,44.94856],[-87.188375,44.948077],[-87.188074,44.947886],[-87.179974,44.942753],[-87.17524,44.939753],[-87.1717,44.931476],[-87.17492,44.927749],[-87.182421,44.926297],[-87.185858,44.925632],[-87.186732,44.925463],[-87.187984,44.924845],[-87.204238,44.916819],[-87.215808,44.906744],[-87.215977,44.906597],[-87.216059,44.906009],[-87.216074,44.9059],[-87.216146,44.905379],[-87.217171,44.898013],[-87.217195,44.897839],[-87.217149,44.897789],[-87.21671,44.897309],[-87.212587,44.892809],[-87.209265,44.889182],[-87.206285,44.885928],[-87.206184,44.885329],[-87.204815,44.877199],[-87.204809,44.877159],[-87.204545,44.875593],[-87.204904,44.875429],[-87.211398,44.872461],[-87.224891,44.866295],[-87.246171,44.856571],[-87.267061,44.847025],[-87.267441,44.846851],[-87.267564,44.846655],[-87.274769,44.835187],[-87.27603,44.83318],[-87.282561,44.814729],[-87.294869,44.809131],[-87.304824,44.804603],[-87.307482,44.801377],[-87.313363,44.794237],[-87.313692,44.793838],[-87.313751,44.793766],[-87.31388,44.793595],[-87.314247,44.793109],[-87.315813,44.791034],[-87.320397,44.784963],[-87.319796,44.77917],[-87.319169,44.773135],[-87.31903,44.771794],[-87.319013,44.771632],[-87.318982,44.771335],[-87.319903,44.769672],[-87.320855,44.767953],[-87.337584,44.737751],[-87.339155,44.732839],[-87.339904,44.730498],[-87.341226,44.726364],[-87.341491,44.725535],[-87.343508,44.719228],[-87.348082,44.711526],[-87.349559,44.709039],[-87.353789,44.701915],[-87.354172,44.701445],[-87.354249,44.70135],[-87.36115,44.692876],[-87.367992,44.684474],[-87.368263,44.684141],[-87.373228,44.675593],[-87.37849,44.666534],[-87.38684,44.652157],[-87.393521,44.640655],[-87.401629,44.631191],[-87.403724,44.628974],[-87.40541,44.627191],[-87.418028,44.62087],[-87.435766,44.606472],[-87.437493,44.605071],[-87.437751,44.604559],[-87.446963,44.586274],[-87.467089,44.553557],[-87.467214,44.553355],[-87.467398,44.553055],[-87.468093,44.551925],[-87.472934,44.539338],[-87.481884,44.516065],[-87.483696,44.511354],[-87.483873,44.505742],[-87.483914,44.504425],[-87.484042,44.503856],[-87.486822,44.491477],[-87.490024,44.477224],[-87.492333,44.472804],[-87.494678,44.468314],[-87.495176,44.46736],[-87.495252,44.467215],[-87.498662,44.460686],[-87.49886,44.459737],[-87.498872,44.45968],[-87.498934,44.459384],[-87.499349,44.457395],[-87.499674,44.455837],[-87.499719,44.455625],[-87.502309,44.443219],[-87.506362,44.423804],[-87.507651,44.421418],[-87.511387,44.414502],[-87.511635,44.414043],[-87.512311,44.411941],[-87.512886,44.410153],[-87.515482,44.402077],[-87.517965,44.394356],[-87.517881,44.390082],[-87.517597,44.375696],[-87.51774,44.375357],[-87.518094,44.374519],[-87.519106,44.372122],[-87.521047,44.367526],[-87.521663,44.366719],[-87.533583,44.351111],[-87.533606,44.351052],[-87.541517,44.331123],[-87.54295,44.327513],[-87.545382,44.321385],[-87.544725,44.307068],[-87.544716,44.306864],[-87.544675,44.306707],[-87.541382,44.294018],[-87.541265,44.293567],[-87.541156,44.293147],[-87.541155,44.293143],[-87.541053,44.292968],[-87.526466,44.268016],[-87.526391,44.267888],[-87.526226,44.267605],[-87.525824,44.266918],[-87.525797,44.266871],[-87.525703,44.266711],[-87.525643,44.266609],[-87.525485,44.266338],[-87.525455,44.266285],[-87.525294,44.26601],[-87.525211,44.265869],[-87.524691,44.264979],[-87.524459,44.264583],[-87.524193,44.264128],[-87.523179,44.262393],[-87.52284,44.261813],[-87.522557,44.261329],[-87.521862,44.26014],[-87.521755,44.259957],[-87.52133,44.258993],[-87.521318,44.258965],[-87.515406,44.245537],[-87.515399,44.245522],[-87.515314,44.245328],[-87.508457,44.229755],[-87.508419,44.229669],[-87.508412,44.229546],[-87.507419,44.210803],[-87.512903,44.192808],[-87.51966,44.17987],[-87.53994,44.15969],[-87.550076,44.152933],[-87.563181,44.144195],[-87.563551,44.144072],[-87.567045,44.142914],[-87.567817,44.142658],[-87.570533,44.141757],[-87.59668,44.133088],[-87.59791,44.13268],[-87.599055,44.132301],[-87.600882,44.131695],[-87.603572,44.13039],[-87.621082,44.121895],[-87.6458,44.105222],[-87.646583,44.104694],[-87.646719,44.104335],[-87.647551,44.102128],[-87.647603,44.101991],[-87.651507,44.091639],[-87.654935,44.082552],[-87.655183,44.081894],[-87.653483,44.067194],[-87.653691,44.065961],[-87.656062,44.051919],[-87.656083,44.051794],[-87.671316,44.03735],[-87.683361,44.020139],[-87.686389,44.01252],[-87.691479,43.99971],[-87.695053,43.990715],[-87.695503,43.989582],[-87.695511,43.989524],[-87.69892,43.965936],[-87.699029,43.965734],[-87.700125,43.963712],[-87.700321,43.963351],[-87.702707,43.958946],[-87.702719,43.958926],[-87.703951,43.956651],[-87.704679,43.955872],[-87.706656,43.953753],[-87.709463,43.950747],[-87.716037,43.943705],[-87.71817,43.939498],[-87.719041,43.937781],[-87.719041,43.93778],[-87.719194,43.9371],[-87.720121,43.932958],[-87.720382,43.931794],[-87.720734,43.930224],[-87.721268,43.92784],[-87.7221,43.924128],[-87.723716,43.916915],[-87.724244,43.914557],[-87.726766,43.903297],[-87.726803,43.903133],[-87.726841,43.90304],[-87.728542,43.89892],[-87.728885,43.89809],[-87.73063,43.893862],[-87.730645,43.893825],[-87.731322,43.892184],[-87.733735,43.88634],[-87.734457,43.88459],[-87.735436,43.882219],[-87.736178,43.880421],[-87.736017,43.873721],[-87.734881,43.87043],[-87.728698,43.852524],[-87.728728,43.851833],[-87.729217,43.840582],[-87.7296,43.831782],[-87.727686,43.818989],[-87.726772,43.812885],[-87.726408,43.810454],[-87.726407,43.810445],[-87.726405,43.810442],[-87.700251,43.76735],[-87.700245,43.767129],[-87.70009,43.76159],[-87.700085,43.761395],[-87.702985,43.749695],[-87.703047,43.749565],[-87.70463,43.746256],[-87.705185,43.745095],[-87.708167,43.742979],[-87.708285,43.742895],[-87.708321,43.742737],[-87.709885,43.735795],[-87.708185,43.722895],[-87.707923,43.722064],[-87.703144,43.706901],[-87.702985,43.706395],[-87.702685,43.687596],[-87.703671,43.685339],[-87.706204,43.679542],[-87.706242,43.679488],[-87.72646,43.650462],[-87.733622,43.640181],[-87.734312,43.63919],[-87.735065,43.638217],[-87.735489,43.637668],[-87.735972,43.637044],[-87.736146,43.636819],[-87.737859,43.634604],[-87.738638,43.633597],[-87.742485,43.628622],[-87.742522,43.628574],[-87.780175,43.579889],[-87.781255,43.578493],[-87.782271,43.576726],[-87.789105,43.564844],[-87.790135,43.563054],[-87.790277,43.562376],[-87.793075,43.54899],[-87.794321,43.543034],[-87.797608,43.52731],[-87.797336,43.510623],[-87.793239,43.492783],[-87.807799,43.461136],[-87.827319,43.434849],[-87.855608,43.405441],[-87.865048,43.39357],[-87.867504,43.389158],[-87.869099,43.386295],[-87.872504,43.380178],[-87.877448,43.369235],[-87.882392,43.352099],[-87.888122,43.314731],[-87.888312,43.313489],[-87.888314,43.313476],[-87.888328,43.313388],[-87.888335,43.313342],[-87.888342,43.313294],[-87.889207,43.307652],[-87.897813,43.291628],[-87.900255,43.287081],[-87.901847,43.284117],[-87.902967,43.280319],[-87.903094,43.279887],[-87.903141,43.279728],[-87.903451,43.278676],[-87.904251,43.275962],[-87.906465,43.268454],[-87.906483,43.268393],[-87.906502,43.26833],[-87.906565,43.268115],[-87.906583,43.268055],[-87.906599,43.268002],[-87.906605,43.26798],[-87.906611,43.26796],[-87.907289,43.265661],[-87.907291,43.265653],[-87.907306,43.265604],[-87.909053,43.259678],[-87.910345,43.255296],[-87.911787,43.250406],[-87.911512,43.248064],[-87.910172,43.236634],[-87.910087,43.235907],[-87.897331,43.200046],[-87.897326,43.200031],[-87.897316,43.200003],[-87.897125,43.199468],[-87.896286,43.197108],[-87.895554,43.196225],[-87.89209,43.192044],[-87.88857,43.187795],[-87.887586,43.186608],[-87.886266,43.183359],[-87.884878,43.179944],[-87.884872,43.179929],[-87.884769,43.179674],[-87.881085,43.170609],[-87.88638,43.160255],[-87.888849,43.155429],[-87.889327,43.154493],[-87.889375,43.1544],[-87.889634,43.153894],[-87.891059,43.151108],[-87.892285,43.14871],[-87.896008,43.143405],[-87.898105,43.140417],[-87.89902,43.139112],[-87.900285,43.13731],[-87.901345,43.133357],[-87.901385,43.13321],[-87.901359,43.133002],[-87.900496,43.126],[-87.900485,43.12591],[-87.900463,43.125874],[-87.893185,43.114011],[-87.879169,43.101717],[-87.877915,43.100617],[-87.876084,43.099011],[-87.872493,43.08981],[-87.872362,43.089474],[-87.872352,43.089449],[-87.872255,43.089199],[-87.871928,43.088363],[-87.870459,43.084598],[-87.866487,43.074419],[-87.866484,43.074412],[-87.870184,43.064412],[-87.870217,43.064376],[-87.87546,43.058516],[-87.876343,43.057529],[-87.88193,43.051285],[-87.882069,43.05113],[-87.882084,43.051113],[-87.889883,43.045834],[-87.894813,43.042497],[-87.895028,43.042351],[-87.895084,43.042313],[-87.895127,43.042152],[-87.896227,43.038028],[-87.896598,43.036637],[-87.898184,43.030689],[-87.898684,43.028813],[-87.896836,43.02053],[-87.896647,43.01968],[-87.896398,43.018565],[-87.896157,43.017486],[-87.895784,43.015814],[-87.893511,43.011521],[-87.889342,43.003647],[-87.889095,43.003181],[-87.888804,43.002631],[-87.887789,43.000715],[-87.887703,43.000552],[-87.887683,43.000514],[-87.878683,42.992415],[-87.857182,42.978015],[-87.845181,42.962015],[-87.844739,42.958848],[-87.843835,42.952375],[-87.843575,42.950519],[-87.842786,42.944865],[-87.84276,42.944679],[-87.842681,42.944116],[-87.844578,42.923688],[-87.846708,42.900756],[-87.847745,42.889595],[-87.84778,42.889216],[-87.845811,42.884256],[-87.834879,42.856717],[-87.831176,42.849886],[-87.827021,42.842222],[-87.825352,42.839144],[-87.824,42.836649],[-87.823278,42.835318],[-87.822324,42.834371],[-87.804033,42.816205],[-87.803773,42.815948],[-87.796201,42.808428],[-87.793976,42.806218],[-87.789953,42.803691],[-87.786291,42.801391],[-87.785936,42.801168],[-87.773699,42.793481],[-87.773623,42.793388],[-87.766675,42.784896],[-87.769774,42.773719],[-87.77134,42.771687],[-87.777432,42.763781],[-87.778174,42.762819],[-87.778774,42.760556],[-87.780782,42.752973],[-87.781016,42.75209],[-87.781949,42.74857],[-87.782174,42.747719],[-87.781849,42.745847],[-87.781655,42.744733],[-87.781642,42.744656],[-87.781333,42.742879],[-87.779527,42.732482],[-87.778824,42.728432],[-87.778627,42.727299],[-87.78032,42.718679],[-87.782023,42.710008],[-87.782374,42.708219],[-87.783489,42.705164],[-87.784015,42.70372],[-87.785074,42.700819],[-87.786774,42.700719],[-87.794874,42.689919],[-87.802377,42.676651],[-87.802876,42.675768],[-87.802989,42.675569],[-87.803028,42.675501],[-87.803074,42.675419],[-87.803127,42.675276],[-87.805421,42.669067],[-87.805768,42.668128],[-87.807082,42.664571],[-87.80988,42.656997],[-87.809885,42.656982],[-87.811371,42.652959],[-87.813445,42.647345],[-87.814674,42.64402],[-87.819407,42.617327],[-87.819674,42.61582],[-87.819374,42.60662],[-87.815736,42.596045],[-87.815074,42.59412],[-87.810873,42.58732],[-87.811617,42.584809],[-87.812871,42.580576],[-87.813273,42.57922],[-87.813223,42.576759],[-87.813142,42.572768],[-87.813135,42.572424],[-87.812851,42.558352],[-87.812724,42.552104],[-87.812632,42.547562],[-87.812273,42.52982],[-87.809672,42.51482],[-87.800477,42.49192],[-87.800561,42.49192],[-87.815872,42.49192],[-87.843594,42.492307],[-87.900242,42.49302],[-87.971279,42.494019],[-87.99018,42.494519],[-88.049782,42.495319],[-88.115285,42.496219],[-88.199531,42.496018],[-88.200172,42.496016],[-88.2169,42.495923],[-88.25009,42.495823],[-88.271691,42.494818],[-88.304692,42.494773],[-88.417396,42.494618],[-88.461397,42.494618],[-88.470597,42.494672],[-88.506912,42.494883],[-88.638653,42.495043],[-88.707378,42.493587],[-88.70738,42.493587],[-88.76536,42.492068],[-88.776493,42.492024],[-88.786681,42.491983],[-88.940388,42.495046],[-88.940391,42.495046],[-88.943264,42.495114],[-88.992659,42.496025],[-88.992977,42.496026],[-89.013667,42.496087],[-89.013804,42.496097],[-89.042898,42.496255],[-89.071141,42.496208],[-89.099012,42.496499],[-89.116949,42.49691],[-89.120365,42.496992],[-89.125111,42.496957],[-89.164905,42.497347],[-89.166728,42.497256],[-89.22627,42.497957],[-89.228279,42.498047],[-89.246972,42.49813],[-89.250759,42.497994],[-89.290896,42.498853],[-89.361561,42.500012],[-89.366031,42.500274],[-89.401416,42.500433],[-89.401432,42.500433],[-89.420991,42.500589],[-89.422567,42.50068],[-89.423926,42.500818],[-89.425162,42.500726],[-89.4843,42.501426],[-89.492612,42.501514],[-89.493216,42.501514],[-89.522542,42.501889],[-89.564407,42.502628],[-89.594779,42.503468],[-89.600001,42.503672],[-89.603523,42.503557],[-89.61341,42.503942],[-89.644176,42.50452],[-89.650324,42.504613],[-89.667596,42.50496],[-89.690088,42.505191],[-89.693487,42.505099],[-89.742395,42.505382],[-89.769643,42.505322],[-89.780302,42.505349],[-89.793957,42.505466],[-89.799704,42.505421],[-89.801897,42.505444],[-89.837587,42.505543],[-89.926224,42.505788],[-89.926374,42.505788],[-89.926484,42.505787],[-89.955291,42.505626],[-89.985072,42.506464],[-89.985645,42.506431],[-89.997213,42.506755],[-89.999314,42.506914],[-90.017028,42.507127],[-90.018665,42.507288],[-90.07367,42.508275],[-90.093026,42.50816],[-90.095004,42.507885],[-90.142922,42.508151],[-90.164363,42.508272],[-90.181572,42.508068],[-90.206073,42.507747],[-90.22319,42.507765],[-90.250622,42.507521],[-90.253121,42.50734],[-90.267143,42.507642],[-90.269335,42.507726],[-90.272864,42.507531],[-90.303823,42.507469],[-90.362652,42.507048],[-90.367874,42.507114],[-90.370673,42.507111],[-90.405927,42.506891],[-90.426378,42.507059],[-90.437011,42.507147],[-90.474955,42.507484],[-90.479446,42.507416],[-90.491716,42.507624],[-90.532254,42.507573],[-90.544347,42.507707],[-90.544799,42.507713],[-90.551165,42.507691],[-90.555862,42.507509],[-90.565441,42.5076],[-90.614589,42.508053],[-90.617731,42.508077],[-90.640927,42.508302],[-90.636927,42.513202],[-90.636727,42.518702],[-90.640627,42.527701],[-90.643927,42.540401],[-90.645627,42.5441],[-90.654127,42.5499],[-90.659127,42.5579],[-90.661527,42.567999],[-90.672727,42.576599],[-90.677055,42.579215],[-90.679375,42.581503],[-90.685487,42.589614],[-90.686975,42.591774],[-90.687775,42.594606],[-90.687999,42.599198],[-90.692031,42.610366],[-90.693999,42.614509],[-90.700095,42.622461],[-90.700856,42.626445],[-90.702671,42.630756],[-90.706303,42.634169],[-90.709204,42.636078],[-90.720209,42.640758],[-90.731132,42.643437],[-90.743677,42.64556],[-90.760389,42.649131],[-90.769495,42.651443],[-90.778752,42.652965],[-90.788226,42.653888],[-90.797017,42.655772],[-90.832702,42.661662],[-90.84391,42.663071],[-90.852497,42.664822],[-90.867125,42.668728],[-90.88743,42.67247],[-90.896898,42.675262],[-90.900261,42.676254],[-90.9134,42.682949],[-90.921155,42.685406],[-90.923634,42.6855],[-90.929881,42.684128],[-90.937045,42.683399],[-90.941567,42.683844],[-90.949213,42.685573],[-90.952415,42.686778],[-90.965048,42.693233],[-90.974237,42.695249],[-90.977735,42.696816],[-90.980578,42.698932],[-90.988776,42.708724],[-90.995536,42.713704],[-91.000128,42.716189],[-91.009577,42.720123],[-91.015687,42.719229],[-91.017239,42.719566],[-91.026786,42.724228],[-91.029692,42.726774],[-91.030718,42.729684],[-91.030984,42.73255],[-91.032013,42.734484],[-91.035418,42.73734],[-91.039383,42.738478],[-91.044139,42.738605],[-91.046571,42.737167],[-91.049972,42.736905],[-91.051275,42.737001],[-91.053733,42.738238],[-91.054801,42.740529],[-91.05481,42.744686],[-91.056297,42.747341],[-91.058091,42.749246],[-91.060172,42.750481],[-91.06468,42.750914],[-91.065783,42.753387],[-91.065492,42.757081],[-91.06312,42.757273],[-91.061432,42.757974],[-91.060129,42.759986],[-91.060261,42.761847],[-91.063254,42.763947],[-91.069549,42.769628],[-91.070716,42.775502],[-91.071138,42.783004],[-91.072447,42.787732],[-91.075481,42.795466],[-91.078097,42.806526],[-91.079314,42.820309],[-91.078665,42.827678],[-91.08277,42.829977],[-91.090136,42.829237],[-91.09406,42.830813],[-91.095114,42.834966],[-91.091402,42.84986],[-91.091837,42.851225],[-91.095329,42.85532],[-91.097656,42.859871],[-91.09882,42.864421],[-91.098238,42.875798],[-91.100565,42.883078],[-91.104051,42.885971],[-91.112158,42.891149],[-91.115512,42.894672],[-91.117411,42.895837],[-91.138,42.903772],[-91.143375,42.90467],[-91.144706,42.905964],[-91.14556,42.90798],[-91.146177,42.90985],[-91.146182,42.912338],[-91.145868,42.914967],[-91.143878,42.920646],[-91.1438,42.922877],[-91.144315,42.926592],[-91.145517,42.930378],[-91.149784,42.940244],[-91.14988,42.941955],[-91.14909,42.946554],[-91.14554,42.95651],[-91.14543,42.958211],[-91.14655,42.963345],[-91.148001,42.966155],[-91.150906,42.970514],[-91.155519,42.975774],[-91.156562,42.978226],[-91.156743,42.98783],[-91.156813,42.98817],[-91.15749,42.991475],[-91.168283,43.019426],[-91.174692,43.038713],[-91.178087,43.062044],[-91.177894,43.064206],[-91.179457,43.067427],[-91.178761,43.070578],[-91.177264,43.072983],[-91.177222,43.080247],[-91.175193,43.103771],[-91.177728,43.118733],[-91.178251,43.124982],[-91.177932,43.128875],[-91.177003,43.131846],[-91.175253,43.134665],[-91.170372,43.137384],[-91.160449,43.140575],[-91.1562,43.142945],[-91.1462,43.152405],[-91.143283,43.156413],[-91.141356,43.163537],[-91.138649,43.169993],[-91.135917,43.173422],[-91.134173,43.174405],[-91.124428,43.187886],[-91.123896,43.193536],[-91.12217,43.197255],[-91.119115,43.200366],[-91.113749,43.202908],[-91.107931,43.206578],[-91.087456,43.221891],[-91.079278,43.228259],[-91.071857,43.235164],[-91.066398,43.239293],[-91.062562,43.243165],[-91.059684,43.248566],[-91.05791,43.253968],[-91.057918,43.255366],[-91.058644,43.257679],[-91.05975,43.259074],[-91.061798,43.259952],[-91.069937,43.260272],[-91.071698,43.261014],[-91.072649,43.262129],[-91.072782,43.264363],[-91.071574,43.268193],[-91.071724,43.271392],[-91.07371,43.274746],[-91.079875,43.282773],[-91.085652,43.29187],[-91.107237,43.313645],[-91.117661,43.319332],[-91.129121,43.32635],[-91.132813,43.32803],[-91.137343,43.329757],[-91.154806,43.334826],[-91.171055,43.340967],[-91.181115,43.345926],[-91.188014,43.347602],[-91.201847,43.349103],[-91.203964,43.349852],[-91.20662,43.352524],[-91.21477,43.365874],[-91.21499,43.368006],[-91.21336,43.370097],[-91.207367,43.373659],[-91.206072,43.374976],[-91.204831,43.378887],[-91.200701,43.38593],[-91.198953,43.389835],[-91.19767,43.395334],[-91.198048,43.399223],[-91.199408,43.403032],[-91.200527,43.408486],[-91.200359,43.412701],[-91.201224,43.415903],[-91.203144,43.419805],[-91.205551,43.422949],[-91.207145,43.425031],[-91.22875,43.445537],[-91.232276,43.450952],[-91.233367,43.455168],[-91.233187,43.457784],[-91.232241,43.460018],[-91.229503,43.462607],[-91.224586,43.465525],[-91.220399,43.471306],[-91.216035,43.481142],[-91.215282,43.484798],[-91.217615,43.491008],[-91.21827,43.497228],[-91.217706,43.50055],[-91.217876,43.508104],[-91.217353,43.512474],[-91.218292,43.514434],[-91.222613,43.517892],[-91.230027,43.521595],[-91.232941,43.523967],[-91.236725,43.53293],[-91.243183,43.540309],[-91.244093,43.54562],[-91.24382,43.54913],[-91.243214,43.550722],[-91.240649,43.554995],[-91.234432,43.561781],[-91.232812,43.564842],[-91.23149,43.575595],[-91.231865,43.581822],[-91.232707,43.583533],[-91.234499,43.585529],[-91.239109,43.58976],[-91.252926,43.600363],[-91.258267,43.603484],[-91.261631,43.606175],[-91.265091,43.609977],[-91.268748,43.615348],[-91.268457,43.627352],[-91.263178,43.638203],[-91.262397,43.64176],[-91.263856,43.647662],[-91.265051,43.649141],[-91.270767,43.65308],[-91.271749,43.654929],[-91.273252,43.666623],[-91.272741,43.676609],[-91.267792,43.695652],[-91.268455,43.709824],[-91.266538,43.713947],[-91.261316,43.71949],[-91.258756,43.723426],[-91.257773,43.725661],[-91.255932,43.729849],[-91.254903,43.733533],[-91.255431,43.744876],[-91.243955,43.773046],[-91.244135,43.774667],[-91.262436,43.792166],[-91.264436,43.800366],[-91.267436,43.804166],[-91.272037,43.813766],[-91.273037,43.818566],[-91.275737,43.824866],[-91.277695,43.837741],[-91.281968,43.842738],[-91.284138,43.847065],[-91.291002,43.852733],[-91.296739,43.855165],[-91.298815,43.856555],[-91.301302,43.859515],[-91.310991,43.867381],[-91.313037,43.875757],[-91.31531,43.881808],[-91.320605,43.888491],[-91.328143,43.893435],[-91.338141,43.897664],[-91.342335,43.902697],[-91.346271,43.910074],[-91.347741,43.911964],[-91.351688,43.914545],[-91.356741,43.916564],[-91.357426,43.917231],[-91.363242,43.926563],[-91.364736,43.934884],[-91.366642,43.937463],[-91.375142,43.944289],[-91.385785,43.954239],[-91.395086,43.959409],[-91.406011,43.963929],[-91.407395,43.965148],[-91.410555,43.970892],[-91.412491,43.973411],[-91.424134,43.982631],[-91.425188,43.984322],[-91.425681,43.985113],[-91.42672,43.9885],[-91.429878,43.993888],[-91.432522,43.996827],[-91.43738,43.999962],[-91.440536,44.001501],[-91.457378,44.006301],[-91.463515,44.009041],[-91.468472,44.00948],[-91.478498,44.00803],[-91.48087,44.008145],[-91.494988,44.012536],[-91.502163,44.016856],[-91.507121,44.01898],[-91.524315,44.021433],[-91.533778,44.021433],[-91.547028,44.022226],[-91.559004,44.025315],[-91.573283,44.026901],[-91.580019,44.026925],[-91.582604,44.027381],[-91.59207,44.031372],[-91.597617,44.034965],[-91.60355,44.043681],[-91.607339,44.047357],[-91.610487,44.04931],[-91.615375,44.051598],[-91.623784,44.054106],[-91.6279,44.055807],[-91.633365,44.060364],[-91.638115,44.063285],[-91.640535,44.063679],[-91.6434,44.062711],[-91.644717,44.062782],[-91.647873,44.064109],[-91.652247,44.068634],[-91.657,44.071409],[-91.659511,44.074203],[-91.663442,44.08091],[-91.665263,44.085041],[-91.667006,44.086964],[-91.68153,44.0974],[-91.685748,44.098419],[-91.691281,44.097858],[-91.69531,44.09857],[-91.707491,44.103906],[-91.708207,44.105186],[-91.708082,44.110929],[-91.709476,44.117565],[-91.710597,44.12048],[-91.719097,44.128853],[-91.721552,44.130342],[-91.730648,44.1329],[-91.751747,44.134786],[-91.756719,44.136804],[-91.768574,44.143508],[-91.774486,44.147539],[-91.796669,44.154335],[-91.808064,44.159262],[-91.817302,44.164235],[-91.829167,44.17835],[-91.832479,44.180308],[-91.844754,44.184878],[-91.858393,44.193003],[-91.864387,44.196574],[-91.872369,44.199167],[-91.875158,44.200575],[-91.876056,44.202728],[-91.876356,44.209575],[-91.877429,44.212921],[-91.880265,44.216555],[-91.88979,44.226286],[-91.892698,44.231105],[-91.892963,44.235149],[-91.887905,44.246398],[-91.88704,44.251772],[-91.887824,44.254171],[-91.889132,44.25606],[-91.896008,44.262871],[-91.89676,44.265447],[-91.895652,44.273008],[-91.896388,44.27469],[-91.898697,44.277172],[-91.905789,44.281614],[-91.920282,44.286496],[-91.922205,44.287811],[-91.924613,44.291815],[-91.924975,44.294819],[-91.924102,44.297095],[-91.921028,44.301069],[-91.91436,44.30823],[-91.913574,44.310392],[-91.913534,44.311392],[-91.916191,44.318094],[-91.918625,44.322671],[-91.92559,44.333548],[-91.928224,44.335473],[-91.941311,44.340978],[-91.949599,44.348796],[-91.95282,44.352982],[-91.959523,44.359404],[-91.9636,44.362112],[-91.970266,44.365842],[-91.974922,44.367516],[-91.978574,44.368372],[-91.983974,44.368448],[-91.987289,44.369119],[-91.993984,44.3718],[-92.000165,44.374966],[-92.002838,44.377118],[-92.006179,44.378825],[-92.008589,44.379626],[-92.019313,44.381217],[-92.038147,44.388731],[-92.046285,44.394398],[-92.053549,44.401375],[-92.056486,44.402729],[-92.061637,44.404124],[-92.072267,44.404017],[-92.078605,44.404869],[-92.08364,44.407189],[-92.087241,44.408848],[-92.097415,44.411464],[-92.111085,44.413948],[-92.115296,44.416056],[-92.121106,44.420572],[-92.124513,44.422115],[-92.139569,44.424673],[-92.162454,44.427208],[-92.17028,44.428598],[-92.195378,44.433792],[-92.215163,44.438503],[-92.221083,44.440386],[-92.232472,44.445434],[-92.237325,44.449417],[-92.24201,44.454254],[-92.244884,44.456842],[-92.249071,44.459524],[-92.262476,44.465149],[-92.276784,44.473649],[-92.282364,44.477707],[-92.291005,44.485464],[-92.297122,44.492732],[-92.302215,44.500298],[-92.302961,44.503601],[-92.302466,44.516487],[-92.303046,44.518646],[-92.303527,44.519822],[-92.307957,44.524475],[-92.310827,44.528756],[-92.314071,44.538014],[-92.316228,44.540966],[-92.317357,44.542512],[-92.319938,44.54494],[-92.329013,44.550895],[-92.336114,44.554004],[-92.347567,44.557149],[-92.361518,44.558935],[-92.368298,44.559182],[-92.38904,44.557697],[-92.399281,44.558292],[-92.415089,44.560359],[-92.420702,44.562041],[-92.425774,44.564602],[-92.431101,44.565786],[-92.433256,44.5655],[-92.440745,44.562833],[-92.455105,44.561886],[-92.470209,44.565036],[-92.481001,44.568276],[-92.48474,44.568067],[-92.490472,44.566205],[-92.493808,44.566063],[-92.508759,44.570325],[-92.512564,44.571801],[-92.518358,44.575183],[-92.520878,44.5752],[-92.527337,44.573554],[-92.540551,44.567258],[-92.544346,44.566986],[-92.54806,44.567792],[-92.549957,44.568988],[-92.55151,44.571607],[-92.551182,44.573449],[-92.549685,44.576],[-92.54928,44.577704],[-92.549777,44.58113],[-92.560796,44.594956],[-92.567226,44.60177],[-92.569434,44.603539],[-92.572943,44.604649],[-92.577148,44.605054],[-92.57885,44.603939],[-92.581591,44.600863],[-92.584711,44.599861],[-92.586216,44.600088],[-92.588797,44.601698],[-92.590467,44.605936],[-92.601516,44.612052],[-92.607141,44.612433],[-92.614569,44.61173],[-92.618025,44.61287],[-92.621456,44.615017],[-92.623163,44.618224],[-92.623348,44.620713],[-92.622571,44.623518],[-92.619774,44.629214],[-92.619779,44.634195],[-92.621733,44.638983],[-92.632105,44.649027],[-92.655807,44.65804],[-92.660988,44.660884],[-92.664699,44.66338],[-92.686511,44.682096],[-92.696491,44.689436],[-92.700948,44.693751],[-92.713198,44.701085],[-92.732042,44.713671],[-92.737259,44.717155],[-92.7502,44.72212],[-92.7542,44.722767],[-92.75699,44.723829],[-92.766054,44.729604],[-92.787906,44.737432],[-92.802402,44.745167],[-92.802579,44.745797],[-92.802875,44.746847],[-92.804035,44.748433],[-92.807317,44.750364],[-92.807988,44.75147],[-92.807362,44.758909],[-92.805287,44.768361],[-92.800313,44.777379],[-92.796039,44.782056],[-92.788776,44.787794],[-92.785206,44.792303],[-92.782963,44.798131],[-92.781498,44.809408],[-92.78043,44.812589],[-92.772663,44.821424],[-92.771902,44.823067],[-92.772663,44.826337],[-92.772266,44.828046],[-92.769367,44.8318],[-92.766102,44.834966],[-92.765278,44.837186],[-92.765278,44.84107],[-92.768574,44.854368],[-92.76909,44.861997],[-92.769093,44.862029],[-92.769102,44.862167],[-92.767102,44.866767],[-92.763706,44.872129],[-92.763402,44.874167],[-92.764133,44.875905],[-92.769603,44.882967],[-92.773946,44.889997],[-92.774907,44.892797],[-92.774571,44.898084],[-92.774022,44.900083],[-92.773103,44.901367],[-92.761341,44.906904],[-92.759556,44.907857],[-92.758701,44.908979],[-92.757557,44.911214],[-92.750645,44.937299],[-92.750802,44.941567],[-92.754603,44.955767],[-92.760701,44.964979],[-92.767218,44.968084],[-92.768545,44.969839],[-92.769445,44.97215],[-92.770304,44.978967],[-92.770346,44.983327],[-92.769049,44.988195],[-92.770834,44.994131],[-92.771231,45.001378],[-92.768118,45.009115],[-92.762533,45.020551],[-92.761904,45.022467],[-92.76206,45.02432],[-92.764604,45.028767],[-92.770362,45.033803],[-92.778815,45.039327],[-92.78791,45.043516],[-92.793282,45.047178],[-92.797081,45.050648],[-92.802056,45.057423],[-92.803079,45.060978],[-92.802911,45.065403],[-92.802163,45.067555],[-92.800851,45.069477],[-92.791528,45.079647],[-92.77401,45.089138],[-92.765602,45.09573],[-92.754387,45.103146],[-92.746749,45.107051],[-92.744938,45.108309],[-92.740509,45.113396],[-92.739584,45.115598],[-92.739528,45.116515],[-92.740611,45.118454],[-92.742925,45.119918],[-92.745694,45.123112],[-92.749427,45.138117],[-92.756807,45.151866],[-92.757707,45.155466],[-92.757775,45.160519],[-92.756907,45.165166],[-92.752542,45.171772],[-92.752404,45.173916],[-92.764872,45.182812],[-92.766808,45.185466],[-92.767408,45.190166],[-92.766932,45.195111],[-92.763908,45.204866],[-92.762108,45.207166],[-92.758008,45.209566],[-92.754008,45.212766],[-92.751708,45.218666],[-92.752192,45.221051],[-92.753931,45.222905],[-92.755732,45.225949],[-92.757456,45.230526],[-92.757503,45.238308],[-92.760249,45.2496],[-92.758907,45.253407],[-92.755199,45.256733],[-92.751709,45.261666],[-92.751659,45.26591],[-92.752666,45.269565],[-92.758022,45.274822],[-92.760615,45.278827],[-92.761868,45.284938],[-92.761868,45.287013],[-92.761013,45.289028],[-92.75871,45.290965],[-92.750819,45.29298],[-92.745575,45.295844],[-92.737122,45.300459],[-92.732594,45.304224],[-92.727737,45.309288],[-92.709968,45.321302],[-92.704794,45.326526],[-92.699956,45.333716],[-92.698967,45.336374],[-92.69892,45.339364],[-92.699524,45.342421],[-92.704054,45.35366],[-92.703705,45.35633],[-92.70272,45.358472],[-92.696499,45.363529],[-92.679193,45.37271],[-92.678223,45.373604],[-92.678756,45.376201],[-92.676961,45.380137],[-92.669505,45.389111],[-92.664102,45.393309],[-92.658486,45.396058],[-92.650422,45.398507],[-92.65057,45.403308],[-92.648157,45.407423],[-92.646676,45.413227],[-92.646943,45.414265],[-92.649467,45.416408],[-92.650269,45.419168],[-92.649152,45.429618],[-92.646768,45.437929],[-92.646602,45.441635],[-92.652698,45.454527],[-92.653549,45.455346],[-92.661131,45.458278],[-92.677219,45.462864],[-92.680234,45.464344],[-92.686793,45.472271],[-92.691619,45.476273],[-92.695212,45.482882],[-92.702224,45.493046],[-92.71189,45.503281],[-92.715814,45.506676],[-92.724337,45.512223],[-92.726677,45.514462],[-92.727744,45.518811],[-92.728023,45.525652],[-92.72465,45.536744],[-92.724762,45.538617],[-92.726082,45.541112],[-92.745591,45.553016],[-92.756906,45.557499],[-92.764574,45.563592],[-92.770223,45.566939],[-92.773412,45.568235],[-92.775988,45.568478],[-92.785741,45.567888],[-92.790143,45.566915],[-92.801503,45.562854],[-92.812083,45.561122],[-92.823309,45.560934],[-92.834156,45.563096],[-92.843783,45.566135],[-92.846447,45.566515],[-92.871082,45.567581],[-92.881136,45.573409],[-92.883749,45.575483],[-92.884954,45.578818],[-92.883277,45.589831],[-92.886421,45.594881],[-92.886442,45.598679],[-92.8849,45.605001],[-92.882529,45.610216],[-92.88297,45.613738],[-92.886669,45.61976],[-92.888035,45.624959],[-92.888114,45.628377],[-92.886827,45.633403],[-92.886963,45.636777],[-92.887929,45.639006],[-92.887067,45.644148],[-92.885711,45.646017],[-92.883987,45.65487],[-92.882504,45.659471],[-92.878932,45.665606],[-92.876891,45.675289],[-92.875488,45.689014],[-92.870145,45.696757],[-92.870025,45.697272],[-92.871775,45.699774],[-92.868862,45.711993],[-92.869689,45.715142],[-92.869193,45.717568],[-92.865688,45.720623],[-92.862598,45.722241],[-92.853405,45.723152],[-92.850933,45.723831],[-92.850537,45.724376],[-92.850388,45.727576],[-92.848851,45.728751],[-92.843079,45.729163],[-92.841051,45.730024],[-92.835917,45.732802],[-92.830685,45.73312],[-92.828981,45.733714],[-92.826013,45.73665],[-92.816559,45.742037],[-92.812939,45.742709],[-92.809837,45.744172],[-92.805348,45.747493],[-92.803971,45.749805],[-92.80263,45.751888],[-92.798645,45.753654],[-92.784621,45.764196],[-92.781373,45.773062],[-92.779617,45.782563],[-92.776496,45.790014],[-92.772065,45.79523],[-92.76843,45.79801],[-92.761833,45.801258],[-92.75901,45.803965],[-92.757815,45.806574],[-92.757947,45.811216],[-92.760023,45.815475],[-92.761889,45.817928],[-92.764906,45.824859],[-92.765681,45.827252],[-92.765146,45.830183],[-92.761712,45.833861],[-92.759458,45.835341],[-92.74918,45.840717],[-92.745557,45.841455],[-92.739991,45.846283],[-92.739278,45.84758],[-92.736117,45.859129],[-92.736484,45.863356],[-92.734039,45.868108],[-92.721128,45.883805],[-92.712503,45.891705],[-92.707702,45.894901],[-92.703265,45.896155],[-92.698983,45.896451],[-92.683924,45.903939],[-92.676607,45.90637],[-92.675737,45.907478],[-92.676807,45.91093],[-92.676167,45.912072],[-92.670352,45.916247],[-92.659549,45.922937],[-92.656125,45.924442],[-92.639116,45.924555],[-92.638474,45.925971],[-92.640115,45.932478],[-92.639936,45.933541],[-92.638824,45.934166],[-92.636316,45.934634],[-92.62926,45.932404],[-92.627723,45.932682],[-92.62272,45.935186],[-92.614314,45.934529],[-92.608329,45.938112],[-92.60246,45.940815],[-92.590138,45.941773],[-92.580565,45.94625],[-92.574892,45.948103],[-92.569764,45.948146],[-92.561256,45.951006],[-92.551933,45.951651],[-92.551186,45.95224],[-92.549858,45.957039],[-92.550672,45.960759],[-92.549806,45.967986],[-92.548459,45.969056],[-92.545682,45.970118],[-92.537709,45.977818],[-92.530516,45.981918],[-92.527052,45.983245],[-92.522032,45.984203],[-92.519488,45.983917],[-92.502535,45.979995],[-92.490996,45.97556],[-92.484633,45.975872],[-92.479478,45.973992],[-92.472761,45.972952],[-92.469354,45.973811],[-92.464481,45.976267],[-92.46126,45.979427],[-92.461138,45.980216],[-92.463429,45.981507],[-92.464173,45.982423],[-92.464512,45.985038],[-92.462477,45.98785],[-92.456494,45.990243],[-92.453373,45.992913],[-92.453635,45.996171],[-92.452952,45.997782],[-92.451627,46.000441],[-92.44963,46.002252],[-92.444294,46.009161],[-92.444356,46.011777],[-92.442259,46.016177],[-92.435627,46.021232],[-92.428555,46.024241],[-92.420696,46.026769],[-92.410649,46.027259],[-92.408259,46.02663],[-92.392681,46.01954],[-92.381707,46.017034],[-92.372717,46.014198],[-92.362141,46.013103],[-92.357965,46.013413],[-92.35176,46.015685],[-92.349977,46.016982],[-92.350319,46.01898],[-92.350004,46.021888],[-92.349281,46.023624],[-92.346345,46.025429],[-92.344244,46.02743],[-92.343745,46.028525],[-92.342429,46.034541],[-92.343604,46.040917],[-92.343459,46.04299],[-92.341278,46.045424],[-92.33859,46.050111],[-92.338239,46.052149],[-92.335335,46.059422],[-92.332912,46.062697],[-92.329806,46.065216],[-92.327868,46.06618],[-92.319329,46.069289],[-92.306756,46.07241],[-92.298638,46.072989],[-92.294033,46.074377],[-92.294069,46.078346],[-92.29353,46.113824],[-92.293706,46.157321],[-92.293744,46.166838],[-92.293857,46.180073],[-92.293558,46.224578],[-92.293619,46.244043],[-92.293074,46.295129],[-92.293007,46.297987],[-92.29284,46.304319],[-92.292839,46.307107],[-92.29288,46.313752],[-92.292803,46.314628],[-92.292782,46.319312],[-92.292999,46.321894],[-92.29286,46.41722],[-92.292847,46.420876],[-92.292727,46.431993],[-92.29251,46.478761],[-92.292371,46.495585],[-92.291976,46.503997],[-92.291647,46.604649],[-92.291597,46.624941],[-92.292192,46.663242],[-92.292192,46.663308],[-92.292192,46.666042],[-92.291292,46.668142],[-92.287392,46.667342],[-92.287092,46.662842],[-92.286192,46.660342],[-92.283692,46.658841],[-92.278492,46.658641],[-92.274392,46.657441],[-92.272792,46.652841],[-92.270592,46.650741],[-92.265993,46.651041],[-92.259692,46.657141],[-92.256592,46.658741],[-92.242493,46.649241],[-92.235592,46.650041],[-92.228492,46.652941],[-92.223492,46.652641],[-92.216392,46.649841],[-92.212392,46.649941],[-92.207092,46.651941],[-92.202292,46.655041],[-92.201592,46.656641],[-92.202192,46.658941],[-92.202266,46.659072],[-92.205492,46.664741],[-92.204092,46.666941],[-92.199492,46.670241],[-92.192492,46.676741],[-92.187592,46.678941],[-92.181391,46.680241],[-92.177591,46.683441],[-92.176091,46.686341],[-92.176491,46.690241],[-92.177891,46.691841],[-92.183091,46.695241],[-92.198491,46.696141],[-92.205192,46.698341],[-92.205692,46.702541],[-92.204691,46.704041],[-92.202421,46.705432],[-92.201901,46.705751],[-92.201591,46.705941],[-92.201481,46.705985],[-92.200922,46.706212],[-92.197391,46.707641],[-92.193291,46.711241],[-92.191764,46.715483],[-92.191594,46.715955],[-92.191491,46.716241],[-92.189091,46.717541],[-92.178891,46.716741],[-92.174291,46.717241],[-92.170046,46.718878],[-92.167955,46.719685],[-92.167291,46.719941],[-92.155191,46.71594],[-92.148691,46.71514],[-92.146291,46.71594],[-92.144959,46.718418],[-92.144917,46.718496],[-92.141291,46.72524],[-92.143391,46.72814],[-92.14329,46.73464],[-92.13789,46.73954],[-92.11659,46.74864],[-92.112242,46.748899],[-92.108777,46.749105],[-92.10819,46.74914],[-92.08949,46.74924],[-92.03399,46.708939],[-92.02472,46.705624],[-92.020289,46.704039],[-92.01529,46.706469],[-92.007989,46.705039],[-91.987889,46.692739],[-91.973389,46.686439],[-91.961889,46.682539],[-91.942988,46.679939],[-91.930261,46.682273],[-91.886963,46.690211],[-91.87873,46.690811],[-91.877371,46.69091],[-91.876183,46.690997],[-91.87484,46.691095],[-91.866583,46.691697],[-91.864491,46.69185],[-91.857462,46.692362],[-91.840288,46.689693],[-91.831355,46.689906],[-91.820027,46.690176],[-91.817185,46.690604],[-91.817099,46.690617],[-91.814669,46.690982],[-91.799987,46.693192],[-91.798455,46.693422],[-91.790473,46.694624],[-91.790132,46.694675],[-91.781928,46.697604],[-91.758619,46.705927],[-91.74965,46.709129],[-91.748787,46.709341],[-91.735632,46.712575],[-91.677021,46.726984],[-91.675621,46.727329],[-91.667534,46.729317],[-91.662426,46.730572],[-91.66067,46.731004],[-91.658739,46.731479],[-91.652915,46.732911],[-91.646146,46.734575],[-91.645502,46.734733],[-91.636919,46.737802],[-91.63604,46.738116],[-91.636005,46.738128],[-91.635161,46.73843],[-91.635107,46.738449],[-91.625387,46.741924],[-91.593442,46.753345],[-91.592742,46.753595],[-91.592203,46.753788],[-91.590684,46.754331],[-91.576632,46.757037],[-91.574291,46.757488],[-91.574019,46.757466],[-91.571423,46.75726],[-91.569075,46.757074],[-91.557503,46.756155],[-91.551445,46.755674],[-91.551408,46.755666],[-91.543057,46.755153],[-91.537583,46.754817],[-91.537115,46.754788],[-91.535764,46.754926],[-91.524766,46.756052],[-91.517712,46.756774],[-91.511077,46.757453],[-91.510595,46.757614],[-91.507819,46.758538],[-91.507586,46.758615],[-91.50716,46.758757],[-91.500042,46.761128],[-91.499696,46.761243],[-91.493643,46.765757],[-91.493037,46.76621],[-91.492493,46.766615],[-91.492429,46.766663],[-91.491744,46.766732],[-91.489125,46.766997],[-91.488247,46.767086],[-91.472097,46.768717],[-91.470181,46.768911],[-91.470124,46.768923],[-91.467168,46.769546],[-91.462774,46.770471],[-91.44957,46.773252],[-91.449327,46.773303],[-91.436955,46.777586],[-91.428526,46.780504],[-91.426491,46.781208],[-91.423713,46.78217],[-91.411799,46.78964],[-91.398256,46.791213],[-91.39714,46.791047],[-91.396959,46.79102],[-91.396261,46.790917],[-91.394764,46.790694],[-91.391469,46.790205],[-91.390774,46.790316],[-91.386155,46.791057],[-91.380577,46.791951],[-91.369387,46.793745],[-91.368819,46.793836],[-91.367498,46.794545],[-91.366888,46.794872],[-91.365974,46.795362],[-91.365536,46.795597],[-91.365277,46.795736],[-91.363644,46.796612],[-91.360804,46.798136],[-91.359434,46.799612],[-91.35533,46.804035],[-91.352191,46.807417],[-91.33825,46.817704],[-91.33757,46.817969],[-91.330463,46.820735],[-91.330433,46.820746],[-91.328848,46.821363],[-91.326045,46.822454],[-91.322202,46.82395],[-91.32101,46.824414],[-91.315061,46.826729],[-91.314815,46.826825],[-91.30705,46.829007],[-91.305487,46.829446],[-91.304512,46.82972],[-91.303594,46.829978],[-91.302295,46.830343],[-91.301879,46.830384],[-91.289541,46.831604],[-91.278558,46.832689],[-91.266404,46.833891],[-91.265866,46.833944],[-91.265816,46.83396],[-91.263725,46.834632],[-91.263445,46.834722],[-91.256873,46.836833],[-91.256705,46.836887],[-91.256563,46.836989],[-91.250806,46.841135],[-91.249471,46.842531],[-91.23773,46.854809],[-91.235283,46.857368],[-91.232733,46.860035],[-91.226796,46.86361],[-91.214886,46.866137],[-91.211647,46.866824],[-91.211113,46.866696],[-91.207524,46.865835],[-91.204839,46.859727],[-91.204439,46.858816],[-91.200107,46.854017],[-91.178292,46.844259],[-91.168297,46.844727],[-91.167601,46.84476],[-91.156108,46.855414],[-91.148026,46.862906],[-91.147837,46.863082],[-91.144266,46.870301],[-91.143877,46.870576],[-91.14385,46.870595],[-91.140301,46.873105],[-91.140165,46.873201],[-91.139758,46.873148],[-91.134668,46.87249],[-91.133772,46.871043],[-91.133337,46.870341],[-91.133674,46.869348],[-91.134184,46.867843],[-91.134724,46.86625],[-91.134882,46.865784],[-91.136512,46.860975],[-91.134977,46.859023],[-91.134948,46.858986],[-91.134732,46.858935],[-91.12353,46.856273],[-91.123109,46.856173],[-91.11854,46.856548],[-91.107323,46.857469],[-91.10549,46.85762],[-91.09878,46.86056],[-91.098346,46.86075],[-91.098125,46.860847],[-91.09755,46.861098],[-91.096565,46.86153],[-91.096342,46.862965],[-91.096028,46.864987],[-91.095058,46.871234],[-91.094828,46.872714],[-91.094724,46.873383],[-91.09462,46.87405],[-91.094498,46.874837],[-91.094096,46.877423],[-91.093714,46.879882],[-91.090916,46.88267],[-91.088721,46.882877],[-91.085077,46.88322],[-91.080951,46.883609],[-91.072584,46.880126],[-91.069331,46.878772],[-91.06822,46.878309],[-91.066193,46.87871],[-91.056258,46.880678],[-91.052991,46.881325],[-91.050153,46.883037],[-91.049232,46.883593],[-91.04922,46.8836],[-91.042992,46.887358],[-91.03989,46.88923],[-91.036622,46.893594],[-91.036193,46.895523],[-91.035936,46.896679],[-91.034518,46.903053],[-91.033447,46.903642],[-91.032508,46.904158],[-91.030583,46.905215],[-91.024009,46.908827],[-91.023976,46.908845],[-91.021538,46.910185],[-91.01967,46.911211],[-91.019141,46.911502],[-91.018045,46.911872],[-91.018024,46.911879],[-91.016237,46.912481],[-91.016184,46.912499],[-91.010689,46.914352],[-91.007997,46.915259],[-91.005872,46.915976],[-91.005199,46.916203],[-91.004892,46.916192],[-91.004752,46.916187],[-90.998848,46.915975],[-90.997943,46.916367],[-90.996825,46.916851],[-90.995149,46.917577],[-90.987013,46.923776],[-90.985815,46.924689],[-90.984617,46.925602],[-90.983192,46.927662],[-90.980235,46.931937],[-90.973755,46.941304],[-90.968419,46.94391],[-90.964865,46.94378],[-90.964072,46.943369],[-90.954612,46.938468],[-90.954537,46.938429],[-90.953865,46.938283],[-90.953685,46.938244],[-90.94056,46.935394],[-90.92204,46.931372],[-90.921811,46.931322],[-90.921382,46.931434],[-90.914044,46.933346],[-90.913838,46.9334],[-90.908654,46.941221],[-90.908598,46.941305],[-90.880358,46.957661],[-90.879621,46.958088],[-90.877324,46.95891],[-90.877165,46.958967],[-90.877092,46.958993],[-90.876778,46.959106],[-90.876544,46.959189],[-90.876213,46.959308],[-90.876211,46.959309],[-90.876006,46.959382],[-90.875995,46.959386],[-90.875635,46.959515],[-90.871126,46.961129],[-90.855874,46.962232],[-90.855165,46.962045],[-90.838814,46.957728],[-90.837973,46.957506],[-90.837716,46.957438],[-90.837617,46.957379],[-90.833091,46.954686],[-90.805028,46.937987],[-90.786595,46.927019],[-90.786502,46.926964],[-90.78601,46.926672],[-90.785606,46.926431],[-90.760095,46.903296],[-90.759364,46.902634],[-90.75563,46.899247],[-90.754552,46.89827],[-90.754388,46.898037],[-90.752725,46.89568],[-90.751329,46.893702],[-90.751048,46.893305],[-90.750858,46.893035],[-90.750871,46.892643],[-90.750889,46.892136],[-90.750952,46.890293],[-90.751031,46.887963],[-90.751151,46.887863],[-90.754692,46.884915],[-90.754734,46.88488],[-90.754753,46.884875],[-90.761295,46.883238],[-90.761567,46.88317],[-90.77017,46.876296],[-90.77024,46.876184],[-90.780972,46.858989],[-90.781011,46.858911],[-90.78804,46.844886],[-90.792034,46.836916],[-90.793713,46.833566],[-90.795693,46.829614],[-90.795957,46.829087],[-90.796437,46.828129],[-90.797404,46.8262],[-90.798545,46.823922],[-90.798936,46.823143],[-90.801041,46.821626],[-90.80137,46.821389],[-90.80927,46.815695],[-90.821967,46.806545],[-90.825696,46.803858],[-90.826337,46.80211],[-90.82735,46.799345],[-90.828057,46.797415],[-90.829048,46.79641],[-90.829933,46.795513],[-90.830094,46.795349],[-90.831645,46.793777],[-90.835008,46.790366],[-90.835028,46.790346],[-90.835319,46.790051],[-90.835607,46.789759],[-90.847214,46.789274],[-90.854916,46.788952],[-90.855472,46.788929],[-90.855746,46.788918],[-90.856317,46.788894],[-90.856531,46.788885],[-90.856677,46.788712],[-90.859999,46.784769],[-90.863542,46.780565],[-90.859724,46.774433],[-90.859445,46.773985],[-90.86088,46.771079],[-90.862333,46.768135],[-90.866337,46.764626],[-90.866586,46.764408],[-90.866694,46.764361],[-90.874598,46.760902],[-90.875925,46.760321],[-90.885021,46.756341],[-90.883443,46.747255],[-90.883396,46.746987],[-90.882099,46.744622],[-90.881622,46.743753],[-90.87881,46.738629],[-90.878343,46.737777],[-90.876538,46.734487],[-90.876426,46.734284],[-90.876334,46.734115],[-90.876039,46.733577],[-90.875829,46.733195],[-90.871612,46.725509],[-90.870577,46.723623],[-90.870396,46.723293],[-90.869461,46.722039],[-90.868607,46.720896],[-90.868531,46.720794],[-90.868273,46.720448],[-90.868024,46.720115],[-90.863864,46.714539],[-90.861353,46.711173],[-90.860897,46.710562],[-90.859797,46.709088],[-90.859601,46.708826],[-90.853225,46.70028],[-90.852916,46.699866],[-90.852704,46.699582],[-90.852731,46.699437],[-90.853644,46.694464],[-90.853807,46.693579],[-90.853829,46.693457],[-90.853927,46.693369],[-90.854539,46.692822],[-90.854692,46.692686],[-90.865494,46.683033],[-90.865745,46.682808],[-90.867423,46.681309],[-90.867823,46.680952],[-90.867981,46.68081],[-90.868376,46.680457],[-90.868468,46.680375],[-90.870079,46.679449],[-90.870532,46.679189],[-90.870739,46.67907],[-90.870956,46.678945],[-90.885869,46.670374],[-90.885943,46.670353],[-90.896529,46.667315],[-90.905273,46.664807],[-90.905567,46.664722],[-90.909176,46.663687],[-90.909688,46.66354],[-90.911281,46.663083],[-90.911353,46.662996],[-90.914619,46.659054],[-90.915152,46.65841],[-90.915367,46.657615],[-90.920813,46.637432],[-90.920835,46.637351],[-90.92085,46.636492],[-90.920867,46.635515],[-90.920936,46.631606],[-90.920936,46.631584],[-90.924487,46.625417],[-90.924489,46.625415],[-90.926745,46.622698],[-90.931623,46.616822],[-90.93212,46.616223],[-90.933208,46.614913],[-90.93831,46.608768],[-90.938617,46.608398],[-90.93868,46.608322],[-90.949532,46.603019],[-90.949621,46.602975],[-90.950215,46.602248],[-90.950544,46.601845],[-90.951418,46.600774],[-90.951543,46.600621],[-90.951528,46.599827],[-90.951476,46.597033],[-90.947572,46.59351],[-90.947287,46.593253],[-90.947159,46.593138],[-90.942101,46.588573],[-90.94193,46.588419],[-90.941374,46.588293],[-90.941102,46.588232],[-90.927387,46.585132],[-90.92356,46.584267],[-90.923438,46.584239],[-90.921483,46.583797],[-90.920411,46.583555],[-90.920132,46.583492],[-90.91992,46.583444],[-90.918414,46.583103],[-90.918352,46.583089],[-90.918266,46.58307],[-90.916982,46.583014],[-90.909815,46.582703],[-90.906058,46.58343],[-90.905572,46.583524],[-90.901918,46.585519],[-90.901725,46.585624],[-90.891944,46.590964],[-90.886197,46.594102],[-90.885103,46.5947],[-90.885007,46.594752],[-90.873154,46.601223],[-90.86712,46.601911],[-90.864284,46.602965],[-90.858725,46.605031],[-90.856811,46.605742],[-90.856244,46.605953],[-90.85609,46.60601],[-90.854575,46.606573],[-90.85338,46.607017],[-90.852153,46.607473],[-90.851889,46.607571],[-90.849684,46.608391],[-90.843225,46.610791],[-90.843189,46.610805],[-90.842058,46.611225],[-90.841708,46.611355],[-90.837306,46.612991],[-90.834259,46.614123],[-90.831868,46.615012],[-90.831226,46.61525],[-90.830011,46.615702],[-90.82907,46.616051],[-90.829031,46.616066],[-90.794775,46.624941],[-90.792583,46.625938],[-90.772455,46.635097],[-90.770192,46.636127],[-90.768381,46.637362],[-90.755381,46.646225],[-90.755287,46.646289],[-90.755289,46.646323],[-90.756312,46.66182],[-90.756495,46.664591],[-90.74809,46.669817],[-90.748026,46.669968],[-90.739565,46.689943],[-90.739549,46.689981],[-90.73726,46.692267],[-90.724924,46.684186],[-90.705375,46.671381],[-90.694721,46.664402],[-90.654497,46.63999],[-90.650949,46.637837],[-90.627885,46.623839],[-90.607649,46.612186],[-90.60672,46.611651],[-90.606177,46.611339],[-90.599602,46.607552],[-90.599375,46.607422],[-90.59585,46.605392],[-90.595583,46.605238],[-90.591894,46.603114],[-90.590811,46.60249],[-90.590712,46.602433],[-90.586249,46.599863],[-90.581408,46.597541],[-90.580191,46.596958],[-90.579422,46.596589],[-90.563668,46.589034],[-90.561966,46.588218],[-90.561126,46.587816],[-90.558141,46.586384],[-90.556224,46.58588],[-90.549596,46.584138],[-90.538346,46.581182],[-90.537962,46.581081],[-90.537829,46.581143],[-90.527776,46.585858],[-90.525788,46.58679],[-90.525498,46.586926],[-90.525334,46.586949],[-90.522674,46.587313],[-90.519105,46.587803],[-90.519002,46.587817],[-90.51851,46.587885],[-90.505909,46.589614],[-90.497359,46.585509],[-90.478826,46.57661],[-90.478469,46.576439],[-90.47648,46.575484],[-90.476315,46.575405],[-90.476046,46.575276],[-90.47376,46.574178],[-90.472483,46.57373],[-90.440085,46.562365],[-90.438174,46.561695],[-90.437596,46.561492],[-90.437532,46.561507],[-90.436512,46.561748],[-90.436314,46.561795],[-90.434812,46.56215],[-90.433367,46.562492],[-90.418136,46.566094],[-90.41562,46.563169],[-90.414596,46.55732],[-90.414464,46.55732],[-90.407775,46.552246],[-90.405593,46.547584],[-90.402019,46.544384],[-90.400429,46.544384],[-90.400041,46.544384],[-90.398742,46.542738],[-90.395568,46.536317],[-90.395272,46.533941],[-90.39332,46.532615],[-90.387228,46.533663],[-90.374461,46.539212],[-90.369964,46.540549],[-90.3616,46.541434],[-90.357676,46.540271],[-90.357014,46.540591],[-90.355689,46.540317],[-90.353534,46.537553],[-90.35158,46.537074],[-90.350121,46.537337],[-90.349462,46.53808],[-90.347514,46.547083],[-90.344338,46.552087],[-90.336921,46.554076],[-90.331887,46.553278],[-90.327548,46.550262],[-90.328044,46.548046],[-90.326686,46.54615],[-90.324699,46.545602],[-90.320428,46.546287],[-90.310859,46.539365],[-90.310329,46.536852],[-90.311886,46.528695],[-90.314434,46.523784],[-90.317777,46.521637],[-90.316983,46.517319],[-90.313894,46.516199],[-90.313839,46.516199],[-90.312581,46.517113],[-90.307716,46.518392],[-90.306558,46.518484],[-90.303546,46.517432],[-90.298284,46.51782],[-90.294411,46.518848],[-90.294311,46.519876],[-90.292854,46.520972],[-90.285707,46.518846],[-90.283423,46.518868],[-90.27892,46.522271],[-90.278356,46.523847],[-90.277131,46.524487],[-90.272599,46.521127],[-90.271971,46.519756],[-90.274721,46.515416],[-90.270422,46.51169],[-90.270432,46.510756],[-90.270558,46.50956],[-90.270684,46.508237],[-90.27018,46.507356],[-90.26848,46.507167],[-90.266528,46.507356],[-90.265143,46.506222],[-90.265143,46.505089],[-90.265269,46.503829],[-90.263018,46.502777],[-90.260504,46.502822],[-90.25865,46.503483],[-90.25716,46.504716],[-90.248194,46.505357],[-90.246043,46.504832],[-90.243395,46.505245],[-90.236283,46.507121],[-90.231587,46.509842],[-90.230363,46.509705],[-90.229402,46.507992],[-90.230921,46.504656],[-90.23102,46.503354],[-90.230324,46.501732],[-90.228735,46.501573],[-90.222351,46.50338],[-90.220532,46.503403],[-90.216594,46.501759],[-90.214866,46.499947],[-90.214843,46.498181],[-90.211753,46.490351],[-90.204009,46.478175],[-90.201727,46.476074],[-90.193394,46.472487],[-90.188996,46.469015],[-90.188633,46.468101],[-90.189426,46.467004],[-90.192005,46.465611],[-90.193294,46.463143],[-90.190749,46.460173],[-90.189162,46.459054],[-90.180336,46.456746],[-90.179212,46.45309],[-90.17786,46.440548],[-90.174556,46.439656],[-90.166919,46.439851],[-90.166909,46.439311],[-90.166526,46.437576],[-90.163422,46.434605],[-90.158603,46.422656],[-90.158241,46.420485],[-90.158972,46.413769],[-90.157851,46.409291],[-90.152936,46.401293],[-90.148347,46.399258],[-90.146816,46.397205],[-90.144359,46.390255],[-90.13941,46.384999],[-90.135253,46.38221],[-90.133966,46.382118],[-90.13225,46.381249],[-90.134656,46.374979],[-90.134663,46.374947],[-90.133871,46.371828],[-90.131036,46.369199],[-90.126517,46.366889],[-90.122923,46.363603],[-90.122757,46.362621],[-90.122785,46.361259],[-90.122287,46.360139],[-90.120973,46.35972],[-90.119757,46.359748],[-90.119691,46.359755],[-90.118827,46.359241],[-90.116844,46.355153],[-90.116741,46.350652],[-90.117466,46.349487],[-90.119729,46.348504],[-90.120614,46.34642],[-90.120198,46.345066],[-90.119572,46.34418],[-90.118791,46.342253],[-90.119468,46.3397],[-90.121084,46.338656],[-90.12138,46.338131],[-90.121248,46.337217],[-90.120489,46.336852],[-89.929158,46.29975],[-89.918798,46.297741],[-89.90991,46.296402],[-89.908196,46.296037],[-89.764506,46.268082],[-89.667617,46.249797],[-89.638416,46.243804],[-89.533801,46.224119],[-89.495723,46.216301],[-89.276883,46.174116],[-89.276489,46.174047],[-89.219964,46.163319],[-89.218156,46.162988],[-89.205657,46.160408],[-89.203289,46.16002],[-89.201283,46.159426],[-89.194508,46.157942],[-89.166887,46.152868],[-89.161757,46.151816],[-89.125136,46.144531],[-89.09163,46.138505],[-88.990885,46.09733],[-88.990807,46.097298],[-88.948698,46.080205],[-88.943279,46.077943],[-88.932558,46.073601],[-88.85027,46.040274],[-88.848464,46.038858],[-88.847599,46.037161],[-88.843903,46.03305],[-88.840584,46.031112],[-88.837991,46.030176],[-88.835249,46.03033],[-88.831544,46.02962],[-88.820592,46.026261],[-88.816489,46.023924],[-88.815427,46.022954],[-88.815629,46.02232],[-88.811948,46.021609],[-88.801761,46.023737],[-88.79646,46.023605],[-88.79579,46.024864],[-88.796242,46.026853],[-88.80067,46.030036],[-88.796182,46.033712],[-88.791796,46.032057],[-88.784411,46.032709],[-88.779221,46.031869],[-88.778628,46.031271],[-88.778734,46.028875],[-88.783635,46.024357],[-88.784007,46.022984],[-88.783891,46.020934],[-88.782104,46.016558],[-88.779915,46.015436],[-88.776187,46.015931],[-88.769712,46.018968],[-88.768692,46.020571],[-88.768305,46.021201],[-88.76761,46.021643],[-88.767104,46.021896],[-88.766156,46.022149],[-88.765208,46.022086],[-88.763767,46.021943],[-88.760044,46.019815],[-88.758618,46.019542],[-88.756295,46.020173],[-88.754033,46.02246],[-88.752176,46.023584],[-88.746422,46.025798],[-88.739994,46.027308],[-88.730675,46.026535],[-88.724801,46.024503],[-88.721125,46.022013],[-88.721319,46.018608],[-88.718397,46.013284],[-88.713049,46.012668],[-88.710328,46.016303],[-88.704687,46.018154],[-88.698716,46.017903],[-88.691662,46.015435],[-88.683303,46.01417],[-88.679132,46.013538],[-88.674606,46.010567],[-88.671458,46.005104],[-88.670115,45.999957],[-88.670939,45.999957],[-88.671267,45.999026],[-88.667464,45.995048],[-88.663923,45.993242],[-88.663609,45.992397],[-88.66436,45.991337],[-88.664802,45.989835],[-88.663697,45.989084],[-88.662902,45.98873],[-88.661312,45.988819],[-88.65776,45.989287],[-88.6375,45.98496],[-88.635598,45.985119],[-88.634842,45.987565],[-88.634055,45.987999],[-88.623947,45.988633],[-88.616405,45.9877],[-88.614176,45.988775],[-88.613063,45.990627],[-88.611563,45.99881],[-88.611466,46.003332],[-88.607438,46.010991],[-88.603965,46.016181],[-88.60144,46.017599],[-88.598093,46.017623],[-88.59386,46.015132],[-88.593302,46.014447],[-88.592874,46.01159],[-88.589755,46.005602],[-88.589,46.005077],[-88.58067,46.006975],[-88.572995,46.011799],[-88.571553,46.013811],[-88.565485,46.015708],[-88.554987,46.014977],[-88.550756,46.012896],[-88.541078,46.013763],[-88.539011,46.014791],[-88.534876,46.018104],[-88.53353,46.019932],[-88.533825,46.020915],[-88.532414,46.021212],[-88.526673,46.020822],[-88.523131,46.019518],[-88.514601,46.019926],[-88.509516,46.019169],[-88.507188,46.0183],[-88.506205,46.017134],[-88.505946,46.013385],[-88.500133,46.000457],[-88.498765,46.000393],[-88.496898,45.999012],[-88.496897,45.998281],[-88.498108,45.99636],[-88.497417,45.995149],[-88.492495,45.992157],[-88.486755,45.990949],[-88.478984,45.991797],[-88.476002,45.992826],[-88.474036,45.994655],[-88.475152,45.996598],[-88.474695,45.99877],[-88.470855,46.001004],[-88.465542,46.000685],[-88.458658,45.999391],[-88.454361,45.997518],[-88.453868,45.996169],[-88.454261,45.993426],[-88.450325,45.990181],[-88.448751,45.98977],[-88.443078,45.990685],[-88.439733,45.990456],[-88.435798,45.988125],[-88.43406,45.986205],[-88.426125,45.984102],[-88.423437,45.98193],[-88.422322,45.98017],[-88.423044,45.978547],[-88.420356,45.976764],[-88.416914,45.975323],[-88.414849,45.975483],[-88.411077,45.979139],[-88.409864,45.979688],[-88.402848,45.981194],[-88.399046,45.980278],[-88.395308,45.980391],[-88.388847,45.982675],[-88.384318,45.988113],[-88.385234,45.990239],[-88.380183,45.991654],[-88.334628,45.968808],[-88.330137,45.965951],[-88.328333,45.964054],[-88.327872,45.958934],[-88.330296,45.956625],[-88.326953,45.955071],[-88.326003,45.9553],[-88.320531,45.959963],[-88.316894,45.960969],[-88.30952,45.959369],[-88.300965,45.956168],[-88.296968,45.953767],[-88.295264,45.951253],[-88.292381,45.951115],[-88.283335,45.955091],[-88.26839,45.957486],[-88.259343,45.959494],[-88.256455,45.962739],[-88.254816,45.963538],[-88.250133,45.963147],[-88.250133,45.963572],[-88.249117,45.963663],[-88.246307,45.962983],[-88.245937,45.958726],[-88.246579,45.956597],[-88.245752,45.954147],[-88.244452,45.952142],[-88.242518,45.950363],[-88.239672,45.948982],[-88.23314,45.947405],[-88.227988,45.947688],[-88.223773,45.948712],[-88.222167,45.948513],[-88.215025,45.946976],[-88.211158,45.944531],[-88.209585,45.94428],[-88.201852,45.945173],[-88.202116,45.949836],[-88.197627,45.953082],[-88.196316,45.953311],[-88.191991,45.95274],[-88.189789,45.952208],[-88.178008,45.947111],[-88.175532,45.944897],[-88.172628,45.941015],[-88.170096,45.93947],[-88.163959,45.93834],[-88.163105,45.939043],[-88.158704,45.939064],[-88.146352,45.935314],[-88.146419,45.934194],[-88.145928,45.933646],[-88.141001,45.930608],[-88.127428,45.926153],[-88.126122,45.924639],[-88.12743,45.923214],[-88.127594,45.922414],[-88.126382,45.921499],[-88.121864,45.92075],[-88.118507,45.92114],[-88.116846,45.921703],[-88.115346,45.922211],[-88.104686,45.922121],[-88.102908,45.921869],[-88.096496,45.917273],[-88.095409,45.915175],[-88.095354,45.913895],[-88.099172,45.912362],[-88.101973,45.91055],[-88.104576,45.906847],[-88.105677,45.904387],[-88.106136,45.900811],[-88.105981,45.897091],[-88.105447,45.896593],[-88.101814,45.883504],[-88.100218,45.881205],[-88.095841,45.880042],[-88.083965,45.881186],[-88.081781,45.880516],[-88.073944,45.875593],[-88.073134,45.871952],[-88.075146,45.864832],[-88.077534,45.863825],[-88.081641,45.865087],[-88.08259,45.864944],[-88.084985,45.862443],[-88.087419,45.857459],[-88.088825,45.85586],[-88.098326,45.850142],[-88.106622,45.841072],[-88.109089,45.839492],[-88.111726,45.839196],[-88.114267,45.837891],[-88.120723,45.832995],[-88.122947,45.829565],[-88.127808,45.827173],[-88.13364,45.823128],[-88.135067,45.821694],[-88.13611,45.819029],[-88.131834,45.811312],[-88.129461,45.809288],[-88.116024,45.804079],[-88.109506,45.803584],[-88.107506,45.802668],[-88.105355,45.800104],[-88.105518,45.798839],[-88.106351,45.797573],[-88.103247,45.791361],[-88.099616,45.790186],[-88.094047,45.785658],[-88.08859,45.784697],[-88.079764,45.78495],[-88.078361,45.784249],[-88.076375,45.781606],[-88.072091,45.780261],[-88.058256,45.780719],[-88.050634,45.780972],[-88.048514,45.782549],[-88.044697,45.783718],[-88.040892,45.786452],[-88.040221,45.789236],[-88.039729,45.789626],[-88.033568,45.789816],[-88.031124,45.789233],[-88.027228,45.78919],[-88.0236,45.790094],[-88.017588,45.792455],[-88.007043,45.792192],[-88.001593,45.794091],[-87.995876,45.795435],[-87.991447,45.795393],[-87.989831,45.794827],[-87.987942,45.793075],[-87.982617,45.782944],[-87.98087,45.776977],[-87.981789,45.775081],[-87.983392,45.774696],[-87.985597,45.774926],[-87.989829,45.772945],[-87.989656,45.772025],[-87.986429,45.769596],[-87.976835,45.767015],[-87.972451,45.766319],[-87.96697,45.764021],[-87.963996,45.760794],[-87.964725,45.759461],[-87.963452,45.75822],[-87.959277,45.757367],[-87.954459,45.758414],[-87.944113,45.757422],[-87.934585,45.758094],[-87.92913,45.760364],[-87.926611,45.75959],[-87.921999,45.756989],[-87.908933,45.758297],[-87.907771,45.75928],[-87.905873,45.759364],[-87.904657,45.759163],[-87.902707,45.757932],[-87.901299,45.756553],[-87.900005,45.753497],[-87.898363,45.752503],[-87.896032,45.752285],[-87.891905,45.754055],[-87.882261,45.754779],[-87.879812,45.754843],[-87.875813,45.753888],[-87.873339,45.750439],[-87.868111,45.749477],[-87.864141,45.745697],[-87.86305,45.74309],[-87.863874,45.74266],[-87.86432,45.737139],[-87.85548,45.726943],[-87.846817,45.722155],[-87.837343,45.716919],[-87.831442,45.714938],[-87.812338,45.711303],[-87.810144,45.71023],[-87.805867,45.706841],[-87.805081,45.704974],[-87.805076,45.703556],[-87.809181,45.700337],[-87.809075,45.699717],[-87.804993,45.695796],[-87.80188,45.693862],[-87.787727,45.68718],[-87.782226,45.683053],[-87.780808,45.680349],[-87.780737,45.675458],[-87.781007,45.673934],[-87.781623,45.67328],[-87.795355,45.671334],[-87.798903,45.67014],[-87.80329,45.666494],[-87.823164,45.662732],[-87.823868,45.66192],[-87.823672,45.659817],[-87.822425,45.658012],[-87.822693,45.656077],[-87.824676,45.653211],[-87.824102,45.647138],[-87.821818,45.645589],[-87.817277,45.643926],[-87.810194,45.638732],[-87.804481,45.628933],[-87.796983,45.623613],[-87.796179,45.622074],[-87.79588,45.618846],[-87.792016,45.616756],[-87.780845,45.614599],[-87.777671,45.609204],[-87.776238,45.597797],[-87.777199,45.588499],[-87.781255,45.585682],[-87.785647,45.58396],[-87.786767,45.58283],[-87.787534,45.581376],[-87.787292,45.574906],[-87.788326,45.567941],[-87.788798,45.565947],[-87.790874,45.564096],[-87.792372,45.563055],[-87.797536,45.562124],[-87.806104,45.562863],[-87.813745,45.565175],[-87.829346,45.568776],[-87.831689,45.568035],[-87.833591,45.562529],[-87.832968,45.559461],[-87.832296,45.558767],[-87.827215,45.55562],[-87.818791,45.5521],[-87.813737,45.548616],[-87.807159,45.543523],[-87.80339,45.538272],[-87.803364,45.537016],[-87.804528,45.534373],[-87.80472,45.531244],[-87.804203,45.524676],[-87.802267,45.514233],[-87.798794,45.506287],[-87.793215,45.505028],[-87.792769,45.499967],[-87.793447,45.498372],[-87.796409,45.494679],[-87.797824,45.491468],[-87.798362,45.486564],[-87.79896,45.485147],[-87.806891,45.479092],[-87.807388,45.477031],[-87.805873,45.47438],[-87.805773,45.473139],[-87.811469,45.467991],[-87.812971,45.4661],[-87.812976,45.464159],[-87.821057,45.459955],[-87.82743,45.458076],[-87.832456,45.45502],[-87.833042,45.453596],[-87.836008,45.450877],[-87.844815,45.448411],[-87.847429,45.444177],[-87.855298,45.441379],[-87.861697,45.434473],[-87.86195,45.433072],[-87.860127,45.429584],[-87.860432,45.423504],[-87.856216,45.416101],[-87.85181,45.413103],[-87.850533,45.411685],[-87.849668,45.409518],[-87.849322,45.403872],[-87.850969,45.401925],[-87.859131,45.398967],[-87.859773,45.397278],[-87.859603,45.396409],[-87.85683,45.393106],[-87.859418,45.388227],[-87.864677,45.385232],[-87.870905,45.383116],[-87.873568,45.381357],[-87.875424,45.379373],[-87.875692,45.377052],[-87.871789,45.373557],[-87.871485,45.371546],[-87.876862,45.368535],[-87.884855,45.362792],[-87.887828,45.358122],[-87.888052,45.354697],[-87.886949,45.35311],[-87.88517,45.351736],[-87.881114,45.351278],[-87.879835,45.35149],[-87.873529,45.354286],[-87.871685,45.355729],[-87.871124,45.357011],[-87.871285,45.358614],[-87.871204,45.360056],[-87.870243,45.360617],[-87.86856,45.360537],[-87.867037,45.360137],[-87.865675,45.358213],[-87.865274,45.355969],[-87.864873,45.354767],[-87.863489,45.35302],[-87.860871,45.351192],[-87.858617,45.350378],[-87.852784,45.349497],[-87.850418,45.347492],[-87.849899,45.344651],[-87.851475,45.342335],[-87.851318,45.341346],[-87.850133,45.340435],[-87.848368,45.340676],[-87.838141,45.345101],[-87.836782,45.346451],[-87.835303,45.35098],[-87.832612,45.352249],[-87.829775,45.352005],[-87.826918,45.350538],[-87.824855,45.350713],[-87.823554,45.351637],[-87.823028,45.35265],[-87.810076,45.351269],[-87.800464,45.353608],[-87.790324,45.353444],[-87.787967,45.352612],[-87.783076,45.349725],[-87.773901,45.351226],[-87.771384,45.35121],[-87.769172,45.351195],[-87.762128,45.348401],[-87.754104,45.349442],[-87.751452,45.351755],[-87.751626,45.354169],[-87.750928,45.355037],[-87.738352,45.358243],[-87.737801,45.359635],[-87.733409,45.364432],[-87.718891,45.377462],[-87.708329,45.381218],[-87.706767,45.383827],[-87.704337,45.385462],[-87.699797,45.387927],[-87.693956,45.389893],[-87.690281,45.389822],[-87.685934,45.388711],[-87.682866,45.38495],[-87.675017,45.382454],[-87.67455,45.381649],[-87.674403,45.378065],[-87.673513,45.376946],[-87.657349,45.368752],[-87.656624,45.367295],[-87.655807,45.362706],[-87.656632,45.358617],[-87.653568,45.354204],[-87.650661,45.353798],[-87.648476,45.352243],[-87.647729,45.350721],[-87.647454,45.345232],[-87.648126,45.339396],[-87.655775,45.330847],[-87.65983,45.329144],[-87.661603,45.327608],[-87.662029,45.326434],[-87.6615,45.321386],[-87.663666,45.318257],[-87.665243,45.317115],[-87.667423,45.31636],[-87.675328,45.307907],[-87.679085,45.305841],[-87.687498,45.298055],[-87.687578,45.296283],[-87.690364,45.29027],[-87.693468,45.287675],[-87.698248,45.281512],[-87.699492,45.276659],[-87.698456,45.272072],[-87.69878,45.26942],[-87.703053,45.267041],[-87.709137,45.260341],[-87.707779,45.258343],[-87.709145,45.254649],[-87.71148,45.245224],[-87.711339,45.239965],[-87.712184,45.239014],[-87.713398,45.238564],[-87.717051,45.238743],[-87.718264,45.238333],[-87.724156,45.233236],[-87.725205,45.231539],[-87.72492,45.229977],[-87.721935,45.228444],[-87.721354,45.226847],[-87.722473,45.223309],[-87.726952,45.218949],[-87.727276,45.216129],[-87.726175,45.21264],[-87.726198,45.209391],[-87.72796,45.207956],[-87.736339,45.204653],[-87.739492,45.202126],[-87.741732,45.198201],[-87.741805,45.197051],[-87.73521,45.177642],[-87.736509,45.173389],[-87.736104,45.172244],[-87.735135,45.171538],[-87.730866,45.170913],[-87.727768,45.169596],[-87.724601,45.167452],[-87.723121,45.165141],[-87.717945,45.161156],[-87.711322,45.158946],[-87.708134,45.156004],[-87.707391,45.154679],[-87.703492,45.152206],[-87.700618,45.151188],[-87.695055,45.150522],[-87.692375,45.149505],[-87.688425,45.147433],[-87.683902,45.144135],[-87.675816,45.135059],[-87.676024,45.134089],[-87.678511,45.131204],[-87.678209,45.130084],[-87.672447,45.121294],[-87.671,45.120069],[-87.667102,45.118109],[-87.661296,45.112566],[-87.661211,45.108279],[-87.659952,45.107512],[-87.657135,45.107568],[-87.652512,45.108633],[-87.648191,45.106368],[-87.63611,45.105918],[-87.631535,45.106224],[-87.629571,45.105324],[-87.628829,45.104039],[-87.62764,45.103328],[-87.621609,45.102399],[-87.614897,45.100064],[-87.59188,45.094689],[-87.590208,45.095264],[-87.587147,45.089495],[-87.587992,45.085271],[-87.591583,45.083792],[-87.594718,45.085134],[-87.601849,45.082297],[-87.610395,45.075617],[-87.625748,45.045157],[-87.624693,45.014176],[-87.630298,44.976865],[-87.661964,44.973035],[-87.696492,44.974233],[-87.76262,44.965796],[-87.7627,44.965786],[-87.762846,44.965768],[-87.766115,44.965351],[-87.766872,44.965254],[-87.781298,44.961738],[-87.781464,44.961697],[-87.788987,44.959863],[-87.789934,44.959633],[-87.791372,44.959282],[-87.791987,44.959132],[-87.792325,44.95905],[-87.812594,44.954109],[-87.812989,44.954013],[-87.813276,44.953885],[-87.813866,44.953623],[-87.815134,44.95306],[-87.816151,44.952608],[-87.817285,44.952104],[-87.817551,44.951986],[-87.817713,44.951914],[-87.817912,44.951826],[-87.818113,44.951736],[-87.819313,44.951203],[-87.819369,44.951178],[-87.819525,44.951109],[-87.820281,44.950358],[-87.820848,44.949793],[-87.82105,44.949593],[-87.821485,44.949161],[-87.821983,44.948665],[-87.822192,44.948457],[-87.837647,44.933091],[-87.839028,44.931718],[-87.843433,44.924355],[-87.844299,44.918524],[-87.842844,44.912586],[-87.842719,44.912077],[-87.84264,44.911916],[-87.842375,44.911371],[-87.840382,44.907289],[-87.839561,44.905607],[-87.837017,44.902509],[-87.836743,44.902177],[-87.836082,44.901371],[-87.834275,44.899172],[-87.833731,44.89851],[-87.833521,44.898254],[-87.832137,44.896569],[-87.827751,44.891229],[-87.832764,44.880939],[-87.835497,44.877544],[-87.836916,44.87578],[-87.838359,44.873987],[-87.847616,44.870692],[-87.848324,44.87044],[-87.84914,44.86942],[-87.852789,44.86486],[-87.854184,44.859633],[-87.854681,44.857771],[-87.854938,44.857386],[-87.855962,44.855854],[-87.857121,44.85412],[-87.857469,44.853599],[-87.865898,44.840988],[-87.866237,44.840481],[-87.871679,44.839816],[-87.878218,44.839016],[-87.885709,44.835208],[-87.89257,44.83172],[-87.895812,44.830072],[-87.897931,44.828995],[-87.899787,44.828051],[-87.901137,44.827365],[-87.901814,44.825616],[-87.902166,44.824708],[-87.903395,44.821534],[-87.903844,44.820376],[-87.904281,44.819246],[-87.904484,44.818723],[-87.905444,44.816997],[-87.906582,44.814949],[-87.911366,44.806345],[-87.918874,44.79284],[-87.923588,44.784361],[-87.925845,44.780301],[-87.926816,44.778555],[-87.941453,44.75608],[-87.95156,44.753107],[-87.956849,44.749272],[-87.964714,44.74357],[-87.972654,44.733687],[-87.983065,44.72073],[-87.983494,44.720196],[-87.983941,44.717781],[-87.98395,44.717735],[-87.984094,44.716955],[-87.984247,44.716129],[-87.984401,44.715298],[-87.986055,44.70636],[-87.986134,44.705936],[-87.987296,44.699657],[-87.987417,44.699005],[-87.988667,44.692255],[-87.98925,44.689107],[-87.989344,44.688598],[-87.989376,44.688424],[-87.98947,44.687918],[-87.989717,44.686582],[-87.989912,44.677587],[-87.990081,44.669791],[-87.99011,44.668455],[-87.998964,44.665187],[-88.000321,44.664686],[-88.002085,44.664035],[-88.002254,44.663442],[-88.002677,44.661956],[-88.00334,44.65963],[-88.007287,44.645779],[-88.009766,44.637081],[-88.009523,44.631711],[-88.009486,44.630897],[-88.009472,44.630594],[-88.009463,44.630398],[-88.008717,44.628932],[-88.007489,44.626521],[-88.007158,44.625871],[-88.007013,44.625586],[-88.006871,44.625306],[-88.006409,44.624399],[-88.001172,44.614112],[-87.998836,44.609523],[-87.998716,44.609288],[-88.001943,44.603909],[-88.012395,44.602438],[-88.014735,44.5964],[-88.015092,44.595478],[-88.016373,44.592172],[-88.016404,44.592092],[-88.019465,44.588344],[-88.022853,44.584196],[-88.027103,44.578992],[-88.028148,44.578736],[-88.034535,44.577175],[-88.036103,44.576792],[-88.036104,44.576791],[-88.039092,44.574324],[-88.039489,44.573995],[-88.041162,44.572614],[-88.041202,44.572581],[-88.041358,44.571809],[-88.041485,44.571183],[-88.041561,44.570804],[-88.041659,44.57032],[-88.041775,44.569746],[-88.042261,44.567344],[-88.042414,44.566589],[-88.037178,44.562705],[-88.020707,44.550484],[-88.016709,44.547518],[-88.005518,44.539216],[-88.000099,44.537827],[-87.999002,44.537546],[-87.998536,44.537426],[-87.990985,44.535491],[-87.990468,44.535358],[-87.986059,44.534228],[-87.982821,44.533398],[-87.977901,44.532137],[-87.970702,44.530292],[-87.943801,44.529693],[-87.939972,44.531323],[-87.935707,44.533138],[-87.929001,44.535993],[-87.924044,44.540991],[-87.917467,44.547622],[-87.917,44.548093],[-87.915846,44.549612],[-87.901206,44.568887],[-87.901178,44.568924],[-87.901177,44.568925],[-87.900668,44.570084],[-87.899368,44.573043],[-87.898907,44.574091],[-87.898888,44.574135],[-87.899183,44.574576],[-87.900198,44.576095],[-87.900634,44.576747],[-87.901061,44.577386],[-87.901236,44.577648],[-87.903689,44.581317],[-87.902319,44.583079],[-87.901179,44.584545],[-87.896412,44.58678],[-87.894356,44.587745],[-87.891727,44.588977],[-87.891717,44.588982],[-87.890868,44.589647],[-87.88741,44.592356],[-87.867941,44.607606],[-87.866884,44.608434],[-87.842164,44.618826],[-87.837416,44.620822],[-87.836101,44.621375],[-87.830848,44.623583],[-87.829229,44.624521],[-87.823444,44.62787],[-87.820083,44.629816],[-87.809076,44.636189],[-87.808819,44.636338],[-87.808366,44.636378],[-87.78824,44.638137],[-87.77516,44.639281],[-87.765774,44.642023],[-87.762912,44.64411],[-87.762376,44.644501],[-87.756048,44.649117],[-87.756031,44.649129],[-87.750899,44.656192],[-87.74909,44.664131],[-87.748409,44.667122],[-87.736058,44.677025],[-87.733701,44.678916],[-87.729836,44.682015],[-87.71978,44.693246],[-87.718413,44.707765],[-87.718409,44.707811],[-87.718427,44.70787],[-87.720248,44.713833],[-87.720599,44.714984],[-87.721816,44.718969],[-87.721252,44.722361],[-87.721059,44.723522],[-87.720889,44.724548],[-87.720312,44.725073],[-87.714401,44.730449],[-87.705852,44.738225],[-87.705733,44.738364],[-87.704653,44.73963],[-87.703557,44.740914],[-87.701022,44.743882],[-87.700778,44.744169],[-87.700539,44.744448],[-87.698653,44.746657],[-87.698584,44.746738],[-87.698246,44.747133],[-87.698167,44.747226],[-87.688207,44.758892],[-87.687497,44.759567],[-87.679709,44.766973],[-87.678368,44.768247],[-87.677995,44.768602],[-87.662056,44.783758],[-87.647764,44.797347],[-87.6463,44.798739],[-87.645229,44.800466],[-87.644646,44.801407],[-87.644637,44.801423],[-87.644545,44.801571],[-87.637104,44.813575],[-87.635416,44.815124],[-87.635265,44.815263],[-87.634476,44.815986],[-87.63439,44.816065],[-87.634381,44.816073],[-87.634059,44.816369],[-87.633418,44.816956],[-87.632977,44.817361],[-87.632892,44.817439],[-87.632699,44.817616],[-87.622014,44.827419],[-87.616384,44.832585],[-87.616242,44.832715],[-87.611852,44.836743],[-87.611118,44.837416],[-87.610245,44.838217],[-87.610063,44.838384],[-87.610018,44.838405],[-87.609784,44.838514],[-87.581635,44.851638],[-87.581306,44.851791],[-87.573175,44.853118],[-87.570851,44.852932],[-87.560183,44.85208],[-87.550288,44.85129],[-87.550003,44.851381],[-87.534723,44.85625],[-87.530999,44.857437],[-87.530794,44.857594],[-87.515142,44.869596],[-87.51459,44.86938],[-87.513775,44.869061],[-87.513413,44.868919],[-87.512129,44.868416],[-87.504868,44.865573],[-87.504405,44.865392],[-87.504303,44.865352],[-87.502431,44.864619],[-87.501578,44.864285],[-87.499063,44.864207],[-87.478489,44.863572],[-87.472639,44.86769],[-87.456688,44.878918],[-87.441339,44.889723],[-87.437084,44.892718],[-87.433128,44.892741],[-87.433005,44.892691],[-87.428144,44.890738],[-87.421007,44.887869],[-87.420327,44.887596],[-87.419106,44.885378],[-87.419114,44.885285],[-87.419135,44.885052],[-87.419951,44.87594],[-87.419253,44.87496],[-87.410919,44.863259],[-87.410015,44.86199],[-87.408779,44.861453],[-87.405658,44.860098]]],[[[-86.880572,45.331467],[-86.887802,45.332259],[-86.895055,45.329035],[-86.899488,45.322588],[-86.896667,45.307275],[-86.896922,45.298521],[-86.896928,45.2983],[-86.899891,45.295185],[-86.900636,45.295431],[-86.901602,45.29575],[-86.904362,45.296662],[-86.904898,45.296839],[-86.913995,45.31211],[-86.925681,45.3242],[-86.937368,45.333065],[-86.940715,45.333762],[-86.94107,45.333836],[-86.946796,45.335027],[-86.946943,45.335058],[-86.948087,45.335296],[-86.95155,45.338298],[-86.95499,45.34128],[-86.955456,45.341684],[-86.955577,45.341788],[-86.955691,45.341888],[-86.956054,45.342202],[-86.956129,45.342267],[-86.95614,45.343785],[-86.956192,45.351179],[-86.956198,45.352006],[-86.954435,45.353706],[-86.953389,45.354715],[-86.95336,45.35472],[-86.948272,45.355682],[-86.946297,45.35869],[-86.946475,45.359826],[-86.946503,45.360004],[-86.946791,45.361845],[-86.947142,45.364085],[-86.94751,45.366434],[-86.947604,45.366645],[-86.947684,45.366825],[-86.948731,45.369178],[-86.948743,45.369205],[-86.948803,45.369338],[-86.95497,45.383194],[-86.955204,45.383721],[-86.954329,45.385989],[-86.953773,45.38743],[-86.951866,45.392373],[-86.951176,45.394162],[-86.947346,45.40409],[-86.947074,45.404796],[-86.946837,45.40541],[-86.945964,45.407673],[-86.943041,45.41525],[-86.942901,45.415392],[-86.941237,45.417075],[-86.937393,45.420966],[-86.936224,45.421035],[-86.934724,45.421123],[-86.934276,45.421149],[-86.934091,45.420972],[-86.930511,45.417536],[-86.929028,45.41377],[-86.928246,45.411784],[-86.928045,45.411273],[-86.927768,45.411183],[-86.917686,45.40789],[-86.914004,45.408052],[-86.909743,45.408239],[-86.902739,45.408547],[-86.898049,45.408753],[-86.892893,45.40898],[-86.883364,45.412076],[-86.880629,45.412965],[-86.877502,45.413981],[-86.865002,45.412489],[-86.862174,45.412151],[-86.861472,45.412067],[-86.861317,45.411946],[-86.859922,45.410853],[-86.855993,45.407777],[-86.853145,45.405547],[-86.853082,45.405562],[-86.830353,45.410852],[-86.830331,45.410955],[-86.829741,45.413705],[-86.829352,45.415516],[-86.829143,45.41649],[-86.829905,45.420623],[-86.830123,45.421805],[-86.830175,45.422092],[-86.8309,45.426023],[-86.830755,45.426186],[-86.828731,45.428461],[-86.828661,45.428539],[-86.828071,45.428459],[-86.82177,45.427602],[-86.817069,45.426963],[-86.816741,45.42676],[-86.81551,45.425998],[-86.810055,45.422619],[-86.80991,45.422283],[-86.805978,45.413159],[-86.805868,45.412903],[-86.805843,45.412592],[-86.805767,45.411661],[-86.805652,45.410247],[-86.805415,45.407324],[-86.808303,45.406067],[-86.808658,45.406143],[-86.814956,45.407483],[-86.815881,45.40768],[-86.817148,45.40795],[-86.818073,45.408147],[-86.81954,45.407679],[-86.822083,45.406868],[-86.824383,45.406135],[-86.82473,45.405798],[-86.837482,45.393432],[-86.841432,45.389601],[-86.853103,45.370861],[-86.853182,45.370816],[-86.857308,45.36846],[-86.858384,45.367846],[-86.863367,45.365],[-86.863563,45.364888],[-86.8636,45.364783],[-86.863694,45.364518],[-86.863719,45.364446],[-86.864314,45.362764],[-86.867743,45.353065],[-86.86771,45.35289],[-86.866244,45.344992],[-86.866126,45.344356],[-86.865528,45.341136],[-86.865499,45.340981],[-86.865634,45.340686],[-86.866054,45.339765],[-86.869031,45.333244],[-86.869041,45.333223],[-86.86951,45.333041],[-86.872296,45.331962],[-86.874685,45.331037],[-86.874761,45.331008],[-86.875117,45.33087],[-86.879361,45.331335],[-86.880572,45.331467]]]]}}]} diff --git a/Where/RegionKit/Sources/Resources/regions/us-WV.geojson b/Where/RegionKit/Sources/Resources/regions/us-WV.geojson new file mode 100644 index 00000000..dd93c5eb --- /dev/null +++ b/Where/RegionKit/Sources/Resources/regions/us-WV.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"region":"us-WV","name":"West Virginia"},"geometry":{"type":"Polygon","coordinates":[[[-80.075947,39.72135],[-79.916171,39.720893],[-79.853131,39.720713],[-79.852904,39.720713],[-79.763774,39.720776],[-79.610623,39.721245],[-79.608223,39.721154],[-79.548465,39.720778],[-79.476662,39.721078],[-79.476574,39.644206],[-79.476968,39.642986],[-79.477764,39.642282],[-79.478866,39.531689],[-79.482366,39.531689],[-79.482354,39.524682],[-79.482648,39.521364],[-79.484372,39.3443],[-79.486072,39.3443],[-79.486812,39.296367],[-79.487651,39.279933],[-79.486737,39.278149],[-79.487274,39.265205],[-79.486179,39.26497],[-79.485874,39.264905],[-79.486873,39.205961],[-79.486862,39.205959],[-79.476037,39.203728],[-79.469156,39.2073],[-79.452685,39.211719],[-79.43983,39.217074],[-79.424413,39.228171],[-79.425059,39.233686],[-79.42035,39.23888],[-79.412051,39.240546],[-79.387023,39.26554],[-79.376154,39.273154],[-79.361343,39.274924],[-79.35375,39.278039],[-79.343801,39.286096],[-79.343625,39.287148],[-79.345599,39.289733],[-79.344344,39.293534],[-79.33238,39.299919],[-79.314768,39.304381],[-79.302311,39.299554],[-79.29271,39.298729],[-79.290236,39.299323],[-79.283723,39.30964],[-79.282037,39.323048],[-79.27228,39.328964],[-79.269365,39.330732],[-79.255306,39.335874],[-79.253891,39.337222],[-79.253928,39.354085],[-79.25227,39.356663],[-79.235878,39.358689],[-79.229247,39.363662],[-79.220357,39.363157],[-79.213961,39.36532],[-79.202943,39.377872],[-79.197937,39.386132],[-79.195543,39.38779],[-79.193332,39.387974],[-79.189465,39.3865],[-79.179335,39.388342],[-79.176977,39.39213],[-79.1746,39.392756],[-79.170494,39.392026],[-79.16722,39.393256],[-79.165593,39.397134],[-79.166497,39.400888],[-79.16134,39.411895],[-79.159213,39.413021],[-79.157212,39.413021],[-79.153584,39.41202],[-79.151583,39.408768],[-79.149581,39.407767],[-79.147455,39.407767],[-79.145453,39.407767],[-79.143827,39.408517],[-79.142701,39.410519],[-79.14195,39.414272],[-79.140699,39.416649],[-79.136696,39.417649],[-79.132193,39.418275],[-79.129816,39.419901],[-79.128941,39.423279],[-79.129404,39.426637],[-79.129047,39.429542],[-79.124036,39.433204],[-79.12156,39.432786],[-79.119433,39.433161],[-79.117932,39.434412],[-79.116932,39.435788],[-79.116574,39.438058],[-79.116369,39.440482],[-79.11407,39.443321],[-79.107933,39.445748],[-79.104217,39.448358],[-79.095428,39.462548],[-79.096154,39.465542],[-79.09824,39.468445],[-79.099057,39.470259],[-79.098875,39.471438],[-79.098059,39.472073],[-79.096517,39.472799],[-79.094702,39.473253],[-79.091329,39.472407],[-79.08327,39.471379],[-79.068627,39.474515],[-79.056583,39.471014],[-79.054989,39.473096],[-79.05388,39.480094],[-79.052447,39.482315],[-79.050528,39.483299],[-79.046276,39.483801],[-79.036915,39.476795],[-79.035623,39.473344],[-79.035712,39.471331],[-79.033884,39.467761],[-79.030343,39.465403],[-79.028159,39.46506],[-79.020542,39.467002],[-79.017147,39.466977],[-79.010097,39.461048],[-78.99695,39.454961],[-78.978826,39.448678],[-78.970118,39.443327],[-78.967461,39.439804],[-78.965484,39.438455],[-78.956751,39.440264],[-78.955483,39.442277],[-78.953333,39.463645],[-78.946603,39.46614],[-78.941969,39.469959],[-78.938869,39.4741],[-78.939164,39.475267],[-78.941526,39.476869],[-78.942618,39.479614],[-78.942293,39.480987],[-78.938751,39.483732],[-78.933613,39.48618],[-78.926999,39.487003],[-78.918142,39.485858],[-78.916488,39.486544],[-78.908719,39.496699],[-78.895307,39.512085],[-78.891197,39.5189],[-78.885996,39.522581],[-78.879084,39.521205],[-78.87681,39.52125],[-78.874744,39.522611],[-78.868966,39.531366],[-78.868908,39.532487],[-78.851931,39.551848],[-78.851016,39.554044],[-78.851196,39.559924],[-78.838553,39.5673],[-78.830298,39.565355],[-78.826407,39.562589],[-78.821404,39.560616],[-78.816764,39.561691],[-78.813512,39.56772],[-78.815114,39.571351],[-78.820104,39.576287],[-78.82636,39.577333],[-78.826009,39.588829],[-78.824788,39.590233],[-78.818899,39.59037],[-78.812215,39.597717],[-78.812154,39.60054],[-78.809347,39.608063],[-78.801792,39.606812],[-78.800434,39.605232],[-78.79784,39.604897],[-78.795857,39.606934],[-78.795368,39.61071],[-78.795964,39.614205],[-78.801741,39.627488],[-78.795941,39.637287],[-78.790941,39.638287],[-78.784041,39.636687],[-78.781341,39.636787],[-78.775241,39.645687],[-78.76584,39.648487],[-78.76504,39.646087],[-78.76534,39.643987],[-78.76814,39.639287],[-78.77114,39.638387],[-78.77264,39.636887],[-78.778477,39.624405],[-78.778477,39.62265],[-78.777516,39.621712],[-78.769565,39.619431],[-78.763171,39.618897],[-78.756686,39.622971],[-78.748499,39.626262],[-78.74288,39.625088],[-78.736189,39.621708],[-78.733553,39.615533],[-78.733759,39.613931],[-78.73905,39.609697],[-78.747063,39.60569],[-78.749222,39.606536],[-78.74935,39.608572],[-78.751514,39.609947],[-78.760497,39.609984],[-78.768115,39.608704],[-78.77686,39.604027],[-78.778096,39.602097],[-78.778141,39.601364],[-78.774281,39.597328],[-78.772128,39.596497],[-78.770511,39.594994],[-78.768481,39.591583],[-78.768314,39.589394],[-78.76749,39.587487],[-78.760196,39.582154],[-78.756747,39.58069],[-78.746421,39.579544],[-78.743318,39.580712],[-78.740246,39.585655],[-78.738502,39.586319],[-78.733979,39.586618],[-78.733149,39.58369],[-78.731992,39.575364],[-78.726342,39.567587],[-78.72501,39.563973],[-78.714784,39.562558],[-78.713335,39.562032],[-78.708664,39.556795],[-78.707098,39.555857],[-78.694626,39.553251],[-78.692824,39.55197],[-78.691996,39.55078],[-78.691494,39.547646],[-78.689455,39.54577],[-78.682423,39.543848],[-78.675629,39.540371],[-78.668745,39.540164],[-78.66399,39.536778],[-78.657417,39.535068],[-78.655984,39.534695],[-78.630842,39.537109],[-78.628744,39.537863],[-78.628566,39.53919],[-78.623037,39.539512],[-78.614526,39.537595],[-78.606873,39.535082],[-78.605868,39.534304],[-78.600511,39.533434],[-78.597659,39.53505],[-78.595603,39.535483],[-78.593871,39.535158],[-78.593114,39.534401],[-78.592131,39.531816],[-78.590654,39.530192],[-78.587079,39.52802],[-78.578956,39.526695],[-78.572692,39.522372],[-78.567937,39.519902],[-78.565929,39.519444],[-78.557127,39.521526],[-78.552756,39.521388],[-78.550128,39.520702],[-78.546584,39.520998],[-78.527886,39.524654],[-78.521388,39.52479],[-78.513622,39.522545],[-78.5032,39.518652],[-78.499017,39.518906],[-78.489742,39.517789],[-78.485697,39.519392],[-78.484044,39.519507],[-78.480677,39.51896],[-78.474178,39.51624],[-78.471166,39.516103],[-78.468639,39.516789],[-78.462899,39.52084],[-78.460951,39.525987],[-78.461071,39.529304],[-78.461911,39.532971],[-78.461291,39.534678],[-78.459274,39.535919],[-78.45105,39.536695],[-78.449499,39.538092],[-78.449654,39.539643],[-78.449964,39.54104],[-78.449499,39.542281],[-78.447171,39.543367],[-78.445309,39.543367],[-78.441961,39.541223],[-78.438357,39.538753],[-78.436378,39.539302],[-78.435107,39.541658],[-78.434759,39.543988],[-78.434759,39.54678],[-78.433828,39.548953],[-78.430414,39.549418],[-78.426953,39.546598],[-78.424053,39.546315],[-78.421105,39.54678],[-78.419398,39.547401],[-78.418777,39.548953],[-78.420019,39.551745],[-78.423287,39.556319],[-78.426537,39.559155],[-78.438179,39.563524],[-78.450207,39.570889],[-78.454376,39.574319],[-78.458338,39.580426],[-78.458052,39.585241],[-78.457187,39.587379],[-78.454527,39.588958],[-78.451186,39.590193],[-78.445983,39.591223],[-78.443175,39.591155],[-78.428246,39.586717],[-78.422985,39.584109],[-78.420059,39.581706],[-78.41867,39.581111],[-78.408031,39.578593],[-78.400936,39.580214],[-78.397446,39.581952],[-78.395317,39.584215],[-78.395463,39.587372],[-78.397471,39.590232],[-78.402702,39.593596],[-78.41287,39.598311],[-78.420644,39.603183],[-78.425581,39.607599],[-78.431524,39.614484],[-78.433002,39.61652],[-78.433623,39.618259],[-78.433297,39.620569],[-78.43025,39.62329],[-78.425902,39.624548],[-78.420549,39.624021],[-78.41286,39.621091],[-78.395828,39.616076],[-78.390774,39.612117],[-78.383591,39.608912],[-78.378181,39.608178],[-78.374732,39.608635],[-78.3732,39.60953],[-78.372255,39.6112],[-78.372404,39.612297],[-78.379118,39.618127],[-78.382959,39.622246],[-78.383461,39.623321],[-78.383447,39.625091],[-78.382487,39.628216],[-78.380504,39.629359],[-78.373166,39.630459],[-78.367959,39.628929],[-78.366212,39.627534],[-78.362485,39.626049],[-78.358343,39.625581],[-78.35577,39.626258],[-78.353878,39.627722],[-78.353465,39.628912],[-78.353673,39.630787],[-78.355567,39.633463],[-78.358735,39.635589],[-78.359506,39.638081],[-78.358264,39.63966],[-78.355218,39.640576],[-78.351905,39.640486],[-78.33388,39.636486],[-78.331934,39.636054],[-78.313033,39.631001],[-78.308152,39.629606],[-78.283039,39.62047],[-78.271122,39.619642],[-78.266833,39.618818],[-78.265088,39.619274],[-78.263371,39.621675],[-78.263344,39.626417],[-78.262189,39.630464],[-78.254077,39.640089],[-78.246722,39.644758],[-78.238059,39.652081],[-78.227677,39.656796],[-78.225075,39.658878],[-78.223597,39.661097],[-78.223864,39.662607],[-78.233012,39.670471],[-78.233138,39.672875],[-78.231564,39.674382],[-78.227333,39.676121],[-78.206763,39.67599],[-78.202945,39.676653],[-78.201081,39.677866],[-78.196701,39.682074],[-78.192439,39.689118],[-78.191107,39.690262],[-78.182759,39.69511],[-78.176625,39.695967],[-78.171361,39.695612],[-78.162126,39.693643],[-78.154164,39.690531],[-78.143478,39.690412],[-78.135221,39.688305],[-78.132706,39.686977],[-78.123939,39.685652],[-78.11183,39.682593],[-78.107834,39.682137],[-78.101737,39.680286],[-78.097118,39.678161],[-78.089835,39.671668],[-78.088592,39.671211],[-78.08226,39.671166],[-78.077525,39.66888],[-78.074595,39.666686],[-78.068291,39.66106],[-78.051932,39.648207],[-78.04995,39.645349],[-78.047672,39.643107],[-78.03886,39.638121],[-78.035992,39.63572],[-78.03014,39.627462],[-78.023896,39.621697],[-78.022402,39.6196],[-78.011343,39.604083],[-78.009985,39.602893],[-78.006734,39.601337],[-78.00233,39.600488],[-77.991437,39.600194],[-77.984815,39.59942],[-77.976686,39.599744],[-77.973967,39.601071],[-77.97015,39.605091],[-77.966223,39.607435],[-77.962092,39.608702],[-77.957642,39.608614],[-77.952104,39.606358],[-77.950599,39.603944],[-77.950916,39.601163],[-77.952152,39.597272],[-77.951955,39.592709],[-77.949836,39.58711],[-77.946182,39.584814],[-77.94215,39.584933],[-77.93905,39.587139],[-77.936371,39.594508],[-77.93545,39.608076],[-77.938362,39.61258],[-77.944133,39.614617],[-77.944622,39.616772],[-77.94194,39.61879],[-77.937492,39.61915],[-77.932862,39.617676],[-77.928738,39.613908],[-77.925988,39.607642],[-77.923298,39.604852],[-77.916836,39.602942],[-77.91641,39.602816],[-77.888477,39.597343],[-77.885077,39.597937],[-77.882977,39.598828],[-77.881823,39.600039],[-77.880993,39.602852],[-77.88111,39.606214],[-77.881936,39.608112],[-77.886959,39.613329],[-77.887017,39.614518],[-77.885124,39.615775],[-77.874718,39.614293],[-77.868679,39.611138],[-77.8578,39.60788],[-77.853436,39.607117],[-77.842785,39.607255],[-77.838008,39.606125],[-77.833568,39.602936],[-77.831813,39.601105],[-77.829753,39.59105],[-77.829814,39.587288],[-77.830775,39.581178],[-77.833217,39.571016],[-77.83633,39.56637],[-77.842174,39.564333],[-77.855847,39.564607],[-77.865734,39.563547],[-77.872723,39.563895],[-77.878451,39.563493],[-77.886135,39.560432],[-77.887968,39.559198],[-77.888648,39.558054],[-77.888945,39.55595],[-77.886436,39.551947],[-77.87153,39.544278],[-77.865351,39.538381],[-77.864434,39.536483],[-77.864315,39.534813],[-77.865078,39.528226],[-77.866138,39.524727],[-77.866518,39.520039],[-77.866132,39.517661],[-77.86368,39.515032],[-77.860195,39.514325],[-77.850747,39.515403],[-77.84192,39.51847],[-77.840651,39.520941],[-77.840536,39.529196],[-77.839061,39.531117],[-77.836935,39.53217],[-77.833509,39.532628],[-77.827188,39.530458],[-77.825357,39.529177],[-77.823762,39.525907],[-77.823555,39.524077],[-77.82565,39.516895],[-77.829045,39.514425],[-77.845103,39.505845],[-77.847611,39.503351],[-77.848112,39.502093],[-77.847639,39.500698],[-77.845666,39.498628],[-77.831909,39.494744],[-77.825499,39.494258],[-77.820781,39.4939],[-77.807821,39.490241],[-77.80183,39.489395],[-77.795631,39.489623],[-77.791765,39.490789],[-77.789757,39.492207],[-77.786539,39.496598],[-77.784442,39.498061],[-77.781608,39.499067],[-77.774374,39.4995],[-77.77095,39.499087],[-77.768442,39.497783],[-77.765993,39.495724],[-77.765403,39.494397],[-77.765551,39.493025],[-77.767087,39.491333],[-77.769125,39.490281],[-77.771723,39.489207],[-77.78176,39.487128],[-77.788519,39.485048],[-77.795485,39.481824],[-77.796695,39.480498],[-77.797787,39.47876],[-77.798201,39.475719],[-77.796755,39.472448],[-77.795634,39.471259],[-77.789645,39.467827],[-77.778522,39.463663],[-77.777815,39.462816],[-77.777815,39.461924],[-77.779202,39.460392],[-77.780471,39.459867],[-77.783539,39.460073],[-77.793157,39.462042],[-77.796196,39.461722],[-77.798468,39.46067],[-77.799294,39.458383],[-77.798144,39.455981],[-77.7931,39.451406],[-77.78611,39.447197],[-77.78558,39.445367],[-77.786052,39.444224],[-77.78856,39.442829],[-77.80086,39.440841],[-77.802866,39.439285],[-77.803249,39.437136],[-77.802542,39.435969],[-77.798855,39.433339],[-77.792751,39.430593],[-77.787266,39.429335],[-77.77485,39.427845],[-77.763319,39.428436],[-77.75872,39.42681],[-77.754681,39.424658],[-77.75309,39.423262],[-77.75268,39.420174],[-77.747478,39.41093],[-77.740012,39.401694],[-77.736409,39.392684],[-77.735905,39.389665],[-77.736317,39.387744],[-77.738084,39.386211],[-77.740765,39.385409],[-77.749715,39.384171],[-77.752209,39.383328],[-77.753389,39.382094],[-77.753804,39.379624],[-77.753274,39.37832],[-77.744144,39.365139],[-77.743874,39.359947],[-77.74593,39.353221],[-77.750387,39.34945],[-77.759315,39.345314],[-77.760435,39.344171],[-77.761084,39.342524],[-77.761115,39.339757],[-77.759615,39.337331],[-77.755789,39.333899],[-77.735009,39.327015],[-77.730914,39.324684],[-77.727379,39.321666],[-77.719029,39.321125],[-77.719946,39.319693],[-77.721638,39.318494],[-77.730047,39.315666],[-77.734899,39.312409],[-77.747287,39.295001],[-77.750267,39.289284],[-77.752726,39.283373],[-77.753357,39.280331],[-77.75306,39.277971],[-77.753105,39.27734],[-77.755193,39.275191],[-77.755698,39.274575],[-77.758412,39.269197],[-77.758733,39.268114],[-77.761217,39.263721],[-77.761768,39.263031],[-77.762844,39.258445],[-77.766525,39.25734],[-77.768,39.257657],[-77.768992,39.256417],[-77.770281,39.255977],[-77.770669,39.255262],[-77.770876,39.24976],[-77.770589,39.249393],[-77.767277,39.24938],[-77.771415,39.236776],[-77.778068,39.229305],[-77.781268,39.226909],[-77.78364,39.224081],[-77.788763,39.215243],[-77.793631,39.210125],[-77.794596,39.206299],[-77.79819,39.200658],[-77.798478,39.199574],[-77.797714,39.19424],[-77.797943,39.192826],[-77.804712,39.179419],[-77.804415,39.178045],[-77.805099,39.174222],[-77.805991,39.172421],[-77.809125,39.168567],[-77.811295,39.167563],[-77.813206,39.165023],[-77.818446,39.155279],[-77.821413,39.15241],[-77.822874,39.147755],[-77.82299,39.145451],[-77.82223,39.142734],[-77.822182,39.139985],[-77.828157,39.132329],[-78.032841,39.264403],[-78.033185,39.264621],[-78.033187,39.264622],[-78.108746,39.31246],[-78.14092,39.333745],[-78.158194,39.343392],[-78.18737,39.363989],[-78.205401,39.375099],[-78.228766,39.391233],[-78.262785,39.414323],[-78.28798,39.428755],[-78.347087,39.466012],[-78.349476,39.462205],[-78.345143,39.459484],[-78.345823,39.453499],[-78.346962,39.450679],[-78.347333,39.447659],[-78.346061,39.445613],[-78.346546,39.442616],[-78.347773,39.440583],[-78.353227,39.436792],[-78.347942,39.430879],[-78.346718,39.427618],[-78.348354,39.424431],[-78.351236,39.420595],[-78.356627,39.415902],[-78.359352,39.412534],[-78.359918,39.409028],[-78.357949,39.404192],[-78.349436,39.397252],[-78.350014,39.392861],[-78.343214,39.388807],[-78.354837,39.371616],[-78.362632,39.362888],[-78.366867,39.35929],[-78.362267,39.357784],[-78.348698,39.354744],[-78.34048,39.353492],[-78.338958,39.349889],[-78.339284,39.348605],[-78.341308,39.345555],[-78.342514,39.346769],[-78.343685,39.346713],[-78.347409,39.343402],[-78.347634,39.34272],[-78.34546,39.341024],[-78.346301,39.339108],[-78.35894,39.319484],[-78.360035,39.317771],[-78.361567,39.318037],[-78.364686,39.317312],[-78.367242,39.310148],[-78.371604,39.307692],[-78.374728,39.305136],[-78.385888,39.294888],[-78.387242,39.29343],[-78.387194,39.291444],[-78.388785,39.288572],[-78.393371,39.282988],[-78.398682,39.281332],[-78.402275,39.277238],[-78.401813,39.276754],[-78.402783,39.275471],[-78.414204,39.26391],[-78.419422,39.257476],[-78.418584,39.256065],[-78.41612,39.25541],[-78.414631,39.255733],[-78.409116,39.252564],[-78.399785,39.244129],[-78.399669,39.243874],[-78.404214,39.241214],[-78.40498,39.238006],[-78.405585,39.231176],[-78.41789,39.217504],[-78.423968,39.212049],[-78.427911,39.208611],[-78.429803,39.207014],[-78.431167,39.205744],[-78.43213,39.204717],[-78.437053,39.199766],[-78.438651,39.198049],[-78.436662,39.196658],[-78.430846,39.196227],[-78.424905,39.193301],[-78.424292,39.192156],[-78.428697,39.187217],[-78.426315,39.182762],[-78.411972,39.172734],[-78.406966,39.170903],[-78.403697,39.167451],[-78.412599,39.160038],[-78.413943,39.158415],[-78.427294,39.152726],[-78.436658,39.141691],[-78.437771,39.135426],[-78.439429,39.132146],[-78.459869,39.113351],[-78.466662,39.112858],[-78.46953,39.111204],[-78.470261,39.110063],[-78.473209,39.108143],[-78.475376,39.107469],[-78.47732,39.109398],[-78.478426,39.109843],[-78.484283,39.107372],[-78.49516,39.100992],[-78.495984,39.09898],[-78.504384,39.091398],[-78.508132,39.08863],[-78.512103,39.084878],[-78.516479,39.081802],[-78.515955,39.080046],[-78.516789,39.077569],[-78.522714,39.071062],[-78.526543,39.068221],[-78.531695,39.066519],[-78.540216,39.060631],[-78.544101,39.056663],[-78.545679,39.055052],[-78.547734,39.054069],[-78.554263,39.048058],[-78.556748,39.044527],[-78.559997,39.041573],[-78.571901,39.031995],[-78.565837,39.026303],[-78.565073,39.025935],[-78.563294,39.026328],[-78.55964,39.024456],[-78.55738,39.021393],[-78.550467,39.018065],[-78.552321,39.016374],[-78.554919,39.015124],[-78.5594,39.011877],[-78.561711,39.009007],[-78.570462,39.001552],[-78.580465,38.990567],[-78.581981,38.988398],[-78.582928,38.985416],[-78.588704,38.978579],[-78.593261,38.971918],[-78.596015,38.970192],[-78.598894,38.969546],[-78.601399,38.96653],[-78.601655,38.964603],[-78.608369,38.969743],[-78.611184,38.976134],[-78.614312,38.97585],[-78.618676,38.974082],[-78.619982,38.977338],[-78.619914,38.981288],[-78.620453,38.982601],[-78.625672,38.982575],[-78.629553,38.980866],[-78.630846,38.979586],[-78.632452,38.976983],[-78.632471,38.974739],[-78.638423,38.966819],[-78.646589,38.968138],[-78.652352,38.960677],[-78.655043,38.953766],[-78.65905,38.947375],[-78.662083,38.945702],[-78.665886,38.941579],[-78.666594,38.9392],[-78.670679,38.9338],[-78.680456,38.925313],[-78.681617,38.92584],[-78.688266,38.92478],[-78.69145,38.922195],[-78.69738,38.915602],[-78.704323,38.915231],[-78.712622,38.908665],[-78.716168,38.90483],[-78.717178,38.904296],[-78.718647,38.904561],[-78.71981,38.905907],[-78.7209,38.909844],[-78.719451,38.92026],[-78.719755,38.922135],[-78.719806,38.922638],[-78.720095,38.923863],[-78.71962,38.92651],[-78.717076,38.936028],[-78.718482,38.934267],[-78.722451,38.931405],[-78.724062,38.930846],[-78.726222,38.930932],[-78.738921,38.927283],[-78.750517,38.916029],[-78.754658,38.907582],[-78.754516,38.905728],[-78.757278,38.903203],[-78.759085,38.900529],[-78.772793,38.893742],[-78.779198,38.892298],[-78.786025,38.887187],[-78.788031,38.885123],[-78.790078,38.880076],[-78.79161,38.877593],[-78.796213,38.874606],[-78.808181,38.856175],[-78.810943,38.849616],[-78.815116,38.841594],[-78.821167,38.830982],[-78.827262,38.82161],[-78.832267,38.814388],[-78.835191,38.811499],[-78.848187,38.794978],[-78.863684,38.7718],[-78.865905,38.767034],[-78.869276,38.762991],[-78.993997,38.850102],[-78.998171,38.847353],[-79.000252,38.845412],[-78.998863,38.840962],[-78.999014,38.840074],[-79.002352,38.836512],[-79.005152,38.829912],[-79.006352,38.826112],[-79.006152,38.824512],[-79.006552,38.823712],[-79.007952,38.822312],[-79.011952,38.820412],[-79.016752,38.820012],[-79.019553,38.817912],[-79.024053,38.809212],[-79.024453,38.803712],[-79.023453,38.802612],[-79.023053,38.798613],[-79.027253,38.792113],[-79.029253,38.791013],[-79.033153,38.791013],[-79.046554,38.792113],[-79.048954,38.790713],[-79.054954,38.785713],[-79.055654,38.783013],[-79.054354,38.780613],[-79.052454,38.779213],[-79.051654,38.778013],[-79.051254,38.773913],[-79.051554,38.772613],[-79.053754,38.772313],[-79.055654,38.770913],[-79.056754,38.766513],[-79.057253,38.761413],[-79.057554,38.760213],[-79.060954,38.756713],[-79.064854,38.754413],[-79.072555,38.747513],[-79.072755,38.744614],[-79.073855,38.742114],[-79.076555,38.739214],[-79.079655,38.734714],[-79.081955,38.729714],[-79.085455,38.724614],[-79.087255,38.720114],[-79.086555,38.716015],[-79.092755,38.702315],[-79.092555,38.700149],[-79.092271,38.699208],[-79.090755,38.692515],[-79.088055,38.690115],[-79.085555,38.688816],[-79.084355,38.686516],[-79.087855,38.673816],[-79.091055,38.669316],[-79.092755,38.662816],[-79.092955,38.659517],[-79.106356,38.656217],[-79.111556,38.659717],[-79.120256,38.660216],[-79.122256,38.659817],[-79.129757,38.655017],[-79.131057,38.653217],[-79.133557,38.646017],[-79.135472,38.644057],[-79.135546,38.643715],[-79.136374,38.6424],[-79.137012,38.640655],[-79.137557,38.638017],[-79.139657,38.637217],[-79.142657,38.634417],[-79.146741,38.625819],[-79.146974,38.625641],[-79.151257,38.620618],[-79.155355,38.611225],[-79.155557,38.609218],[-79.154357,38.606518],[-79.159158,38.601219],[-79.158957,38.594519],[-79.158257,38.593919],[-79.158657,38.592319],[-79.163458,38.583119],[-79.168058,38.578619],[-79.170858,38.574119],[-79.171658,38.57162],[-79.170658,38.56922],[-79.170958,38.56812],[-79.174512,38.566531],[-79.174881,38.566314],[-79.176658,38.56552],[-79.180858,38.55992],[-79.184058,38.55152],[-79.188958,38.54742],[-79.193458,38.542421],[-79.196959,38.536721],[-79.201459,38.527821],[-79.205859,38.524521],[-79.210959,38.507422],[-79.206959,38.503522],[-79.207884,38.500428],[-79.207873,38.500122],[-79.209703,38.495574],[-79.210008,38.494283],[-79.210026,38.494231],[-79.210591,38.492913],[-79.215212,38.489261],[-79.219067,38.487441],[-79.221406,38.484837],[-79.220961,38.48059],[-79.224192,38.477763],[-79.225669,38.476471],[-79.23162,38.474041],[-79.234408,38.473011],[-79.240059,38.469841],[-79.242024,38.464332],[-79.241854,38.457055],[-79.242641,38.454168],[-79.247342,38.453294],[-79.253067,38.455818],[-79.254435,38.455949],[-79.261107,38.448082],[-79.26291,38.444586],[-79.263376,38.443762],[-79.265327,38.441772],[-79.267414,38.438322],[-79.272064,38.437376],[-79.274529,38.436337],[-79.282225,38.432078],[-79.282762,38.431647],[-79.282663,38.431021],[-79.28247,38.429168],[-79.280581,38.426833],[-79.280263,38.425475],[-79.279678,38.424173],[-79.280149,38.42076],[-79.282971,38.418095],[-79.285613,38.419249],[-79.286874,38.420555],[-79.288432,38.42096],[-79.290529,38.420757],[-79.291813,38.419627],[-79.295712,38.418129],[-79.297758,38.416438],[-79.300081,38.414888],[-79.312276,38.411876],[-79.370302,38.427244],[-79.476638,38.457228],[-79.499768,38.49772],[-79.521469,38.533918],[-79.53187,38.542817],[-79.53317,38.544717],[-79.53337,38.546217],[-79.53687,38.550917],[-79.53827,38.551817],[-79.54257,38.553217],[-79.555471,38.560217],[-79.566271,38.562517],[-79.571771,38.563117],[-79.649075,38.591515],[-79.656109,38.5762],[-79.658175,38.573016],[-79.659375,38.572616],[-79.661575,38.567316],[-79.660675,38.566216],[-79.659275,38.562416],[-79.662575,38.560516],[-79.665075,38.560916],[-79.669275,38.549516],[-79.669675,38.543416],[-79.666874,38.538317],[-79.668774,38.534217],[-79.672974,38.528717],[-79.671574,38.527517],[-79.669774,38.526917],[-79.666774,38.524317],[-79.662974,38.518717],[-79.662074,38.515517],[-79.663474,38.514117],[-79.665674,38.513817],[-79.667574,38.512917],[-79.668774,38.512017],[-79.669128,38.510975],[-79.669128,38.510883],[-79.670474,38.507717],[-79.674074,38.510417],[-79.680374,38.510617],[-79.681574,38.508217],[-79.681606,38.504504],[-79.682974,38.501317],[-79.688345,38.496183],[-79.691301,38.496768],[-79.692273,38.496474],[-79.694506,38.494232],[-79.697572,38.487223],[-79.696959,38.484574],[-79.695462,38.481454],[-79.693424,38.481011],[-79.69418,38.478311],[-79.695565,38.477842],[-79.699006,38.475148],[-79.699622,38.473967],[-79.698929,38.469869],[-79.695588,38.469058],[-79.691088,38.463744],[-79.688882,38.458714],[-79.688365,38.45687],[-79.688205,38.450476],[-79.688962,38.449538],[-79.691478,38.446282],[-79.689544,38.442511],[-79.691377,38.439558],[-79.691656,38.436436],[-79.69093,38.433995],[-79.689909,38.432864],[-79.689675,38.431439],[-79.706634,38.41573],[-79.70914,38.412064],[-79.708965,38.409553],[-79.712904,38.405034],[-79.717365,38.401562],[-79.722653,38.389517],[-79.72635,38.38707],[-79.729895,38.380351],[-79.731698,38.373376],[-79.730494,38.372217],[-79.727676,38.371701],[-79.72679,38.370832],[-79.725804,38.366128],[-79.725597,38.363828],[-79.725973,38.363229],[-79.727053,38.362233],[-79.729344,38.36183],[-79.732059,38.360168],[-79.7346,38.356728],[-79.740615,38.354101],[-79.744105,38.353968],[-79.75556,38.357372],[-79.757626,38.357566],[-79.764432,38.356514],[-79.767263,38.353395],[-79.766403,38.350873],[-79.769906,38.341843],[-79.77309,38.335529],[-79.779272,38.331609],[-79.785972,38.330878],[-79.79655,38.32348],[-79.798159,38.319161],[-79.799617,38.317149],[-79.804093,38.313922],[-79.808711,38.309429],[-79.810154,38.306707],[-79.810115,38.305037],[-79.807542,38.301694],[-79.804026,38.298622],[-79.803346,38.296682],[-79.802778,38.292073],[-79.797848,38.292053],[-79.795448,38.290228],[-79.789791,38.281167],[-79.787542,38.273298],[-79.788945,38.268703],[-79.790134,38.267654],[-79.7961,38.266413],[-79.798295,38.265957],[-79.801274,38.261474],[-79.806333,38.259193],[-79.811987,38.260401],[-79.814202,38.258174],[-79.815708,38.255065],[-79.815719,38.253645],[-79.814865,38.251568],[-79.817149,38.249511],[-79.819623,38.248234],[-79.82101,38.248277],[-79.825283,38.250488],[-79.830882,38.249687],[-79.832971,38.247553],[-79.834031,38.244957],[-79.834171,38.242899],[-79.835124,38.241892],[-79.837494,38.241276],[-79.842981,38.241594],[-79.845207,38.241082],[-79.846445,38.240003],[-79.850324,38.233329],[-79.856962,38.231075],[-79.863625,38.223945],[-79.879087,38.211016],[-79.884234,38.207868],[-79.886413,38.207953],[-79.888045,38.20736],[-79.891591,38.204652],[-79.891999,38.203378],[-79.892345,38.202397],[-79.892916,38.199868],[-79.898426,38.193045],[-79.90609,38.188999],[-79.910961,38.18792],[-79.91441,38.188418],[-79.916344,38.186278],[-79.916174,38.184386],[-79.917061,38.183741],[-79.921196,38.180378],[-79.921026,38.179954],[-79.916622,38.177994],[-79.916765,38.175504],[-79.918629,38.172671],[-79.918913,38.170439],[-79.917924,38.168399],[-79.916072,38.168428],[-79.915065,38.168088],[-79.914884,38.167524],[-79.918662,38.15479],[-79.923125,38.150874],[-79.925251,38.150465],[-79.925512,38.150237],[-79.928683,38.144928],[-79.928747,38.144436],[-79.929031,38.139771],[-79.933751,38.135508],[-79.942747,38.134333],[-79.944843,38.131585],[-79.938952,38.111619],[-79.938051,38.110759],[-79.934364,38.109718],[-79.929687,38.109197],[-79.92633,38.107151],[-79.927645,38.104826],[-79.931034,38.101402],[-79.933911,38.099168],[-79.93425,38.097669],[-79.935101,38.096541],[-79.938274,38.094741],[-79.942364,38.091588],[-79.949113,38.084238],[-79.953509,38.081484],[-79.954369,38.080397],[-79.960093,38.068677],[-79.959844,38.063697],[-79.968189,38.047709],[-79.971231,38.044326],[-79.973895,38.040004],[-79.973777,38.038744],[-79.972165,38.036102],[-79.973701,38.032556],[-79.975269,38.030075],[-79.976732,38.029278],[-79.978427,38.029082],[-79.98029,38.027596],[-79.985619,38.01916],[-79.985792,38.018089],[-79.984842,38.01661],[-79.986142,38.014182],[-79.990114,38.013246],[-79.994985,38.007853],[-79.995901,38.005791],[-79.995398,38.003309],[-79.996134,38.000996],[-79.999384,37.995842],[-80.002507,37.992767],[-80.008888,37.99083],[-80.012193,37.988633],[-80.012891,37.987443],[-80.012555,37.985999],[-80.013145,37.984253],[-80.024168,37.976907],[-80.036236,37.96792],[-80.04841,37.957481],[-80.051043,37.956852],[-80.056329,37.952274],[-80.056839,37.951833],[-80.063682,37.947968],[-80.066569,37.947171],[-80.074514,37.942221],[-80.075441,37.939629],[-80.080823,37.935526],[-80.086954,37.929547],[-80.096563,37.918112],[-80.102931,37.918911],[-80.106819,37.914698],[-80.116884,37.906292],[-80.118967,37.903614],[-80.119106,37.902018],[-80.11748,37.900581],[-80.117747,37.89772],[-80.120613,37.896735],[-80.123021,37.898046],[-80.12362,37.897943],[-80.129555,37.894134],[-80.130464,37.893194],[-80.13104,37.890697],[-80.131931,37.8895],[-80.141947,37.882616],[-80.14613,37.884453],[-80.147316,37.885936],[-80.148951,37.886892],[-80.153832,37.881824],[-80.162202,37.875122],[-80.168957,37.867116],[-80.172033,37.862144],[-80.172076,37.860066],[-80.176712,37.854029],[-80.181815,37.852724],[-80.183062,37.850646],[-80.183555,37.84681],[-80.179391,37.839751],[-80.181768,37.838343],[-80.18638,37.837741],[-80.19465,37.831759],[-80.199633,37.827507],[-80.202853,37.82424],[-80.205841,37.818921],[-80.206482,37.81597],[-80.210965,37.812598],[-80.216229,37.80982],[-80.216939,37.809505],[-80.218611,37.809783],[-80.227092,37.798886],[-80.229228,37.79466],[-80.229489,37.792331],[-80.227965,37.791714],[-80.224189,37.787612],[-80.220092,37.78316],[-80.218616,37.783291],[-80.215892,37.781989],[-80.215658,37.777481],[-80.216498,37.776445],[-80.216899,37.776056],[-80.217634,37.776775],[-80.221827,37.778293],[-80.227498,37.778889],[-80.230458,37.778305],[-80.232011,37.775621],[-80.24139,37.769443],[-80.246902,37.768309],[-80.251319,37.762958],[-80.250427,37.761301],[-80.24979,37.757111],[-80.251622,37.755866],[-80.25641,37.756372],[-80.257411,37.756084],[-80.262765,37.738336],[-80.260313,37.733517],[-80.252024,37.729825],[-80.252227,37.727261],[-80.253077,37.725899],[-80.258143,37.720612],[-80.264406,37.718786],[-80.27199,37.711532],[-80.275007,37.707844],[-80.287107,37.696403],[-80.294108,37.693852],[-80.296138,37.691783],[-80.292337,37.683976],[-80.292258,37.683732],[-80.279372,37.657077],[-80.270323,37.648982],[-80.270352,37.648929],[-80.267455,37.646108],[-80.267228,37.646011],[-80.264874,37.645511],[-80.26483,37.645526],[-80.263291,37.645101],[-80.263281,37.645082],[-80.254469,37.642333],[-80.254431,37.642352],[-80.239288,37.637672],[-80.220984,37.627767],[-80.223386,37.623185],[-80.226017,37.620059],[-80.240272,37.606961],[-80.24978,37.602117],[-80.258919,37.595499],[-80.26356,37.593374],[-80.270342,37.591149],[-80.28244,37.585481],[-80.294882,37.57877],[-80.328504,37.564315],[-80.312393,37.546239],[-80.314464,37.54412],[-80.321249,37.541419],[-80.324384,37.541052],[-80.327489,37.540022],[-80.330306,37.536244],[-80.309346,37.527381],[-80.291644,37.536505],[-80.282385,37.533517],[-80.299789,37.508271],[-80.309833,37.503827],[-80.309331,37.50288],[-80.314806,37.500943],[-80.320627,37.49888],[-80.327103,37.495376],[-80.332038,37.493744],[-80.343789,37.492148],[-80.366838,37.484879],[-80.36317,37.480001],[-80.369449,37.476599],[-80.371952,37.474069],[-80.378308,37.471381],[-80.382535,37.470367],[-80.39988,37.462314],[-80.402816,37.460322],[-80.425656,37.449876],[-80.443025,37.438126],[-80.451367,37.434039],[-80.457313,37.432267],[-80.46482,37.426144],[-80.475601,37.422949],[-80.494867,37.43507],[-80.49728,37.444779],[-80.492981,37.457749],[-80.511391,37.481672],[-80.513409,37.479446],[-80.515139,37.478566],[-80.523481,37.476905],[-80.528349,37.477368],[-80.532372,37.477124],[-80.533449,37.476406],[-80.539786,37.474527],[-80.544836,37.474695],[-80.552036,37.473563],[-80.561442,37.469775],[-80.566297,37.466575],[-80.585856,37.456654],[-80.59024,37.453296],[-80.591377,37.45144],[-80.600204,37.446173],[-80.616802,37.439443],[-80.622117,37.435969],[-80.622664,37.433307],[-80.626365,37.433328],[-80.632365,37.432125],[-80.63439,37.431227],[-80.637379,37.429372],[-80.637554,37.428556],[-80.636947,37.427471],[-80.645893,37.422147],[-80.653589,37.419514],[-80.656687,37.417585],[-80.664112,37.41422],[-80.664971,37.414215],[-80.684576,37.40463],[-80.691709,37.401749],[-80.705203,37.394618],[-80.715479,37.390707],[-80.723596,37.388261],[-80.731589,37.38471],[-80.73804,37.382547],[-80.745527,37.380111],[-80.748722,37.38005],[-80.759886,37.374882],[-80.770082,37.372363],[-80.776649,37.383679],[-80.776766,37.384131],[-80.782295,37.389016],[-80.783382,37.390649],[-80.783324,37.392793],[-80.784188,37.394587],[-80.790317,37.395668],[-80.798869,37.395807],[-80.800447,37.395738],[-80.806129,37.398074],[-80.807134,37.401348],[-80.806358,37.404119],[-80.808769,37.406271],[-80.811639,37.407507],[-80.836446,37.424355],[-80.837678,37.425658],[-80.841672,37.425971],[-80.844213,37.423555],[-80.846324,37.423394],[-80.850656,37.426062],[-80.853163,37.426902],[-80.856997,37.427052],[-80.85836,37.428168],[-80.858473,37.428301],[-80.859556,37.429568],[-80.859563,37.429558],[-80.863142,37.424644],[-80.865148,37.419927],[-80.865174,37.416996],[-80.864455,37.41418],[-80.862761,37.411829],[-80.883248,37.383933],[-80.849451,37.346909],[-80.865321,37.340523],[-80.868986,37.338573],[-80.880103,37.328903],[-80.900535,37.315],[-80.919259,37.306163],[-80.92704,37.303683],[-80.931118,37.302872],[-80.938135,37.300278],[-80.947896,37.295872],[-80.966556,37.292158],[-80.973889,37.291444],[-80.980146,37.292743],[-80.981322,37.293465],[-80.982173,37.296023],[-80.979106,37.300581],[-80.979589,37.302279],[-80.996013,37.299545],[-81.000576,37.297868],[-81.008457,37.296073],[-81.021937,37.294143],[-81.037191,37.290251],[-81.084012,37.284401],[-81.09482,37.28264],[-81.112596,37.278497],[-81.142404,37.269165],[-81.158964,37.265382],[-81.167029,37.262881],[-81.178151,37.257979],[-81.204774,37.243013],[-81.225104,37.234874],[-81.320105,37.299323],[-81.362156,37.337687],[-81.366315,37.335927],[-81.367052,37.334504],[-81.36809,37.332423],[-81.369379,37.331827],[-81.369264,37.330568],[-81.36803,37.329447],[-81.367599,37.327569],[-81.371315,37.324115],[-81.37261,37.320195],[-81.374455,37.318614],[-81.377349,37.318447],[-81.380159,37.317838],[-81.384127,37.318596],[-81.384914,37.318832],[-81.38581,37.320085],[-81.386727,37.320474],[-81.388132,37.319903],[-81.394287,37.316411],[-81.398548,37.310635],[-81.398702,37.307806],[-81.397357,37.306358],[-81.396817,37.304498],[-81.398185,37.302965],[-81.402195,37.30166],[-81.40506,37.298794],[-81.403764,37.296597],[-81.409196,37.286071],[-81.409729,37.284837],[-81.409577,37.284025],[-81.411593,37.28033],[-81.416663,37.273214],[-81.427946,37.271015],[-81.43285,37.272697],[-81.448285,37.270575],[-81.449068,37.269583],[-81.454199,37.266999],[-81.458895,37.266466],[-81.460585,37.265527],[-81.459874,37.263901],[-81.46,37.262547],[-81.462107,37.259899],[-81.476431,37.255127],[-81.480144,37.251121],[-81.483559,37.250604],[-81.492287,37.25096],[-81.495738,37.252393],[-81.498045,37.254659],[-81.498445,37.256568],[-81.497773,37.25719],[-81.497775,37.257899],[-81.498874,37.258025],[-81.50319,37.252579],[-81.504168,37.250115],[-81.50488,37.247697],[-81.506428,37.244469],[-81.50626,37.239272],[-81.507325,37.2338],[-81.508786,37.232564],[-81.520729,37.226914],[-81.527458,37.225817],[-81.53307,37.223414],[-81.544437,37.220761],[-81.545211,37.220165],[-81.549248,37.213732],[-81.5536,37.208443],[-81.556119,37.207413],[-81.556892,37.207275],[-81.557315,37.207697],[-81.558353,37.208145],[-81.560625,37.206663],[-81.67821,37.201483],[-81.678603,37.202467],[-81.681379,37.203634],[-81.683268,37.205649],[-81.684012,37.211098],[-81.683544,37.211452],[-81.686717,37.213105],[-81.695113,37.21357],[-81.698954,37.218201],[-81.71573,37.228771],[-81.716248,37.234321],[-81.719554,37.237785],[-81.723061,37.240493],[-81.726171,37.240522],[-81.728194,37.239823],[-81.73332,37.238127],[-81.738543,37.238264],[-81.739277,37.238837],[-81.744003,37.242528],[-81.744291,37.244178],[-81.74342,37.245858],[-81.743505,37.247601],[-81.740974,37.254052],[-81.741662,37.254784],[-81.743008,37.255127],[-81.745445,37.258125],[-81.745505,37.26133],[-81.746109,37.263597],[-81.747656,37.264329],[-81.75129,37.265131],[-81.752123,37.265568],[-81.752912,37.266614],[-81.755012,37.26772],[-81.757531,37.27001],[-81.757714,37.271124],[-81.75773,37.271934],[-81.757631,37.274003],[-81.76022,37.275254],[-81.761752,37.275713],[-81.762776,37.275391],[-81.763836,37.275218],[-81.765195,37.275099],[-81.767837,37.274216],[-81.774684,37.274807],[-81.774747,37.274847],[-81.777319,37.275873],[-81.77935,37.277394],[-81.779362,37.279982],[-81.783122,37.28258],[-81.789294,37.284416],[-81.793425,37.281674],[-81.793639,37.282188],[-81.793115,37.283538],[-81.793595,37.284838],[-81.803275,37.285916],[-81.805382,37.285622],[-81.807232,37.283175],[-81.809184,37.283003],[-81.810559,37.28298],[-81.813222,37.281091],[-81.816702,37.279865],[-81.819625,37.279411],[-81.825065,37.279536],[-81.83447,37.281763],[-81.834387,37.283086],[-81.833406,37.284535],[-81.834432,37.285416],[-81.838762,37.286343],[-81.84231,37.285556],[-81.843167,37.285586],[-81.846807,37.284649],[-81.849949,37.285227],[-81.853551,37.287701],[-81.854059,37.291352],[-81.853488,37.294763],[-81.854465,37.299937],[-81.853978,37.300418],[-81.853645,37.300779],[-81.85446,37.30657],[-81.856032,37.306742],[-81.859624,37.304765],[-81.862031,37.305648],[-81.86476,37.308404],[-81.865219,37.308839],[-81.865683,37.309484],[-81.865429,37.31012],[-81.863712,37.31223],[-81.859928,37.313965],[-81.860267,37.315715],[-81.867425,37.320838],[-81.87018,37.320667],[-81.872662,37.323314],[-81.873213,37.325065],[-81.878343,37.328837],[-81.878713,37.331753],[-81.879601,37.332074],[-81.880886,37.331146],[-81.885075,37.330665],[-81.886952,37.330725],[-81.887722,37.331156],[-81.892876,37.330134],[-81.893773,37.330105],[-81.894768,37.331381],[-81.894797,37.332012],[-81.895489,37.332022],[-81.896001,37.331967],[-81.899459,37.340277],[-81.899495,37.341102],[-81.902992,37.34234],[-81.903795,37.34305],[-81.905945,37.342775],[-81.906368,37.34276],[-81.907322,37.343119],[-81.907895,37.343783],[-81.910875,37.348729],[-81.911487,37.348839],[-81.911951,37.349339],[-81.916678,37.349346],[-81.920279,37.353402],[-81.920711,37.355416],[-81.921571,37.356423],[-81.925643,37.357316],[-81.926589,37.358942],[-81.928497,37.360645],[-81.926697,37.364618],[-81.929915,37.366589],[-81.930194,37.366728],[-81.933895,37.372747],[-81.932763,37.374229],[-81.93388,37.377796],[-81.935872,37.378554],[-81.936744,37.38073],[-81.933601,37.389217],[-81.928778,37.393845],[-81.92828,37.398059],[-81.930786,37.401656],[-81.930042,37.405291],[-81.927338,37.406844],[-81.925764,37.406874],[-81.924506,37.407613],[-81.923481,37.411379],[-81.932468,37.415217],[-81.93695,37.41992],[-81.940553,37.429058],[-81.937838,37.432111],[-81.935316,37.43639],[-81.935621,37.438397],[-81.938843,37.440463],[-81.941175,37.440485],[-81.942856,37.439929],[-81.945765,37.440214],[-81.949367,37.445687],[-81.958672,37.448045],[-81.965582,37.446918],[-81.969342,37.450324],[-81.968795,37.451496],[-81.976176,37.457186],[-81.980013,37.45721],[-81.984891,37.454315],[-81.987006,37.454878],[-81.99227,37.460916],[-81.995649,37.469833],[-81.996578,37.476705],[-81.992916,37.482969],[-81.989849,37.484879],[-81.985703,37.485681],[-81.980327,37.485447],[-81.979169,37.484604],[-81.977593,37.484603],[-81.97073,37.489904],[-81.964986,37.493488],[-81.957213,37.491504],[-81.953264,37.491763],[-81.952681,37.492274],[-81.952735,37.494162],[-81.954167,37.495302],[-81.954364,37.496084],[-81.954077,37.499822],[-81.953147,37.501314],[-81.951831,37.50205],[-81.949188,37.502376],[-81.945957,37.501901],[-81.943912,37.502929],[-81.944188,37.506976],[-81.943045,37.508609],[-81.941151,37.509483],[-81.932279,37.511961],[-81.92787,37.512118],[-81.927759,37.512209],[-81.926736,37.51304],[-81.926391,37.514207],[-81.933088,37.518968],[-81.936996,37.51423],[-81.938749,37.512902],[-81.941968,37.512306],[-81.943865,37.512879],[-81.944756,37.513657],[-81.945475,37.51661],[-81.943779,37.519609],[-81.943693,37.521212],[-81.947085,37.523913],[-81.94766,37.52508],[-81.947545,37.52753],[-81.943981,37.5303],[-81.94401,37.530964],[-81.946022,37.531742],[-81.953524,37.528056],[-81.95663,37.52849],[-81.957693,37.529841],[-81.957436,37.533206],[-81.956947,37.534259],[-81.957379,37.535198],[-81.959362,37.53522],[-81.967583,37.532815],[-81.969279,37.534325],[-81.968297,37.537798],[-81.965401,37.541171],[-81.964971,37.543026],[-81.970147,37.546504],[-81.976386,37.545426],[-81.980841,37.542357],[-81.982479,37.541807],[-81.987511,37.542835],[-81.989092,37.542514],[-81.992597,37.538323],[-81.994033,37.537612],[-81.996909,37.538572],[-81.996912,37.542808],[-81.998177,37.543082],[-81.999844,37.542579],[-82.007412,37.533677],[-82.009194,37.533243],[-82.013966,37.533564],[-82.01592,37.534321],[-82.016925,37.538556],[-82.018878,37.540572],[-82.021006,37.540526],[-82.025261,37.538261],[-82.028826,37.537667],[-82.036932,37.542729],[-82.038024,37.546918],[-82.038972,37.547926],[-82.042825,37.548361],[-82.04478,37.546713],[-82.045155,37.544516],[-82.04481,37.541814],[-82.042396,37.53577],[-82.042397,37.533916],[-82.044382,37.529017],[-82.046653,37.528193],[-82.048205,37.528972],[-82.048463,37.533962],[-82.049584,37.535222],[-82.054787,37.536756],[-82.05746,37.536893],[-82.061256,37.536001],[-82.063326,37.536206],[-82.064418,37.53687],[-82.064792,37.539021],[-82.063671,37.541929],[-82.064418,37.544516],[-82.073246,37.555023],[-82.07503,37.555824],[-82.084605,37.55541],[-82.089178,37.556004],[-82.098924,37.5533],[-82.102893,37.553046],[-82.104532,37.553275],[-82.105136,37.554007],[-82.104303,37.555655],[-82.101946,37.558106],[-82.102263,37.559456],[-82.103127,37.560097],[-82.116584,37.559588],[-82.120609,37.556999],[-82.121985,37.552763],[-82.123824,37.551389],[-82.127089,37.551345],[-82.131776,37.552423],[-82.133299,37.552996],[-82.134506,37.554439],[-82.134705,37.557278],[-82.133495,37.560711],[-82.133954,37.562245],[-82.1368,37.564421],[-82.143183,37.565773],[-82.144563,37.566941],[-82.144648,37.568315],[-82.143468,37.570375],[-82.141828,37.570946],[-82.129604,37.571972],[-82.127303,37.572681],[-82.124372,37.57641],[-82.124307,37.577806],[-82.125601,37.579021],[-82.127321,37.586667],[-82.130165,37.591544],[-82.131977,37.593537],[-82.141555,37.595166],[-82.146419,37.59265],[-82.148434,37.59091],[-82.156718,37.59279],[-82.157609,37.596773],[-82.15611,37.604945],[-82.156741,37.609202],[-82.158554,37.609546],[-82.164454,37.608014],[-82.168137,37.608495],[-82.169057,37.609869],[-82.1692,37.613028],[-82.164767,37.618292],[-82.164191,37.620192],[-82.167126,37.621818],[-82.169515,37.621978],[-82.17271,37.61985],[-82.176682,37.618202],[-82.18143,37.621842],[-82.182438,37.623971],[-82.181398,37.626798],[-82.173482,37.631055],[-82.172446,37.632589],[-82.172762,37.634008],[-82.175956,37.637396],[-82.177511,37.640417],[-82.177338,37.641722],[-82.174688,37.646529],[-82.174631,37.647422],[-82.175264,37.647971],[-82.177625,37.648956],[-82.185456,37.648933],[-82.187989,37.647582],[-82.191444,37.644378],[-82.191242,37.642867],[-82.189688,37.640394],[-82.187845,37.63854],[-82.187471,37.637029],[-82.18632,37.629292],[-82.186694,37.627576],[-82.187298,37.626935],[-82.192394,37.625606],[-82.201201,37.627895],[-82.202467,37.627483],[-82.203388,37.626132],[-82.204337,37.625811],[-82.209691,37.625103],[-82.21349,37.625408],[-82.215649,37.626244],[-82.214815,37.627572],[-82.2202,37.633912],[-82.220257,37.634781],[-82.219078,37.635903],[-82.21669,37.639956],[-82.216691,37.641329],[-82.21934,37.642931],[-82.223602,37.644554],[-82.224956,37.647003],[-82.225535,37.651947],[-82.226111,37.653092],[-82.23939,37.661465],[-82.240773,37.661785],[-82.243911,37.660959],[-82.252273,37.656907],[-82.257111,37.656749],[-82.267962,37.662407],[-82.272021,37.663782],[-82.277876,37.669998],[-82.282297,37.675826],[-82.283506,37.676078],[-82.284687,37.675277],[-82.286446,37.670127],[-82.288174,37.668227],[-82.291773,37.669143],[-82.294393,37.670448],[-82.29471,37.672257],[-82.294134,37.673378],[-82.294392,37.677957],[-82.294737,37.678277],[-82.296724,37.678071],[-82.302312,37.675554],[-82.303953,37.67576],[-82.304501,37.677157],[-82.303867,37.678392],[-82.297126,37.684228],[-82.296118,37.686174],[-82.296262,37.687067],[-82.297788,37.687753],[-82.301504,37.690775],[-82.302886,37.693683],[-82.301964,37.696223],[-82.297325,37.699817],[-82.296634,37.702403],[-82.298074,37.704143],[-82.300954,37.706135],[-82.305679,37.706708],[-82.307235,37.707669],[-82.310665,37.7133],[-82.311097,37.717329],[-82.311702,37.718771],[-82.316197,37.721541],[-82.317869,37.72772],[-82.318302,37.733053],[-82.318879,37.733763],[-82.319686,37.734404],[-82.326834,37.736257],[-82.333044,37.740969],[-82.333349,37.7412],[-82.333581,37.743283],[-82.328221,37.74848],[-82.321415,37.751269],[-82.321012,37.755435],[-82.319023,37.758892],[-82.317668,37.759624],[-82.312968,37.760677],[-82.310893,37.762005],[-82.310777,37.762692],[-82.311642,37.764294],[-82.312824,37.765027],[-82.317611,37.764889],[-82.327356,37.762233],[-82.32946,37.762393],[-82.331162,37.763125],[-82.333816,37.765391],[-82.333903,37.766306],[-82.331654,37.768161],[-82.323696,37.772534],[-82.323004,37.773907],[-82.323696,37.775028],[-82.32583,37.776172],[-82.329867,37.775897],[-82.332607,37.774249],[-82.335981,37.7745],[-82.337596,37.775369],[-82.338895,37.776857],[-82.339097,37.778276],[-82.338377,37.780428],[-82.339705,37.785509],[-82.340455,37.786058],[-82.348849,37.787178],[-82.354275,37.793104],[-82.356122,37.793859],[-82.361199,37.794429],[-82.363795,37.795435],[-82.364979,37.796784],[-82.365557,37.798318],[-82.36778,37.800628],[-82.369973,37.801749],[-82.374867,37.80216],[-82.377393,37.803009],[-82.378514,37.80832],[-82.37958,37.810907],[-82.385259,37.81741],[-82.386586,37.818212],[-82.387769,37.818212],[-82.389212,37.817206],[-82.393746,37.811668],[-82.396978,37.809014],[-82.39871,37.808785],[-82.401652,37.810091],[-82.402228,37.810984],[-82.402199,37.812678],[-82.398444,37.821648],[-82.39968,37.829935],[-82.407874,37.835499],[-82.408941,37.836644],[-82.412172,37.844793],[-82.413153,37.845343],[-82.417367,37.845664],[-82.420484,37.846809],[-82.420484,37.847496],[-82.41546,37.854132],[-82.414914,37.855569],[-82.414651,37.85626],[-82.421983,37.859397],[-82.423513,37.860313],[-82.424264,37.861709],[-82.42409,37.863037],[-82.422127,37.863952],[-82.409799,37.865392],[-82.408441,37.866056],[-82.407459,37.867475],[-82.410288,37.868826],[-82.414417,37.869033],[-82.416323,37.869628],[-82.417679,37.870658],[-82.41869,37.872375],[-82.419337,37.875095],[-82.419204,37.882081],[-82.419781,37.883821],[-82.421484,37.885652],[-82.429023,37.888285],[-82.432113,37.88991],[-82.435751,37.897028],[-82.438582,37.900256],[-82.447596,37.904352],[-82.451352,37.908472],[-82.452883,37.908998],[-82.457794,37.909089],[-82.459759,37.909569],[-82.460741,37.910736],[-82.461493,37.913093],[-82.462881,37.914832],[-82.464297,37.915038],[-82.468197,37.913847],[-82.468947,37.910962],[-82.468568,37.904005],[-82.469058,37.90222],[-82.471223,37.899358],[-82.472523,37.899243],[-82.474574,37.900295],[-82.475991,37.9024],[-82.475818,37.904048],[-82.474635,37.905902],[-82.474232,37.908054],[-82.474666,37.910388],[-82.475534,37.911945],[-82.47932,37.914827],[-82.487556,37.916975],[-82.488279,37.91812],[-82.487616,37.919905],[-82.481001,37.924303],[-82.480338,37.925836],[-82.483951,37.927025],[-82.49574,37.927043],[-82.49814,37.9283],[-82.501862,37.9332],[-82.501948,37.934756],[-82.500386,37.936518],[-82.49754,37.936791],[-82.491182,37.93581],[-82.489737,37.936635],[-82.48916,37.937963],[-82.489045,37.938718],[-82.489566,37.939107],[-82.493728,37.940455],[-82.496822,37.942262],[-82.497285,37.942903],[-82.4973,37.945491],[-82.4973,37.945507],[-82.496681,37.946405],[-82.495294,37.946612],[-82.487836,37.945288],[-82.48512,37.946044],[-82.48096,37.949136],[-82.475096,37.954906],[-82.471801,37.959119],[-82.471657,37.959988],[-82.472669,37.960721],[-82.479031,37.962],[-82.484265,37.963646],[-82.484758,37.965752],[-82.484413,37.969895],[-82.483836,37.971566],[-82.479963,37.973169],[-82.46938,37.973059],[-82.464987,37.976859],[-82.464067,37.980295],[-82.464257,37.983412],[-82.465473,37.98478],[-82.467015,37.985578],[-82.471629,37.986826],[-82.482695,37.984014],[-82.483871,37.984505],[-82.485128,37.98692],[-82.485675,37.989352],[-82.485967,37.995705],[-82.487732,37.99833],[-82.48978,37.998869],[-82.499874,37.999157],[-82.507197,38.001512],[-82.509812,38.001249],[-82.513271,37.999674],[-82.515974,37.999929],[-82.517351,38.001204],[-82.51781,38.002479],[-82.517351,38.005131],[-82.517606,38.007222],[-82.519665,38.008538],[-82.522591,38.012968],[-82.525831,38.019564],[-82.525817,38.026406],[-82.527068,38.027586],[-82.530371,38.028792],[-82.534976,38.03225],[-82.538639,38.037381],[-82.539071,38.039788],[-82.53747,38.042701],[-82.537293,38.045204],[-82.541245,38.048444],[-82.543916,38.052133],[-82.544779,38.054262],[-82.54485,38.058521],[-82.547284,38.061094],[-82.549407,38.063063],[-82.54958,38.068579],[-82.551259,38.070799],[-82.559598,38.072837],[-82.565736,38.08064],[-82.574075,38.082104],[-82.584039,38.090663],[-82.585488,38.094256],[-82.585142,38.098055],[-82.585696,38.107003],[-82.587782,38.108879],[-82.59178,38.109908],[-82.593605,38.110869],[-82.598011,38.115925],[-82.600127,38.117389],[-82.602618,38.11835],[-82.606589,38.120843],[-82.616149,38.120221],[-82.619452,38.120745],[-82.620351,38.121477],[-82.621164,38.123239],[-82.621167,38.131996],[-82.622125,38.133414],[-82.626182,38.134835],[-82.634265,38.136669],[-82.636466,38.13786],[-82.637306,38.13905],[-82.638288,38.143491],[-82.638398,38.152157],[-82.638947,38.156742],[-82.644739,38.165487],[-82.642997,38.16956],[-82.639054,38.171114],[-82.625457,38.170491],[-82.619429,38.169027],[-82.613487,38.170242],[-82.611343,38.171548],[-82.60425,38.187639],[-82.599326,38.197231],[-82.598864,38.201007],[-82.598437,38.217393],[-82.600353,38.218949],[-82.60575,38.221144],[-82.608944,38.22366],[-82.610367,38.226772],[-82.61252,38.234553],[-82.61226,38.236087],[-82.607131,38.245975],[-82.605333,38.247303],[-82.604625,38.247303],[-82.60423,38.247303],[-82.59497,38.245453],[-82.586061,38.245616],[-82.584001,38.246371],[-82.581796,38.248592],[-82.578254,38.254809],[-82.574656,38.263873],[-82.5746,38.274721],[-82.57672,38.277513],[-82.578782,38.281747],[-82.57948,38.284928],[-82.579743,38.291726],[-82.582823,38.295478],[-82.583056,38.296829],[-82.58146,38.300445],[-82.578352,38.305458],[-82.572893,38.311981],[-82.571964,38.313606],[-82.571877,38.315781],[-82.572691,38.318801],[-82.576936,38.328275],[-82.585363,38.334064],[-82.587951,38.338595],[-82.589724,38.340265],[-82.592543,38.34166],[-82.596525,38.342849],[-82.597979,38.344909],[-82.598189,38.357885],[-82.597524,38.364843],[-82.596654,38.367338],[-82.593952,38.371847],[-82.593008,38.375082],[-82.595382,38.382712],[-82.595369,38.382722],[-82.599273,38.388738],[-82.599737,38.39037],[-82.599241,38.39317],[-82.597801,38.395154],[-82.595001,38.40133],[-82.597033,38.409937],[-82.597113,38.412881],[-82.596281,38.417681],[-82.593673,38.421809],[-82.588249,38.415489],[-82.579976,38.41013],[-82.577176,38.40877],[-82.569368,38.406258],[-82.560664,38.404338],[-82.549799,38.403202],[-82.540199,38.403666],[-82.529579,38.405182],[-82.507678,38.410782],[-82.507676,38.410783],[-82.486577,38.418082],[-82.459676,38.424682],[-82.447076,38.426982],[-82.434375,38.430082],[-82.404882,38.439347],[-82.389746,38.434355],[-82.381773,38.434783],[-82.360145,38.438596],[-82.34064,38.440948],[-82.330335,38.4445],[-82.323999,38.449268],[-82.318111,38.457876],[-82.313935,38.468084],[-82.312511,38.476116],[-82.310639,38.483172],[-82.306351,38.490692],[-82.304223,38.496308],[-82.303071,38.504384],[-82.303971,38.517683],[-82.302871,38.523183],[-82.300271,38.529383],[-82.297771,38.533283],[-82.295671,38.538483],[-82.293271,38.560283],[-82.293871,38.572683],[-82.293471,38.575383],[-82.291271,38.578983],[-82.287102,38.582588],[-82.27427,38.593683],[-82.27147,38.595383],[-82.26207,38.598183],[-82.252469,38.598783],[-82.245969,38.598483],[-82.222168,38.591384],[-82.218967,38.591683],[-82.205171,38.591719],[-82.193824,38.593096],[-82.188767,38.594984],[-82.181967,38.599384],[-82.177267,38.603784],[-82.175167,38.608484],[-82.172066,38.619284],[-82.172066,38.625984],[-82.172667,38.629684],[-82.174267,38.633183],[-82.176767,38.642783],[-82.179067,38.648883],[-82.185567,38.659583],[-82.186067,38.666783],[-82.187667,38.672683],[-82.190867,38.680383],[-82.190167,38.687382],[-82.185067,38.699182],[-82.182867,38.705482],[-82.182467,38.708782],[-82.184567,38.715882],[-82.186568,38.722482],[-82.188268,38.734082],[-82.189668,38.737382],[-82.193268,38.741182],[-82.195606,38.752441],[-82.198882,38.757725],[-82.201537,38.760372],[-82.207141,38.763943],[-82.216614,38.76835],[-82.220449,38.773739],[-82.221518,38.77981],[-82.221566,38.787187],[-82.217269,38.79568],[-82.214494,38.798691],[-82.20929,38.802672],[-82.19928,38.808688],[-82.191172,38.815137],[-82.179478,38.817376],[-82.165898,38.822437],[-82.16157,38.824632],[-82.147667,38.83698],[-82.144867,38.84048],[-82.141616,38.851394],[-82.139224,38.86502],[-82.139988,38.870345],[-82.142167,38.87708],[-82.145267,38.883479],[-82.144567,38.891679],[-82.143167,38.898079],[-82.134766,38.905579],[-82.128866,38.909979],[-82.120966,38.921079],[-82.111666,38.932579],[-82.110565,38.935279],[-82.110866,38.940379],[-82.109065,38.945579],[-82.100565,38.955678],[-82.098873,38.958319],[-82.094865,38.964578],[-82.093165,38.97098],[-82.091565,38.973778],[-82.089065,38.975978],[-82.079364,38.981078],[-82.068864,38.984878],[-82.058764,38.990078],[-82.051563,38.994378],[-82.049163,38.997278],[-82.045663,39.003778],[-82.041563,39.017878],[-82.038763,39.022678],[-82.035963,39.025478],[-82.027262,39.028378],[-82.017562,39.030078],[-82.007062,39.029578],[-82.002261,39.027878],[-81.994961,39.022478],[-81.991361,39.018378],[-81.987061,39.011978],[-81.983761,39.005478],[-81.982761,39.001978],[-81.982032,38.995697],[-81.981158,38.994351],[-81.979371,38.993193],[-81.977455,38.992679],[-81.973871,38.992413],[-81.967769,38.992955],[-81.960832,38.994275],[-81.95926,38.995227],[-81.951447,38.996032],[-81.941829,38.993295],[-81.936828,38.990414],[-81.933186,38.987659],[-81.926561,38.977508],[-81.918214,38.966595],[-81.912443,38.954343],[-81.9066,38.945262],[-81.900595,38.937671],[-81.89847,38.929603],[-81.899953,38.925405],[-81.90091,38.924338],[-81.908341,38.917403],[-81.911936,38.915564],[-81.917757,38.910604],[-81.919098,38.908615],[-81.926671,38.901311],[-81.928352,38.895371],[-81.928,38.893492],[-81.926967,38.891602],[-81.915898,38.88427],[-81.910312,38.879294],[-81.908645,38.87846],[-81.898541,38.874582],[-81.892837,38.873869],[-81.889233,38.874279],[-81.874857,38.881174],[-81.858921,38.89019],[-81.855971,38.892734],[-81.848653,38.901407],[-81.845312,38.910088],[-81.84607,38.913192],[-81.844486,38.928746],[-81.838067,38.937135],[-81.831516,38.943697],[-81.827354,38.945898],[-81.825026,38.946603],[-81.819692,38.947016],[-81.814235,38.946168],[-81.806137,38.942112],[-81.796376,38.932498],[-81.793372,38.930204],[-81.785647,38.926193],[-81.781248,38.924804],[-81.774106,38.922965],[-81.76976,38.92273],[-81.766227,38.922946],[-81.762659,38.924121],[-81.759995,38.925828],[-81.758506,38.927942],[-81.756131,38.933545],[-81.756975,38.937152],[-81.769703,38.948707],[-81.77396,38.951645],[-81.778845,38.955892],[-81.780736,38.958975],[-81.78182,38.964935],[-81.779883,38.972773],[-81.775734,38.980737],[-81.776466,38.982048],[-81.776723,38.985142],[-81.775551,38.990107],[-81.774062,38.993682],[-81.771975,38.996845],[-81.767188,39.000115],[-81.765153,39.002579],[-81.764253,39.006579],[-81.764253,39.015279],[-81.767253,39.019979],[-81.772854,39.026179],[-81.786554,39.036579],[-81.793304,39.040353],[-81.800355,39.044978],[-81.803355,39.047678],[-81.808955,39.055178],[-81.811655,39.059578],[-81.813355,39.065878],[-81.814155,39.073478],[-81.813855,39.079278],[-81.812355,39.082078],[-81.810655,39.083278],[-81.807855,39.083978],[-81.803055,39.083878],[-81.798155,39.082878],[-81.790754,39.079778],[-81.785554,39.078578],[-81.781454,39.078078],[-81.775554,39.078378],[-81.764854,39.081978],[-81.760753,39.084078],[-81.752353,39.089878],[-81.747253,39.095378],[-81.747253,39.095378],[-81.745453,39.098078],[-81.743853,39.102378],[-81.742953,39.106578],[-81.742153,39.116777],[-81.744568,39.126816],[-81.744838,39.130898],[-81.744525,39.138829],[-81.743565,39.141933],[-81.744621,39.148413],[-81.754254,39.171476],[-81.756254,39.177276],[-81.755815,39.180524],[-81.755754,39.180976],[-81.752754,39.184676],[-81.749853,39.186489],[-81.741533,39.189596],[-81.737085,39.193836],[-81.735805,39.196268],[-81.733357,39.205868],[-81.729949,39.211884],[-81.726973,39.215068],[-81.725583,39.215835],[-81.724365,39.216508],[-81.711628,39.219228],[-81.700908,39.220844],[-81.694603,39.224107],[-81.692395,39.226443],[-81.691339,39.227947],[-81.691067,39.230139],[-81.692203,39.236091],[-81.695724,39.242859],[-81.696636,39.246123],[-81.696988,39.248747],[-81.69638,39.257035],[-81.69206,39.263227],[-81.689483,39.266043],[-81.683627,39.270939],[-81.678331,39.273755],[-81.670187,39.275963],[-81.656138,39.277355],[-81.643178,39.277195],[-81.621305,39.273643],[-81.613896,39.275339],[-81.608408,39.276043],[-81.603352,39.275531],[-81.59516,39.273387],[-81.588583,39.269787],[-81.585559,39.268747],[-81.570247,39.267675],[-81.567347,39.270675],[-81.565247,39.276175],[-81.565047,39.293874],[-81.560147,39.317874],[-81.559647,39.330774],[-81.557547,39.338774],[-81.542346,39.352874],[-81.53447,39.358234],[-81.524309,39.36161],[-81.513493,39.36705],[-81.503189,39.373242],[-81.489044,39.384074],[-81.4829,39.389674],[-81.473188,39.40017],[-81.467744,39.403774],[-81.456143,39.409274],[-81.446543,39.410374],[-81.435642,39.408474],[-81.428642,39.405374],[-81.420578,39.400378],[-81.412706,39.394618],[-81.406689,39.38809],[-81.40277,39.376914],[-81.400744,39.369221],[-81.395883,39.355553],[-81.393794,39.351706],[-81.391249,39.348814],[-81.384556,39.343449],[-81.379674,39.342081],[-81.375961,39.341697],[-81.371271,39.342062],[-81.356911,39.343178],[-81.347567,39.34577],[-81.342623,39.348042],[-81.335599,39.352794],[-81.326174,39.358186],[-81.319598,39.36129],[-81.304798,39.370538],[-81.297517,39.374378],[-81.281405,39.379258],[-81.275677,39.383786],[-81.270716,39.385914],[-81.259788,39.386698],[-81.249088,39.389992],[-81.24184,39.390276],[-81.223581,39.386062],[-81.221372,39.386172],[-81.217315,39.38759],[-81.213064,39.390656],[-81.211654,39.392977],[-81.21087,39.397112],[-81.211433,39.402031],[-81.210833,39.403563],[-81.208231,39.407147],[-81.205223,39.410786],[-81.200412,39.415303],[-81.190714,39.423562],[-81.185946,39.430731],[-81.182307,39.433533],[-81.179934,39.435121],[-81.170634,39.439175],[-81.16352,39.441186],[-81.152534,39.443175],[-81.138134,39.443775],[-81.134434,39.445075],[-81.132534,39.446275],[-81.128533,39.449375],[-81.124733,39.453375],[-81.121472,39.457757],[-81.115133,39.466275],[-81.114433,39.466275],[-81.100833,39.487175],[-81.091433,39.496975],[-81.07595,39.50966],[-81.070594,39.515991],[-81.060379,39.522744],[-81.051982,39.52931],[-81.049955,39.531893],[-81.044902,39.5363],[-81.038706,39.540048],[-81.030169,39.545211],[-81.026662,39.548547],[-81.0239,39.552313],[-81.020055,39.55541],[-81.00866,39.562798],[-80.996804,39.56912],[-80.993695,39.571253],[-80.987732,39.577262],[-80.978664,39.583517],[-80.970436,39.590127],[-80.943782,39.606926],[-80.936906,39.612616],[-80.933292,39.614812],[-80.925841,39.617396],[-80.91762,39.618703],[-80.906247,39.618431],[-80.896514,39.616757],[-80.892208,39.616756],[-80.88036,39.620706],[-80.876002,39.627084],[-80.87102,39.638963],[-80.870473,39.641764],[-80.870771,39.642885],[-80.869802,39.646896],[-80.866647,39.652616],[-80.865575,39.662751],[-80.86667,39.678487],[-80.86633,39.683167],[-80.865805,39.686484],[-80.863698,39.691724],[-80.861718,39.693625],[-80.854599,39.697473],[-80.852,39.69856],[-80.844721,39.69944],[-80.839112,39.701033],[-80.833882,39.703497],[-80.831871,39.705655],[-80.829764,39.711839],[-80.829723,39.714041],[-80.831551,39.719475],[-80.833463,39.720812],[-80.834563,39.721582],[-80.836597,39.723925],[-80.846091,39.737812],[-80.852738,39.74104],[-80.854717,39.742592],[-80.865339,39.753251],[-80.867596,39.757116],[-80.869933,39.763555],[-80.869092,39.766364],[-80.866329,39.771738],[-80.863048,39.775197],[-80.835311,39.79069],[-80.826079,39.798584],[-80.824969,39.801092],[-80.822181,39.811708],[-80.82248,39.824971],[-80.82303,39.827484],[-80.826228,39.835802],[-80.826964,39.841656],[-80.826124,39.844238],[-80.824276,39.847159],[-80.821279,39.849982],[-80.81643,39.853032],[-80.799898,39.858912],[-80.793131,39.863751],[-80.790761,39.86728],[-80.790156,39.872252],[-80.793989,39.882787],[-80.796162,39.88553],[-80.802339,39.89161],[-80.806179,39.897306],[-80.809011,39.903226],[-80.809683,39.906106],[-80.809283,39.910314],[-80.807618,39.914938],[-80.806018,39.91713],[-80.803394,39.918762],[-80.80053,39.919434],[-80.795714,39.91969],[-80.782849,39.917162],[-80.772641,39.911306],[-80.768272,39.909642],[-80.762592,39.908906],[-80.760656,39.908906],[-80.759296,39.909466],[-80.758304,39.910426],[-80.756432,39.91393],[-80.755936,39.916554],[-80.756784,39.920586],[-80.761312,39.929098],[-80.764511,39.946602],[-80.764479,39.95025],[-80.763375,39.953514],[-80.758527,39.959241],[-80.755135,39.961561],[-80.74627,39.966233],[-80.743166,39.969113],[-80.740126,39.970793],[-80.738717,39.985113],[-80.740045,39.993929],[-80.741085,39.996857],[-80.742045,40.005641],[-80.741901,40.007929],[-80.740509,40.015225],[-80.737805,40.020761],[-80.737341,40.022969],[-80.737389,40.027593],[-80.7363,40.029929],[-80.733304,40.033272],[-80.733267,40.033357],[-80.731504,40.037472],[-80.730904,40.046672],[-80.730904,40.049172],[-80.733104,40.058772],[-80.734304,40.059672],[-80.737104,40.064972],[-80.738504,40.071472],[-80.738604,40.075672],[-80.736804,40.080072],[-80.730704,40.086472],[-80.713003,40.096872],[-80.710203,40.099572],[-80.709102,40.101472],[-80.707702,40.105372],[-80.706702,40.110872],[-80.707002,40.113272],[-80.708106,40.117256],[-80.70881,40.118088],[-80.710554,40.125271],[-80.710042,40.138311],[-80.707322,40.144999],[-80.705994,40.151591],[-80.704602,40.154823],[-80.702982,40.157173],[-80.686137,40.181607],[-80.683705,40.184215],[-80.682008,40.185495],[-80.681812,40.185566],[-80.6796,40.186371],[-80.6726,40.192371],[-80.6681,40.199671],[-80.666299,40.206271],[-80.664299,40.21917],[-80.661543,40.229798],[-80.652098,40.24497],[-80.644598,40.25127],[-80.637198,40.25507],[-80.637098,40.25427],[-80.622497,40.26177],[-80.619297,40.26517],[-80.616196,40.27227],[-80.616796,40.285269],[-80.614896,40.291969],[-80.606596,40.303869],[-80.602895,40.307069],[-80.599895,40.317669],[-80.600495,40.321169],[-80.602895,40.327869],[-80.610796,40.340868],[-80.612796,40.347668],[-80.611796,40.355168],[-80.608695,40.361968],[-80.607595,40.369568],[-80.609695,40.374968],[-80.614396,40.378768],[-80.619196,40.381768],[-80.63074,40.3849],[-80.631596,40.385468],[-80.633596,40.390467],[-80.632196,40.393667],[-80.629699,40.395007],[-80.628096,40.395867],[-80.615195,40.399867],[-80.612195,40.402667],[-80.611795,40.403867],[-80.612695,40.407667],[-80.612295,40.418567],[-80.612995,40.429367],[-80.612295,40.434867],[-80.611195,40.437767],[-80.604895,40.446667],[-80.604395,40.449767],[-80.598294,40.458366],[-80.596094,40.463366],[-80.594794,40.471366],[-80.595494,40.475266],[-80.599194,40.482566],[-80.60245,40.484226],[-80.609058,40.489506],[-80.618003,40.502049],[-80.620883,40.512257],[-80.622195,40.520497],[-80.627507,40.535793],[-80.630483,40.537921],[-80.633107,40.538705],[-80.64138,40.548417],[-80.652436,40.562544],[-80.655316,40.565184],[-80.662708,40.570176],[-80.666917,40.573664],[-80.667781,40.578096],[-80.667957,40.582496],[-80.665892,40.587728],[-80.662564,40.5916],[-80.655188,40.596544],[-80.653972,40.59648],[-80.651716,40.597744],[-80.644963,40.603648],[-80.639379,40.61128],[-80.634355,40.616095],[-80.627171,40.619936],[-80.616002,40.621696],[-80.603876,40.625064],[-80.598764,40.625263],[-80.594065,40.623664],[-80.592049,40.622496],[-80.583633,40.61552],[-80.579856,40.614304],[-80.576736,40.614224],[-80.571936,40.615456],[-80.56784,40.617552],[-80.56072,40.62368],[-80.551126,40.628847],[-80.545892,40.629702],[-80.539541,40.632122],[-80.532737,40.63559],[-80.530093,40.636255],[-80.52566,40.636068],[-80.521917,40.636992],[-80.518991,40.638801],[-80.519039,40.616391],[-80.519086,40.616385],[-80.519086,40.590161],[-80.519055,40.590173],[-80.519057,40.517922],[-80.519054,40.517922],[-80.518995,40.477363],[-80.51899,40.473667],[-80.51769,40.462467],[-80.517987,40.399644],[-80.517991,40.398868],[-80.517991,40.367968],[-80.519039,40.342101],[-80.519056,40.172771],[-80.519056,40.172744],[-80.519104,40.159672],[-80.51896,40.078089],[-80.519008,40.077001],[-80.51912,40.01641],[-80.519207,39.963381],[-80.519218,39.962424],[-80.519217,39.962199],[-80.519203,39.959394],[-80.519175,39.956648],[-80.519115,39.939188],[-80.519248,39.936967],[-80.518891,39.890964],[-80.519423,39.806181],[-80.519342,39.721403],[-80.421388,39.721189],[-80.309457,39.721264],[-80.308651,39.721283],[-80.075947,39.72135]]]}}]} diff --git a/Where/RegionKit/Sources/Resources/regions/us-WY.geojson b/Where/RegionKit/Sources/Resources/regions/us-WY.geojson new file mode 100644 index 00000000..dcd7b202 --- /dev/null +++ b/Where/RegionKit/Sources/Resources/regions/us-WY.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"region":"us-WY","name":"Wyoming"},"geometry":{"type":"Polygon","coordinates":[[[-110.048476,40.997555],[-110.121639,40.997101],[-110.125709,40.99655],[-110.237848,40.995427],[-110.250709,40.996089],[-110.375714,40.994947],[-110.500718,40.994746],[-110.539819,40.996346],[-110.715026,40.996347],[-110.750727,40.996847],[-111.046723,40.997959],[-111.046551,41.251716],[-111.0466,41.360692],[-111.046264,41.377731],[-111.045789,41.565571],[-111.045818,41.579845],[-111.046689,42.001567],[-111.047109,42.142497],[-111.047107,42.148971],[-111.047058,42.182672],[-111.047097,42.194773],[-111.047074,42.280787],[-111.04708,42.34942],[-111.046801,42.504946],[-111.046719,42.513118],[-111.046017,42.582723],[-111.043564,42.722624],[-111.044135,42.874924],[-111.043959,42.96445],[-111.043957,42.969482],[-111.043924,42.975063],[-111.044129,43.018702],[-111.044156,43.020052],[-111.044206,43.022614],[-111.044034,43.024581],[-111.044034,43.024844],[-111.044033,43.026411],[-111.044094,43.02927],[-111.043997,43.041415],[-111.044058,43.04464],[-111.044063,43.046302],[-111.044086,43.054819],[-111.044117,43.060309],[-111.04415,43.066172],[-111.044162,43.068222],[-111.044143,43.072364],[-111.044235,43.177121],[-111.044266,43.177236],[-111.044232,43.18444],[-111.044168,43.189244],[-111.044229,43.195579],[-111.044617,43.31572],[-111.045205,43.501136],[-111.045706,43.659112],[-111.04588,43.681033],[-111.046118,43.684902],[-111.046051,43.685812],[-111.04611,43.687848],[-111.046421,43.722059],[-111.046435,43.726545],[-111.04634,43.726957],[-111.046715,43.815832],[-111.046515,43.908376],[-111.046917,43.974978],[-111.047064,43.983467],[-111.047349,43.999921],[-111.049077,44.020072],[-111.048751,44.060403],[-111.048751,44.060838],[-111.048633,44.062903],[-111.048452,44.114831],[-111.049119,44.124923],[-111.049695,44.353626],[-111.049148,44.374925],[-111.049216,44.435811],[-111.049194,44.438058],[-111.048974,44.474072],[-111.055208,44.624927],[-111.055333,44.666263],[-111.055511,44.725343],[-111.056416,44.749928],[-111.056888,44.866658],[-111.055629,44.933578],[-111.056207,44.935901],[-111.055199,45.001321],[-111.044275,45.001345],[-110.785008,45.002952],[-110.761554,44.999934],[-110.750767,44.997948],[-110.705272,44.992324],[-110.552433,44.992237],[-110.547165,44.992459],[-110.48807,44.992361],[-110.402927,44.99381],[-110.362698,45.000593],[-110.342131,44.999053],[-110.324441,44.999156],[-110.28677,44.99685],[-110.199503,44.996188],[-110.110103,45.003905],[-110.026347,45.003665],[-110.025544,45.003602],[-109.99505,45.003174],[-109.875735,45.003275],[-109.798687,45.002188],[-109.75073,45.001605],[-109.663673,45.002536],[-109.574321,45.002631],[-109.386432,45.004887],[-109.375713,45.00461],[-109.269294,45.005283],[-109.263431,45.005345],[-109.103445,45.005904],[-109.08301,44.99961],[-109.062262,44.999623],[-108.621313,45.000408],[-108.578484,45.000484],[-108.565921,45.000578],[-108.500679,44.999691],[-108.271201,45.000251],[-108.249345,44.999458],[-108.238139,45.000206],[-108.218479,45.000541],[-108.14939,45.001062],[-108.000663,45.001223],[-107.997353,45.001565],[-107.911743,45.001292],[-107.750654,45.000778],[-107.608854,45.00086],[-107.607824,45.000929],[-107.49205,45.00148],[-107.351441,45.001407],[-107.13418,45.000109],[-107.125633,44.999388],[-107.105685,44.998734],[-107.084939,44.996599],[-107.074996,44.997004],[-107.050801,44.996424],[-106.892875,44.995947],[-106.888773,44.995885],[-106.263586,44.993788],[-106.024814,44.993688],[-105.928184,44.993647],[-105.914258,44.999986],[-105.913382,45.000941],[-105.848065,45.000396],[-105.076607,45.000347],[-105.038405,45.000345],[-105.025266,45.00029],[-105.019284,45.000329],[-105.01824,45.000437],[-104.765063,44.999183],[-104.759855,44.999066],[-104.72637,44.999518],[-104.665171,44.998618],[-104.663882,44.998869],[-104.470422,44.998453],[-104.470117,44.998453],[-104.250145,44.99822],[-104.057698,44.997431],[-104.055914,44.874986],[-104.056496,44.867034],[-104.055963,44.768236],[-104.055963,44.767962],[-104.055934,44.72372],[-104.05587,44.723422],[-104.055777,44.700466],[-104.055938,44.693881],[-104.05581,44.691343],[-104.055877,44.571016],[-104.055892,44.543341],[-104.055927,44.51773],[-104.055389,44.249983],[-104.054487,44.180381],[-104.054562,44.141081],[-104.05495,43.93809],[-104.055077,43.936535],[-104.055488,43.853477],[-104.055488,43.853476],[-104.055138,43.750421],[-104.055133,43.747105],[-104.054902,43.583852],[-104.054885,43.583512],[-104.05484,43.579368],[-104.055032,43.558603],[-104.054787,43.503328],[-104.054786,43.503072],[-104.054779,43.477815],[-104.054766,43.428914],[-104.054614,43.390949],[-104.054403,43.325914],[-104.054218,43.30437],[-104.053884,43.297047],[-104.053876,43.289801],[-104.053127,43.000585],[-104.052863,42.754569],[-104.052809,42.749966],[-104.052583,42.650062],[-104.052741,42.633982],[-104.052586,42.630917],[-104.052773,42.611766],[-104.052775,42.61159],[-104.052775,42.610813],[-104.053107,42.499964],[-104.052776,42.25822],[-104.052793,42.249962],[-104.053125,42.249962],[-104.052761,42.170278],[-104.052547,42.166801],[-104.053001,42.137254],[-104.052738,42.133769],[-104.0526,42.124963],[-104.052954,42.089077],[-104.052967,42.075004],[-104.05288,42.021761],[-104.052729,42.016318],[-104.052704,42.001718],[-104.052699,41.998673],[-104.052761,41.994967],[-104.05283,41.9946],[-104.052856,41.975958],[-104.052734,41.973007],[-104.052991,41.914973],[-104.052931,41.906143],[-104.053026,41.885464],[-104.052774,41.733401],[-104.05283,41.697954],[-104.052913,41.64519],[-104.052945,41.638167],[-104.052975,41.622931],[-104.052735,41.613676],[-104.052859,41.592254],[-104.05254,41.564274],[-104.052531,41.552723],[-104.052584,41.55265],[-104.052692,41.541154],[-104.052686,41.539111],[-104.052476,41.522343],[-104.052478,41.515754],[-104.05234,41.417865],[-104.05216,41.407662],[-104.052287,41.393307],[-104.052288,41.393214],[-104.052687,41.330569],[-104.052324,41.321144],[-104.052476,41.320961],[-104.052568,41.316202],[-104.052453,41.278202],[-104.052574,41.278019],[-104.052666,41.275251],[-104.053514,41.157257],[-104.053142,41.114457],[-104.053083,41.104985],[-104.053025,41.090274],[-104.053177,41.089725],[-104.053097,41.018045],[-104.053158,41.016809],[-104.053249,41.001406],[-104.066961,41.001504],[-104.086068,41.001563],[-104.10459,41.001543],[-104.123586,41.001626],[-104.211473,41.001591],[-104.214191,41.001568],[-104.214692,41.001657],[-104.467672,41.001473],[-104.497058,41.001805],[-104.497149,41.001828],[-104.675999,41.000957],[-104.829504,40.99927],[-104.855273,40.998048],[-104.943371,40.998084],[-105.254779,40.99821],[-105.256527,40.998191],[-105.27686,40.998173],[-105.277138,40.998173],[-105.724804,40.99691],[-105.730421,40.996886],[-106.061181,40.996999],[-106.190554,40.997607],[-106.217573,40.997734],[-106.321165,40.999123],[-106.386356,41.001144],[-106.391852,41.001176],[-106.43095,41.001752],[-106.437419,41.001795],[-106.439563,41.001978],[-106.453859,41.002057],[-106.857773,41.002663],[-107.000606,41.003444],[-107.241194,41.002804],[-107.317794,41.002967],[-107.367443,41.003073],[-107.625624,41.002124],[-107.918421,41.002036],[-108.046539,41.002064],[-108.181227,41.000455],[-108.250649,41.000114],[-108.500659,41.000112],[-108.526667,40.999608],[-108.631108,41.000156],[-108.884138,41.000094],[-109.050076,41.000659],[-109.173682,41.000859],[-109.231985,41.002059],[-109.250735,41.001009],[-109.500694,40.999127],[-109.534926,40.998143],[-109.676421,40.998395],[-109.713877,40.998266],[-109.715409,40.998191],[-109.854302,40.997661],[-109.855299,40.997614],[-109.97553,40.997912],[-109.999838,40.99733],[-110.000708,40.997352],[-110.006495,40.997815],[-110.048476,40.997555]]]}}]} diff --git a/Where/RegionKit/Tests/RegionAttributorTests.swift b/Where/RegionKit/Tests/RegionAttributorTests.swift index 08dcf9d5..022426c8 100644 --- a/Where/RegionKit/Tests/RegionAttributorTests.swift +++ b/Where/RegionKit/Tests/RegionAttributorTests.swift @@ -88,4 +88,26 @@ struct RegionAttributorTests { let tokyo = Coordinate(latitude: 35.6762, longitude: 139.6503) #expect(attributor.region(at: tokyo) == .other) } + + // MARK: - On-demand subset loading + + /// An attributor loads and attributes only the regions it's built for, so a + /// coordinate inside an untracked region falls through to `.other`. + @Test func attributorLoadsOnlyItsRegions() { + let californiaOnly = RegionAttributor(for: [.california]) + let sf = Coordinate(latitude: 37.7749, longitude: -122.4194) + let nyc = Coordinate(latitude: 40.7128, longitude: -74.0060) + #expect(californiaOnly.region(at: sf) == .california) + // New York isn't loaded, so a NYC coordinate falls through to `.other`. + #expect(californiaOnly.region(at: nyc) == .other) + } + + /// Any catalog state — not just the historical four — can be tracked, since + /// each region loads from its own bundled file. + @Test func attributorCanTrackAnyCatalogState() throws { + let illinois = try #require(Region(rawValue: "us-IL")) + let attributor = RegionAttributor(for: [illinois]) + let chicago = Coordinate(latitude: 41.8781, longitude: -87.6298) + #expect(attributor.region(at: chicago) == illinois) + } } diff --git a/Where/RegionKit/Tests/RegionGeometryCatalogTests.swift b/Where/RegionKit/Tests/RegionGeometryCatalogTests.swift index 750f5331..ebe8e587 100644 --- a/Where/RegionKit/Tests/RegionGeometryCatalogTests.swift +++ b/Where/RegionKit/Tests/RegionGeometryCatalogTests.swift @@ -2,16 +2,26 @@ import Testing struct RegionGeometryCatalogTests { + /// A representative tracked subset, so `.attribution` outlines reflect a + /// specific attributor rather than a global. + let trackedFour = RegionAttributor(for: [.california, .newYork, .canada, .europeanUnion]) + // MARK: - Attribution - @Test func attribution_coversExactlyTheLoadedRegions() async throws { - let outlines = try await RegionGeometryCatalog.outlines(for: .attribution) + @Test func attribution_coversExactlyTheAttributorsRegions() async throws { + let outlines = try await RegionGeometryCatalog.outlines( + for: .attribution, + attributor: trackedFour, + ) let regions = Set(outlines.compactMap(\.region)) #expect(regions == [.california, .newYork, .canada, .europeanUnion]) } @Test func attribution_everyOutlineIsTaggedWithARealRegion() async throws { - let outlines = try await RegionGeometryCatalog.outlines(for: .attribution) + let outlines = try await RegionGeometryCatalog.outlines( + for: .attribution, + attributor: trackedFour, + ) #expect(!outlines.isEmpty) #expect(outlines.allSatisfy { $0.region != nil && $0.region != .other }) } @@ -19,7 +29,7 @@ struct RegionGeometryCatalogTests { // MARK: - Source @Test func source_decodesAll52USStateFeatures() async throws { - let outlines = try await RegionGeometryCatalog.outlines(for: .source) + let outlines = try await RegionGeometryCatalog.outlines(for: .source, attributor: .all) // Distinct titles minus the two bundled-file regions are the US // Census features (50 states + DC + Puerto Rico = 52). let bundledTitles: Set = [ @@ -31,7 +41,7 @@ struct RegionGeometryCatalogTests { } @Test func source_includesCanadaAndEU() async throws { - let outlines = try await RegionGeometryCatalog.outlines(for: .source) + let outlines = try await RegionGeometryCatalog.outlines(for: .source, attributor: .all) let canada = outlines.filter { $0.region == .canada } let eu = outlines.filter { $0.region == .europeanUnion } #expect(!canada.isEmpty) @@ -40,29 +50,31 @@ struct RegionGeometryCatalogTests { #expect(eu.allSatisfy { $0.title == Region.europeanUnion.localizedName }) } - @Test func source_mapsModeledStatesToRegionAndLeavesOthersNil() async throws { - let outlines = try await RegionGeometryCatalog.outlines(for: .source) + @Test func source_tagsEveryStateWithItsRegion() async throws { + let outlines = try await RegionGeometryCatalog.outlines(for: .source, attributor: .all) let california = try #require(outlines.first { $0.title == "California" }) #expect(california.region == .california) let newYork = try #require(outlines.first { $0.title == "New York" }) #expect(newYork.region == .newYork) - // A state with no `Region` case is still drawn, just untagged. + // Every US state is now a first-class catalog region — no untagged + // source features remain. let texas = try #require(outlines.first { $0.title == "Texas" }) - #expect(texas.region == nil) + #expect(texas.region == Region(rawValue: "us-TX")) + #expect(outlines.allSatisfy { $0.region != nil }) } // MARK: - Outline shape @Test func outlineIDsAreUniqueWithinAResult() async throws { for kind in RegionGeometryKind.allCases { - let outlines = try await RegionGeometryCatalog.outlines(for: kind) + let outlines = try await RegionGeometryCatalog.outlines(for: kind, attributor: .all) #expect(Set(outlines.map(\.id)).count == outlines.count) } } @Test func everyOutlineRingHasAtLeastThreeVertices() async throws { for kind in RegionGeometryKind.allCases { - let outlines = try await RegionGeometryCatalog.outlines(for: kind) + let outlines = try await RegionGeometryCatalog.outlines(for: kind, attributor: .all) #expect(outlines.allSatisfy { $0.coordinates.count >= 3 }) } } @@ -99,7 +111,10 @@ struct RegionGeometryCatalogTests { // MARK: - Bounding box @Test func boundingBox_enclosesEveryOutlineCoordinate() async throws { - let outlines = try await RegionGeometryCatalog.outlines(for: .attribution) + let outlines = try await RegionGeometryCatalog.outlines( + for: .attribution, + attributor: trackedFour, + ) let box = try #require(BoundingBox.enclosing(outlines)) for outline in outlines { for coordinate in outline.coordinates { diff --git a/Where/RegionKit/Tests/RegionTests.swift b/Where/RegionKit/Tests/RegionTests.swift index c01ec3f2..7877677c 100644 --- a/Where/RegionKit/Tests/RegionTests.swift +++ b/Where/RegionKit/Tests/RegionTests.swift @@ -1,10 +1,11 @@ +import Foundation import RegionKit import Testing struct RegionTests { // MARK: - localizedName - @Test func localizedName_returnsEnglishStringForEachCase() { + @Test func localizedName_resolvesLocalizedRegions() { #expect(Region.california.localizedName == "California") #expect(Region.newYork.localizedName == "New York") #expect(Region.canada.localizedName == "Canada") @@ -12,34 +13,61 @@ struct RegionTests { #expect(Region.other.localizedName == "Other") } - // MARK: - geometrySource + @Test func localizedName_fallsBackToManifestNameForUnlocalizedRegions() throws { + // Texas has no string-catalog entry, so its name comes from the manifest. + let texas = try #require(Region(rawValue: "us-TX")) + #expect(texas.localizedName == "Texas") + } + + // MARK: - Stable ids - @Test func california_isUSStateFeature() { - #expect(Region.california.geometrySource == .usStateFeature(name: "California")) + @Test func conveniences_useStableIDs() { + #expect(Region.california.rawValue == "us-CA") + #expect(Region.newYork.rawValue == "us-NY") + #expect(Region.canada.rawValue == "canada") + #expect(Region.europeanUnion.rawValue == "european-union") + #expect(Region.other.rawValue == "other") } - @Test func newYork_isUSStateFeature() { - #expect(Region.newYork.geometrySource == .usStateFeature(name: "New York")) + // MARK: - Failable init + + @Test func initRawValue_acceptsCatalogRegionsAndOther() { + #expect(Region(rawValue: "us-CA") == .california) + #expect(Region(rawValue: "us-TX")?.rawValue == "us-TX") + #expect(Region(rawValue: "other") == .other) } - @Test func canada_isBundledFile() { - #expect(Region.canada.geometrySource == .bundledFile) + @Test func initRawValue_rejectsUnknownIDs() { + #expect(Region(rawValue: "not-a-region") == nil) + // The former enum's raw values are no longer valid ids. + #expect(Region(rawValue: "california") == nil) } - @Test func europeanUnion_isBundledFile() { - #expect(Region.europeanUnion.geometrySource == .bundledFile) + // MARK: - Codable + + @Test func codable_roundTripsThroughID() throws { + let texas = try #require(Region(rawValue: "us-TX")) + let regions: [Region] = [.california, .canada, .other, texas] + let data = try JSONEncoder().encode(regions) + let decoded = try JSONDecoder().decode([Region].self, from: data) + #expect(decoded == regions) } - @Test func other_hasNoGeometry() { - #expect(Region.other.geometrySource == .none) + // MARK: - Catalog membership + + @Test func catalog_containsEveryUSStatePlusDCAndPRPlusBlocs() { + // 50 states + DC + PR + Canada + European Union. + #expect(RegionCatalog.shared.all.count == 54) + #expect(RegionCatalog.shared.all.contains(.california)) + #expect(RegionCatalog.shared.all.contains(.newYork)) + #expect(RegionCatalog.shared.all.contains(.canada)) + #expect(RegionCatalog.shared.all.contains(.europeanUnion)) } - /// Every non-`.other` region must declare a real geometry source, so a - /// newly added `Region` case can't silently ship with no polygons and - /// attribute everything to `.other`. - @Test func everyRegionExceptOtherHasGeometry() { - for region in Region.allCases where region != .other { - #expect(region.geometrySource != .none, "\(region.rawValue) has no geometry source") - } + @Test func allCases_isCatalogOrderThenOther() { + #expect(Region.allCases == RegionCatalog.shared.all + [.other]) + #expect(Region.allCases.last == .other) + // `.other` is a sentinel, never a catalog entry. + #expect(!RegionCatalog.shared.all.contains(.other)) } } diff --git a/Where/RegionKit/Tools/generate-regions.rb b/Where/RegionKit/Tools/generate-regions.rb new file mode 100755 index 00000000..0a29e14b --- /dev/null +++ b/Where/RegionKit/Tools/generate-regions.rb @@ -0,0 +1,135 @@ +#!/usr/bin/env ruby +# frozen_string_literal: true + +# Generates RegionKit's per-region GeoJSON files and the `regions.json` +# manifest that `RegionCatalog` loads. +# +# It reads the (non-bundled) source data under `Tools/source/`: +# - `us-states.geojson` — a Census FeatureCollection (50 states + DC + PR), +# one MultiPolygon feature per state keyed by `properties.NAME`. +# - `canada.geojson`, `europeanUnion.geojson` — hand-simplified single-polygon +# outlines for the non-US regions. +# +# and writes, into `Sources/Resources/`: +# - `regions/.geojson` — one file per available region (a FeatureCollection +# with a single feature carrying `properties.region`/`properties.name`), so +# the attributor can load only the regions it needs. +# - `regions.json` — an ordered manifest: `{ id, name, localizationKey?, +# geometry: { file } }`. Array order is the catalog's canonical order +# (US states alphabetically, then countries/blocs; blocs last). +# +# Region ids are stable data identifiers, never shown to the user (names come +# from `name`/`localizationKey`): US states are `us-` (e.g. `us-CA`), +# countries/blocs use a slug (`canada`, `european-union`). +# +# Idempotent: re-run after changing the source data. Run from the repo root: +# ruby Where/RegionKit/Tools/generate-regions.rb + +require "json" +require "fileutils" + +# Source inputs (not bundled) live next to this script; generated output goes +# into the bundled Resources directory. +SOURCE = File.join(__dir__, "source") +RESOURCES = File.expand_path("../Sources/Resources", __dir__) +REGIONS_DIR = File.join(RESOURCES, "regions") + +# Census `NAME` -> USPS code, for the 50 states + DC + PR present in +# `us-states.geojson`. +USPS = { + "Alabama" => "AL", "Alaska" => "AK", "Arizona" => "AZ", "Arkansas" => "AR", + "California" => "CA", "Colorado" => "CO", "Connecticut" => "CT", + "Delaware" => "DE", "District of Columbia" => "DC", "Florida" => "FL", + "Georgia" => "GA", "Hawaii" => "HI", "Idaho" => "ID", "Illinois" => "IL", + "Indiana" => "IN", "Iowa" => "IA", "Kansas" => "KS", "Kentucky" => "KY", + "Louisiana" => "LA", "Maine" => "ME", "Maryland" => "MD", + "Massachusetts" => "MA", "Michigan" => "MI", "Minnesota" => "MN", + "Mississippi" => "MS", "Missouri" => "MO", "Montana" => "MT", + "Nebraska" => "NE", "Nevada" => "NV", "New Hampshire" => "NH", + "New Jersey" => "NJ", "New Mexico" => "NM", "New York" => "NY", + "North Carolina" => "NC", "North Dakota" => "ND", "Ohio" => "OH", + "Oklahoma" => "OK", "Oregon" => "OR", "Pennsylvania" => "PA", + "Puerto Rico" => "PR", "Rhode Island" => "RI", "South Carolina" => "SC", + "South Dakota" => "SD", "Tennessee" => "TN", "Texas" => "TX", "Utah" => "UT", + "Vermont" => "VT", "Virginia" => "VA", "Washington" => "WA", + "West Virginia" => "WV", "Wisconsin" => "WI", "Wyoming" => "WY" +}.freeze + +# The handful of regions that already carry a translated string-catalog entry +# (`Localizable.xcstrings`). Everything else falls back to the manifest `name` +# (state names are proper nouns we ship in English). Keyed by region id. +LOCALIZATION_KEYS = { + "us-CA" => "region.california", + "us-NY" => "region.newYork", + "canada" => "region.canada", + "european-union" => "region.europeanUnion" +}.freeze + +# Non-US source files -> (id, display name), emitted after the US states. +# Blocs come after countries so the catalog order keeps a bloc after any +# overlapping members it might gain later. +NON_US = [ + { source: "canada.geojson", id: "canada", name: "Canada" }, + { source: "europeanUnion.geojson", id: "european-union", name: "European Union" } +].freeze + +def load_feature_collection(name) + JSON.parse(File.read(File.join(SOURCE, name))) +end + +# A single-feature FeatureCollection wrapping `geometry`, tagged with the +# region id and display name for provenance (the loader reads geometry only). +def region_document(id:, name:, geometry:) + { + "type" => "FeatureCollection", + "features" => [ + { + "type" => "Feature", + "properties" => { "region" => id, "name" => name }, + "geometry" => geometry + } + ] + } +end + +def write_region_file(id:, name:, geometry:) + path = File.join(REGIONS_DIR, "#{id}.geojson") + File.write(path, JSON.generate(region_document(id: id, name: name, geometry: geometry)) + "\n") +end + +def manifest_entry(id:, name:) + entry = { "id" => id, "name" => name } + key = LOCALIZATION_KEYS[id] + entry["localizationKey"] = key if key + entry["geometry"] = { "file" => "#{id}.geojson" } + entry +end + +FileUtils.rm_rf(REGIONS_DIR) +FileUtils.mkdir_p(REGIONS_DIR) + +manifest = [] + +# US states, alphabetically by Census NAME. +us = load_feature_collection("us-states.geojson") +us_features = us["features"].sort_by { |f| f["properties"]["NAME"] } +us_features.each do |feature| + name = feature["properties"]["NAME"] + usps = USPS.fetch(name) { abort("No USPS code for US feature #{name.inspect}") } + id = "us-#{usps}" + write_region_file(id: id, name: name, geometry: feature["geometry"]) + manifest << manifest_entry(id: id, name: name) +end + +# Countries / blocs. +NON_US.each do |region| + fc = load_feature_collection(region[:source]) + geometry = fc["features"].fetch(0)["geometry"] + write_region_file(id: region[:id], name: region[:name], geometry: geometry) + manifest << manifest_entry(id: region[:id], name: region[:name]) +end + +File.write(File.join(RESOURCES, "regions.json"), JSON.pretty_generate(manifest) + "\n") + +puts "Wrote #{manifest.length} region files to #{REGIONS_DIR}" +puts "Wrote manifest with #{manifest.length} entries to #{File.join(RESOURCES, "regions.json")}" diff --git a/Where/RegionKit/Sources/Resources/canada.geojson b/Where/RegionKit/Tools/source/canada.geojson similarity index 100% rename from Where/RegionKit/Sources/Resources/canada.geojson rename to Where/RegionKit/Tools/source/canada.geojson diff --git a/Where/RegionKit/Sources/Resources/europeanUnion.geojson b/Where/RegionKit/Tools/source/europeanUnion.geojson similarity index 100% rename from Where/RegionKit/Sources/Resources/europeanUnion.geojson rename to Where/RegionKit/Tools/source/europeanUnion.geojson diff --git a/Where/RegionKit/Sources/Resources/us-states.geojson b/Where/RegionKit/Tools/source/us-states.geojson similarity index 100% rename from Where/RegionKit/Sources/Resources/us-states.geojson rename to Where/RegionKit/Tools/source/us-states.geojson diff --git a/Where/WhereCore/AGENTS.md b/Where/WhereCore/AGENTS.md index 76b50ceb..dcc1e87c 100644 --- a/Where/WhereCore/AGENTS.md +++ b/Where/WhereCore/AGENTS.md @@ -82,6 +82,14 @@ internal shape. + significant-change); tests/previews use `ScriptedLocationSource`. The one-shot `requestCurrentLocation()` returns `nil` (never throws) when no fix is available — it only stamps a manual entry's audit trail. +- **Tracked regions live in the store, not preferences.** They're synced app + data (one `SDTrackedRegion` row per region so concurrent cross-device edits + merge; read as a `Set`, defaulting to the four when unset). `RegionAttribution` + derives the attributor from them and rebuilds on `changes()`; assemble via the + async `WhereServices.make(...)` (which reads the set) so the app and the App + Intents process (`WhereServices.forIntents()`, also async) attribute against + the same synced set. Detection is naturally scoped to it — the attributor only + loads tracked-region geometry, so `distanceToBoundary` is `nil` elsewhere. - **Impossible states trap; recoverable ones surface.** `WhereStore` methods are `async throws` so the CloudKit-backed store can report I/O failure; a `catch` must log via `WhereLog.channel(_:)` (typed `Category`, PII-free) and leave diff --git a/Where/WhereCore/README.md b/Where/WhereCore/README.md index ac72110d..495550d6 100644 --- a/Where/WhereCore/README.md +++ b/Where/WhereCore/README.md @@ -25,7 +25,16 @@ one it belongs to rather than to a god-object: crossing it is a SwiftData record). Mutations run inside `perform { … }` (one atomic transaction) and `changes()` emits once per commit and on a CloudKit remote import. `SwiftDataStore.make()` is the production, CloudKit-backed - implementation; `SwiftDataStore.inMemory()` backs tests and previews. + implementation; `SwiftDataStore.inMemory()` backs tests and previews. It also + holds the user's **tracked regions** (`trackedRegions()` / + `setTrackedRegion(_:id:)`) — one synced row per region, defaulting to the four + until the user chooses. +- **`RegionAttribution`** — a live `RegionAttributing` built from the tracked + regions that rebuilds on `changes()` (a local edit or a remote import), so the + app + App Intents process attribute against the same synced set. Assemble + services with `WhereServices.make(...)` (async — it reads the tracked set) in + production; the synchronous `WhereServices.init` uses `RegionAttributor.shared` + (the default four) for tests/previews. - **`DayJournal`** — the user-sourced writes: manual-day overlays (`addManualDay` / `overrideDay` / `addManualDays`), clears (`clearManualDay` / `clearYear` / `eraseAllData`), evidence, and issue @@ -98,7 +107,11 @@ and talk to the collaborators: ```swift import WhereCore -let services = WhereServices( +// Production wiring reads the tracked regions from the store to build the +// attributor, so `make(...)` is the one public entry and is async. Tests and +// previews use the synchronous `@_spi(Testing)` `init` instead (an explicit +// attributor, default four) via `@_spi(Testing) import WhereCore`. +let services = try await WhereServices.make( store: try SwiftDataStore.make(), // production; use .inMemory() in tests locationSource: CoreLocationSource(), ) diff --git a/Where/WhereCore/Sources/Backup/BackupArchive.swift b/Where/WhereCore/Sources/Backup/BackupArchive.swift index 6bf045fa..bb3c4bb6 100644 --- a/Where/WhereCore/Sources/Backup/BackupArchive.swift +++ b/Where/WhereCore/Sources/Backup/BackupArchive.swift @@ -1,21 +1,22 @@ import Foundation +import RegionKit /// Versioned, `Codable` manifest describing a whole-database backup of the /// Where feature. Serialized to `manifest.json` at the root of the backup /// `.zip`; evidence blob bytes live alongside it under `assets/` and are /// linked back to their records by `BackupAssetEntry`. /// -/// The four arrays mirror the four SwiftData tables exactly -/// (`SDLocationSample` / `SDEvidence` / `SDManualDay` / `SDDismissedIssue`) via +/// The arrays mirror the SwiftData tables exactly (`SDLocationSample` / +/// `SDEvidence` / `SDManualDay` / `SDDismissedIssue` / `SDTrackedRegion`) via /// their value-type representations, so an export captures everything and an /// import can upsert it back row-for-row. public struct BackupArchive: Codable, Sendable, Hashable { /// Bumped whenever the archive's on-disk shape changes in a way older /// readers can't understand, so an importer can refuse a file it doesn't /// know how to read instead of silently dropping data. `dismissedIssues` - /// was added without a bump because it is additive: older readers ignore - /// the unknown key, and newer readers tolerate its absence (see - /// `init(from:)`). + /// and `trackedRegions` were added without a bump because they are additive: + /// older readers ignore the unknown key, and newer readers tolerate its + /// absence (see `init(from:)`). /// /// v2 keys `manualDays` by a timezone-independent `CalendarDay` (`day`) /// rather than an absolute `date` instant. This reader still imports v1 @@ -33,6 +34,10 @@ public struct BackupArchive: Codable, Sendable, Hashable { /// keeps issues the user already dismissed dismissed. Absent in manifests /// written before this field existed; those decode to `[]`. public let dismissedIssues: [DismissedIssue] + /// The user's tracked regions at export time, so a restore carries the + /// region selection like any other data. Absent in manifests written before + /// this field existed; those decode to `[]`. + public let trackedRegions: [Region] /// One entry per evidence record that has blob bytes in the archive. /// Evidence without bytes simply has no entry here. public let assets: [BackupAssetEntry] @@ -44,6 +49,7 @@ public struct BackupArchive: Codable, Sendable, Hashable { evidence: [Evidence], manualDays: [DayPresence], dismissedIssues: [DismissedIssue] = [], + trackedRegions: [Region] = [], assets: [BackupAssetEntry], ) { self.formatVersion = formatVersion @@ -52,6 +58,7 @@ public struct BackupArchive: Codable, Sendable, Hashable { self.evidence = evidence self.manualDays = manualDays self.dismissedIssues = dismissedIssues + self.trackedRegions = trackedRegions self.assets = assets } @@ -62,12 +69,13 @@ public struct BackupArchive: Codable, Sendable, Hashable { case evidence case manualDays case dismissedIssues + case trackedRegions case assets } /// Custom decode (encode stays synthesized) so manifests written before - /// `dismissedIssues` existed still import: the missing key decodes to `[]` - /// rather than throwing. + /// `dismissedIssues` / `trackedRegions` existed still import: the missing + /// keys decode to `[]` rather than throwing. public init(from decoder: any Decoder) throws { let container = try decoder.container(keyedBy: CodingKeys.self) formatVersion = try container.decode(Int.self, forKey: .formatVersion) @@ -77,6 +85,8 @@ public struct BackupArchive: Codable, Sendable, Hashable { manualDays = try container.decode([DayPresence].self, forKey: .manualDays) dismissedIssues = try container .decodeIfPresent([DismissedIssue].self, forKey: .dismissedIssues) ?? [] + trackedRegions = try container + .decodeIfPresent([Region].self, forKey: .trackedRegions) ?? [] assets = try container.decode([BackupAssetEntry].self, forKey: .assets) } } diff --git a/Where/WhereCore/Sources/Backup/BackupCoordinator.swift b/Where/WhereCore/Sources/Backup/BackupCoordinator.swift index 6e26d431..da852a6d 100644 --- a/Where/WhereCore/Sources/Backup/BackupCoordinator.swift +++ b/Where/WhereCore/Sources/Backup/BackupCoordinator.swift @@ -1,5 +1,6 @@ import Foundation import LogKit +import RegionKit /// Owns backup export/import over the `BackupService` and the store, running a /// caller-supplied `onImport` hook after an import lands new data. @@ -31,17 +32,20 @@ public actor BackupCoordinator { public let evidenceCount: Int public let manualDayCount: Int public let dismissedIssueCount: Int + public let trackedRegionCount: Int public init( sampleCount: Int, evidenceCount: Int, manualDayCount: Int, dismissedIssueCount: Int, + trackedRegionCount: Int, ) { self.sampleCount = sampleCount self.evidenceCount = evidenceCount self.manualDayCount = manualDayCount self.dismissedIssueCount = dismissedIssueCount + self.trackedRegionCount = trackedRegionCount } } @@ -81,6 +85,9 @@ public actor BackupCoordinator { let evidence = try await store.allEvidence() let manualDays = try await store.allManualDays() let dismissedIssues = try await store.allDismissedIssues() + // The resolved tracked set (the four when the user hasn't chosen yet), + // in canonical order so the archive is stable. + let trackedRegions = try await Region.inCanonicalOrder(store.trackedRegions()) var blobs: [UUID: Data] = [:] for item in evidence { if let blob = try await store.evidenceBlob(for: item.id) { @@ -94,6 +101,7 @@ public actor BackupCoordinator { evidence: evidence, manualDays: manualDays, dismissedIssues: dismissedIssues, + trackedRegions: trackedRegions, blobs: blobs, ) }.value @@ -119,7 +127,9 @@ public actor BackupCoordinator { /// Read a backup `.zip` and write its contents back into the store inside a /// single transaction. `.replace` wipes the store first; `.merge` relies on - /// the store's upsert semantics. Returns counts of what was imported. + /// the store's upsert semantics. Tracked regions round-trip too: `.replace` + /// restores the archive's set exactly, `.merge` unions it into the current + /// set. Returns counts of what was imported. /// /// `onProgress` is invoked with a fraction in `0...1` as rows are written, /// throttled to whole-percent changes so a large import doesn't flood the @@ -178,6 +188,20 @@ public actor BackupCoordinator { try await store.restoreDismissedIssue(dismissal) report() } + // Tracked regions round-trip like any other data. On `.replace` the + // store was cleared above, so write the archive's set exactly; on + // `.merge` union it into the current set (reading the *resolved* + // current set first so a device on the implicit default four doesn't + // collapse to just the imported regions). A handful of rows, so + // they're not folded into the progress total. + let regionsToWrite: Set = if strategy == .merge { + try await store.trackedRegions().union(archive.trackedRegions) + } else { + Set(archive.trackedRegions) + } + for region in regionsToWrite { + try await store.setTrackedRegion(true, id: region.rawValue) + } } // An import rewrites day data, so the badge / notification / widget // reconcile a day change runs has to follow it — these headless @@ -191,6 +215,7 @@ public actor BackupCoordinator { evidenceCount: archive.evidence.count, manualDayCount: archive.manualDays.count, dismissedIssueCount: archive.dismissedIssues.count, + trackedRegionCount: archive.trackedRegions.count, ) } } diff --git a/Where/WhereCore/Sources/Backup/BackupService.swift b/Where/WhereCore/Sources/Backup/BackupService.swift index 6295bfa9..c8bfcf5c 100644 --- a/Where/WhereCore/Sources/Backup/BackupService.swift +++ b/Where/WhereCore/Sources/Backup/BackupService.swift @@ -1,5 +1,6 @@ import Foundation import LogKit +import RegionKit import ZIPFoundation /// Serializes a whole-database backup to a `.zip` and reads one back. @@ -91,6 +92,7 @@ public struct BackupService: Sendable { evidence: [Evidence], manualDays: [DayPresence], dismissedIssues: [DismissedIssue] = [], + trackedRegions: [Region] = [], blobs: [UUID: Data], exportedAt: Date = Date(), archiveName: String? = nil, @@ -121,6 +123,7 @@ public struct BackupService: Sendable { evidence: evidence, manualDays: manualDays, dismissedIssues: dismissedIssues, + trackedRegions: trackedRegions, assets: assetEntries, ) let manifestData = try Self.makeEncoder().encode(archive) @@ -135,7 +138,7 @@ public struct BackupService: Sendable { compressionMethod: .deflate, ) Self.logger.info( - "Wrote backup with \(samples.count) samples, \(evidence.count) evidence, \(manualDays.count) manual days, \(dismissedIssues.count) dismissals", + "Wrote backup with \(samples.count) samples, \(evidence.count) evidence, \(manualDays.count) manual days, \(dismissedIssues.count) dismissals, \(trackedRegions.count) tracked regions", ) return zipURL } diff --git a/Where/WhereCore/Sources/DataResolution/DataIssueDetector.swift b/Where/WhereCore/Sources/DataResolution/DataIssueDetector.swift index 7fd4ad27..e0903bc9 100644 --- a/Where/WhereCore/Sources/DataResolution/DataIssueDetector.swift +++ b/Where/WhereCore/Sources/DataResolution/DataIssueDetector.swift @@ -22,7 +22,7 @@ public struct DataIssueInput: Sendable { public let report: YearReport public let otherDayCoordinates: [CalendarDay: [Coordinate]] public let primaryRegions: [Region] - public let attributor: RegionAttributor + public let attributor: any RegionAttributing public let driftThresholdMeters: Double public let calendar: Calendar public let now: Date @@ -32,7 +32,7 @@ public struct DataIssueInput: Sendable { report: YearReport, otherDayCoordinates: [CalendarDay: [Coordinate]], primaryRegions: [Region], - attributor: RegionAttributor, + attributor: any RegionAttributing, driftThresholdMeters: Double, calendar: Calendar, now: Date, diff --git a/Where/WhereCore/Sources/DataResolution/DataIssueScanner.swift b/Where/WhereCore/Sources/DataResolution/DataIssueScanner.swift index 2acc1982..170a94dd 100644 --- a/Where/WhereCore/Sources/DataResolution/DataIssueScanner.swift +++ b/Where/WhereCore/Sources/DataResolution/DataIssueScanner.swift @@ -11,7 +11,7 @@ import RegionKit /// An `actor` because it holds that cache; composes `ReportReader`. public actor DataIssueScanner { private let reportReader: ReportReader - private let attributor: RegionAttributor + private let attributor: any RegionAttributing private let calendar: Calendar private let now: @Sendable () -> Date private let scanInterval: TimeInterval @@ -40,7 +40,7 @@ public actor DataIssueScanner { public init( reportReader: ReportReader, - attributor: RegionAttributor, + attributor: any RegionAttributing, calendar: Calendar, now: @escaping @Sendable () -> Date = { Date() }, scanInterval: TimeInterval = 3 * 60 * 60, diff --git a/Where/WhereCore/Sources/Days/DayAggregator.swift b/Where/WhereCore/Sources/Days/DayAggregator.swift index 742b3bc4..9e615663 100644 --- a/Where/WhereCore/Sources/Days/DayAggregator.swift +++ b/Where/WhereCore/Sources/Days/DayAggregator.swift @@ -26,7 +26,7 @@ public struct DayAggregator: Sendable { public func aggregate( samples: [LocationSample], - attributor: RegionAttributor, + attributor: any RegionAttributing, ) -> [DayPresence] { var dayRegions: [CalendarDay: Set] = [:] for sample in samples { @@ -51,7 +51,7 @@ public struct DayAggregator: Sendable { public func locations( in region: Region, samples: [LocationSample], - attributor: RegionAttributor, + attributor: any RegionAttributing, ) -> [RegionDayLocations] { var byDay: [CalendarDay: [RegionDayPoint]] = [:] for sample in samples where attributor.region(at: sample.coordinate) == region { @@ -72,7 +72,7 @@ public struct DayAggregator: Sendable { /// without geocoding every point. Regions with no samples are absent. public func representativeCoordinates( samples: [LocationSample], - attributor: RegionAttributor, + attributor: any RegionAttributing, ) -> [Region: Coordinate] { let precision = 20.0 var tallies: [Region: [Int: CellTally]] = [:] @@ -119,7 +119,7 @@ public struct DayAggregator: Sendable { for year: Int, samples: [LocationSample], manualDays: [DayPresence] = [], - attributor: RegionAttributor, + attributor: any RegionAttributing, ) -> YearReport { var dayRegions: [CalendarDay: Set] = [:] for day in aggregate(samples: samples, attributor: attributor) { diff --git a/Where/WhereCore/Sources/Days/PresenceCalendar.swift b/Where/WhereCore/Sources/Days/PresenceCalendar.swift index ec9662a2..945d848c 100644 --- a/Where/WhereCore/Sources/Days/PresenceCalendar.swift +++ b/Where/WhereCore/Sources/Days/PresenceCalendar.swift @@ -213,9 +213,9 @@ public enum PresenceCalendar { } // Dots reflect the focus filter; the footer (regionTotals) keeps // counting every region present that day. - let regions = Region.allCases.filter { region in - presentRegions.contains(region) && (focusedRegion == nil || region == focusedRegion) - } + let regions = Region.inCanonicalOrder( + presentRegions.filter { focusedRegion == nil || $0 == focusedRegion }, + ) days.append(CalendarDayCell( date: date, dayOfMonth: dayOfMonth, diff --git a/Where/WhereCore/Sources/Days/Region+Ordering.swift b/Where/WhereCore/Sources/Days/Region+Ordering.swift index f668eb83..f1a90dca 100644 --- a/Where/WhereCore/Sources/Days/Region+Ordering.swift +++ b/Where/WhereCore/Sources/Days/Region+Ordering.swift @@ -5,16 +5,25 @@ import RegionKit /// because it's about the app's presence/day-count domain, not region geometry /// or lookup; `RegionKit` stays focused on regions and geofencing. extension Region { - /// Each region's position in `Region.allCases`. This declaration order is - /// the app's canonical tiebreak: whenever two regions compare equal on some - /// metric (most often an equal day count), comparisons fall back to it so - /// rankings, widget rows, and calendar footers stay deterministic instead of - /// riding on `Dictionary` iteration order. Precomputed once rather than - /// scanning `allCases.firstIndex(of:)` per comparison. + /// Each region's position in the catalog's canonical order (`Region.allCases` + /// = the manifest order, then `.other`). This is the app's canonical + /// tiebreak: whenever two regions compare equal on some metric (most often an + /// equal day count), comparisons fall back to it so rankings, widget rows, + /// and calendar footers stay deterministic instead of riding on `Dictionary` + /// iteration order. Precomputed once rather than scanning + /// `allCases.firstIndex(of:)` per comparison. public static let declarationOrder: [Region: Int] = Dictionary( uniqueKeysWithValues: Region.allCases.enumerated().map { ($1, $0) }, ) + /// `regions` in the catalog's canonical order — the same `declarationOrder` + /// tiebreak used for ranking, but without a day-count metric. The catalog- + /// driven way to display a *set* of regions in a stable order (e.g. the + /// regions present on a calendar day), replacing `Region.allCases.filter`. + public static func inCanonicalOrder(_ regions: some Sequence) -> [Region] { + regions.sorted { declarationOrder[$0, default: 0] < declarationOrder[$1, default: 0] } + } + /// Order `elements` by their day count, descending, breaking ties by /// `declarationOrder`. The single home for the "most days first, stable /// order" ranking, so every surface that ranks regions (year reports, diff --git a/Where/WhereCore/Sources/Persistence/SwiftDataStore.swift b/Where/WhereCore/Sources/Persistence/SwiftDataStore.swift index 809db383..ee01d0d4 100644 --- a/Where/WhereCore/Sources/Persistence/SwiftDataStore.swift +++ b/Where/WhereCore/Sources/Persistence/SwiftDataStore.swift @@ -111,6 +111,7 @@ public actor SwiftDataStore: WhereStore, EvidenceBlobStore { SDEvidence.self, SDManualDay.self, SDDismissedIssue.self, + SDTrackedRegion.self, ]) // On-disk storage lives in the App Group container so the share // extension (and any other sibling process) writes into the same store @@ -214,7 +215,13 @@ public actor SwiftDataStore: WhereStore, EvidenceBlobStore { /// SwiftData inspector can enumerate them without naming the (intentionally /// internal) record types. Mirrors the `Schema` in `makeContainer`. public static var inspectorModelTypes: [any PersistentModel.Type] { - [SDLocationSample.self, SDEvidence.self, SDManualDay.self, SDDismissedIssue.self] + [ + SDLocationSample.self, + SDEvidence.self, + SDManualDay.self, + SDDismissedIssue.self, + SDTrackedRegion.self, + ] } private static let logger = WhereLog.channel(.swiftDataStore) @@ -578,6 +585,9 @@ public actor SwiftDataStore: WhereStore, EvidenceBlobStore { for dismissed in try context.fetch(FetchDescriptor()) { context.delete(dismissed) } + for tracked in try context.fetch(FetchDescriptor()) { + context.delete(tracked) + } } public func dismissedIssueKeys() async throws -> Set { @@ -624,6 +634,70 @@ public actor SwiftDataStore: WhereStore, EvidenceBlobStore { } } + // MARK: - Tracked regions + + public func trackedRegions() async throws -> Set { + let context = readContext() + var descriptor = FetchDescriptor() + descriptor.includePendingChanges = true + let ids = try context.fetch(descriptor).compactMap(\.regionID) + // No rows means the user hasn't chosen yet — fall back to the default + // set (applied identically in every process). Once any row exists, the + // tracked set is exactly the persisted rows. + guard !ids.isEmpty else { return Self.defaultTrackedRegions } + // Unknown ids (e.g. a region dropped from the catalog) are filtered out + // rather than crashing. Surface it: a stored id we can't resolve is a + // degraded state — and if *every* id drops, the resulting empty set makes + // everything attribute to `.other`, which must not be silent. + var resolved: Set = [] + var unknown: [String] = [] + for id in ids { + if let region = Region(rawValue: id) { + resolved.insert(region) + } else { + unknown.append(id) + } + } + if !unknown.isEmpty { + Self.logger.warning( + "Ignored \(unknown.count) unknown tracked-region id(s): \(unknown.sorted().joined(separator: ", "))", + ) + } + return resolved + } + + public func setTrackedRegion(_ tracked: Bool, id: String) async throws { + let context = mutationContext() + let descriptor = FetchDescriptor( + predicate: #Predicate { $0.regionID == id }, + ) + let existing = try context.fetch(descriptor) + if tracked { + // Dedupe defensively: CloudKit can't enforce uniqueness, so collapse + // any accidental duplicate rows to one on write. + guard existing.isEmpty else { + for extra in existing.dropFirst() { + context.delete(extra) + } + return + } + context.insert(SDTrackedRegion(regionID: id)) + } else { + // TODO: Untracking deletes the row, which drops the region from the + // attributor's load set — so re-aggregating a past year would + // re-attribute that region's GPS days to `.other` (manual days, + // stored as region sets, are unaffected). When the onboarding / + // region picker lands, switch to a soft-delete (mark the row + // inactive, never delete) and have the attributor load every + // ever-tracked region so past reports stay stable, while "active" + // drives the UI/primary set. Not user-reachable yet — nothing calls + // `setTrackedRegion(false)` outside tests. + for record in existing { + context.delete(record) + } + } + } + private static func logFault(forCorrupt _: Record) { logger.fault( "Dropped corrupt SwiftData record of type \(String(describing: Record.self))", @@ -868,3 +942,19 @@ final class SDDismissedIssue { return DismissedIssue(key: key, dismissedAt: dismissedAt) } } + +/// One tracked region, stored as a row (not a single blob of ids) so concurrent +/// cross-device edits merge: adding different regions on two devices keeps both, +/// and add/add of the same region collapses to one on read (`trackedRegions()` +/// returns a `Set`). `regionID` is `Region.rawValue`; optional per the CloudKit +/// mirror's requirement. +@Model +final class SDTrackedRegion { + var regionID: String? + + init() {} + + init(regionID: String) { + self.regionID = regionID + } +} diff --git a/Where/WhereCore/Sources/Persistence/WhereStore.swift b/Where/WhereCore/Sources/Persistence/WhereStore.swift index d76218a1..1268e92d 100644 --- a/Where/WhereCore/Sources/Persistence/WhereStore.swift +++ b/Where/WhereCore/Sources/Persistence/WhereStore.swift @@ -1,4 +1,5 @@ import Foundation +import RegionKit /// Persistence boundary for the Where feature. Everything that crosses /// this protocol is a value type, so callers (the `WhereServices` collaborators) @@ -96,4 +97,35 @@ public protocol WhereStore: Sendable { /// instead of stamping "now". Upserts by `key`. Must run inside /// `perform { ... }`. Used by backup import. func restoreDismissedIssue(_ issue: DismissedIssue) async throws + + /// The user's tracked regions — the set the app loads geometry for and + /// attributes against. Stored as one row per region (so concurrent + /// cross-device edits merge rather than clobbering the whole set) and read + /// as a `Set`; when the user hasn't chosen any yet, this returns + /// ``WhereStore/defaultTrackedRegions``. + func trackedRegions() async throws -> Set + + /// Add (`tracked == true`) or remove (`false`) a single tracked region by + /// its `Region.rawValue`. Per-region so two devices adding different regions + /// both survive a sync. Must run inside `perform { ... }`. + func setTrackedRegion(_ tracked: Bool, id: String) async throws +} + +extension WhereStore { + /// Regions tracked out of the box, until the user chooses their own. The + /// "no rows yet" fallback for ``trackedRegions()`` and the historical + /// California / New York / Canada / European Union set. + public static var defaultTrackedRegions: Set { + [.california, .newYork, .canada, .europeanUnion] + } + + /// Default: the out-of-the-box set. `SwiftDataStore` overrides this with the + /// persisted rows; in-memory test fakes inherit the default. + public func trackedRegions() async throws -> Set { + Self.defaultTrackedRegions + } + + /// Default: a no-op. `SwiftDataStore` overrides this to persist rows; test + /// fakes that don't exercise tracked-region persistence inherit the no-op. + public func setTrackedRegion(_: Bool, id _: String) async throws {} } diff --git a/Where/WhereCore/Sources/RecentActivity/RecentActivitySummarizer.swift b/Where/WhereCore/Sources/RecentActivity/RecentActivitySummarizer.swift index c85ab1f5..68915f1e 100644 --- a/Where/WhereCore/Sources/RecentActivity/RecentActivitySummarizer.swift +++ b/Where/WhereCore/Sources/RecentActivity/RecentActivitySummarizer.swift @@ -99,7 +99,7 @@ public actor RecentActivitySummarizer { public static let defaultSegmentLimit = 60 private let store: any WhereStore - private let attributor: RegionAttributor + private let attributor: any RegionAttributing private let generator: any ActivitySummaryGenerating private let calendar: Calendar private let now: @Sendable () -> Date @@ -109,7 +109,7 @@ public actor RecentActivitySummarizer { init( store: any WhereStore, - attributor: RegionAttributor, + attributor: any RegionAttributing, generator: any ActivitySummaryGenerating, calendar: Calendar, now: @escaping @Sendable () -> Date, diff --git a/Where/WhereCore/Sources/RegionAttribution.swift b/Where/WhereCore/Sources/RegionAttribution.swift new file mode 100644 index 00000000..0b4a6b6c --- /dev/null +++ b/Where/WhereCore/Sources/RegionAttribution.swift @@ -0,0 +1,90 @@ +import Foundation +import os +import RegionKit + +/// A live, swappable `RegionAttributing` derived from the store's tracked +/// regions. A reference type so every `WhereServices` collaborator that holds it +/// sees a rebuild the moment the tracked set changes — a local edit or a remote +/// CloudKit import, both of which arrive on `store.changes()`. +/// +/// `region(at:)` / `distanceToBoundary(_:from:)` forward to the current +/// snapshot. Rebuilding (re-parsing the per-region GeoJSON) happens only when +/// the tracked *set* actually changes, so reacting to every `changes()` ping +/// stays cheap on the GPS hot path (a fetch + a set compare). +final class RegionAttribution: RegionAttributing { + private struct State { + var attributor: RegionAttributor + var trackedIDs: Set + } + + private static let logger = WhereLog.channel(.regionAttribution) + + private let store: any WhereStore + private let state: OSAllocatedUnfairLock + /// Set once in `init` and only cancelled in `deinit`, so there's no + /// concurrent access to guard. + private nonisolated(unsafe) var observer: Task? + + /// - Parameters: + /// - store: the source of tracked regions and the `changes()` signal. + /// - initial: the attributor for the tracked set as of construction (built + /// by ``WhereServices/make(store:locationSource:)`` after reading the + /// store, so there's no flash of the wrong set at launch). + /// - trackedIDs: the region ids `initial` was built from. + init(store: any WhereStore, initial: RegionAttributor, trackedIDs: Set) { + self.store = store + state = OSAllocatedUnfairLock(initialState: State( + attributor: initial, + trackedIDs: trackedIDs, + )) + observer = Task { [weak self] in + for await _ in store.changes() { + await self?.reconcile() + } + } + } + + deinit { + observer?.cancel() + } + + private var current: RegionAttributor { + state.withLock { $0.attributor } + } + + func region(at coordinate: Coordinate) -> Region { + current.region(at: coordinate) + } + + func distanceToBoundary(of region: Region, from coordinate: Coordinate) -> Double? { + current.distanceToBoundary(of: region, from: coordinate) + } + + var loadedRegions: [Region] { + current.loadedRegions + } + + /// Re-read the tracked regions and rebuild the attributor when the set + /// changed. Cheap when nothing changed (a fetch + a set compare); the file + /// parse runs only on an actual change. Serialized by the single observer + /// task; also exposed so callers/tests can reconcile deterministically. + func reconcile() async { + let tracked: Set + do { + tracked = try await store.trackedRegions() + } catch { + // Degraded-but-handled: keep the last-good attributor rather than + // silently freezing on an empty/stale set, and surface the failure so + // a persistent read error is observable instead of invisible. + Self.logger.warning("Failed to read tracked regions for attributor rebuild: \(error)") + return + } + let ids = Set(tracked.map(\.rawValue)) + let changed = state.withLock { $0.trackedIDs != ids } + guard changed else { return } + // Canonical order so the rebuilt attributor's first-match priority is + // deterministic (see WhereServices.make). + let rebuilt = RegionAttributor(for: Region.inCanonicalOrder(tracked)) + state.withLock { $0 = State(attributor: rebuilt, trackedIDs: ids) } + } +} diff --git a/Where/WhereCore/Sources/Reporting/ReportReader.swift b/Where/WhereCore/Sources/Reporting/ReportReader.swift index 51bffe67..152bccea 100644 --- a/Where/WhereCore/Sources/Reporting/ReportReader.swift +++ b/Where/WhereCore/Sources/Reporting/ReportReader.swift @@ -11,7 +11,7 @@ import RegionKit public struct ReportReader: Sendable { let store: any WhereStore let aggregator: DayAggregator - let attributor: RegionAttributor + let attributor: any RegionAttributing /// The half-open date interval covering `year` in the aggregator's calendar. func yearInterval(year: Int) -> DateInterval { diff --git a/Where/WhereCore/Sources/WhereLog.swift b/Where/WhereCore/Sources/WhereLog.swift index eec06916..215abd34 100644 --- a/Where/WhereCore/Sources/WhereLog.swift +++ b/Where/WhereCore/Sources/WhereLog.swift @@ -33,6 +33,7 @@ public enum WhereLog { case loggingReminderScheduler = "LoggingReminderScheduler" case model = "WhereModel" case recentActivitySummarizer = "RecentActivitySummarizer" + case regionAttribution = "RegionAttribution" case reminderReconciler = "ReminderReconciler" case session = "WhereSession" case shareExtension = "WhereShareExtension" diff --git a/Where/WhereCore/Sources/WhereServices+Intents.swift b/Where/WhereCore/Sources/WhereServices+Intents.swift index c1696cc2..a135e2ab 100644 --- a/Where/WhereCore/Sources/WhereServices+Intents.swift +++ b/Where/WhereCore/Sources/WhereServices+Intents.swift @@ -18,17 +18,19 @@ extension WhereServices { /// on an empty store. public static func forIntents( now: @escaping @Sendable () -> Date = { Date() }, - ) throws -> WhereServices { - try makeForIntents(store: SwiftDataStore.make(storage: .localOnly), now: now) + ) async throws -> WhereServices { + try await makeForIntents(store: SwiftDataStore.make(storage: .localOnly), now: now) } /// Composition seam shared by `forIntents()` (production, real App Group /// store) and unit tests (an in-memory store): wraps `store` in the same - /// GPS-free service stack an intent uses. + /// GPS-free service stack an intent uses. `async` because it derives the + /// attributor from the store's tracked regions (via ``make(store:locationSource:)``), + /// so an intent attributes against the same synced set the app does. static func makeForIntents( store: any WhereStore, now: @escaping @Sendable () -> Date = { Date() }, - ) -> WhereServices { - WhereServices(store: store, locationSource: IdleLocationSource(), now: now) + ) async throws -> WhereServices { + try await make(store: store, locationSource: IdleLocationSource(), now: now) } } diff --git a/Where/WhereCore/Sources/WhereServices.swift b/Where/WhereCore/Sources/WhereServices.swift index 64f902ce..16d4b520 100644 --- a/Where/WhereCore/Sources/WhereServices.swift +++ b/Where/WhereCore/Sources/WhereServices.swift @@ -52,10 +52,17 @@ public struct WhereServices: Sendable { /// SwiftData never has to route through the value-type `WhereStore` boundary. public let modelContainer: ModelContainer? + /// Synchronous assembly with an explicitly-provided `attributor` (default: + /// the historical four via `RegionAttributor.shared`). For **tests and + /// previews** — hence `@_spi(Testing)` — which build in-memory stacks without + /// an async store read. Production wiring (the app launch, the App Intents + /// process) goes through the public `make(...)`, which derives the attributor + /// from the store's tracked regions. + @_spi(Testing) public init( store: any WhereStore, locationSource: any LocationSource, - attributor: RegionAttributor = .shared, + attributor: any RegionAttributing = RegionAttributor.shared, aggregator: DayAggregator = DayAggregator(), reminderScheduler: any LoggingReminderScheduling = UserNotificationReminderScheduler(), summaryScheduler: any DailySummaryScheduling = UserNotificationDailySummaryScheduler(), @@ -186,6 +193,52 @@ public struct WhereServices: Sendable { modelContainer = (store as? SwiftDataStore)?.inspectorContainer } + /// Assemble services whose attributor is derived from the store's **tracked + /// regions** (the synced set the user chose, or the default four) and stays + /// live: the returned `RegionAttribution` rebuilds on `store.changes()` when + /// that set changes — a local edit or a remote CloudKit import. + /// + /// Reading the tracked set is why this is `async` where `init` is not: the + /// synchronous `init` is for tests/previews (in-memory stores with no tracked + /// rows resolve to the default four, matching `RegionAttributor.shared`), + /// while production wiring — the app launch and the App Intents process — + /// goes through here so both attribute against the *same* stored set. + public static func make( + store: any WhereStore, + locationSource: any LocationSource, + aggregator: DayAggregator = DayAggregator(), + reminderScheduler: any LoggingReminderScheduling = UserNotificationReminderScheduler(), + summaryScheduler: any DailySummaryScheduling = UserNotificationDailySummaryScheduler(), + issueAlertScheduler: any DataIssueAlertScheduling = + UserNotificationDataIssueAlertScheduler(), + widgetRefresher: any WidgetTimelineRefreshing = WidgetCenterTimelineRefresher(), + locationOutbox: any LocationOutbox = NoOpLocationOutbox(), + activitySummaryGenerator: any ActivitySummaryGenerating = FoundationModelSummaryGenerator(), + now: @escaping @Sendable () -> Date = { Date() }, + ) async throws -> WhereServices { + let tracked = try await store.trackedRegions() + let attribution = RegionAttribution( + store: store, + // Canonical order (not `Array(Set)`) so the attributor's first-match + // priority is deterministic and matches the catalog order. + initial: RegionAttributor(for: Region.inCanonicalOrder(tracked)), + trackedIDs: Set(tracked.map(\.rawValue)), + ) + return WhereServices( + store: store, + locationSource: locationSource, + attributor: attribution, + aggregator: aggregator, + reminderScheduler: reminderScheduler, + summaryScheduler: summaryScheduler, + issueAlertScheduler: issueAlertScheduler, + widgetRefresher: widgetRefresher, + locationOutbox: locationOutbox, + activitySummaryGenerator: activitySummaryGenerator, + now: now, + ) + } + /// A fresh stream that fires whenever persisted data changes — local commits /// (manual edits, live GPS ingestion) and, for a CloudKit-backed store, /// remote imports synced from another device. `WhereSession` subscribes and @@ -196,6 +249,14 @@ public struct WhereServices: Sendable { store.changes() } + /// The user's tracked regions (the synced set the app attributes against), + /// read fresh from the store. Exposed for the App Intents layer, whose "pick + /// a region" suggestions and Spotlight index surface the tracked set (rather + /// than every available region). + public func trackedRegions() async throws -> Set { + try await store.trackedRegions() + } + /// Return the services to a clean slate for the app's "erase all data & /// reset" teardown: quiesce GPS ingestion (stop monitoring, refuse further /// samples, await any in-flight write, and drop the retry backlog) so diff --git a/Where/WhereCore/Sources/Widgets/WidgetDataReader.swift b/Where/WhereCore/Sources/Widgets/WidgetDataReader.swift index bfe43eee..d89262c2 100644 --- a/Where/WhereCore/Sources/Widgets/WidgetDataReader.swift +++ b/Where/WhereCore/Sources/Widgets/WidgetDataReader.swift @@ -37,12 +37,12 @@ public struct WidgetSnapshot: Hashable, Sendable, Codable { public struct WidgetDataReader: Sendable { private let store: any WhereStore private let aggregator: DayAggregator - private let attributor: RegionAttributor + private let attributor: any RegionAttributing public init( store: any WhereStore, aggregator: DayAggregator = DayAggregator(), - attributor: RegionAttributor = .shared, + attributor: any RegionAttributing = RegionAttributor.shared, ) { self.store = store self.aggregator = aggregator diff --git a/Where/WhereCore/Sources/Widgets/WidgetSnapshotPublisher.swift b/Where/WhereCore/Sources/Widgets/WidgetSnapshotPublisher.swift index 01a713fc..be06b5a3 100644 --- a/Where/WhereCore/Sources/Widgets/WidgetSnapshotPublisher.swift +++ b/Where/WhereCore/Sources/Widgets/WidgetSnapshotPublisher.swift @@ -18,7 +18,7 @@ import RegionKit public actor WidgetSnapshotPublisher { private let widgetReader: WidgetDataReader private let widgetRefresher: any WidgetTimelineRefreshing - private let attributor: RegionAttributor + private let attributor: any RegionAttributing private let calendar: Calendar private let now: @Sendable () -> Date private let maxAge: TimeInterval @@ -42,7 +42,7 @@ public actor WidgetSnapshotPublisher { init( widgetReader: WidgetDataReader, widgetRefresher: any WidgetTimelineRefreshing, - attributor: RegionAttributor, + attributor: any RegionAttributing, calendar: Calendar, now: @escaping @Sendable () -> Date, maxAge: TimeInterval = WidgetSnapshotPublisher.defaultMaxAge, diff --git a/Where/WhereCore/Tests/BackupCoordinatorTests.swift b/Where/WhereCore/Tests/BackupCoordinatorTests.swift index 0c9d333d..607e2a3a 100644 --- a/Where/WhereCore/Tests/BackupCoordinatorTests.swift +++ b/Where/WhereCore/Tests/BackupCoordinatorTests.swift @@ -137,6 +137,42 @@ struct BackupCoordinatorTests { #expect(try await destination.store.allDismissedIssues() == [Self.dismissal]) } + @Test func replaceImportRestoresTheArchivesTrackedRegions() async throws { + let source = try Self.makeHarness() + let texas = try #require(Region(rawValue: "us-TX")) + try await source.store.perform { + try await source.store.setTrackedRegion(true, id: Region.california.rawValue) + try await source.store.setTrackedRegion(true, id: texas.rawValue) + } + let url = try await source.coordinator.exportBackup() + defer { try? FileManager.default.removeItem(at: url.deletingLastPathComponent()) } + + let destination = try Self.makeHarness() + let summary = try await destination.coordinator.importBackup(from: url, strategy: .replace) + + #expect(summary.trackedRegionCount == 2) + #expect(try await destination.store.trackedRegions() == [.california, texas]) + } + + @Test func mergeImportUnionsTrackedRegionsWithTheExisting() async throws { + let source = try Self.makeHarness() + let texas = try #require(Region(rawValue: "us-TX")) + try await source.store.perform { + try await source.store.setTrackedRegion(true, id: texas.rawValue) + } + let url = try await source.coordinator.exportBackup() + defer { try? FileManager.default.removeItem(at: url.deletingLastPathComponent()) } + + let destination = try Self.makeHarness() + try await destination.store.perform { + try await destination.store.setTrackedRegion(true, id: Region.california.rawValue) + } + _ = try await destination.coordinator.importBackup(from: url, strategy: .merge) + + // Merge unions the archive's set into the device's existing selection. + #expect(try await destination.store.trackedRegions() == [.california, texas]) + } + /// Regression guard: an import rewrites day data, so the coordinator must /// invoke its `onImport` hook once new data lands — the composition root /// wires that hook to the badge / notification / widget reconcile, so diff --git a/Where/WhereCore/Tests/BackupServiceTests.swift b/Where/WhereCore/Tests/BackupServiceTests.swift index 929b93ae..8b0d8396 100644 --- a/Where/WhereCore/Tests/BackupServiceTests.swift +++ b/Where/WhereCore/Tests/BackupServiceTests.swift @@ -139,7 +139,7 @@ struct BackupServiceTests { @Test func legacyManualDayWithoutAuthoritativeKeyDecodesAsAdditive() throws { // Simulates a manifest written before `isAuthoritative` existed: the // missing key must decode as additive rather than failing. - let json = #"{"date":"2026-07-04T00:00:00Z","regions":["newYork"]}"# + let json = #"{"date":"2026-07-04T00:00:00Z","regions":["us-NY"]}"# let decoder = JSONDecoder() decoder.dateDecodingStrategy = .iso8601 let decoded = try decoder.decode(DayPresence.self, from: Data(json.utf8)) @@ -149,6 +149,36 @@ struct BackupServiceTests { #expect(decoded.audit == nil) } + @Test func trackedRegionsSurviveArchiveRoundTrip() throws { + let service = BackupService() + let texas = try #require(Region(rawValue: "us-TX")) + let url = try service.makeArchiveFile( + samples: [], + evidence: [], + manualDays: [], + trackedRegions: [.california, texas], + blobs: [:], + exportedAt: Self.exportDate, + ) + defer { try? FileManager.default.removeItem(at: url.deletingLastPathComponent()) } + + let result = try service.readArchive(at: url) + #expect(result.archive.trackedRegions == [.california, texas]) + } + + @Test func legacyManifestWithoutTrackedRegionsDecodesAsEmpty() throws { + // A manifest written before `trackedRegions` existed must decode to [] + // rather than failing (additive field, like `dismissedIssues`). + let json = #""" + {"formatVersion":1,"exportedAt":"2026-06-05T12:00:00Z","samples":[],"evidence":[],"manualDays":[],"assets":[]} + """# + let decoder = JSONDecoder() + decoder.dateDecodingStrategy = .iso8601 + let archive = try decoder.decode(BackupArchive.self, from: Data(json.utf8)) + #expect(archive.trackedRegions.isEmpty) + #expect(archive.dismissedIssues.isEmpty) + } + @Test func auditManualDaySurvivesArchiveRoundTrip() throws { let service = BackupService() let manualDays = [ @@ -228,7 +258,7 @@ struct BackupServiceTests { let json = """ {"formatVersion":1,"exportedAt":"2023-11-14T22:13:20Z","samples":[],\ "evidence":[],"manualDays":[{"date":"2026-02-08T05:00:00Z",\ - "regions":["newYork"],"isAuthoritative":false}],"assets":[]} + "regions":["us-NY"],"isAuthoritative":false}],"assets":[]} """ let decoder = JSONDecoder() decoder.dateDecodingStrategy = .iso8601 diff --git a/Where/WhereCore/Tests/DailySummaryReconcilerTests.swift b/Where/WhereCore/Tests/DailySummaryReconcilerTests.swift index b7984a5d..baf60be7 100644 --- a/Where/WhereCore/Tests/DailySummaryReconcilerTests.swift +++ b/Where/WhereCore/Tests/DailySummaryReconcilerTests.swift @@ -1,4 +1,5 @@ import Foundation +import RegionKit import Testing @testable import WhereCore @@ -13,7 +14,11 @@ struct DailySummaryReconcilerTests { calendar: WhereCoreTestSupport.calendar(), timeZone: WhereCoreTestSupport.pacific, ) - let reader = ReportReader(store: store, aggregator: aggregator, attributor: .shared) + let reader = ReportReader( + store: store, + aggregator: aggregator, + attributor: RegionAttributor.shared, + ) let spy = SpyDailySummaryScheduler() let reconciler = DailySummaryReconciler( scheduler: spy, diff --git a/Where/WhereCore/Tests/DataIssueAlertReconcilerTests.swift b/Where/WhereCore/Tests/DataIssueAlertReconcilerTests.swift index ca34f6af..16154616 100644 --- a/Where/WhereCore/Tests/DataIssueAlertReconcilerTests.swift +++ b/Where/WhereCore/Tests/DataIssueAlertReconcilerTests.swift @@ -1,4 +1,5 @@ import Foundation +import RegionKit import Testing @testable import WhereCore @@ -19,10 +20,14 @@ struct DataIssueAlertReconcilerTests { let store = try SwiftDataStore.inMemory() let calendar = WhereCoreTestSupport.calendar() let aggregator = DayAggregator(calendar: calendar, timeZone: WhereCoreTestSupport.pacific) - let reader = ReportReader(store: store, aggregator: aggregator, attributor: .shared) + let reader = ReportReader( + store: store, + aggregator: aggregator, + attributor: RegionAttributor.shared, + ) let scanner = DataIssueScanner( reportReader: reader, - attributor: .shared, + attributor: RegionAttributor.shared, calendar: calendar, now: now, ) diff --git a/Where/WhereCore/Tests/DataIssueDetectorTestSupport.swift b/Where/WhereCore/Tests/DataIssueDetectorTestSupport.swift index 2a81b46a..c147871e 100644 --- a/Where/WhereCore/Tests/DataIssueDetectorTestSupport.swift +++ b/Where/WhereCore/Tests/DataIssueDetectorTestSupport.swift @@ -37,7 +37,7 @@ enum DataIssueDetectorFixtures { report: YearReport(year: year, days: days, totals: totals), otherDayCoordinates: otherDayCoordinates, primaryRegions: primaryRegions, - attributor: .shared, + attributor: RegionAttributor.shared, driftThresholdMeters: driftThresholdMeters, calendar: calendar, now: now ?? day(year, 6, 15), diff --git a/Where/WhereCore/Tests/DataIssueScannerTests.swift b/Where/WhereCore/Tests/DataIssueScannerTests.swift index 00d9d017..b69672f0 100644 --- a/Where/WhereCore/Tests/DataIssueScannerTests.swift +++ b/Where/WhereCore/Tests/DataIssueScannerTests.swift @@ -1,6 +1,7 @@ import Foundation +import RegionKit import Testing -@testable import WhereCore +@_spi(Testing) @testable import WhereCore struct DataIssueScannerTests { private static var calendar: Calendar { @@ -35,11 +36,11 @@ struct DataIssueScannerTests { let reader = ReportReader( store: store, aggregator: DayAggregator(calendar: Self.calendar, timeZone: Self.calendar.timeZone), - attributor: .shared, + attributor: RegionAttributor.shared, ) return DataIssueScanner( reportReader: reader, - attributor: .shared, + attributor: RegionAttributor.shared, calendar: Self.calendar, now: now, scanInterval: scanInterval, diff --git a/Where/WhereCore/Tests/DayJournalTests.swift b/Where/WhereCore/Tests/DayJournalTests.swift index ea961a0f..aad946b6 100644 --- a/Where/WhereCore/Tests/DayJournalTests.swift +++ b/Where/WhereCore/Tests/DayJournalTests.swift @@ -55,10 +55,14 @@ struct DayJournalTests { calendar: WhereCoreTestSupport.calendar(), timeZone: WhereCoreTestSupport.pacific, ) - let reader = ReportReader(store: store, aggregator: aggregator, attributor: .shared) + let reader = ReportReader( + store: store, + aggregator: aggregator, + attributor: RegionAttributor.shared, + ) let scanner = DataIssueScanner( reportReader: reader, - attributor: .shared, + attributor: RegionAttributor.shared, calendar: WhereCoreTestSupport.calendar(), now: now, ) @@ -81,10 +85,10 @@ struct DayJournalTests { widgetReader: WidgetDataReader( store: store, aggregator: aggregator, - attributor: .shared, + attributor: RegionAttributor.shared, ), widgetRefresher: refresher, - attributor: .shared, + attributor: RegionAttributor.shared, calendar: WhereCoreTestSupport.calendar(), now: now, ) diff --git a/Where/WhereCore/Tests/LocationAuthorizationTests.swift b/Where/WhereCore/Tests/LocationAuthorizationTests.swift index 9c9e7a4c..e19a3b05 100644 --- a/Where/WhereCore/Tests/LocationAuthorizationTests.swift +++ b/Where/WhereCore/Tests/LocationAuthorizationTests.swift @@ -1,6 +1,6 @@ import Foundation import Testing -import WhereCore +@_spi(Testing) import WhereCore struct LocationAuthorizationTests { private func makeServices( diff --git a/Where/WhereCore/Tests/NewYorkHeavyYearTests.swift b/Where/WhereCore/Tests/NewYorkHeavyYearTests.swift index feb57b6c..11c05f20 100644 --- a/Where/WhereCore/Tests/NewYorkHeavyYearTests.swift +++ b/Where/WhereCore/Tests/NewYorkHeavyYearTests.swift @@ -1,7 +1,7 @@ import Foundation import RegionKit import Testing -import WhereCore +@_spi(Testing) import WhereCore /// Mirror image of `SimulatedYearTests`: scripts a year with far more /// time in New York than in California to verify the aggregator and diff --git a/Where/WhereCore/Tests/RecentActivitySummarizerTests.swift b/Where/WhereCore/Tests/RecentActivitySummarizerTests.swift index ed1d8726..13966a84 100644 --- a/Where/WhereCore/Tests/RecentActivitySummarizerTests.swift +++ b/Where/WhereCore/Tests/RecentActivitySummarizerTests.swift @@ -46,7 +46,7 @@ struct RecentActivitySummarizerTests { ) -> RecentActivitySummarizer { RecentActivitySummarizer( store: store, - attributor: .shared, + attributor: RegionAttributor.shared, generator: generator, calendar: .current, now: { now }, diff --git a/Where/WhereCore/Tests/RegionAttributionTests.swift b/Where/WhereCore/Tests/RegionAttributionTests.swift new file mode 100644 index 00000000..a9dc489f --- /dev/null +++ b/Where/WhereCore/Tests/RegionAttributionTests.swift @@ -0,0 +1,50 @@ +import Foundation +import RegionKit +import Testing +@testable import WhereCore + +/// The live attributor rebuilds when the store's tracked regions change, so a +/// synced edit (local or a remote CloudKit import, both arriving on +/// `store.changes()`) takes effect without a relaunch. +struct RegionAttributionTests { + private let sanFrancisco = Coordinate(latitude: 37.7749, longitude: -122.4194) + private let chicago = Coordinate(latitude: 41.8781, longitude: -87.6298) + + @Test func rebuildsWhenTrackedRegionsChange() async throws { + let store = try SwiftDataStore.inMemory() + let illinois = try #require(Region(rawValue: "us-IL")) + let attribution = RegionAttribution( + store: store, + initial: RegionAttributor(for: [.california]), + trackedIDs: [Region.california.rawValue], + ) + + #expect(attribution.region(at: sanFrancisco) == .california) + #expect(attribution.region(at: chicago) == .other) + + // Switch the tracked set to Illinois. The commit pings `changes()` (the + // observer reconciles); reconcile again for a deterministic assertion. + try await store.perform { + try await store.setTrackedRegion(true, id: illinois.rawValue) + } + await attribution.reconcile() + + #expect(attribution.region(at: chicago) == illinois) + // California is no longer tracked, so SF falls through to `.other`. + #expect(attribution.region(at: sanFrancisco) == .other) + #expect(Set(attribution.loadedRegions) == [illinois]) + } + + @Test func reconcileIsANoOpWhenTheSetIsUnchanged() async throws { + let store = try SwiftDataStore.inMemory() + let attribution = RegionAttribution( + store: store, + initial: RegionAttributor(for: Array(SwiftDataStore.defaultTrackedRegions)), + trackedIDs: Set(SwiftDataStore.defaultTrackedRegions.map(\.rawValue)), + ) + // No rows persisted → `trackedRegions()` still returns the default four, + // matching the initial set, so nothing rebuilds and attribution holds. + await attribution.reconcile() + #expect(attribution.region(at: sanFrancisco) == .california) + } +} diff --git a/Where/WhereCore/Tests/ReminderReconcilerTests.swift b/Where/WhereCore/Tests/ReminderReconcilerTests.swift index 7b7b5fc9..b63031af 100644 --- a/Where/WhereCore/Tests/ReminderReconcilerTests.swift +++ b/Where/WhereCore/Tests/ReminderReconcilerTests.swift @@ -21,10 +21,14 @@ struct ReminderReconcilerTests { calendar: WhereCoreTestSupport.calendar(), timeZone: WhereCoreTestSupport.pacific, ) - let reader = ReportReader(store: store, aggregator: aggregator, attributor: .shared) + let reader = ReportReader( + store: store, + aggregator: aggregator, + attributor: RegionAttributor.shared, + ) let scanner = DataIssueScanner( reportReader: reader, - attributor: .shared, + attributor: RegionAttributor.shared, calendar: WhereCoreTestSupport.calendar(), now: now, ) diff --git a/Where/WhereCore/Tests/ReportReaderTests.swift b/Where/WhereCore/Tests/ReportReaderTests.swift index d4b963bb..a9c500bf 100644 --- a/Where/WhereCore/Tests/ReportReaderTests.swift +++ b/Where/WhereCore/Tests/ReportReaderTests.swift @@ -12,7 +12,11 @@ struct ReportReaderTests { calendar: WhereCoreTestSupport.calendar(), timeZone: WhereCoreTestSupport.pacific, ) - let reader = ReportReader(store: store, aggregator: aggregator, attributor: .shared) + let reader = ReportReader( + store: store, + aggregator: aggregator, + attributor: RegionAttributor.shared, + ) return (reader, store) } diff --git a/Where/WhereCore/Tests/SimulatedYearTests.swift b/Where/WhereCore/Tests/SimulatedYearTests.swift index a0276a8a..82acd12b 100644 --- a/Where/WhereCore/Tests/SimulatedYearTests.swift +++ b/Where/WhereCore/Tests/SimulatedYearTests.swift @@ -1,7 +1,7 @@ import Foundation import RegionKit import Testing -import WhereCore +@_spi(Testing) import WhereCore struct SimulatedYearTests { private static let pacific = WhereCoreTestSupport.pacific diff --git a/Where/WhereCore/Tests/TimeZoneIndependenceTests.swift b/Where/WhereCore/Tests/TimeZoneIndependenceTests.swift index 52ba2112..97361af6 100644 --- a/Where/WhereCore/Tests/TimeZoneIndependenceTests.swift +++ b/Where/WhereCore/Tests/TimeZoneIndependenceTests.swift @@ -22,7 +22,7 @@ struct TimeZoneIndependenceTests { ReportReader( store: store, aggregator: DayAggregator(timeZone: timeZone), - attributor: .shared, + attributor: RegionAttributor.shared, ) } diff --git a/Where/WhereCore/Tests/TrackedRegionStoreTests.swift b/Where/WhereCore/Tests/TrackedRegionStoreTests.swift new file mode 100644 index 00000000..4cc4d28a --- /dev/null +++ b/Where/WhereCore/Tests/TrackedRegionStoreTests.swift @@ -0,0 +1,50 @@ +import Foundation +import RegionKit +import Testing +@testable import WhereCore + +/// The store's tracked-region rows: one row per region so concurrent +/// cross-device edits merge, read as a `Set`, defaulting to the four until the +/// user chooses. +struct TrackedRegionStoreTests { + @Test func defaultsToTheFourWhenNoRows() async throws { + let store = try SwiftDataStore.inMemory() + #expect(try await store.trackedRegions() == SwiftDataStore.defaultTrackedRegions) + } + + @Test func addAndRemoveRoundTrip() async throws { + let store = try SwiftDataStore.inMemory() + let texas = try #require(Region(rawValue: "us-TX")) + try await store.perform { + try await store.setTrackedRegion(true, id: Region.california.rawValue) + try await store.setTrackedRegion(true, id: texas.rawValue) + } + // Once any row exists, the tracked set is exactly the rows (not the + // default four unioned in). + #expect(try await store.trackedRegions() == [.california, texas]) + + try await store.perform { + try await store.setTrackedRegion(false, id: Region.california.rawValue) + } + #expect(try await store.trackedRegions() == [texas]) + } + + @Test func duplicateAddCollapsesToOne() async throws { + let store = try SwiftDataStore.inMemory() + let texas = try #require(Region(rawValue: "us-TX")) + try await store.perform { + try await store.setTrackedRegion(true, id: texas.rawValue) + try await store.setTrackedRegion(true, id: texas.rawValue) + } + #expect(try await store.trackedRegions() == [texas]) + } + + @Test func clearAllResetsToTheDefault() async throws { + let store = try SwiftDataStore.inMemory() + try await store.perform { + try await store.setTrackedRegion(true, id: "us-TX") + } + try await store.perform { try await store.clearAll() } + #expect(try await store.trackedRegions() == SwiftDataStore.defaultTrackedRegions) + } +} diff --git a/Where/WhereCore/Tests/WhereLogTests.swift b/Where/WhereCore/Tests/WhereLogTests.swift index 500f51ef..7a3e3e9e 100644 --- a/Where/WhereCore/Tests/WhereLogTests.swift +++ b/Where/WhereCore/Tests/WhereLogTests.swift @@ -26,7 +26,8 @@ func categoryRawValuesMatchTypeNames() { #expect(WhereLog.Category.recentActivitySummarizer.rawValue == "RecentActivitySummarizer") #expect(WhereLog.Category.shareExtension.rawValue == "WhereShareExtension") #expect(WhereLog.Category.whereIntents.rawValue == "WhereIntents") - #expect(WhereLog.Category.allCases.count == 22) + #expect(WhereLog.Category.regionAttribution.rawValue == "RegionAttribution") + #expect(WhereLog.Category.allCases.count == 23) } @Test diff --git a/Where/WhereCore/Tests/WhereServices+IntentsTests.swift b/Where/WhereCore/Tests/WhereServices+IntentsTests.swift index d95f1a10..8e24d241 100644 --- a/Where/WhereCore/Tests/WhereServices+IntentsTests.swift +++ b/Where/WhereCore/Tests/WhereServices+IntentsTests.swift @@ -10,7 +10,7 @@ import Testing struct WhereServicesIntentsTests { @Test func stackWritesThroughJournalAndReadsBackThroughReports() async throws { let store = try SwiftDataStore.inMemory() - let services = WhereServices.makeForIntents(store: store) + let services = try await WhereServices.makeForIntents(store: store) try await services.journal.addManualDay( date: WhereCoreTestSupport.iso("2026-06-15T12:00:00-07:00"), @@ -25,7 +25,7 @@ struct WhereServicesIntentsTests { @Test func stackNeverOffersALocationFix() async throws { let store = try SwiftDataStore.inMemory() - let services = WhereServices.makeForIntents(store: store) + let services = try await WhereServices.makeForIntents(store: store) // The idle source backs the ingestor, so a manual entry made from an // intent honestly records "no captured location" rather than a fix. diff --git a/Where/WhereCore/Tests/WhereServicesTests.swift b/Where/WhereCore/Tests/WhereServicesTests.swift index 0d4d8efe..045b6728 100644 --- a/Where/WhereCore/Tests/WhereServicesTests.swift +++ b/Where/WhereCore/Tests/WhereServicesTests.swift @@ -1,7 +1,7 @@ import Foundation import RegionKit import Testing -import WhereCore +@_spi(Testing) import WhereCore /// Integration coverage for the assembled `WhereServices`: the cross-collaborator /// wiring that no single focused suite owns — the ingestor's post-persist hook @@ -31,6 +31,56 @@ struct WhereServicesTests { return (services, store, source) } + private static func sample( + _ iso: String, + latitude: Double, + longitude: Double, + ) -> LocationSample { + LocationSample( + id: UUID(), + timestamp: WhereCoreTestSupport.iso(iso), + coordinate: Coordinate(latitude: latitude, longitude: longitude), + horizontalAccuracy: 5, + source: .manual, + ) + } + + /// End-to-end proof that `make(...)` derives the attributor from the store's + /// tracked regions and threads it through the read path — not just that the + /// store + provider work in isolation. + @Test func makeAttributesReadsAgainstTheStoredTrackedSet() async throws { + let store = try SwiftDataStore.inMemory() + // Track only California. + try await store.perform { + try await store.setTrackedRegion(true, id: Region.california.rawValue) + } + let services = try await WhereServices.make( + store: store, + locationSource: ScriptedLocationSource(), + aggregator: Self.makeAggregator(), + ) + // Two samples on the same Pacific day: one in California, one in New York. + try await store.perform { + try await store.add(sample: Self.sample( + "2026-06-15T09:00:00-07:00", + latitude: 37.7749, + longitude: -122.4194, + )) + try await store.add(sample: Self.sample( + "2026-06-15T15:00:00-07:00", + latitude: 40.7128, + longitude: -74.0060, + )) + } + + let report = try await services.reports.yearReport(for: 2026) + // California is tracked, so the SF sample counts. New York isn't loaded, + // so the NYC sample attributes to `.other` rather than `.newYork`. + #expect(report.totals[.california] == 1) + #expect(report.totals[.newYork] == nil) + #expect(report.totals[.other] == 1) + } + private static var pacificCalendar: Calendar { WhereCoreTestSupport.calendar() } diff --git a/Where/WhereCore/Tests/WidgetSnapshotPublisherTests.swift b/Where/WhereCore/Tests/WidgetSnapshotPublisherTests.swift index c304a625..e85019e9 100644 --- a/Where/WhereCore/Tests/WidgetSnapshotPublisherTests.swift +++ b/Where/WhereCore/Tests/WidgetSnapshotPublisherTests.swift @@ -26,12 +26,16 @@ struct WidgetSnapshotPublisherTests { calendar: WhereCoreTestSupport.calendar(), timeZone: WhereCoreTestSupport.pacific, ) - let reader = WidgetDataReader(store: store, aggregator: aggregator, attributor: .shared) + let reader = WidgetDataReader( + store: store, + aggregator: aggregator, + attributor: RegionAttributor.shared, + ) let refresher = SpyRefresher() let publisher = WidgetSnapshotPublisher( widgetReader: reader, widgetRefresher: refresher, - attributor: .shared, + attributor: RegionAttributor.shared, calendar: WhereCoreTestSupport.calendar(), now: now, maxAge: maxAge, diff --git a/Where/WhereIntents/AGENTS.md b/Where/WhereIntents/AGENTS.md index e0602534..ed30e72b 100644 --- a/Where/WhereIntents/AGENTS.md +++ b/Where/WhereIntents/AGENTS.md @@ -50,6 +50,12 @@ layering, localization, and the WhereUI duplicate-metadata rule). per-instance `displayRepresentation` is runtime, so it reads `Region.localizedName` and RegionKit stays the single source of a region's spelling. `RegionEntity`/`RegionEntityQuery` are `rawValue`-keyed. +- **Suggestions and Spotlight surface the *tracked* set; resolution is + *full-catalog*.** `RegionEntityQuery.suggestedEntities()` and + `RegionSpotlightIndexer` read the user's tracked regions via + `RegionEntity.tracked(from:)` (→ `WhereServices.trackedRegions()`), while + `entities(for:)` resolves any available region by id (so a spoken untracked + region still answers, with a zero count). - **App Intents static metadata is literal; dialog copy is catalog-backed.** Titles, parameter titles, and type/case display names are `LocalizedStringResource` literals (the framework extracts/localizes them and requires constants). diff --git a/Where/WhereIntents/README.md b/Where/WhereIntents/README.md index bf8df249..e857c5e1 100644 --- a/Where/WhereIntents/README.md +++ b/Where/WhereIntents/README.md @@ -46,9 +46,10 @@ depend on `WhereIntents`. ## Spotlight -`RegionEntity` conforms to `IndexedEntity`; the five regions are indexed into -Spotlight (`RegionSpotlightIndexer.indexRegions()`, called at app launch) so a -search for a region name surfaces Where and its day-count query. +`RegionEntity` conforms to `IndexedEntity`; the user's **tracked** regions are +indexed into Spotlight (`RegionSpotlightIndexer.indexRegions()`, called at app +launch, re-run picks up changes) so a search for a region name surfaces Where and +its day-count query. ## Shared types @@ -58,7 +59,10 @@ search for a region name surfaces Where and its day-count query. per-instance `displayRepresentation` can read `Region.localizedName` at runtime — App Intents requires an `AppEnum`'s `caseDisplayRepresentations` to be compile-time-constant literals, which would force restating RegionKit's - region names here. + region names here. `entities(for:)` resolves **any available** region by id + (so "days in Texas" answers even when untracked), while `suggestedEntities()` + and the Spotlight index surface the user's **tracked** set (via + `WhereServices.trackedRegions()`). - `ActivityWindowAppEnum` — mirrors `RecentActivityWindow` (24h / week / month / year so far). An enum is fine here because these display names have no RegionKit-owned source. diff --git a/Where/WhereIntents/Sources/IntentHelpers.swift b/Where/WhereIntents/Sources/IntentHelpers.swift index 45e18e26..7783f856 100644 --- a/Where/WhereIntents/Sources/IntentHelpers.swift +++ b/Where/WhereIntents/Sources/IntentHelpers.swift @@ -1,10 +1,11 @@ import Foundation import RegionKit +import WhereCore -/// The regions in `Region.allCases` declaration order, so multi-region output +/// The regions in the catalog's canonical order, so multi-region output /// (entities and dialog) is stable regardless of set iteration order. func orderedRegions(_ regions: Set) -> [Region] { - Region.allCases.filter(regions.contains) + Region.inCanonicalOrder(regions) } /// Whether "now" falls in `year`. Gates the day-count snippet's "Log today diff --git a/Where/WhereIntents/Sources/IntentServices.swift b/Where/WhereIntents/Sources/IntentServices.swift index 98f86cab..649704d6 100644 --- a/Where/WhereIntents/Sources/IntentServices.swift +++ b/Where/WhereIntents/Sources/IntentServices.swift @@ -20,11 +20,11 @@ actor IntentServices { private var cached: WhereServices? - func current() throws -> WhereServices { + func current() async throws -> WhereServices { if let cached { return cached } - let services = try WhereServices.forIntents() + let services = try await WhereServices.forIntents() cached = services return services } diff --git a/Where/WhereIntents/Sources/IntentStrings.swift b/Where/WhereIntents/Sources/IntentStrings.swift index fa9af737..203a9166 100644 --- a/Where/WhereIntents/Sources/IntentStrings.swift +++ b/Where/WhereIntents/Sources/IntentStrings.swift @@ -182,11 +182,10 @@ enum IntentStrings { // MARK: Helpers - /// Region names joined in a localized list, in `Region.allCases` order so - /// multi-region output is stable ("California, New York, and Canada"). + /// Region names joined in a localized list, in the catalog's canonical order + /// so multi-region output is stable ("California, New York, and Canada"). private static func regionList(_ regions: [Region]) -> String { - Region.allCases - .filter(regions.contains) + Region.inCanonicalOrder(regions) .map(\.localizedName) .formatted(.list(type: .and)) } diff --git a/Where/WhereIntents/Sources/RegionEntity+Spotlight.swift b/Where/WhereIntents/Sources/RegionEntity+Spotlight.swift index 3bc6d918..bca81495 100644 --- a/Where/WhereIntents/Sources/RegionEntity+Spotlight.swift +++ b/Where/WhereIntents/Sources/RegionEntity+Spotlight.swift @@ -5,19 +5,21 @@ import WhereCore /// Makes `RegionEntity` part of the system's on-device index so a Spotlight /// search for a region name surfaces Where — and Siri can reason over the -/// tracked regions. The five regions are a tiny, fixed set, so they're indexed +/// tracked regions. The tracked set is small (a handful), so it's indexed /// wholesale at launch rather than incrementally. extension RegionEntity: IndexedEntity {} -/// Indexes the tracked regions into Spotlight. Runs once at app launch (see the -/// app's `AppDelegate`); indexing five items is cheap and idempotent. +/// Indexes the user's tracked regions into Spotlight. Runs once at app launch +/// (see the app's `AppDelegate`); indexing a handful of items is cheap and +/// idempotent, and re-runs pick up any change to the tracked set. public enum RegionSpotlightIndexer { private static let logger = WhereLog.channel(.whereIntents) public static func indexRegions() async { do { - try await CSSearchableIndex.default().indexAppEntities(RegionEntity.all) - logger.info("Indexed \(RegionEntity.all.count) region(s) for Spotlight") + let entities = try await RegionEntity.tracked(from: IntentServices.shared.current()) + try await CSSearchableIndex.default().indexAppEntities(entities) + logger.info("Indexed \(entities.count) region(s) for Spotlight") } catch { // Degraded-but-handled: search integration is a nicety, so a failure // is logged and swallowed rather than surfaced to the user. diff --git a/Where/WhereIntents/Sources/RegionEntity.swift b/Where/WhereIntents/Sources/RegionEntity.swift index 300d85ad..17bfbb87 100644 --- a/Where/WhereIntents/Sources/RegionEntity.swift +++ b/Where/WhereIntents/Sources/RegionEntity.swift @@ -1,5 +1,6 @@ import AppIntents import RegionKit +import WhereCore /// A `Region` as an `AppEntity`: the region parameter every intent operates on, /// the Spotlight-indexable representation of a tracked region, and the @@ -11,8 +12,9 @@ import RegionKit /// literals, which would force restating RegionKit's region names here. An /// entity's `displayRepresentation` is per-instance and evaluated at runtime, so /// it reads `Region.localizedName` directly — RegionKit stays the single source -/// of a region's spelling. The system builds the same "pick a region" menu from -/// `RegionEntityQuery.suggestedEntities()`. +/// of a region's spelling. The system builds the "pick a region" menu from +/// `RegionEntityQuery.suggestedEntities()`, which surfaces the user's *tracked* +/// regions. public struct RegionEntity: AppEntity, Identifiable, Sendable { /// `Region.rawValue` — the stable data identifier. public var id: String @@ -39,15 +41,20 @@ public struct RegionEntity: AppEntity, Identifiable, Sendable { public static let defaultQuery = RegionEntityQuery() - /// Every tracked region as an entity, in `Region.allCases` order. - public static var all: [RegionEntity] { - Region.allCases.map(RegionEntity.init) + /// The user's tracked regions as entities, in the catalog's canonical order + /// — the "pick a region" menu and the Spotlight index. Takes `services` so + /// it's testable; the zero-argument query and indexer resolve the process + /// services (`IntentServices.shared`). + static func tracked(from services: WhereServices) async throws -> [RegionEntity] { + let regions = try await services.trackedRegions() + return Region.inCanonicalOrder(regions).map(RegionEntity.init) } } -/// Resolves `RegionEntity` values for the fixed, five-case region set — no -/// store access needed, so it also serves as the entities' `suggestedEntities` -/// (the full menu) and the source for Spotlight indexing. +/// Resolves `RegionEntity` values for the intents. `entities(for:)` resolves any +/// **available** region id (so "days in Texas" works even if Texas isn't +/// tracked — it just reports 0), while `suggestedEntities()` offers the user's +/// **tracked** set as the menu. public struct RegionEntityQuery: EntityQuery { public init() {} @@ -58,6 +65,6 @@ public struct RegionEntityQuery: EntityQuery { } public func suggestedEntities() async throws -> [RegionEntity] { - RegionEntity.all + try await RegionEntity.tracked(from: IntentServices.shared.current()) } } diff --git a/Where/WhereIntents/Tests/IntentTestSupport.swift b/Where/WhereIntents/Tests/IntentTestSupport.swift index a3888d61..2ce41dec 100644 --- a/Where/WhereIntents/Tests/IntentTestSupport.swift +++ b/Where/WhereIntents/Tests/IntentTestSupport.swift @@ -1,5 +1,5 @@ import Foundation -import WhereCore +@_spi(Testing) import WhereCore @testable import WhereIntents /// Shared fixtures for the WhereIntents suites: an in-memory `WhereServices` diff --git a/Where/WhereIntents/Tests/RegionEntityTests.swift b/Where/WhereIntents/Tests/RegionEntityTests.swift index ee68df2e..4c095f3c 100644 --- a/Where/WhereIntents/Tests/RegionEntityTests.swift +++ b/Where/WhereIntents/Tests/RegionEntityTests.swift @@ -1,9 +1,11 @@ import RegionKit import Testing +import WhereCore @testable import WhereIntents -/// `RegionEntity` is a lossless, `rawValue`-keyed mirror of `Region`, and its -/// query resolves the fixed five-case set. +/// `RegionEntity` is a lossless, `rawValue`-keyed mirror of `Region`. Its query +/// resolves any *available* region by id, while its suggestions / Spotlight +/// index surface the user's *tracked* set. struct RegionEntityTests { @Test func roundTripsEveryRegion() { for region in Region.allCases { @@ -13,18 +15,32 @@ struct RegionEntityTests { } } - @Test func allCoversEveryRegionInDeclarationOrder() { - #expect(RegionEntity.all.map(\.region) == Region.allCases) + @Test func queryResolvesAnyCatalogRegionAndDropsUnknown() async throws { + let query = RegionEntityQuery() + let texas = try #require(Region(rawValue: "us-TX")) + // Resolves any available region by id — including untracked ones like + // Texas ("days in Texas" still answers) — and drops unknown ids. + let resolved = try await query.entities(for: ["us-CA", "us-TX", "bogus", "canada"]) + #expect(resolved.map(\.region) == [.california, texas, .canada]) } - @Test func queryResolvesKnownIdsAndDropsUnknown() async throws { - let query = RegionEntityQuery() - let resolved = try await query.entities(for: ["california", "bogus", "canada"]) - #expect(resolved.map(\.region) == [.california, .canada]) + @Test func trackedEntitiesFollowTheStoresTrackedSet() async throws { + let store = try SwiftDataStore.inMemory() + let texas = try #require(Region(rawValue: "us-TX")) + try await store.perform { + try await store.setTrackedRegion(true, id: Region.california.rawValue) + try await store.setTrackedRegion(true, id: texas.rawValue) + } + let entities = try await RegionEntity + .tracked(from: IntentTestSupport.services(store: store)) + // Canonical order: California (us-CA) precedes Texas (us-TX). + #expect(entities.map(\.region) == [.california, texas]) } - @Test func suggestedEntitiesAreEveryRegion() async throws { - let suggested = try await RegionEntityQuery().suggestedEntities() - #expect(suggested.map(\.region) == Region.allCases) + @Test func trackedEntitiesDefaultToTheFourWhenUnset() async throws { + let store = try SwiftDataStore.inMemory() + let entities = try await RegionEntity + .tracked(from: IntentTestSupport.services(store: store)) + #expect(Set(entities.map(\.region)) == SwiftDataStore.defaultTrackedRegions) } } diff --git a/Where/WhereUI/Sources/Developer/RegionMapView.swift b/Where/WhereUI/Sources/Developer/RegionMapView.swift index f50f4242..1ce52a44 100644 --- a/Where/WhereUI/Sources/Developer/RegionMapView.swift +++ b/Where/WhereUI/Sources/Developer/RegionMapView.swift @@ -140,7 +140,10 @@ public struct RegionMapView: View { outlines = nil selectedTitle = nil do { - let loaded = try await RegionGeometryCatalog.outlines(for: kind) + // Standalone dev tool with no session/store, so `.attribution` shows + // every available region the engine can attribute (`.all`); `.source` + // ignores the attributor. + let loaded = try await RegionGeometryCatalog.outlines(for: kind, attributor: .all) guard !Task.isCancelled else { return } outlines = .success(loaded) reframe(to: loaded) diff --git a/Where/WhereUI/Sources/Launch/WhereLaunch.swift b/Where/WhereUI/Sources/Launch/WhereLaunch.swift index 81e1e921..7ec27964 100644 --- a/Where/WhereUI/Sources/Launch/WhereLaunch.swift +++ b/Where/WhereUI/Sources/Launch/WhereLaunch.swift @@ -222,7 +222,7 @@ public final class WhereBootstrap { try SwiftDataStore.make() }.value Self.logger.info("WhereServices assembled") - return WhereServices( + return try await WhereServices.make( store: store, locationSource: source, locationOutbox: FileLocationOutbox.applicationSupport(), diff --git a/Where/WhereUI/Sources/Manual/LoggedDaysView.swift b/Where/WhereUI/Sources/Manual/LoggedDaysView.swift index a6713121..cfd0ada5 100644 --- a/Where/WhereUI/Sources/Manual/LoggedDaysView.swift +++ b/Where/WhereUI/Sources/Manual/LoggedDaysView.swift @@ -241,10 +241,9 @@ private struct LoggedDayRow: View { day.isAuthoritative ? Strings.loggedDaysKindOverridden : Strings.loggedDaysKindLogged } - /// Region names joined in declaration order so the caption is stable. + /// Region names joined in canonical order so the caption is stable. private var regionsText: String { - Region.allCases - .filter { day.regions.contains($0) } + Region.inCanonicalOrder(day.regions) .map(\.localizedName) .joined(separator: ", ") } diff --git a/Where/WhereUI/Sources/Model/PresenceTimeline.swift b/Where/WhereUI/Sources/Model/PresenceTimeline.swift index 4b3d9da9..7940c296 100644 --- a/Where/WhereUI/Sources/Model/PresenceTimeline.swift +++ b/Where/WhereUI/Sources/Model/PresenceTimeline.swift @@ -29,8 +29,8 @@ public struct RegionStint: Hashable, Sendable, Identifiable { /// alongside the views that render it. public enum PresenceTimeline { /// Group each region's present days into maximal consecutive runs, then - /// flatten and sort by start date (ties broken by end date, then by - /// `Region.allCases` order). `report.days` is already sorted ascending and + /// flatten and sort by start date (ties broken by end date, then by the + /// catalog's canonical order). `report.days` is already sorted ascending and /// has one entry per calendar day, so each region's dates are unique. public static func stints( from report: YearReport, diff --git a/Where/WhereUI/Sources/Model/RegionRanking.swift b/Where/WhereUI/Sources/Model/RegionRanking.swift index 5b2b414f..3aa793ee 100644 --- a/Where/WhereUI/Sources/Model/RegionRanking.swift +++ b/Where/WhereUI/Sources/Model/RegionRanking.swift @@ -48,8 +48,8 @@ public struct RegionRanking: Hashable, Sendable { self.init(primary: primary, secondary: secondary) } - /// All present regions sorted by day count descending, ties broken by - /// `Region.allCases` declaration order so the layout is stable. + /// All present regions sorted by day count descending, ties broken by the + /// catalog's canonical (`declarationOrder`) order so the layout is stable. static func ranked(report: YearReport) -> [RegionDays] { Region.rankedByDayCount( report.totals diff --git a/Where/WhereUI/Sources/Model/RegionStyle.swift b/Where/WhereUI/Sources/Model/RegionStyle.swift index b0bd3fe4..40c6f1ad 100644 --- a/Where/WhereUI/Sources/Model/RegionStyle.swift +++ b/Where/WhereUI/Sources/Model/RegionStyle.swift @@ -5,6 +5,11 @@ import WhereCore /// Whimsical, location-themed styling for a `Region`: an SF Symbol, a playful /// emoji, and an accent color. Pure presentation, so it lives in `WhereUI` /// alongside the views it decorates. +/// +/// Every region gets a stable style: a small set of hand-tuned looks for the +/// regions the app started with, and an id-derived default (a deterministic +/// tint from a palette) for everything else, so any of the 50+ available +/// regions renders sensibly without a bespoke entry. public struct RegionStyle: Sendable { public let symbolName: String public let emoji: String @@ -17,18 +22,68 @@ public struct RegionStyle: Sendable { } public static func style(for region: Region) -> RegionStyle { - switch region { - case .california: - RegionStyle(symbolName: "sun.max.fill", emoji: "🌴", tint: .orange) - case .newYork: - RegionStyle(symbolName: "building.2.fill", emoji: "🗽", tint: .indigo) - case .canada: - RegionStyle(symbolName: "leaf.fill", emoji: "🍁", tint: .red) - case .europeanUnion: - RegionStyle(symbolName: "star.circle.fill", emoji: "🇪🇺", tint: .blue) - case .other: - RegionStyle(symbolName: "location.magnifyingglass", emoji: "🧭", tint: .teal) - } + bespokeStyles[region.rawValue] ?? defaultStyle(for: region) + } + + /// Hand-tuned looks for the regions the app shipped with (and the `.other` + /// catch-all). + /// + /// TODO: Remove when user-chosen per-region styling lands — these bespoke + /// looks become user data (a picked emoji / symbol / tint). Deleting this + /// one table cleanly falls back to `defaultStyle(for:)`; nothing else here + /// hard-codes a region. + private static let bespokeStyles: [String: RegionStyle] = [ + Region.california.rawValue: RegionStyle( + symbolName: "sun.max.fill", + emoji: "🌴", + tint: .orange, + ), + Region.newYork.rawValue: RegionStyle( + symbolName: "building.2.fill", + emoji: "🗽", + tint: .indigo, + ), + Region.canada.rawValue: RegionStyle(symbolName: "leaf.fill", emoji: "🍁", tint: .red), + Region.europeanUnion.rawValue: RegionStyle( + symbolName: "star.circle.fill", + emoji: "🇪🇺", + tint: .blue, + ), + Region.other.rawValue: RegionStyle( + symbolName: "location.magnifyingglass", + emoji: "🧭", + tint: .teal, + ), + ] + + /// A stable default look for any region without a bespoke entry: a generic + /// map-pin symbol/emoji and a tint chosen deterministically from the id, so + /// the same region is always the same color across launches. + private static func defaultStyle(for region: Region) -> RegionStyle { + RegionStyle( + symbolName: "mappin.circle.fill", + emoji: "📍", + tint: defaultPalette[paletteIndex(for: region.rawValue)], + ) + } + + private static let defaultPalette: [Color] = [ + .orange, + .indigo, + .red, + .blue, + .teal, + .green, + .mint, + .cyan, + .purple, + .pink, + .brown, + ] + + private static func paletteIndex(for id: String) -> Int { + let sum = id.unicodeScalars.reduce(0) { $0 &+ Int($1.value) } + return sum % defaultPalette.count } } diff --git a/Where/WhereUI/Sources/Preview/PreviewSupport.swift b/Where/WhereUI/Sources/Preview/PreviewSupport.swift index 9a745779..c5113e1b 100644 --- a/Where/WhereUI/Sources/Preview/PreviewSupport.swift +++ b/Where/WhereUI/Sources/Preview/PreviewSupport.swift @@ -1,7 +1,7 @@ #if DEBUG import Foundation import RegionKit - import WhereCore + @_spi(Testing) import WhereCore /// Preview/test fixtures for `WhereUI`. Provides a synchronous sample /// `YearReport` (for static display previews) plus ready-to-render diff --git a/Where/WhereUI/Sources/Resources/Localizable.xcstrings b/Where/WhereUI/Sources/Resources/Localizable.xcstrings index 55b2d186..667a5597 100644 --- a/Where/WhereUI/Sources/Resources/Localizable.xcstrings +++ b/Where/WhereUI/Sources/Resources/Localizable.xcstrings @@ -1772,7 +1772,7 @@ "en" : { "stringUnit" : { "state" : "translated", - "value" : "Imported %lld location samples, %lld pieces of evidence, %lld manual days, and %lld dismissed issues." + "value" : "Imported %lld location samples, %lld pieces of evidence, %lld manual days, %lld dismissed issues, and %lld tracked regions." } } } diff --git a/Where/WhereUI/Sources/Secondary/RegionDaysView.swift b/Where/WhereUI/Sources/Secondary/RegionDaysView.swift index dbc07ded..b0a46646 100644 --- a/Where/WhereUI/Sources/Secondary/RegionDaysView.swift +++ b/Where/WhereUI/Sources/Secondary/RegionDaysView.swift @@ -202,10 +202,9 @@ private struct DayRow: View { day.displayDate.formatted(.dateTime.weekday(.wide).month(.wide).day().year()) } - /// Region names joined in declaration order so the caption is stable. + /// Region names joined in canonical order so the caption is stable. private var regionsText: String { - Region.allCases - .filter { day.regions.contains($0) } + Region.inCanonicalOrder(day.regions) .map(\.localizedName) .joined(separator: ", ") } diff --git a/Where/WhereUI/Sources/Settings/BackupModel.swift b/Where/WhereUI/Sources/Settings/BackupModel.swift index 4b4ced1a..759c9d25 100644 --- a/Where/WhereUI/Sources/Settings/BackupModel.swift +++ b/Where/WhereUI/Sources/Settings/BackupModel.swift @@ -95,7 +95,7 @@ public final class BackupModel { continuation.finish() await observer.value Self.logger.info( - "Imported backup (\(summary.sampleCount) samples, \(summary.evidenceCount) evidence, \(summary.manualDayCount) manual days, \(summary.dismissedIssueCount) dismissals)", + "Imported backup (\(summary.sampleCount) samples, \(summary.evidenceCount) evidence, \(summary.manualDayCount) manual days, \(summary.dismissedIssueCount) dismissals, \(summary.trackedRegionCount) tracked regions)", ) return summary } catch { diff --git a/Where/WhereUI/Sources/Settings/SettingsView.swift b/Where/WhereUI/Sources/Settings/SettingsView.swift index d1fce047..0b0fe2c4 100644 --- a/Where/WhereUI/Sources/Settings/SettingsView.swift +++ b/Where/WhereUI/Sources/Settings/SettingsView.swift @@ -108,6 +108,7 @@ struct SettingsView: View { evidence: summary.evidenceCount, manualDays: summary.manualDayCount, dismissedIssues: summary.dismissedIssueCount, + trackedRegions: summary.trackedRegionCount, )) } .alert( diff --git a/Where/WhereUI/Sources/Shared/RegionSelectionState.swift b/Where/WhereUI/Sources/Shared/RegionSelectionState.swift index 5e0cf5c5..e54beb7f 100644 --- a/Where/WhereUI/Sources/Shared/RegionSelectionState.swift +++ b/Where/WhereUI/Sources/Shared/RegionSelectionState.swift @@ -25,8 +25,16 @@ final class RegionToggleItem: Identifiable { final class RegionSelectionState { var items: [RegionToggleItem] - init(selectedRegions: Set = []) { - items = Region.allCases.map { + /// - Parameters: + /// - regions: the regions to offer as toggles, in order. Defaults to every + /// available catalog region plus the `.other` catch-all; a caller (e.g. a + /// future onboarding-aware form) can pass the user's tracked subset. + /// - selectedRegions: which of those start on. + init( + regions: [Region] = RegionCatalog.shared.all + [.other], + selectedRegions: Set = [], + ) { + items = regions.map { RegionToggleItem(region: $0, isOn: selectedRegions.contains($0)) } } diff --git a/Where/WhereUI/Sources/Shared/Strings.swift b/Where/WhereUI/Sources/Shared/Strings.swift index 064335d2..83a53639 100644 --- a/Where/WhereUI/Sources/Shared/Strings.swift +++ b/Where/WhereUI/Sources/Shared/Strings.swift @@ -868,10 +868,11 @@ enum Strings { evidence: Int, manualDays: Int, dismissedIssues: Int, + trackedRegions: Int, ) -> String { String( localized: "settings.backup.imported.message", - defaultValue: "Imported \(samples) location samples, \(evidence) pieces of evidence, \(manualDays) manual days, and \(dismissedIssues) dismissed issues.", + defaultValue: "Imported \(samples) location samples, \(evidence) pieces of evidence, \(manualDays) manual days, \(dismissedIssues) dismissed issues, and \(trackedRegions) tracked regions.", bundle: .module, ) } diff --git a/Where/WhereUI/Sources/Widgets/WidgetSnapshot+Ranking.swift b/Where/WhereUI/Sources/Widgets/WidgetSnapshot+Ranking.swift index cf94bcbe..91324e3d 100644 --- a/Where/WhereUI/Sources/Widgets/WidgetSnapshot+Ranking.swift +++ b/Where/WhereUI/Sources/Widgets/WidgetSnapshot+Ranking.swift @@ -10,9 +10,9 @@ extension WidgetSnapshot { return Array(RegionRanking.ranked(report: report).prefix(max(0, maxRows))) } - /// Today's regions in `Region.allCases` declaration order so widget - /// layouts are stable between timeline reloads. + /// Today's regions in the catalog's canonical order so widget layouts are + /// stable between timeline reloads. var orderedDayRegions: [Region] { - Region.allCases.filter { dayRegions.contains($0) } + Region.inCanonicalOrder(dayRegions) } } diff --git a/Where/WhereUI/Tests/AddEvidenceModelTests.swift b/Where/WhereUI/Tests/AddEvidenceModelTests.swift index 1d57808f..5b586f59 100644 --- a/Where/WhereUI/Tests/AddEvidenceModelTests.swift +++ b/Where/WhereUI/Tests/AddEvidenceModelTests.swift @@ -1,7 +1,7 @@ import Foundation import TestHostSupport import Testing -import WhereCore +@_spi(Testing) import WhereCore @testable import WhereUI /// Covers `AddEvidenceModel`: how the form fields map into an `Evidence` value diff --git a/Where/WhereUI/Tests/BackupModelTests.swift b/Where/WhereUI/Tests/BackupModelTests.swift index 3071546a..928f38be 100644 --- a/Where/WhereUI/Tests/BackupModelTests.swift +++ b/Where/WhereUI/Tests/BackupModelTests.swift @@ -1,6 +1,6 @@ import Foundation import Testing -import WhereCore +@_spi(Testing) import WhereCore @testable import WhereUI /// Exercises `BackupModel`'s export/import bridging: a successful round-trip diff --git a/Where/WhereUI/Tests/EvidenceDetailModelTests.swift b/Where/WhereUI/Tests/EvidenceDetailModelTests.swift index 35dd6cc7..b8393ca2 100644 --- a/Where/WhereUI/Tests/EvidenceDetailModelTests.swift +++ b/Where/WhereUI/Tests/EvidenceDetailModelTests.swift @@ -1,7 +1,7 @@ import Foundation import TestHostSupport import Testing -import WhereCore +@_spi(Testing) import WhereCore @testable import WhereUI /// Covers `EvidenceDetailModel`'s blob load, distinguishing a stored attachment diff --git a/Where/WhereUI/Tests/EvidenceListModelTests.swift b/Where/WhereUI/Tests/EvidenceListModelTests.swift index 73ed35d4..db40c5f4 100644 --- a/Where/WhereUI/Tests/EvidenceListModelTests.swift +++ b/Where/WhereUI/Tests/EvidenceListModelTests.swift @@ -1,7 +1,7 @@ import Foundation import TestHostSupport import Testing -import WhereCore +@_spi(Testing) import WhereCore @testable import WhereUI /// Covers `EvidenceListModel`'s mapping of the year's evidence into a diff --git a/Where/WhereUI/Tests/LoggedDaysModelTests.swift b/Where/WhereUI/Tests/LoggedDaysModelTests.swift index 1310ba04..835650d4 100644 --- a/Where/WhereUI/Tests/LoggedDaysModelTests.swift +++ b/Where/WhereUI/Tests/LoggedDaysModelTests.swift @@ -2,7 +2,7 @@ import Foundation import RegionKit import TestHostSupport import Testing -import WhereCore +@_spi(Testing) import WhereCore @testable import WhereUI /// Covers `LoggedDaysModel`'s mapping of the selected year's manual entries into diff --git a/Where/WhereUI/Tests/RecentActivityModelTests.swift b/Where/WhereUI/Tests/RecentActivityModelTests.swift index 82badab0..d5d68128 100644 --- a/Where/WhereUI/Tests/RecentActivityModelTests.swift +++ b/Where/WhereUI/Tests/RecentActivityModelTests.swift @@ -1,7 +1,7 @@ import Foundation import RegionKit import Testing -import WhereCore +@_spi(Testing) import WhereCore @testable import WhereUI /// Covers `RecentActivityModel`'s mapping of the summarizer's output (and its diff --git a/Where/WhereUI/Tests/StringsTests.swift b/Where/WhereUI/Tests/StringsTests.swift index d7423d94..86c44d70 100644 --- a/Where/WhereUI/Tests/StringsTests.swift +++ b/Where/WhereUI/Tests/StringsTests.swift @@ -88,9 +88,10 @@ struct StringsTests { evidence: 2, manualDays: 5, dismissedIssues: 4, + trackedRegions: 6, ) == - "Imported 3 location samples, 2 pieces of evidence, 5 manual days, and 4 dismissed issues.", + "Imported 3 location samples, 2 pieces of evidence, 5 manual days, 4 dismissed issues, and 6 tracked regions.", ) } diff --git a/Where/WhereUI/Tests/SwiftDataInspectorWiringTests.swift b/Where/WhereUI/Tests/SwiftDataInspectorWiringTests.swift index c0a45438..265b9fb5 100644 --- a/Where/WhereUI/Tests/SwiftDataInspectorWiringTests.swift +++ b/Where/WhereUI/Tests/SwiftDataInspectorWiringTests.swift @@ -31,6 +31,7 @@ struct SwiftDataInspectorWiringTests { "SDEvidence", "SDLocationSample", "SDManualDay", + "SDTrackedRegion", ]) }