From bd76536cc0fbe807c9d1c6fbab571e7801c7776d Mon Sep 17 00:00:00 2001 From: robozor <7280092+robozor@users.noreply.github.com> Date: Sun, 14 Jun 2026 21:06:57 +0200 Subject: [PATCH 01/11] Add measurement parser + render-ready detail endpoint Turn raw ingests into a ParsedMeasurement (parse-later, never blocks upload): validated horizontal coords of the trail's two aim points, derived RA/Dec for plotting on a star map, the absolute UTC event time, the site, and the site's IANA time zone. - parser.py: pure parse_payload() + closed-form altaz_to_radec() (arc-minute accurate, no heavy astrometry dep -- exceeds the phone-orientation input accuracy); parse_and_store()/ensure_parsed() persistence with parse_version. - Note: eventTimestamp is Date.now() epoch ms, i.e. already absolute UTC -- not a local time. GPS only adds the site IANA zone (timezonefinder, MIT) so the UI can show the observer's local civil time. - ParsedMeasurement model + hand-written migration 0002. - parse_pending management command (parse new/stale rows, or --all backfill). - GET /v1/web/reports/{client_key}: lazily-parsed render payload (start/end alt/az + ra/dec, event_utc/event_local/event_tz). - timezonefinder==6.5.7 (MIT). Tests: 15 passed; verified on real data. Co-Authored-By: Claude Opus 4.8 --- backend/apps/ingest/management/__init__.py | 0 .../ingest/management/commands/__init__.py | 0 .../management/commands/parse_pending.py | 44 ++++ .../migrations/0002_parsedmeasurement.py | 34 +++ backend/apps/ingest/models.py | 39 ++++ backend/apps/ingest/parser.py | 220 ++++++++++++++++++ backend/apps/web/api.py | 73 ++++++ backend/requirements.txt | 4 + backend/tests/test_parser.py | 122 ++++++++++ 9 files changed, 536 insertions(+) create mode 100644 backend/apps/ingest/management/__init__.py create mode 100644 backend/apps/ingest/management/commands/__init__.py create mode 100644 backend/apps/ingest/management/commands/parse_pending.py create mode 100644 backend/apps/ingest/migrations/0002_parsedmeasurement.py create mode 100644 backend/apps/ingest/parser.py create mode 100644 backend/tests/test_parser.py diff --git a/backend/apps/ingest/management/__init__.py b/backend/apps/ingest/management/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/backend/apps/ingest/management/commands/__init__.py b/backend/apps/ingest/management/commands/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/backend/apps/ingest/management/commands/parse_pending.py b/backend/apps/ingest/management/commands/parse_pending.py new file mode 100644 index 0000000..301643d --- /dev/null +++ b/backend/apps/ingest/management/commands/parse_pending.py @@ -0,0 +1,44 @@ +"""Parse raw ingests into ParsedMeasurement rows (parse-later worker). + +Run on a schedule or after a deploy. Picks up rows that have never been parsed +or whose parse_version is stale, so bumping PARSE_VERSION re-derives everything. + + python manage.py parse_pending # parse new / stale rows + python manage.py parse_pending --all # re-parse every row + python manage.py parse_pending --limit 500 +""" +from django.core.management.base import BaseCommand +from django.db.models import Q + +from apps.ingest.models import RawIngest +from apps.ingest.parser import PARSE_VERSION, ParseError, parse_and_store + + +class Command(BaseCommand): + help = "Parse raw ingests into render-ready ParsedMeasurement rows." + + def add_arguments(self, parser): + parser.add_argument("--all", action="store_true", help="Re-parse every row.") + parser.add_argument("--limit", type=int, default=1000, help="Max rows per run.") + + def handle(self, *args, **options): + qs = RawIngest.objects.all().order_by("received_at") + if not options["all"]: + # Never parsed, or parsed by an older version. + qs = qs.filter( + Q(parsed__isnull=True) | ~Q(parsed__parse_version=PARSE_VERSION) + ) + rows = list(qs[: options["limit"]]) + + ok = failed = 0 + for raw in rows: + try: + parse_and_store(raw) + ok += 1 + except ParseError as exc: + failed += 1 + self.stderr.write(f" failed {raw.id}: {exc}") + + self.stdout.write( + self.style.SUCCESS(f"Parsed {ok} row(s), {failed} failed, {len(rows)} seen.") + ) diff --git a/backend/apps/ingest/migrations/0002_parsedmeasurement.py b/backend/apps/ingest/migrations/0002_parsedmeasurement.py new file mode 100644 index 0000000..03f5214 --- /dev/null +++ b/backend/apps/ingest/migrations/0002_parsedmeasurement.py @@ -0,0 +1,34 @@ +import django.db.models.deletion +from django.db import migrations, models + + +class Migration(migrations.Migration): + dependencies = [ + ("ingest", "0001_initial"), + ] + + operations = [ + migrations.CreateModel( + name="ParsedMeasurement", + fields=[ + ("id", models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name="ID")), + ("parse_version", models.PositiveIntegerField(default=0)), + ("event_time", models.DateTimeField(blank=True, null=True)), + ("event_tz", models.CharField(blank=True, default="", max_length=64)), + ("start_alt", models.FloatField(blank=True, null=True)), + ("start_az", models.FloatField(blank=True, null=True)), + ("end_alt", models.FloatField(blank=True, null=True)), + ("end_az", models.FloatField(blank=True, null=True)), + ("start_ra", models.FloatField(blank=True, null=True)), + ("start_dec", models.FloatField(blank=True, null=True)), + ("end_ra", models.FloatField(blank=True, null=True)), + ("end_dec", models.FloatField(blank=True, null=True)), + ("lat", models.FloatField(blank=True, null=True)), + ("lon", models.FloatField(blank=True, null=True)), + ("accuracy", models.FloatField(blank=True, null=True)), + ("quality", models.FloatField(blank=True, null=True)), + ("parsed_at", models.DateTimeField(auto_now=True)), + ("raw", models.OneToOneField(on_delete=django.db.models.deletion.CASCADE, related_name="parsed", to="ingest.rawingest")), + ], + ), + ] diff --git a/backend/apps/ingest/models.py b/backend/apps/ingest/models.py index 82c6be5..51bfe11 100644 --- a/backend/apps/ingest/models.py +++ b/backend/apps/ingest/models.py @@ -41,3 +41,42 @@ class Meta: ] indexes = [models.Index(fields=["status", "received_at"])] ordering = ["-received_at"] + + +class ParsedMeasurement(models.Model): + """Render-ready record derived from a RawIngest (the parse-later output). + + One row per raw measurement. Holds the validated horizontal coordinates of + the trail's two aim points, the derived equatorial coordinates (RA/Dec) for + plotting on a star map, the absolute UTC event time, the observing site, and + the site's IANA time zone. ``parse_version`` lets stored rows be re-derived + when the parsing logic changes. + """ + + raw = models.OneToOneField( + RawIngest, on_delete=models.CASCADE, related_name="parsed" + ) + parse_version = models.PositiveIntegerField(default=0) + + event_time = models.DateTimeField(null=True, blank=True) # absolute UTC + event_tz = models.CharField(max_length=64, blank=True, default="") # IANA name + + start_alt = models.FloatField(null=True, blank=True) + start_az = models.FloatField(null=True, blank=True) + end_alt = models.FloatField(null=True, blank=True) + end_az = models.FloatField(null=True, blank=True) + + start_ra = models.FloatField(null=True, blank=True) + start_dec = models.FloatField(null=True, blank=True) + end_ra = models.FloatField(null=True, blank=True) + end_dec = models.FloatField(null=True, blank=True) + + lat = models.FloatField(null=True, blank=True) + lon = models.FloatField(null=True, blank=True) + accuracy = models.FloatField(null=True, blank=True) + quality = models.FloatField(null=True, blank=True) + + parsed_at = models.DateTimeField(auto_now=True) + + def __str__(self) -> str: + return f"ParsedMeasurement(raw={self.raw_id}, v{self.parse_version})" diff --git a/backend/apps/ingest/parser.py b/backend/apps/ingest/parser.py new file mode 100644 index 0000000..109d0f6 --- /dev/null +++ b/backend/apps/ingest/parser.py @@ -0,0 +1,220 @@ +"""Parse raw measurement payloads into render-ready scientific records. + +Follows the ingest-first / parse-later contract: an upload only lands a +``RawIngest`` row, and turning that into a ``ParsedMeasurement`` happens here, +separately. A parse failure is recorded on the raw row (status=failed) and +never touches or discards the raw payload, so it can be re-parsed later. + +The mobile app reports a meteor as two horizontal-coordinate aim points +(altitude/azimuth) plus the observing site and the event time. For the sky +view we also derive equatorial coordinates (RA/Dec) so any star map can place +the trail among the stars. The phone's orientation accuracy is degree-level, +so a compact closed-form alt/az -> RA/Dec conversion (arc-minute accuracy) is +already far more precise than the input -- no heavy astrometry dependency is +warranted. + +The event time arrives as ``Date.now()`` epoch milliseconds, which is an +absolute UTC instant already (not a local wall-clock time). From the GPS site +we additionally resolve the IANA time zone, so the UI can show the observer's +*local* civil time at the observing site regardless of who is viewing it. +""" +from __future__ import annotations + +import math +from datetime import UTC, datetime + +# Bump when the parsing logic changes so stored records can be re-derived. +PARSE_VERSION = 1 + + +class ParseError(ValueError): + """Payload could not be parsed; recorded on the raw row, raw kept intact.""" + + +def _num(value): + if value is None: + return None + try: + f = float(value) + except (TypeError, ValueError): + return None + return f if math.isfinite(f) else None + + +def _angle(value, lo, hi, name): + f = _num(value) + if f is None: + return None + if not (lo <= f <= hi): + raise ParseError(f"{name} out of range [{lo}, {hi}]: {f}") + return f + + +def _parse_time(value): + if value in (None, ""): + return None + if isinstance(value, int | float): + # epoch seconds, or milliseconds when the value is implausibly large + secs = value / 1000.0 if value > 1e11 else float(value) + return datetime.fromtimestamp(secs, tz=UTC) + try: + dt = datetime.fromisoformat(str(value).replace("Z", "+00:00")) + except ValueError as exc: + raise ParseError(f"unparseable eventTimestamp: {value!r}") from exc + if dt.tzinfo is None: + dt = dt.replace(tzinfo=UTC) + return dt.astimezone(UTC) + + +def parse_payload(payload: dict) -> dict: + """Extract and validate the render fields from a raw payload. + + Raises ParseError on malformed data or a missing trail endpoint. + """ + if not isinstance(payload, dict): + raise ParseError("payload is not an object") + start = payload.get("startPoint") or {} + end = payload.get("endPoint") or {} + site = payload.get("site") or {} + + out = { + "event_time": _parse_time(payload.get("eventTimestamp")), + "start_alt": _angle(start.get("alt"), -90, 90, "start.alt"), + "start_az": _angle(start.get("az"), 0, 360, "start.az"), + "end_alt": _angle(end.get("alt"), -90, 90, "end.alt"), + "end_az": _angle(end.get("az"), 0, 360, "end.az"), + "lat": _angle(site.get("lat"), -90, 90, "site.lat"), + "lon": _angle(site.get("lon"), -180, 180, "site.lon"), + "accuracy": _num(site.get("accuracy")), + "quality": _num(payload.get("quality")), + } + # A trail needs both aim points; without them there is nothing to render. + for key in ("start_alt", "start_az", "end_alt", "end_az"): + if out[key] is None: + raise ParseError(f"missing required field: {key}") + return out + + +def _julian_date(dt: datetime) -> float: + """Julian Date from a (tz-aware) datetime via the civil-calendar formula.""" + dt = dt.astimezone(UTC) + year, month = dt.year, dt.month + if month <= 2: + year -= 1 + month += 12 + a = year // 100 + b = 2 - a + a // 4 + day = dt.day + (dt.hour + (dt.minute + (dt.second + dt.microsecond / 1e6) / 60) / 60) / 24 + return math.floor(365.25 * (year + 4716)) + math.floor(30.6001 * (month + 1)) + day + b - 1524.5 + + +def altaz_to_radec(alt_deg, az_deg, lat_deg, lon_deg, when): + """Closed-form horizontal -> equatorial conversion, RA/Dec in degrees. + + Azimuth is measured from North, increasing eastward (compass convention). + Uses mean sidereal time (IAU 1982); arc-minute accurate, which comfortably + exceeds the phone-orientation accuracy of the inputs. Returns ``(ra, dec)`` + or ``None`` when location or time are unavailable. + """ + if None in (alt_deg, az_deg, lat_deg, lon_deg) or when is None: + return None + alt = math.radians(alt_deg) + az = math.radians(az_deg) + lat = math.radians(lat_deg) + + sin_dec = math.sin(alt) * math.sin(lat) + math.cos(alt) * math.cos(lat) * math.cos(az) + sin_dec = max(-1.0, min(1.0, sin_dec)) + dec = math.asin(sin_dec) + + # Hour angle via atan2 with both terms scaled by (cos dec * cos lat) >= 0, + # so there is no division and no singularity at the poles. + num = -math.sin(az) * math.cos(alt) * math.cos(lat) + den = math.sin(alt) - math.sin(lat) * sin_dec + hour_angle = math.degrees(math.atan2(num, den)) + + d = _julian_date(when) - 2451545.0 + gmst = (280.46061837 + 360.98564736629 * d) % 360.0 # Greenwich mean sidereal time + lst = (gmst + lon_deg) % 360.0 # local sidereal time + ra = (lst - hour_angle) % 360.0 + return ra, math.degrees(dec) + + +def site_timezone(lat, lon): + """IANA time-zone name for a GPS location, or None if unavailable. + + Uses timezonefinder (offline polygon lookup); imported lazily so the pure + parsing/maths above stay dependency-free and unit-testable. + """ + if lat is None or lon is None: + return None + finder = _tz_finder() + return finder.timezone_at(lat=lat, lng=lon) if finder else None + + +_TZF = None + + +def _tz_finder(): + global _TZF + if _TZF is None: + try: + from timezonefinder import TimezoneFinder + except ImportError: + return None + _TZF = TimezoneFinder() # loads bundled boundary data once + return _TZF + + +def parse_and_store(raw): + """Parse a RawIngest, persist a ParsedMeasurement, and update raw.status. + + On ParseError the raw row is marked failed (with the reason) and the error + re-raised; the raw payload is left untouched. + """ + from django.utils import timezone as djtz + + from .models import ParsedMeasurement, RawIngest + + try: + fields = parse_payload(raw.payload or {}) + except ParseError as exc: + raw.status = RawIngest.STATUS_FAILED + raw.error = str(exc) + raw.attempts = (raw.attempts or 0) + 1 + raw.processed_at = djtz.now() + raw.save(update_fields=["status", "error", "attempts", "processed_at"]) + raise + + loc = (fields["lat"], fields["lon"], fields["event_time"]) + start = altaz_to_radec(fields["start_alt"], fields["start_az"], *loc) + end = altaz_to_radec(fields["end_alt"], fields["end_az"], *loc) + data = dict(fields) + data["start_ra"], data["start_dec"] = start or (None, None) + data["end_ra"], data["end_dec"] = end or (None, None) + # UTC is already absolute (epoch ms); resolve the site's civil time zone so + # the observer's local time can be shown alongside it. + data["event_tz"] = site_timezone(fields["lat"], fields["lon"]) or "" + + parsed, _ = ParsedMeasurement.objects.update_or_create( + raw=raw, defaults={**data, "parse_version": PARSE_VERSION} + ) + raw.status = RawIngest.STATUS_PROCESSED + raw.error = "" + raw.attempts = (raw.attempts or 0) + 1 + raw.processed_at = djtz.now() + raw.save(update_fields=["status", "error", "attempts", "processed_at"]) + return parsed + + +def ensure_parsed(raw): + """Return an up-to-date ParsedMeasurement, parsing lazily if needed. + + Returns None if the payload cannot be parsed (raw is marked failed). + """ + parsed = getattr(raw, "parsed", None) + if parsed is not None and parsed.parse_version == PARSE_VERSION: + return parsed + try: + return parse_and_store(raw) + except ParseError: + return None diff --git a/backend/apps/web/api.py b/backend/apps/web/api.py index 6fb05fb..85a19b6 100644 --- a/backend/apps/web/api.py +++ b/backend/apps/web/api.py @@ -57,6 +57,28 @@ class ReportRow(Schema): accuracy: float | None = None +class TrailPoint(Schema): + alt: float | None = None + az: float | None = None + ra: float | None = None # equatorial, degrees (for the star map) + dec: float | None = None + + +class ReportDetail(Schema): + client_key: str + status: str + received_at: str + event_utc: str | None = None # absolute instant + event_local: str | None = None # civil time at the observing site + event_tz: str | None = None # IANA zone resolved from the GPS site + quality: float | None = None + lat: float | None = None + lon: float | None = None + accuracy: float | None = None + start: TrailPoint = TrailPoint() + end: TrailPoint = TrailPoint() + + # ---- device flow ---- @router.post("/device-code", response=DeviceCodeOut) @@ -173,6 +195,57 @@ def reports(request): return out +@router.get("/reports/{client_key}", auth=web_auth, response={200: ReportDetail, 404: dict}) +def report_detail(request, client_key: str): + """A single measurement, parsed into render-ready fields for the sky view. + + Parses lazily on first view (parse-later) so it works without a worker; the + result is cached in ParsedMeasurement and reused thereafter. + """ + from apps.ingest.parser import ensure_parsed + + raw = request.web_device.raw_ingests.filter(client_key=client_key).first() + if raw is None: + return 404, {"detail": "Measurement not found"} + + parsed = ensure_parsed(raw) + base = { + "client_key": raw.client_key, + "status": raw.status, + "received_at": raw.received_at.isoformat(), + } + if parsed is None: + return 200, base # unparseable payload: status only, no render body + + event_local = None + if parsed.event_time and parsed.event_tz: + try: + from zoneinfo import ZoneInfo, ZoneInfoNotFoundError + + event_local = parsed.event_time.astimezone(ZoneInfo(parsed.event_tz)).isoformat() + except (ZoneInfoNotFoundError, ValueError): + event_local = None + + return 200, { + **base, + "event_utc": parsed.event_time.isoformat() if parsed.event_time else None, + "event_local": event_local, + "event_tz": parsed.event_tz or None, + "quality": parsed.quality, + "lat": parsed.lat, + "lon": parsed.lon, + "accuracy": parsed.accuracy, + "start": { + "alt": parsed.start_alt, "az": parsed.start_az, + "ra": parsed.start_ra, "dec": parsed.start_dec, + }, + "end": { + "alt": parsed.end_alt, "az": parsed.end_az, + "ra": parsed.end_ra, "dec": parsed.end_dec, + }, + } + + @router.post("/logout", auth=web_auth, response={200: dict}) def logout(request, response: HttpResponse): request.web_session.revoked_at = timezone.now() diff --git a/backend/requirements.txt b/backend/requirements.txt index 0b0908e..c6707d8 100644 --- a/backend/requirements.txt +++ b/backend/requirements.txt @@ -22,6 +22,10 @@ python-dotenv==1.0.1 # QR codes for web sign-in (pure Python, no deps) segno==1.6.1 +# Offline lat/lon -> IANA time zone, to show the observer's local event time +# (MIT licensed; alt/az->RA/Dec maths in the parser are pure-Python, no deps) +timezonefinder==6.5.7 + # Dev / test pytest==8.3.4 pytest-django==4.9.0 diff --git a/backend/tests/test_parser.py b/backend/tests/test_parser.py new file mode 100644 index 0000000..d8b505b --- /dev/null +++ b/backend/tests/test_parser.py @@ -0,0 +1,122 @@ +"""Measurement parser: payload validation, alt/az -> RA/Dec, lazy detail endpoint.""" +import json +from datetime import UTC, datetime + +import pytest +from django.test import Client + +from apps.devices.models import Device +from apps.ingest import parser +from apps.ingest.models import RawIngest +from tests.test_auth_sync import _register, _token + +pytestmark = pytest.mark.django_db + +try: + import timezonefinder # noqa: F401 + + _HAS_TZF = True +except ImportError: + _HAS_TZF = False + + +# eventTimestamp is Date.now() epoch ms (absolute UTC); a Czech site. +PAYLOAD = { + "eventTimestamp": 1781455673730, + "startPoint": {"alt": 40.0, "az": 90.0}, + "endPoint": {"alt": 45.0, "az": 95.0}, + "site": {"lat": 48.8128, "lon": 14.6458, "accuracy": 100}, + "quality": 0.8, +} + + +# ---- pure functions ---- + +def test_parse_payload_extracts_and_validates(): + out = parser.parse_payload(PAYLOAD) + assert out["start_alt"] == 40.0 and out["end_az"] == 95.0 + assert out["lat"] == pytest.approx(48.8128) + # epoch ms decodes to an absolute UTC instant (not a local wall-clock time) + assert out["event_time"] == datetime.fromtimestamp(1781455673.730, tz=UTC) + + +def test_parse_payload_rejects_bad_data(): + with pytest.raises(parser.ParseError): + parser.parse_payload({"startPoint": {"alt": 40, "az": 90}}) # no endPoint + with pytest.raises(parser.ParseError): + parser.parse_payload({**PAYLOAD, "startPoint": {"alt": 40, "az": 999}}) # az range + + +def test_altaz_to_radec_zenith_equals_latitude(): + when = datetime(2026, 6, 14, 22, 0, tzinfo=UTC) + ra, dec = parser.altaz_to_radec(90.0, 0.0, 48.0, 14.0, when) + assert dec == pytest.approx(48.0, abs=0.3) # the zenith's dec is the observer latitude + assert 0.0 <= ra < 360.0 + + +def test_altaz_to_radec_without_location_is_none(): + when = datetime(2026, 6, 14, 22, 0, tzinfo=UTC) + assert parser.altaz_to_radec(40, 90, None, None, when) is None + + +# ---- persistence + endpoint ---- + +def _device(client): + device_id, priv = _register(client) + return Device.objects.get(id=device_id), device_id, priv + + +def _login_fe(fe, mobile, device_id, priv): + token = _token(mobile, device_id, priv) + auth = {"HTTP_AUTHORIZATION": f"Bearer {token}"} + data = fe.post("/v1/web/device-code").json() + mobile.post( + "/v1/web/approve", + data=json.dumps({"user_code": data["user_code"]}), + content_type="application/json", + **auth, + ) + fe.post( + "/v1/web/poll", + data=json.dumps({"device_code": data["device_code"]}), + content_type="application/json", + ) + + +def test_parse_and_store_creates_record(): + device, _, _ = _device(Client()) + raw = RawIngest.objects.create(device=device, client_key="k1", payload=PAYLOAD) + + parsed = parser.parse_and_store(raw) + + assert parsed.start_ra is not None and parsed.end_dec is not None + assert parsed.event_time is not None and parsed.parse_version == parser.PARSE_VERSION + raw.refresh_from_db() + assert raw.status == RawIngest.STATUS_PROCESSED + if _HAS_TZF: + assert parsed.event_tz == "Europe/Prague" + + +def test_report_detail_endpoint_returns_render_payload(): + fe, mobile = Client(), Client() + device, device_id, priv = _device(mobile) + RawIngest.objects.create(device=device, client_key="k1", payload=PAYLOAD) + _login_fe(fe, mobile, device_id, priv) + + res = fe.get("/v1/web/reports/k1") + assert res.status_code == 200, res.content + body = res.json() + assert body["status"] == "processed" + assert body["start"]["alt"] == 40.0 and body["start"]["ra"] is not None + assert body["end"]["az"] == 95.0 + assert body["event_utc"] is not None + if _HAS_TZF: + assert body["event_tz"] == "Europe/Prague" and body["event_local"] is not None + + +def test_report_detail_unknown_key_is_404(): + fe, mobile = Client(), Client() + device, device_id, priv = _device(mobile) + _login_fe(fe, mobile, device_id, priv) + + assert fe.get("/v1/web/reports/does-not-exist").status_code == 404 From 88ac636999ccdce6fee61bb4f131d2db34b81363 Mon Sep 17 00:00:00 2001 From: robozor <7280092+robozor@users.noreply.github.com> Date: Sun, 14 Jun 2026 21:24:13 +0200 Subject: [PATCH 02/11] FE: sky map beside the grid, plotting the selected meteor trail Add a self-hosted star map (d3-celestial, BSD-3 -- no external service, no API calls; library + star/Milky-Way data served from our own nginx) to the right of the measurements grid. Clicking a row fetches the parsed detail and draws the local sky for that site and UTC instant, with a horizon, and overlays the trail (green = start, red = end). - sky.js: MeteorSky module -- d3-celestial config + a custom canvas layer that draws the trail via Celestial.getData/mapProjection, driven by skyview(date, location). - index.html: two-column layout, clickable rows, caption (site-local time + alt/az + RA/Dec), and an "O aplikaci" (About) dialog citing every component license we must attribute (d3-celestial, D3, star/IAU/Milky-Way data, segno, timezonefinder/OSM-ODbL, Django/ninja). - skytest.html: standalone render harness (verified: stars, constellations, horizon and the trail render correctly with real parsed RA/Dec). - vendor/celestial: d3-celestial libs + minimal data (stars<=6, constellations, Milky Way). Co-Authored-By: Claude Opus 4.8 --- frontend/app.js | 52 +++++++- frontend/index.html | 124 +++++++++++++++--- frontend/sky.js | 103 +++++++++++++++ frontend/skytest.html | 34 +++++ frontend/vendor/celestial/celestial.css | 111 ++++++++++++++++ frontend/vendor/celestial/celestial.min.js | 5 + .../vendor/celestial/d3.geo.projection.min.js | 2 + frontend/vendor/celestial/d3.min.js | 5 + .../vendor/celestial/data/constellations.json | 1 + .../celestial/data/constellations.lines.json | 1 + frontend/vendor/celestial/data/mw.json | 1 + frontend/vendor/celestial/data/stars.6.json | 1 + 12 files changed, 422 insertions(+), 18 deletions(-) create mode 100644 frontend/sky.js create mode 100644 frontend/skytest.html create mode 100644 frontend/vendor/celestial/celestial.css create mode 100644 frontend/vendor/celestial/celestial.min.js create mode 100644 frontend/vendor/celestial/d3.geo.projection.min.js create mode 100644 frontend/vendor/celestial/d3.min.js create mode 100644 frontend/vendor/celestial/data/constellations.json create mode 100644 frontend/vendor/celestial/data/constellations.lines.json create mode 100644 frontend/vendor/celestial/data/mw.json create mode 100644 frontend/vendor/celestial/data/stars.6.json diff --git a/frontend/app.js b/frontend/app.js index 08e55ca..72c84e8 100644 --- a/frontend/app.js +++ b/frontend/app.js @@ -17,6 +17,14 @@ function fmt(v, digits = 1) { return v === null || v === undefined ? '—' : Number(v).toFixed(digits); } +// Site-local wall-clock time from an ISO string with offset, shown as-is +// (independent of the viewer's own time zone). +function fmtLocal(iso) { + if (!iso) return '—'; + const m = iso.match(/(\d{4})-(\d{2})-(\d{2})T(\d{2}):(\d{2})/); + return m ? `${m[3]}.${m[2]}.${m[1]} ${m[4]}:${m[5]}` : iso; +} + async function loadGrid() { const me = await api('/v1/web/me'); if (!me.ok) return startLogin(); @@ -28,7 +36,7 @@ async function loadGrid() { $('count').textContent = rows.length; $('rows').innerHTML = rows .map( - (r) => ` + (r) => ` ${new Date(r.received_at).toLocaleString()} ${r.status} ${fmt(r.start_alt)}° / ${fmt(r.start_az)}° @@ -42,6 +50,35 @@ async function loadGrid() { show('app'); } +// Click a row -> fetch the parsed detail -> draw the trail on the sky map. +async function selectReport(key, tr) { + document.querySelectorAll('#rows tr.selected').forEach((el) => el.classList.remove('selected')); + if (tr) tr.classList.add('selected'); + $('skyCaption').textContent = 'Načítám…'; + const res = await api('/v1/web/reports/' + key); + if (!res.ok) { + $('skyCaption').textContent = 'Detail měření se nepodařilo načíst.'; + return; + } + const d = await res.json(); + const rendered = MeteorSky.render(d); + showSkyCaption(d, rendered); +} + +function showSkyCaption(d, rendered) { + const cap = $('skyCaption'); + if (!rendered) { + cap.innerHTML = 'Měření nemá GPS souřadnice nebo čas — stopu na obloze nelze vykreslit.'; + return; + } + const tz = d.event_tz ? ` (${d.event_tz})` : ''; + const s = d.start, e = d.end; + cap.innerHTML = + `${fmtLocal(d.event_local || d.event_utc)}${tz}
` + + `Start ALT/AZ ${fmt(s.alt)}° / ${fmt(s.az)}° · RA/Dek ${fmt(s.ra, 1)}° / ${fmt(s.dec, 1)}°
` + + `Konec ALT/AZ ${fmt(e.alt)}° / ${fmt(e.az)}° · RA/Dek ${fmt(e.ra, 1)}° / ${fmt(e.dec, 1)}°`; +} + let pollTimer = null; async function startLogin() { @@ -71,6 +108,19 @@ async function startLogin() { }, (interval || 2) * 1000); } +// Row selection (event delegation). +$('rows').addEventListener('click', (e) => { + const tr = e.target.closest('tr'); + if (tr && tr.dataset.key) selectReport(tr.dataset.key, tr); +}); + +// About / licenses modal. +$('about').addEventListener('click', () => $('aboutModal').classList.remove('hidden')); +$('aboutClose').addEventListener('click', () => $('aboutModal').classList.add('hidden')); +$('aboutModal').addEventListener('click', (e) => { + if (e.target.id === 'aboutModal') $('aboutModal').classList.add('hidden'); +}); + $('logout').addEventListener('click', async () => { await api('/v1/web/logout', { method: 'POST' }); startLogin(); diff --git a/frontend/index.html b/frontend/index.html index e88c072..ec25b73 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -4,6 +4,7 @@ MeteorPointer +

METEORPOINTER

- +
+ + +
@@ -59,23 +96,76 @@

Přihlášení přes mobilní aplikaci

Čekám na potvrzení v aplikaci…

- - + +
+ + + + + + + + diff --git a/frontend/sky.js b/frontend/sky.js new file mode 100644 index 0000000..1f33823 --- /dev/null +++ b/frontend/sky.js @@ -0,0 +1,103 @@ +// MeteorSky — a self-contained local-sky map that plots a meteor trail. +// +// Uses d3-celestial (BSD-3-Clause), served entirely from our own host: no +// external service, no API calls, no tracking. The star catalogue + Milky Way +// data are static JSON under vendor/celestial/data/. The whole projection and +// drawing happens in the browser. +// +// Given a parsed measurement (start/end RA/Dec + the observing site + the UTC +// event time) it renders the sky as seen from that site at that instant — with +// the horizon — and overlays the meteor's trail (green = start, red = end). +(function (global) { + 'use strict'; + + var DATAPATH = 'vendor/celestial/data/'; + var inited = false; + var trail = null; // transformed endpoint coords: [[ra,dec],[ra,dec]] + + function config(width) { + return { + container: 'skymap', + width: width || 440, + projection: 'stereographic', // hemispheric: shows a horizon circle + transform: 'equatorial', + follow: 'zenith', + location: true, // enables the date/location (skyview) machinery + controls: false, + interactive: true, + disableAnimations: true, + datapath: DATAPATH, + stars: { show: true, limit: 6, colors: true, size: 6, designation: false, + propername: false, names: false }, + dsos: { show: false }, + planets: { show: false }, + constellations: { + show: true, names: true, namesType: 'iau', + nameStyle: { fill: '#c9cbe0', font: '11px Helvetica, Arial, sans-serif', + align: 'center', baseline: 'middle' }, + lines: true, lineStyle: { stroke: '#6f7290', width: 1, opacity: 0.7 }, + bounds: false + }, + mw: { show: true, style: { fill: '#ffffff', opacity: 0.12 } }, + lines: { + graticule: { show: true, stroke: '#3a3a4a', width: 0.5, opacity: 0.5 }, + equatorial: { show: false }, ecliptic: { show: false }, + galactic: { show: false }, supergalactic: { show: false } + }, + horizon: { show: true, stroke: '#ff5a5a', width: 1.6, fill: '#0a0010', opacity: 0.45 }, + background: { fill: '#0a0a14', opacity: 1, stroke: '#0a0a14', width: 1 }, + daylight: { show: false } + }; + } + + // Register a custom canvas layer that draws the current trail on every redraw + // (so it follows pan/zoom and date changes). Added once, before display. + function addTrailLayer() { + Celestial.add({ + type: 'line', + callback: function () {}, + redraw: function () { + if (!trail) return; + var ctx = Celestial.context; + var a = Celestial.clip(trail[0]) ? Celestial.mapProjection(trail[0]) : null; + var b = Celestial.clip(trail[1]) ? Celestial.mapProjection(trail[1]) : null; + if (a && b) { + ctx.beginPath(); + ctx.moveTo(a[0], a[1]); ctx.lineTo(b[0], b[1]); + ctx.lineWidth = 2.5; ctx.strokeStyle = '#ff3b3b'; ctx.globalAlpha = 1; + ctx.stroke(); + } + if (a) { ctx.beginPath(); ctx.arc(a[0], a[1], 5, 0, 2 * Math.PI); ctx.fillStyle = '#5dff5d'; ctx.fill(); } + if (b) { ctx.beginPath(); ctx.arc(b[0], b[1], 5, 0, 2 * Math.PI); ctx.fillStyle = '#ff3b3b'; ctx.fill(); } + } + }); + } + + function setTrail(start, end) { + var geo = { type: 'FeatureCollection', features: [ + { type: 'Feature', properties: {}, geometry: { type: 'LineString', coordinates: [start, end] } } + ] }; + trail = Celestial.getData(geo, 'equatorial').features[0].geometry.coordinates; + } + + // detail = { start:{ra,dec}, end:{ra,dec}, lat, lon, event_utc } + // Returns true if it could render (needs both RA/Dec, a site and a UTC time). + function render(detail) { + if (!detail || !detail.start || detail.start.ra == null || + !detail.end || detail.end.ra == null || + detail.lat == null || detail.lon == null || !detail.event_utc) { + return false; + } + if (!inited) { + var el = document.getElementById('skymap'); + addTrailLayer(); + Celestial.display(config(el ? el.clientWidth : 440)); + inited = true; + } + setTrail([detail.start.ra, detail.start.dec], [detail.end.ra, detail.end.dec]); + Celestial.skyview({ date: new Date(detail.event_utc), location: [detail.lat, detail.lon] }); + return true; + } + + global.MeteorSky = { render: render }; +})(window); diff --git a/frontend/skytest.html b/frontend/skytest.html new file mode 100644 index 0000000..925c897 --- /dev/null +++ b/frontend/skytest.html @@ -0,0 +1,34 @@ + + + + + + MeteorPointer — sky render test + + + + +

Standalone render test (real parsed RA/Dec, no login).

+
+ + + + + + + diff --git a/frontend/vendor/celestial/celestial.css b/frontend/vendor/celestial/celestial.css new file mode 100644 index 0000000..c725b9c --- /dev/null +++ b/frontend/vendor/celestial/celestial.css @@ -0,0 +1,111 @@ +/* Copyright 2015-16 Olaf Frohn https://github.com/ofrohn, see LICENSE */ + +#celestial-map { width: 100%; height: auto; margin: 0; padding: 0; display: inline-block; position: relative; min-width:720px; overflow: visible; } +#celestial-map canvas { display: inline-block; position:relative; z-index:0; cursor:hand; cursor:grab; cursor:-moz-grab; cursor:-webkit-grab; } +#celestial-map canvas:active { cursor:move; cursor: grabbing; cursor: -moz-grabbing; cursor: -webkit-grabbing; } +#d3-celestial-footer { text-align:center; color:#666; font:10pt/1 'Arial Unicode MS', Arial, Helvetica, sans-serif; } +#d3-celestial-footer a { text-decoration:none; color:#99f; } + +/* Form */ +#celestial-form { font:12pt/1 'Arial Unicode MS', Arial, Helvetica, sans-serif; display: inline-block; position: relative; } +#error { position:absolute; min-width:100px; height:auto; padding: 2px 4px; color:#f00; background:#fff; border:2px solid #f00; border-radius:3px; font-weight:normal; display:block; top:-9999px; left:-9999px; opacity:0; transition:opacity 1s linear; } +#celestial-form .col { border-top: 1px dotted #000; padding: 4px 6px; margin:0 0 4px; clear:both; white-space: nowrap; } +/* What parts to show */ +#celestial-form #general, +#celestial-form #location, +#celestial-form #stars, +#celestial-form #dsos, +#celestial-form #constellations, +#celestial-form #lines, +#celestial-form #other, +#celestial-form #download { display: block } + +#celestial-form input { vertical-align: 0px; } +#celestial-form input[type='number'] { width:48px; height:18px; text-align:right; padding:0; } +input[type="number"]::-webkit-inner-spin-button, +input[type="number"]::-webkit-outer-spin-button { height: auto; } +#celestial-form #centerx, #celestial-form #centery, #celestial-form #centerz, +#celestial-form #lat, #celestial-form #lon { width:64px; margin-top:4px; } +#celestial-form input[type='text'] { width:194px; height:18px; text-align:left; padding-left:2px; } +#celestial-form input[type='checkbox'] { vertical-align: -2px; } +#celestial-form input[type='color'] { width:48px; vertical-align: -3px; height:22px; background:#fff; } +#celestial-form #datepick { position:relative; display:inline-block; _vertical-align:-8px; top:7px; left:-31px; width:28px; height:24px; border:0px none; border-left:1px solid #ccc; background-color: #f7f7f7; background-image: url('images/dtpick.png'); background-position: -45px 1px; cursor:default; } +#celestial-form #datepick.active { background-position: -69px 1px; } +#celestial-form #datetime { cursor:default; } +#celestial-form input#now { position:relative; left:-24px; } +#celestial-form #constellation { } +#celestial-form select option { color:#000; } +#celestial-form select option[value='---'] { color:#ccc; } + +#celestial-form input[type='button'] { width:64px; padding-bottom:1px; margin-top:4px; background: #f7f7f7; } +#celestial-form input#download-png, +#celestial-form input#download-svg { display: inline-block; text-align: center; margin-left:4px; width:108px; height:24px; font: inherit; line-height:20px; text-decoration: none; color: #000; background: #f7f7f7; } +#celestial-form input#width { margin-left:2px; } +#celestial-form input#now, +#celestial-form input#here { width:48px; margin-left:2px; float:none; } +#celestial-form input[type='button']:hover, +#celestial-form #datepick:hover, +#celestial-form input#download-png:hover, +#celestial-form input#download-svg:hover { background-color:#eee; cursor:pointer; } + +#celestial-form input[type='text']:disabled, +#celestial-form input[type='number']:disabled, +#celestial-form input[type='color']:disabled { border: 1px solid #ccc; background:#eee } + +#celestial-form input[type='text'], +#celestial-form input[type='number'], +#celestial-form input[type='color'], +#celestial-form select, +#celestial-form input#now, +#celestial-form input#here, +#celestial-form input#show, +#celestial-form input#download-png, +#celestial-form input#download-svg { border: 1px solid #000; border-radius:3px; height:24px; } + +#celestial-form label { margin:0 2px 0 8px; } +#celestial-form label.header { font-weight:bold; } +#celestial-form input + span { margin:0 4px 0 2px; } +#celestial-form label:first-child, +#celestial-form br + label { margin-left:0; } + +/* Zoom controls */ +#celestial-zoomin, +#celestial-zoomout { width:32px; height:32px; left:8px; top:12px; background: rgba(255,255,255,0.5); border:1px solid #000; border-radius:3px; position:absolute; font: normal bold 24px/1 Consolas, Courier, 'Courier New', monospace; cursor:pointer; } +#celestial-zoomout { top: 48px; } +#celestial-zoomin:hover, +#celestial-zoomout:hover { background: rgba(255,255,255,0.7); } +#celestial-zoomin:disabled, +#celestial-zoomout:disabled { background: rgba(255,255,255,0.0); border:1px solid rgba(153,153,153,0.7); color:rgba(153,153,153,0.7); cursor:default; } + +#celestial-date { position:absolute; top:-9999px; width:193px; text-align:center; border:1px solid #000; background:#fff; opacity:0; transition:.6s ease-in opacity; font: 13px/1 sans-serif; } +#celestial-date input, #celestial-date select { font:inherit; } +#celestial-date #yr, #celestial-date #mon { margin: 2px 3px; vertical-align:middle; } +#celestial-date #left, #celestial-date #right { display:inline-block; width:12px; height:24px; margin:0; vertical-align:-8px; cursor:pointer; background-image: url('images/dtpick.png'); } +#celestial-form #day-left, #celestial-form #day-right { display:inline-block; float:none; width:12px; height:24px; margin:0; padding:0; vertical-align:middle; cursor:pointer; border: 0 none; background-color:transparent; background-image: url('images/dtpick.png'); } +#celestial-form #day-right { position:relative; left:-30px; } +#celestial-date #left, #celestial-form #day-left { background-position: -8px 0px; } +#celestial-date #right, #celestial-form #day-right { background-position: -30px 0px; } +#celestial-date #hr, #celestial-date #min, #celestial-date #sec { margin: 0 0 2px 0; width:34px; } +#celestial-date #hr { border-right: 0px none; border-radius: 3px 0 0 3px; } +#celestial-date #min { border-right: 0px none; border-left: 0px none; border-radius: 0; } +#celestial-date #sec { border-left: 0px none; border-radius: 0 3px 3px 0; } +#celestial-date #tz { margin: 0 0 2px 4px; } +#celestial-date #cal { display:inline-block; width:182px; margin:0 4px; } +#celestial-date .date { display:inline-block; width:19px; height:14px; border:1px solid #fff; color:#000; font-weight: bold; text-align:right; vertical-align:middle; padding:2px 4px 2px 0; cursor:pointer; } +#celestial-date .grey { color:#ccc; } +#celestial-date .weekday { color:#666; font-sixe:11px; background:#eee; border:1px solid #eee; } +#celestial-date .weekend { color:#f00; } +#celestial-date .selected { border:1px solid #000; border-radius:3px; } +#celestial-date .today { background:#ff0; } + + +@media print { + #celestial-zoomin, #celestial-zoomout, #celestial-form { display: none; } +} + +/* SVG styles + +svg .constname { + fill: "#ffff99"; fill-opacity:0.7; font: bold 14px 'Lucida Sans Unicode', Trebuchet, Helvetica, Arial, sans-serif; text-anchor: middle +} + */ \ No newline at end of file diff --git a/frontend/vendor/celestial/celestial.min.js b/frontend/vendor/celestial/celestial.min.js new file mode 100644 index 0000000..d9c6df3 --- /dev/null +++ b/frontend/vendor/celestial/celestial.min.js @@ -0,0 +1,5 @@ +// Copyright 2015-2020 Olaf Frohn https://github.com/ofrohn, see LICENSE +!function(){function t(t,e){function a(a,r){var s=t([a*=180/Math.PI,r*=180/Math.PI]),o=e([a,r]);return[(1-n)*s[0]+n*o[0],(n-1)*s[1]-n*o[1]]}var n,r=d3.geo.projection(a).scale(1),s=r.center,o=r.translate;return r.alpha=function(a){if(!arguments.length)return n;n=+a;var i=t.center(),l=e.center(),c=t.translate(),d=e.translate();return s([(1-n)*i[0]+n*l[0],(1-n)*i[1]+n*l[1]]),o([(1-n)*c[0]+n*d[0],(1-n)*c[1]+n*d[1]]),r},delete r.translate,delete r.center,r.alpha(0)}function e(t,e){return a(t.map(function(t){return t*yt}),e).map(function(t){return t/yt})}function a(t,e){var a,n,r,s,o,i,l,c,d,p;return e?(i=t[0],i<0&&(i+=ft),l=t[1],i-=e[0],s=e[1],o=e[2],a=Math.sin(l)*Math.sin(s)-Math.cos(l)*Math.cos(s)*Math.cos(i),Math.abs(a)<1e-5&&(a=-Math.cos(l+s)+Math.cos(l)*Math.cos(s)*(1-Math.cos(i))),n=-Math.cos(l)*Math.sin(i),c=0!==a||0!==n?Math.atan2(n,a):i-Math.PI,d=o+c,d>Math.PI&&(d-=ft),i%Math.PI==0?(p=l+Math.cos(i)*s,p>mt&&(p=Math.PI-p),p<-mt&&(p=-Math.PI-p)):(r=Math.sin(l)*Math.cos(s)+Math.cos(l)*Math.sin(s)*Math.cos(i),Math.abs(r)>.99?(p=Math.abs(Math.acos(Math.sqrt(a*a+n*n))),r<0&&(p*=-1)):p=Math.asin(r)),[d,p]):t}function n(t){if(null===t||t.length<=0)return[0,0,0];var e=ut.equatorial;return t[2]||(t[2]=0),[e[0]-t[0],e[1]-t[1],e[2]+t[2]]}function r(t,e){var a=t.getUTCFullYear(),n=t.getUTCMonth()+1,r=t.getUTCDate(),s=t.getUTCHours(),o=t.getUTCMinutes(),i=t.getUTCSeconds();1!=n&&2!=n||(a-=1,n+=12);var l=Math.floor(a/100),c=2-l+Math.floor(l/4),d=Math.floor(365.25*a),p=Math.floor(30.6001*(n+1)),u=c+d+p-730550.5+r+(s+o/60+i/3600)/24,h=u/36525,f=280.46061837+360.98564736629*u+387933e-9*h*h-h*h*h/3871e4+e;if(f>0)for(;f>360;)f-=360;else for(;f<0;)f+=360;return f}function s(t,a){return e(t,gt[a])}function o(t,e){if("equatorial"===e)return t;for(var a=gt[e],n=t.features,r=0;r=3?t:1===t.length?[t[0],t[0],t[0]]:2===t.length?[t[0],t[1],t[1]]:void 0:[t,t,t]}function v(t){return document.querySelector(J+" #"+t)}function M(t){return t+"px"}function b(t,e){return Math.round(Math.pow(10,e)*t)/Math.pow(10,e)}function w(t){return t<10?"0"+t:t}function k(t,e){return null!==t&&hasOwnProperty.call(t,e)}function x(t){return null!==t&&!isNaN(parseFloat(t))&&isFinite(t)}function z(t){return null!==t&&"[object Array]"===Object.prototype.toString.call(t)}function S(t){var e=typeof t;return"function"===e||"object"===e&&!!t}function T(t){return t&&t instanceof Date&&!isNaN(t)}function j(t){var e=0,a=0;if(t.offsetParent)do{e+=t.offsetLeft,a+=t.offsetTop}while(null!==(t=t.offsetParent));return[e,a]}function P(t,e){for(;t.parentNode;){if(t.id===e)return!0;t=t.parentNode}return!1}function A(t,e,a){var n=e.valueOf()-t.valueOf();switch(a||"d"){case"y":case"yr":n/=31556926080;break;case"m":case"mo":n/=26298e5;break;case"d":case"dy":n/=864e5;break;case"h":case"hr":n/=36e5;break;case"n":case"mn":n/=6e4;break;case"s":case"sec":n/=1e3}return Math.floor(n)}function I(t){if(t){var e=t.split(".");if(!(e.length<1)&&(e=e[0].split("-"),e[0]=e[0].replace(/\D/g,""),e[0]))return e[1]=e[1]?e[1].replace(/\D/g,""):"1",e[2]=e[2]?e[2].replace(/\D/g,""):"1",new Date(Date.UTC(e[0],e[1]-1,e[2]))}}function q(t,e,a){return t=(t*yt+ft)%ft,e=(e*yt+ft)%ft,Math.abs(t-e)>Math.PI&&(t>e?t-=ft:e>t&&(e-=ft)),d3.interpolateNumber(t/yt,e/yt)}function L(t){function a(){var t=this,e=t.value;!1!==_(t)&&(m.width=e,tt.resize({width:e}))}function n(){var t=this,e=t.value,a=N(e,m.transform);null!==a&&(m.center[0]=a),m.transform=e,wt.set(m),tt.reload(m)}function r(){var t=this;t&&(m.projection=t.value,wt.set(m),tt.reproject(m))}function s(){!1!==_(this)&&!1!==o()&&tt.rotate(m)}function o(){var t=W("centerx"),e=W("centery"),a=W("centerz");if(t&&e){if("equatorial"!==m.transform)m.center[0]=parseFloat(t.value);else{var n=parseFloat(t.value);m.center[0]=n>12?15*n-360:15*n}m.center[1]=parseFloat(e.value);var r=parseFloat(a.value);return m.center[2]=isNaN(r)?0:r,""!==t.value&&""!==e.value}}function i(t){var e=d3.time.format("%Y%m%dT%H%M%S%Z"),a="d3-celestial",n=tt.date();return n&&(a+=e(n)),a+t}function l(){var t=this.value;t&&c(t)}function c(t){var a,n=[],r=bt;if("---"===t)return tt.constellation=null,a=tt.zoomBy(),1!==a&&n.push({param:"zoom",value:1/a,duration:0}),void tt.animate(n,!1);if(S(tt.constellations)&&k(tt.constellations,t)){var s=tt.constellations[t],o=e(s.center,gt[r.transform]);r.center=o,C(r.center,r.transform),a=tt.zoomBy(),1!==a&&n.push({param:"zoom",value:1/a,duration:0}),n.push({param:"center",value:o,duration:0});var i=1+360/s.scale;n.push({param:"zoom",value:i,duration:0}),tt.constellation=t,tt.animate(n,!1)}}function d(){var t,e=this;switch(Object.assign(m,wt.set()),e.type){case"checkbox":t=e.checked,D(e);break;case"number":if(!1===_(e))return;t=parseFloat(e.value);break;case"color":if(!1===E(e))return;t=e.value;break;case"text":if(-1===e.id.search(/fill$/))return;if(!1===E(e))return;t=e.value;break;case"select-one":t=e.value}null!==t&&(p(e.id,t),"dsos-style-fill"===e.id?(p("dsos-style-stroke",t),p("dsos-nameStyle-fill",t)):"constellations-namesType"===e.id?U():"lang"===e.id?u(t):"advanced"===e.id&&B(t),o(),Object.assign(bt,m),tt.apply(m))}function p(t,e){var a=t.split("-");switch(a.length){case 1:m[a[0]]=e;break;case 2:m[a[0]][a[1]]=e;break;case 3:m[a[0]][a[1]][a[2]]=e;break;default:return}}function u(t){Object.assign(m,bt),m.lang=t;for(var e=["constellations","planets"],a=0;a1?(w.append("label").attr("for","stars-"+A).html("Show"),T=0,w.append("label").attr("title","Type of star name").attr("id","label-propername").attr("for","stars-"+A+"Type").html(function(){return"propername"===A?"proper names":""}),x=w.append("select").attr("id","stars-"+A+"Type").attr("class",function(){return"propername"===A?"advanced":""}).on("change",d),j=I.map(function(t,e){return t===m.stars[A+"Type"]&&(T=e),{o:t,n:P[A][t]}}),x.selectAll("option").data(j).enter().append("option").attr("value",function(t){return t.o}).text(function(t){return t.n}),x.property("selectedIndex",T),w.append("input").attr("type","checkbox").attr("id","stars-"+A).property("checked",m.stars[A]).on("change",d)):1===I.length&&(w.append("label").attr("for","stars-"+A).html(" "+P[A][I[0]]),w.append("input").attr("type","checkbox").attr("id","stars-"+A).property("checked",m.stars[A]).on("change",d)),w.append("label").attr("for","stars-"+A+"Limit").html("down to mag"),w.append("input").attr("type","number").attr("id","stars-"+A+"Limit").attr("title","Star name display limit (magnitude)").attr("value",m.stars[A+"Limit"]).attr("max","6").attr("min","-1").attr("step","0.1").on("change",d)}w.append("br"),w.append("label").attr("for","stars-size").attr("class","advanced").html("Stellar disk size: base"),w.append("input").attr("type","number").attr("id","stars-size").attr("class","advanced").attr("title","Size of the displayed star disk; base").attr("value",m.stars.size).attr("max","100").attr("min","0").attr("step","0.1").on("change",d),w.append("label").attr("for","stars-exponent").attr("class","advanced").html(" * e ^ (exponent"),w.append("input").attr("type","number").attr("id","stars-exponent").attr("class","advanced").attr("title","Size of the displayed star disk; exponent").attr("value",m.stars.exponent).attr("max","3").attr("min","-1").attr("step","0.01").on("change",d),w.append("span").attr("class","advanced").text(" * (magnitude + 2)) [* adaptation]"),D(W("stars-show")),w=b.append("div").attr("class","col").attr("id","dsos"),w.append("label").attr("class","header").attr("title","Deep Space Objects").attr("for","dsos-show").html("DSOs"),w.append("input").attr("type","checkbox").attr("id","dsos-show").property("checked",m.dsos.show).on("change",d),w.append("label").attr("for","dsos-limit").html("down to mag"),w.append("input").attr("type","number").attr("id","dsos-limit").attr("title","DSO display limit (magnitude)").attr("value",m.dsos.limit).attr("max","6").attr("min","0").attr("step","0.1").on("change",d),w.append("label").attr("for","dsos-colors").html("with symbol colors"),w.append("input").attr("type","checkbox").attr("id","dsos-colors").property("checked",m.dsos.colors).on("change",d),w.append("label").attr("for","dsos-color").html("or default color "),w.append("input").attr("type","color").attr("autocomplete","off").attr("id","dsos-style-fill").attr("title","DSO color").property("value",m.dsos.style.fill).on("change",d),w.append("br"),P=zt.dsonames[m.culture]||zt.dsonames.iau;for(A in P)if(k(P,A)){var q=Object.keys(P[A]);w.append("label").attr("for","dsos-"+A).html("Show"),T=0,w.append("label").attr("title","Type of DSO name").attr("for","dsos-"+A+"Type").attr("class","advanced").html(""),x=w.append("select").attr("id","dsos-"+A+"Type").attr("class","advanced").on("change",d),j=q.map(function(t,e){return t===m.stars[A+"Type"]&&(T=e),{o:t,n:P[A][t]}}),x.selectAll("option").data(j).enter().append("option").attr("value",function(t){return t.o}).text(function(t){return t.n}),x.property("selectedIndex",T),w.append("label").attr("for","dsos-"+A).html("names"),w.append("input").attr("type","checkbox").attr("id","dsos-"+A).property("checked",m.dsos[A]).on("change",d)}w.append("label").attr("for","dsos-nameLimit").html("down to mag"),w.append("input").attr("type","number").attr("id","dsos-nameLimit").attr("title","DSO name display limit (magnitude)").attr("value",m.dsos.nameLimit).attr("max","6").attr("min","0").attr("step","0.1").on("change",d),w.append("br"),w.append("label").attr("for","dsos-size").attr("class","advanced").html("DSO symbol size: (base"),w.append("input").attr("type","number").attr("id","dsos-size").attr("class","advanced").attr("title","Size of the displayed symbol: base").attr("value",m.dsos.size).attr("max","100").attr("min","0").attr("step","0.1").on("change",d),w.append("label").attr("for","dsos-exponent").attr("class","advanced").html(" * 2 [* adaptation] - magnitude) ^ exponent"),w.append("input").attr("type","number").attr("id","dsos-exponent").attr("class","advanced").attr("title","Size of the displayed symbol; exponent").attr("value",m.dsos.exponent).attr("max","3").attr("min","-1").attr("step","0.01").on("change",d),D(W("dsos-show")),w=b.append("div").attr("class","col").attr("id","constellations"),w.append("label").attr("class","header").html("Constellations"),P=zt.constellations[m.culture]||zt.constellations.iau;for(A in P)if(k(P,A)){var L=Object.keys(P[A]);L.length>1?(w.append("label").attr("for","constellations-"+A).html("Show"),T=0,w.append("label").attr("title","Language of constellation names").attr("for","constellations-"+A+"Type").attr("class","advanced").html(""),x=w.append("select").attr("id","constellations-"+A+"Type").attr("class","advanced").on("change",d),j=L.map(function(t,e){return t===m.constellations[A+"Type"]&&(T=e),{o:t,n:P[A][t]}}),x.selectAll("option").data(j).enter().append("option").attr("value",function(t){return t.o}).text(function(t){return t.n}),x.property("selectedIndex",T),w.append("label").attr("for","constellations-"+A).html("names"),w.append("input").attr("type","checkbox").attr("id","constellations-"+A).property("checked",m.constellations[A]).on("change",d)):1===L.length&&(w.append("label").attr("for","constellations-"+A).attr("class","advanced").html(" "+P[A][L[0]]),w.append("input").attr("type","checkbox").attr("id","constellations-"+A).attr("class","advanced").property("checked",m.constellations[A]).on("change",d))}w.append("label").attr("for","constellations-lines").html(" lines"),w.append("input").attr("type","checkbox").attr("id","constellations-lines").property("checked",m.constellations.lines).on("change",d),w.append("label").attr("for","constellations-bounds").html(" boundaries"),w.append("input").attr("type","checkbox").attr("id","constellations-bounds").property("checked",m.constellations.bounds).on("change",d),D(W("constellations-names")),w=b.append("div").attr("class","col").attr("id","lines"),w.append("label").attr("class","header").html("Lines"),w.append("label").attr("title","Latitude/longitude grid lines").attr("for","lines-graticule").html("Graticule"),w.append("input").attr("type","checkbox").attr("id","lines-graticule-show").property("checked",m.lines.graticule.show).on("change",d),w.append("label").attr("for","lines-equatorial").html("Equator"),w.append("input").attr("type","checkbox").attr("id","lines-equatorial-show").property("checked",m.lines.equatorial.show).on("change",d),w.append("label").attr("for","lines-ecliptic").html("Ecliptic"),w.append("input").attr("type","checkbox").attr("id","lines-ecliptic-show").property("checked",m.lines.ecliptic.show).on("change",d),w.append("label").attr("for","lines-galactic").html("Galactic plane"),w.append("input").attr("type","checkbox").attr("id","lines-galactic-show").property("checked",m.lines.galactic.show).on("change",d),w.append("label").attr("for","lines-supergalactic").html("Supergalactic plane"),w.append("input").attr("type","checkbox").attr("id","lines-supergalactic-show").property("checked",m.lines.supergalactic.show).on("change",d),w=b.append("div").attr("class","col").attr("id","other"),w.append("label").attr("class","header").html("Other"),w.append("label").attr("for","mw-show").html("Milky Way"),w.append("input").attr("type","checkbox").attr("id","mw-show").property("checked",m.mw.show).on("change",d),w.append("label").attr("for","mw-style-fill").attr("class","advanced").html(" color"),w.append("input").attr("type","color").attr("id","mw-style-fill").attr("class","advanced").attr("title","Milky Way color").attr("value",m.mw.style.fill).on("change",d),w.append("label").attr("for","mw-style-opacity").attr("class","advanced").html(" opacity"),w.append("input").attr("type","number").attr("id","mw-style-opacity").attr("class","advanced").attr("title","Transparency of each Milky Way layer").attr("value",m.mw.style.opacity).attr("max","1").attr("min","0").attr("step","0.01").on("change",d),w.append("label").attr("for","advanced").html("Advanced options"),w.append("input").attr("type","checkbox").attr("id","advanced").property("checked",m.advanced).on("change",d),w.append("br"),w.append("label").attr("for","background-fill").html("Background color"),w.append("input").attr("type","color").attr("id","background-fill").attr("title","Background color").attr("value",m.background.fill).on("change",d),w.append("label").attr("for","background-opacity").attr("class","advanced").html("opacity"),w.append("input").attr("type","number").attr("id","background-opacity").attr("class","advanced").attr("title","Background opacity").attr("value",m.background.opacity).attr("max","1").attr("min","0").attr("step","0.01").on("change",d),w.append("label").attr("title","Star/DSO sizes are increased with higher zoom-levels").attr("for","adaptable").attr("class","advanced").html("Adaptable object sizes"),w.append("input").attr("type","checkbox").attr("id","adaptable").attr("class","advanced").property("checked",m.adaptable).on("change",d);var F=St[m.culture];T=0,w.append("label").attr("title","General language setting").attr("for","lang").html("Object names "),x=w.append("select").attr("id","lang").on("change",d),j=F.map(function(t,e){return t===m.lang&&(T=e),{o:t,n:zt.constellations[m.culture].names[t]}}),j=[{o:"---",n:"(Select language)"}].concat(j),x.selectAll("option").data(j).enter().append("option").attr("value",function(t){return t.o}).text(function(t){return t.n}),x.property("selectedIndex",T),w=b.append("div").attr("class","col").attr("id","download"),w.append("label").attr("class","header").html("Download"),w.append("input").attr("type","button").attr("id","download-png").attr("value","PNG Image").on("click",function(){var t=d3.select("body").append("a").node(),e=document.querySelector(J+" canvas");t.download=i(".png"),t.rel="noopener",t.href=e.toDataURL("image/png").replace("image/png","image/octet-stream"),t.click(),d3.select(t).remove()}),w.append("input").attr("type","button").attr("id","download-svg").attr("value","SVG File").on("click",function(){return R(i(".svg")),!1}),H(),N(m.transform),G(t),B(m.advanced),tt.updateForm=h,tt.showConstellation=c,tt.setLanguage=function(t){var e=wt.set();return-1!==St[m.culture].indexOf(t)&&(e=u(t)),e}}function D(t){var e,a=t.id;switch(a){case"stars-show":e=!W(a).checked;for(var n=0;nt.max)return O(t,t.title+" must be between "+(t.min+a)+" and "+(+t.max-a)),!1}return d3.select("#error").style({top:"-9999px",left:"-9999px",opacity:0}),!0}function E(t){var e;if(t.validity){if(e=t.validity,e.typeMismatch||e.badInput)return O(t,t.title+": check field value"),!1;if(-1===t.value.search(/^#[0-9A-F]{6}$/i))return O(t,t.title+": not a color value"),!1}else{if(""===(e=t.value))return!0;if(-1===e.search(/^#[0-9A-F]{6}$/i))return O(t,t.title+": not a color value"),!1}return d3.select("#error").style({top:"-9999px",left:"-9999px",opacity:0}),!0}function N(t,e){var a=W("centerx");return a?(e&&("equatorial"===t&&"equatorial"!==e?(a.value=(a.value/15).toFixed(1),a.value<0&&(a.value+=24)):"equatorial"!==t&&"equatorial"===e&&(a.value=(15*a.value).toFixed(1),a.value>180&&(a.value-=360))),"equatorial"===t?(a.min="0",a.max="24",W("cxunit").innerHTML="h"):(a.min="-180",a.max="180",W("cxunit").innerHTML="°"),a.value):null}function C(t,e){var a=W("centerx"),n=W("centery"),r=W("centerz");a&&n&&((null===t||t.length<1)&&(t=[0,0,0]),(t.length<=2||void 0===t[2])&&(t[2]=0),a.value="equatorial"!==e?t[0].toFixed(1):t[0]<0?(t[0]/15+24).toFixed(1):(t[0]/15).toFixed(1),n.value=t[1].toFixed(1),r.value=null!==t[2]?t[2].toFixed(1):0,wt.set({center:t}))}function H(){var t,e,a,n=/\d+(\.\d+)?/g,r={s:6,d:6},s=tt.settings();return a=s.dsos.data,t=a.match(n),null!==t&&(r.d=parseFloat(t[t.length-1])),6!==r.d&&(W("dsos-limit").max=r.d,W("dsos-nameLimit").max=r.d),e=s.stars.data,t=e.match(n),null!==t&&(r.s=parseFloat(t[t.length-1])),6!=r.s&&(W("stars-limit").max=r.s,W("stars-designationLimit").max=r.s,W("stars-propernameLimit").max=r.s),r}function B(t){var e=t?"inline-block":"none";d3.select(J+" ~ #celestial-form").selectAll(".advanced").style("display",e),d3.select(J+" ~ #celestial-form").selectAll("#label-propername").style("display",t?"none":"inline-block")}function G(t,e){var a,n;if(k(t,"formFields")){if(e&&k(t.formFields,e))return void d3.select(J+" ~ #celestial-form").select("#"+e).style({display:"none"});if(!1!==t.form||!0!==t.location){!1===t.form&&d3.select(J+" ~ #celestial-form").style("display","none");for(n in t.formFields)k(t.formFields,n)&&"location"!==n&&(a=!1===t.formFields[n]?"none":"block",d3.select(J+" ~ #celestial-form").select("#"+n).style({display:a}))}else{d3.select(J+" ~ #celestial-form").style("display","inline-block");for(n in t.formFields)k(t.formFields,n)&&"location"!==n&&d3.select(J+" ~ #celestial-form").select("#"+n).style({display:"none"})}}}function U(){var t,e,a=d3.select(J+" ~ #celestial-form").select("#constellation"),n=[],r=0,s=bt;if(tt.container.selectAll(".constname").each(function(a,o){t=a.id,t===s.constellation&&(r=o),e=a.properties[s.constellations.namesType],e!==t&&(e+=" ("+t+")"),n.push({o:t,n:e})}),n.length<1||a.length<1)return void setTimeout(U,1e3);n=[{o:"---",n:"(Select constellation)"}].concat(n),a.selectAll("option").remove(),a.selectAll("option").data(n).enter().append("option").attr("value",function(t){return t.o}).text(function(t){return t.n}),a.property("selectedIndex",r)}function W(t){return document.querySelector(J+" ~ #celestial-form #"+t)}function V(t){function e(){h.setTime(Date.now()),W("datetime").value=r(h,m),l()}function a(){navigator.geolocation.getCurrentPosition(function(t){u=[b(t.coords.latitude,4),b(t.coords.longitude,4)],W("lat").value=u[0],W("lon").value=u[1],l()})}function n(){v.show(h,m)}function r(t,e){var a;if(e&&"0"!==e){var n=Math.floor(Math.abs(e)/60),r=Math.abs(e)-60*n;a=(e>0?" +":" −")+w(n)+w(r)}else a=" ±0000";return d(t)+a}function s(t){return!(!t||!z(t)||t.length<2)&&(!(!x(t[0])||t[0]<-90||t[0]>90)&&!(!x(t[1])||t[1]<-180||t[1]>180))}function o(t){return void 0!==t&&null!==t&&!(!x(t)&&Math.abs(t)>840)}function i(){Object.assign(y,wt.set()),y.horizon.show=!!W("horizon-show").checked,y.daylight.show=!!W("daylight-show").checked,y.planets.show=!!W("planets-show").checked,y.planets.names=!!W("planets-names").checked,y.planets.namesType=W("planets-namesType").value,y.planets.symbolType=W("planets-symbolType").value,D(W("planets-show")),tt.apply(y)}function l(){var t=parseFloat(W("lon").value),e=parseFloat(W("lat").value);if(Object.assign(y,wt.set()),h=d.parse(W("datetime").value.slice(0,-6)),!isNaN(t)&&!isNaN(e)){if(e!==u[0]||t!==u[1])return u=[e,t],void c([e,t],!0);W("datetime").value=r(h,m);var a=new Date(h.valueOf()-6e4*(m-f));p=tt.getPoint(vt.inverse(a,[90,0],u),y.transform),p[2]=0,"zenith"===y.follow?tt.rotate({center:p}):tt.redraw()}}function c(t,e){if(t&&k(y,"settimezone")&&!1!==y.settimezone){var a=Math.floor(h.getTime()/1e3),n=window&&"https:"===window.location.protocol?"https":"http",s=n+"://api.timezonedb.com/v2.1/get-time-zone?key="+y.timezoneid+"&format=json&by=position&lat="+t[0]+"&lng="+t[1]+"&time="+a;d3.json(s,function(e,n){if(e)return console.warn(e);"FAILED"===n.status?(m=60*Math.round(t[1]/15),At={gmtOffset:60*m,message:"Sea locatation inferred",timestamp:a}):(m=n.gmtOffset/60,At=n),W("datetime").value=r(h,m),l()})}}var d=d3.time.format("%Y-%m-%d %H:%M:%S"),p=[0,0],u=[0,0],h=new Date,f=-h.getTimezoneOffset(),m=f,y=wt.set(t),g=d3.select(J+" ~ #celestial-form form").insert("div","div#general").attr("id","loc"),v=new Ht(y,function(t,e){W("datetime").value=r(t,e),m=e,l()});k(y,"geopos")&&null!==y.geopos&&2===y.geopos.length&&(u=y.geopos);var M=g.append("div").attr("class","col").attr("id","location").style("display","none");M.append("label").attr("title","Location coordinates long/lat").attr("for","lat").html("Location"),M.append("input").attr("type","number").attr("id","lat").attr("title","Latitude").attr("placeholder","Latitude").attr("max","90").attr("min","-90").attr("step","0.0001").attr("value",u[0]).on("change",function(){!0===_(this)&&l()}),M.append("span").html("°"),M.append("input").attr("type","number").attr("id","lon").attr("title","Longitude").attr("placeholder","Longitude").attr("max","180").attr("min","-180").attr("step","0.0001").attr("value",u[1]).on("change",function(){!0===_(this)&&l()}),M.append("span").html("°"),"geolocation"in navigator&&M.append("input").attr("type","button").attr("value","Here").attr("id","here").on("click",a),M.append("label").attr("title","Local date/time").attr("for","datetime").html(" Date/time"),M.append("input").attr("type","button").attr("id","day-left").attr("title","One day back").on("click",function(){h.setDate(h.getDate()-1),W("datetime").value=r(h,m),l() +}),M.append("input").attr("type","text").attr("id","datetime").attr("title","Date and time").attr("value",r(h,m)).on("click",n,!0).on("input",function(){this.value=r(h,m),v.isVisible()||n()}),M.append("div").attr("id","datepick").on("click",n),M.append("input").attr("type","button").attr("id","day-right").attr("title","One day forward").on("click",function(){h.setDate(h.getDate()+1),W("datetime").value=r(h,m),l()}),M.append("input").attr("type","button").attr("value","Now").attr("id","now").on("click",e),M.append("br"),M.append("label").attr("title","Show horizon marker").attr("for","horizon-show").html(" Horizon marker"),M.append("input").attr("type","checkbox").attr("id","horizon-show").property("checked",y.horizon.show).on("change",i),M.append("label").attr("title","Show daylight").attr("for","daylight-show").html("Daylight sky"),M.append("input").attr("type","checkbox").attr("id","daylight-show").property("checked",y.daylight.show).on("change",i),M.append("br"),M.append("label").attr("title","Show solar system objects").attr("for","planets-show").html(" Planets, Sun & Moon"),M.append("input").attr("type","checkbox").attr("id","planets-show").property("checked",y.planets.show).on("change",i);var S=zt.planets[y.culture]||zt.planets.iau;for(var j in S)if(k(S,j)){var A=Object.keys(S[j]);if(A.length>1){var I="symbol"===j?"as":"with";M.append("label").attr("for","planets-"+j+"Type").html(I);var q=0;M.append("label").attr("title","Type of planet name").attr("for","planets-"+j+"Type").attr("class","advanced").html("");var L=M.append("select").attr("id","planets-"+j+"Type").on("change",i),F=A.map(function(t,e){return t===y.planets[j+"Type"]&&(q=e),{o:t,n:S[j][t]}});L.selectAll("option").data(F).enter().append("option").attr("value",function(t){return t.o}).text(function(t){return t.n}),L.property("selectedIndex",q),"names"===j&&(L.attr("class","advanced"),M.append("label").attr("for","planets-"+j).html("names"),M.append("input").attr("type","checkbox").attr("id","planets-"+j).property("checked",y.planets[j]).on("change",i))}}D(W("planets-show")),B(y.advanced),d3.select(document).on("mousedown",function(){!P(d3.event.target,"celestial-date")&&v.isVisible()&&v.hide()}),tt.dateFormat=r,tt.date=function(t,e){if(!t)return h;o(e)&&(m=e),Object.assign(y,wt.set()),v.isVisible()&&v.hide(),h.setTime(t.valueOf()),W("datetime").value=r(t,m),l()},tt.timezone=function(t){if(!t)return m;o(t)&&(m=t),Object.assign(y,wt.set()),v.isVisible()&&v.hide(),W("datetime").value=r(h,m),l()},tt.position=function(){return u},tt.location=function(t,e){if(!t||t.length<2)return u;s(t)&&(u=t.slice(),W("lat").value=u[0],W("lon").value=u[1],o(e)?m=e:c(u,!0))},tt.skyview=function(t){if(!t)return{date:h,location:u,timezone:m};var e=!1;return v.isVisible()&&v.hide(),k(t,"timezone")&&o(t.timezone)&&(m=t.timezone,e=!0),k(t,"date")&&T(t.date)&&(h.setTime(t.date.valueOf()),W("datetime").value=r(t.date,m),e=!0),k(t,"location")&&s(t.location)&&(u=t.location.slice(),W("lat").value=u[0],W("lon").value=u[1],!k(t,"timezone"))?void c(u,!k(t,"date")):!1===e?{date:h,location:u,timezone:m}:void("zenith"===y.follow?l():tt.redraw())},tt.dtLoc=tt.skyview,tt.zenith=function(){return p},tt.nadir=function(){var t=-p[1],e=p[0]+180;return e>180&&(e-=360),[e,t-.001]},!k(y,"formFields")||!0!==y.location&&!0!==y.formFields.location||d3.select(J+" ~ #celestial-form").select("#location").style({display:"inline-block"}),!s(u)||!0!==y.location&&!0!==y.formFields.location||"zenith"!==y.follow||setTimeout(l,1e3)}function R(t){function a(t){return C.clip&&d3.geo.distance(B,t)>mt?0:1}function r(t){return"translate("+U(t)+")"}function s(t,e,a){var n=k(zt[t],V)?"."+V:"";return a=a?"."+a:".json",e=e?"."+e:"",t+e+n+a}function i(t){var e={};return e.fill=t.fill||"none",e["fill-opacity"]=null!==t.opacity?t.opacity:1,e.stroke=t.stroke||"none",e["stroke-width"]=null!==t.width?t.width:0,e["stroke-opacity"]=null!==t.opacity?t.opacity:1,k(t,"dash")?e["stroke-dasharray"]=t.dash.join(" "):e["stroke-dasharray"]="none",e.font=t.font||null,e}function c(t){var e={};return e.stroke="none",e.fill=t.fill||"none",e["fill-opacity"]=null!==t.opacity?t.opacity:1,e["text-anchor"]=f(t.align),e.font=t.font||null,e}function p(t,e){var a,n,r,s;if(t>1.885)return{fill:"transparent"};t<=1.36?(n="#daf1fa",r="#93d7f0",s="#57c0e8",a=-(1.36-t)/10):(a=(t-1.36)/(1.885-1.36),n=d3.interpolateLab("#daf1fa","#e8c866")(a),r=d3.interpolateLab("#93c7d0","#ff854a")(a),s=d3.interpolateLab("#57b0c8","#6caae2")(a));var o=Y.daylight.append("radialGradient").attr("cx",e[0]).attr("cy",e[1]).attr("fr","0").attr("r","300").attr("id","skygradient").attr("gradientUnits","userSpaceOnUse");return o.append("stop").attr("offset","0").attr("stop-color",n),o.append("stop").attr("offset",.2+.4*a).attr("stop-color",r),o.append("stop").attr("offset","1").attr("stop-color",s),{fill:"url(#skygradient)","fill-opacity":h(a,1.4)}}function h(t,e){return.9*(1-(Math.pow(Math.E,t*e)-1)/(Math.pow(Math.E,e)-1))}function f(t){return t?"center"===t?"middle":"right"===t?"end":"start":"start"}function m(t){var e=g(t.mag,t.dim)||9,a=y(t.type);return-1!==d3.svg.symbolTypes.indexOf(a)?d3.svg.symbol().type(a).size(e)():d3.svg.customSymbol().type(a).size(e)()}function y(t){return t&&k(E.dsos.symbols,t)?E.dsos.symbols[t].shape:"circle"}function g(t,e){return t&&999!==t?Math.pow(2*E.dsos.size*W-t,E.dsos.exponent):Math.pow(parseInt(e)*E.dsos.size*W/7,.5)}function v(t){var e=E.dsos.namesType,a=t.id;return"desig"!==e&&k(ct,a)&&k(ct[a],e)?ct[a][e]:t.properties.desig}function M(t){return k(lt,t)?lt[t][E.stars.designationType]:""}function w(t){var e=E.stars.propernameType;return k(lt,t)?k(lt[t],e)?lt[t][e]:lt[t].name:""}function x(t){if(null===t)return.1;var e=E.stars.size*W*Math.exp(E.stars.exponent*(t+2));return Math.max(e,.1)}function z(t){return!E.stars.colors||isNaN(t)?"":Math.round(10*t).toString()}function S(t){return t.properties[E.constellations.namesType]}function T(t,e){var a=e?e*e:121;return d3.svg.customSymbol().type("crescent").size(a).ratio(t.age)()}function j(t,e){var a=e?e*e:A(t.mag);return d3.svg.symbol().type("circle").size(a)()}function P(t){var e=t.replace(/(^\D*)(\d+)(\D.+$)/i,"$2");return e=Math.round(W*e),t.replace(/(^\D*)(\d+)(\D.+$)/i,"$1"+e+"$3")}function A(t){var e=t||2,a=4*W*Math.exp(-.05*(e+2));return Math.max(a,2)}function I(t){var e={type:"Feature",id:t.id,properties:{},geometry:{}};return e.properties.name=t[E.planets.namesType],"symbol"!==E.planets.symbolType&&"letter"!==E.planets.symbolType||(e.properties.symbol=E.planets.symbols[e.id][E.planets.symbolType]),e.properties.mag=t.ephemeris.mag||10,"lun"===e.id&&(e.properties.age=t.ephemeris.age,e.properties.phase=t.ephemeris.phase),e.geometry.type="Point",e.geometry.coordinates=t.ephemeris.pos,e}function q(){var t="";for(var e in J)k(J,e)&&(t+=" ."+e+L(J[e]));return"/**/"}function L(t){var e=" {";for(var a in t)k(t,a)&&(e+=a+":"+t[a]+"; ");return e+"} "}var D,F,O=(d3.select("body").append("div").attr("id","d3-celestial-svg").attr("style","display: none"),d3.select("#d3-celestial-svg").append("svg")),_=tt.metrics(),E=wt.set(),N=E.datapath,C=xt[E.projection],H=n(E.center),B=[-H[0],-H[1]],G=C.scale*_.width/1024,U=tt.projection(E.projection).rotate(H).translate([_.width/2,_.height/2]).scale([_.scale]),W=E.adaptable?Math.sqrt(_.scale/G):1,V=""!==E.culture&&"iau"!==E.culture?E.culture:"";O.selectAll("*").remove();var R=O.append("defs");C.clip&&U.clipAngle(90),D=d3.geo.circle().angle([179.95]).origin(B),O.attr("width",_.width).attr("height",_.height);for(var $=["background","milkyWay","milkyWayBg","gridLines","constBoundaries","planesequatorial","planesecliptic","planesgalactic","planessupergalactic","constLines","mapBorder","stars","dsos","planets","gridvaluesLon","gridvaluesLat","constNames","starDesignations","starNames","dsoNames","planetNames","horizon","daylight"],Y={},J={},K=0;K<$.length;K++)Y[$[K]]=O.append("g").attr({id:$[K],":inkscape:groupmode":"layer",":inkscape:label":$[K]}),J[$[K]]={};var Q=d3.geo.graticule().minorStep([15,10]),Z=d3.geo.path().projection(U),X=d3.queue(2);if(Y.background.append("path").datum(D).attr("class","background").attr("d",Z),J.background.fill=E.background.fill,E.lines.graticule.show){if("equatorial"===E.transform?(Y.gridLines.append("path").datum(Q).attr("class","gridLines").attr("d",Z),J.gridLines=i(E.lines.graticule)):(tt.graticule(Y.gridLines,Z,E.transform),J.gridLines=i(E.lines.graticule)),k(E.lines.graticule,"lon")&&E.lines.graticule.lon.pos.length>0){var et={type:"FeatureCollection",features:u("lon",E.lines.graticule.lon.pos)};Y.gridvaluesLon.selectAll(".gridvalues_lon").data(et.features).enter().append("text").attr("transform",function(t,e){return r(t.geometry.coordinates)}).text(function(t){return t.properties.value}).attr({dy:".5em",dx:"-.75em",class:"gridvaluesLon"}),J.gridvaluesLon=c(E.lines.graticule.lon)}if(k(E.lines.graticule,"lat")&&E.lines.graticule.lat.pos.length>0){var at={type:"FeatureCollection",features:u("lat",E.lines.graticule.lat.pos)};Y.gridvaluesLat.selectAll(".gridvalues_lat").data(at.features).enter().append("text").attr("transform",function(t,e){return r(t.geometry.coordinates)}).text(function(t){return t.properties.value}).attr({dy:"-.5em",dx:"-.75em",class:"gridvaluesLat"}),J.gridvaluesLat=c(E.lines.graticule.lat)}}for(var nt in E.lines)k(E.lines,nt)&&"graticule"!=nt&&!1!==E.lines[nt].show&&(F="planes"+nt,Y[F].append("path").datum(d3.geo.circle().angle([90]).origin(ht[nt])).attr("class",F).attr("d",Z),J[F]=i(E.lines[nt]));E.mw.show&&X.defer(function(t){d3.json(N+"mw.json",function(e,a){e&&t(e);var n=o(a,E.transform),r=d(n);Y.milkyWay.selectAll(".mway").data(n.features).enter().append("path").attr("class","milkyWay").attr("d",Z),J.milkyWay=i(E.mw.style),(!k(E.background,"opacity")||E.background.opacity>.95)&&(Y.milkyWayBg.selectAll(".mwaybg").data(r.features).enter().append("path").attr("class","milkyWayBg").attr("d",Z),J.milkyWayBg={fill:E.background.fill,"fill-opacity":E.background.opacity}),t(null)})}),E.constellations.bounds&&X.defer(function(t){d3.json(N+s("constellations","borders"),function(e,a){e&&t(e);var n=o(a,E.transform);if(tt.constellation)var r=new RegExp("\\b"+tt.constellation+"\\b");Y.constBoundaries.selectAll(".bounds").data(n.features).enter().append("path").attr("class",function(t){return tt.constellation&&-1!==t.ids.search(r)?"constBoundariesSel":"constBoundaries"}).attr("d",Z),J.constBoundaries=i(E.constellations.boundStyle),J.constBoundariesSel={fill:"none",stroke:E.constellations.boundStyle.stroke,"stroke-width":1.5*E.constellations.boundStyle.width,"stroke-opacity":1,"stroke-dasharray":"none"},t(null)})}),E.constellations.lines&&X.defer(function(t){d3.json(N+s("constellations","lines"),function(e,a){e&&t(e);var n=o(a,E.transform);Y.constLines.selectAll(".lines").data(n.features).enter().append("path").attr("class",function(t){return"constLines"+t.properties.rank}).attr("d",Z);var r=k(E.constellations.lineStyle,"dash")?E.constellations.lineStyle.dash.join(" "):"none";J.constLines1={fill:"none",stroke:E.constellations.lineStyle.stroke[0],"stroke-width":E.constellations.lineStyle.width[0],"stroke-opacity":E.constellations.lineStyle.opacity[0],"stroke-dasharray":r},J.constLines2={fill:"none",stroke:E.constellations.lineStyle.stroke[1],"stroke-width":E.constellations.lineStyle.width[1],"stroke-opacity":E.constellations.lineStyle.opacity[1],"stroke-dasharray":r},J.constLines3={fill:"none",stroke:E.constellations.lineStyle.stroke[2],"stroke-width":E.constellations.lineStyle.width[2],"stroke-opacity":E.constellations.lineStyle.opacity[2],"stroke-dasharray":r},t(null)})}),X.defer(function(t){var e=U.rotate();U.rotate([0,0,0]),Y.mapBorder.append("path").datum(Q.outline).attr("class","mapBorder").attr("d",Z),J.mapBorder={fill:"none",stroke:E.background.stroke,"stroke-width":E.background.width,"stroke-opacity":1,"stroke-dasharray":"none"},U.rotate(e),t(null)}),E.constellations.names&&X.defer(function(t){d3.json(N+s("constellations"),function(e,n){e&&t(e);var s=o(n,E.transform);Y.constNames.selectAll(".constnames").data(s.features.filter(function(t){return 1===a(t.geometry.coordinates)})).enter().append("text").attr("class",function(t){return"constNames"+t.properties.rank}).attr("transform",function(t,e){return r(t.geometry.coordinates)}).text(function(t){return S(t)}),J.constNames1={fill:E.constellations.nameStyle.fill[0],"fill-opacity":E.constellations.nameStyle.opacity[0],font:E.constellations.nameStyle.font[0],"text-anchor":f(E.constellations.nameStyle.align)},J.constNames2={fill:E.constellations.nameStyle.fill[1],"fill-opacity":E.constellations.nameStyle.opacity[1],font:E.constellations.nameStyle.font[1],"text-anchor":f(E.constellations.nameStyle.align)},J.constNames3={fill:E.constellations.nameStyle.fill[2],"fill-opacity":E.constellations.nameStyle.opacity[2],font:E.constellations.nameStyle.font[2],"text-anchor":f(E.constellations.nameStyle.align)},t(null)})}),E.stars.show&&X.defer(function(t){d3.json(N+E.stars.data,function(e,n){e&&t(e);var s=o(n,E.transform);Y.stars.selectAll(".stars").data(s.features.filter(function(t){return t.properties.mag<=E.stars.limit})).enter().append("path").attr("class",function(t){return"stars"+z(t.properties.bv)}).attr("d",Z.pointRadius(function(t){return t.properties?x(t.properties.mag):1})),J.stars=i(E.stars.style);var l=kt.domain();for(K=b(l[1],1);K<=b(l[0],1);K+=.1)J["stars"+Math.round(10*K).toString()]={fill:kt(K)};E.stars.designation&&(Y.starDesignations.selectAll(".stardesigs").data(s.features.filter(function(t){return t.properties.mag<=E.stars.designationLimit*W&&1===a(t.geometry.coordinates)})).enter().append("text").attr("transform",function(t){return r(t.geometry.coordinates)}).text(function(t){return M(t.id)}).attr({dy:".85em",dx:".35em",class:"starDesignations"}),J.starDesignations=c(E.stars.designationStyle)),E.stars.propername&&(Y.starNames.selectAll(".starnames").data(s.features.filter(function(t){return t.properties.mag<=E.stars.propernameLimit*W&&1===a(t.geometry.coordinates)})).enter().append("text").attr("transform",function(t){return r(t.geometry.coordinates)}).text(function(t){return w(t.id)}).attr({dy:"-.5em",dx:"-.35em",class:"starNames"}),J.starNames=c(E.stars.propernameStyle)),t(null)})}),E.dsos.show&&X.defer(function(t){d3.json(N+E.dsos.data,function(e,n){e&&t(e);var s=o(n,E.transform);Y.dsos.selectAll(".dsos").data(s.features.filter(function(t){return 1===a(t.geometry.coordinates)&&(999===t.properties.mag&&Math.sqrt(parseInt(t.properties.dim))>E.dsos.limit*W||999!==t.properties.mag&&t.properties.mag<=E.dsos.limit)})).enter().append("path").attr("class",function(t){return"dsos"+t.properties.type}).attr("transform",function(t){return r(t.geometry.coordinates)}).attr("d",function(t){return m(t.properties)}),J.dsos=i(E.dsos.style);for(nt in E.dsos.symbols)k(E.dsos.symbols,nt)&&(F="dsos"+nt,J[F]={"fill-opacity":E.dsos.style.opacity,"stroke-opacity":E.dsos.style.opacity},k(E.dsos.symbols[nt],"stroke")?(J[F].fill="none",J[F].stroke=E.dsos.colors?E.dsos.symbols[nt].stroke:E.dsos.style.stroke,J[F]["stroke-width"]=E.dsos.colors?E.dsos.symbols[nt].width:E.dsos.style.width):(J[F].stroke="none",J[F].fill=E.dsos.colors?E.dsos.symbols[nt].fill:E.dsos.style.fill));if(E.dsos.names){Y.dsoNames.selectAll(".dsonames").data(s.features.filter(function(t){return 1===a(t.geometry.coordinates)&&(999==t.properties.mag&&Math.sqrt(parseInt(t.properties.dim))>E.dsos.nameLimit||999!=t.properties.mag&&t.properties.mag<=E.dsos.nameLimit)})).enter().append("text").attr("class",function(t){return"dsoNames "+t.properties.type}).attr("transform",function(t){return r(t.geometry.coordinates)}).text(function(t){return v(t)}).attr({dy:"-.5em",dx:".35em"}),J.dsoNames={"fill-opacity":E.dsos.style.opacity,font:E.dsos.nameStyle.font,"text-anchor":f(E.dsos.nameStyle.align)};for(nt in E.dsos.symbols)k(E.dsos.symbols,nt)&&(J[nt]={fill:E.dsos.colors?E.dsos.symbols[nt].fill:E.dsos.style.fill})}t(null)})}),(E.location||E.formFields.location)&&E.planets.show&&tt.origin&&X.defer(function(t){var n=tt.date(),s=tt.origin(n).spherical(),o={type:"FeatureCollection",features:[]},i={type:"FeatureCollection",features:[]};if(tt.container.selectAll(".planet").each(function(t){var r=t.id(),l=t(n).equatorial(s);l.ephemeris.pos=e(l.ephemeris.pos,gt[E.transform]),1===a(l.ephemeris.pos)&&("lun"===r?i.features.push(I(l)):o.features.push(I(l)))}),"disk"===E.planets.symbolType?Y.planets.selectAll(".planets").data(o.features).enter().append("path").attr("transform",function(t){return r(t.geometry.coordinates)}).attr("d",function(t){var e=k(E.planets.symbols[t.id],"size")?(E.planets.symbols[t.id].size-1)*W:null;return j(t.properties,e)}).attr("class",function(t){return"planets "+t.id}):Y.planets.selectAll(".planets").data(o.features).enter().append("text").attr("transform",function(t){return r(t.geometry.coordinates)}).text(function(t){return t.properties.symbol}).attr("class",function(t){return"planets "+t.id}).attr({dy:".35em"}),i.features.length>0)if("letter"===E.planets.symbolType)Y.planets.selectAll(".moon").data(i.features).enter().append("text").attr("transform",function(t){return r(t.geometry.coordinates)}).text(function(t){return t.properties.symbol}).attr("class",function(t){return"planets "+t.id}).attr({dy:".35em"});else{var l=k(E.planets.symbols.lun,"size")?(E.planets.symbols.lun.size-1)*W:11*W;Y.planets.selectAll(".dmoon").data(i.features).enter().append("path").attr("class","darkluna").attr("transform",function(t){return r(t.geometry.coordinates)}).attr("d",function(t){return d3.svg.symbol().type("circle").size(l*l)()}),Y.planets.selectAll(".moon").data(i.features).enter().append("path").attr("class",function(t){return"planets "+t.id}).attr("transform",function(t){return r(t.geometry.coordinates)}).attr("d",function(t){return T(t.properties,l)})}J.planets=c(E.planets.symbolStyle),J.planets.font=P(E.planets.symbolStyle.font),J.darkluna={fill:"#557"};for(nt in E.planets.symbols)k(E.planets.symbols,nt)&&(J[nt]={fill:E.planets.symbols[nt].fill});E.planets.names&&(Y.planetNames.selectAll(".planetnames").data(o.features).enter().append("text").attr("transform",function(t){return r(t.geometry.coordinates)}).text(function(t){return t.properties.name}).attr({dy:".85em",dx:"-.35em"}).attr("class",function(t){return"planetNames "+t.id}),i.features.length>0&&Y.planetNames.selectAll(".moonname").data(i.features).enter().append("text").attr("transform",function(t){return r(t.geometry.coordinates)}).text(function(t){return t.properties.name}).attr({dy:".85em",dx:"-.35em"}).attr("class",function(t){return"planetNames "+t.id})),J.planetNames=c(E.planets.nameStyle),t(null)}),(E.location||E.formFields.location)&&E.daylight.show&&C.clip&&X.defer(function(t){var e=l("sol");if(e){var n=tt.zenith(),r=e.ephemeris.pos,s=d3.geo.distance(n,r),o=U(r),i=d3.geo.circle().angle([179.95]).origin(r);Y.daylight.append("path").datum(i).attr("class","daylight").attr("d",Z),J.daylight=p(s,o),1===a(r)&&s0&&tt.data.forEach(function(t){k(t,"save")&&X.defer(function(e){t.save(),e(null)})}),X.await(function(e){if(e)throw e;var a=d3.select("#d3-celestial-svg svg").attr("title","D3-Celestial").attr("version",1.1).attr("encoding","UTF-8").attr("xmlns","http://www.w3.org/2000/svg").attr("xmlns:xlink","http://www.w3.org/1999/xlink").attr("xmlns:sodipodi","http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd").attr("xmlns:inkscape","http://www.inkscape.org/namespaces/inkscape").attr("viewBox"," 0 0 "+_.width+" "+_.height);if(R.append("style").attr("type","text/css").text(q()),t){var n=new Blob([a.node().outerHTML],{type:"image/svg+xml;charset=utf-8"}),r=d3.select("body").append("a").node();r.download=t||"d3-celestial.svg",r.rel="noopener",r.href=URL.createObjectURL(n),r.click(),d3.select(r).remove()}else null!==Ct&&Ct(a.node().outerHTML);d3.select("#d3-celestial-svg").remove()})}var $,Y,J,K,Q,Z,X,tt={version:"0.7.35",container:null,data:[]},et=.035,at=1.4,nt=2e3,rt=2500,st=1500,ot=10,it=1,lt={},ct={};if(tt.display=function(a){function r(){O(Bt.clip),qt.append("path").datum(ae.outline).attr("class","outline"),qt.append("path").datum(Z).attr("class","horizon"),qt.append("path").datum(X).attr("class","daylight"),"equatorial"===$.transform?ae.minorStep([15,10]):ae.minorStep([10,10]);for(var t in $.lines)k($.lines,t)&&("graticule"===t?(qt.append("path").datum(ae).attr("class","graticule"),k($.lines.graticule,"lon")&&$.lines.graticule.lon.pos.length>0&&qt.selectAll(J+" .gridvalues_lon").data(u("lon",$.lines.graticule.lon.pos)).enter().append("path").attr("class","graticule_lon"),k($.lines.graticule,"lat")&&$.lines.graticule.lat.pos.length>0&&qt.selectAll(J+" .gridvalues_lat").data(u("lat",$.lines.graticule.lat.pos)).enter().append("path").attr("class","graticule_lat")):qt.append("path").datum(d3.geo.circle().angle([90]).origin(e(ht[t],gt[$.transform]))).attr("class",t));d3.json(Zt+"mw.json",function(t,e){if(t)return window.alert("Data file could not be loaded or doesn't exist. See readme.md"),console.warn(t);var a=o(e,$.transform),n=d(a);qt.selectAll(J+" .mway").data(a.features).enter().append("path").attr("class","mw"),qt.selectAll(J+" .mwaybg").data(n.features).enter().append("path").attr("class","mwbg"),y()}),d3.json(Zt+_("constellations"),function(t,e){if(t)return console.warn(t);var a=o(e,$.transform);qt.selectAll(J+" .constnames").data(a.features).enter().append("text").attr("class","constname"),tt.constellations=c(a),y()}),d3.json(Zt+_("constellations","borders"),function(t,e){if(t)return console.warn(t);var a=o(e,$.transform);qt.selectAll(J+" .bounds").data(a.features).enter().append("path").attr("class","boundaryline"),y()}),d3.json(Zt+_("constellations","lines"),function(t,e){if(t)return console.warn(t);var a=o(e,$.transform);qt.selectAll(J+" .lines").data(a.features).enter().append("path").attr("class","constline"),U(),y()}),d3.json(Zt+$.stars.data,function(t,e){if(t)return console.warn(t);var a=o(e,$.transform);qt.selectAll(J+" .stars").data(a.features).enter().append("path").attr("class","star"),y()}),d3.json(Zt+_("starnames"),function(t,e){if(t)return console.warn(t);Object.assign(lt,e),y()}),d3.json(Zt+$.dsos.data,function(t,e){if(t)return console.warn(t);var a=o(e,$.transform);qt.selectAll(J+" .dsos").data(a.features).enter().append("path").attr("class","dso"),y()}),d3.json(Zt+_("dsonames"),function(t,e){if(t)return console.warn(t);Object.assign(ct,e),y()}),d3.json(Zt+_("planets"),function(t,e){if(t)return console.warn(t);var a=i(e,$.transform);qt.selectAll(J+" .planets").data(a).enter().append("path").attr("class","planet"),y()}),tt.data.length>0&&tt.data.forEach(function(t){k(t,"file")?d3.json(t.file,t.callback):setTimeout(t.callback,0)},this),$.lang&&""!=$.lang&&p(tt.setLanguage($.lang))}function s(t){if(t&&1!==t){var e=Y.scale(),a=e*t,n=K.scaleExtent(),r=st*Math.sqrt(Math.abs(1-t));if(an[1]&&(a=n[1]),!0===$.disableAnimations)return Y.scale(a),K.scale(a),y(),0;var s=d3.interpolateNumber(e,a);return d3.select({}).transition().duration(r).tween("scale",function(){return function(t){var e=s(t);Y.scale(e),y()}}).transition().duration(0).tween("scale",function(){K.scale(a),y()}),r}}function p(t){$=wt.set(t),y()}function h(t){var e,a,r,s=$.center,o=Y.rotate(),i=Y.scale(),l=nt,c=!1,d=$.orientationfixed;b(o[1],1)===-b(t.center[1],1)&&(c=!0),$=$.set(t);var p=b(d3.geo.distance(s,$.center),2),u=d3.geo.distance([s[2],0],[$.center[2],0]);return pVt*at?d3.interpolateNumber(i,Vt):function(){return i},r=0===u?function(){return o[2]}:q(s[2],$.center[2]),p>3.14&&($.center[0]-=.01),$.orientationfixed=!1,e=0===p?function(){return $.center}:d3.geo.interpolate(s,$.center),l=0!==p?l*p:l*u,d3.select({}).transition().duration(l).tween("center",function(){return function(t){var s=n(e(t));s[2]=r(t);var i=a(t<.5?t:1-t);c&&(s[1]=o[1]),Y.scale(i),Y.rotate(s),y()}}).transition().duration(0).tween("center",function(){$.orientationfixed=d,Qt=n($.center),Y.rotate(Qt),y()}),l)}function f(t){Nt=St(),($.width!==Nt||t)&&(Ut=Nt/Gt,Ct=x($.background.width)?Nt+$.background.width:Nt,Wt=Math.round(Ct/Gt),Vt=Bt.scale*Nt/1024,Xt.style("width",M(Ct)).style("height",M(Wt)).attr("width",Ct*Ht).attr("height",Wt*Ht),K.scaleExtent([Vt,Vt*ot]).scale(Vt*it),Y.translate([Ct/2,Wt/2]).scale(Vt*it),Ot&&(Ot.style.height=M(Ut)),Vt*=it,y())}function m(e){var a=jt(e.projection,e.projectionRatio);if(a){var n=Y.rotate(),r=Y.center(),o=Y.scale(),i=K.scaleExtent(),l=tt.projection($.projection).center(r).translate([Ct/2,Wt/2]).scale([i[0]]),c=rt,d=0,p=d3.interpolateNumber(Gt,a.ratio);Bt.clip==a.clip&&!0!==$.disableAnimations||(c=0),O(a.clip);var u=tt.projection(e.projection).center(r).translate([Ct/2,Ct/a.ratio/2]).scale([a.scale*Nt/1024]),h=$.adaptable;return o>i[0]?(d=s(.1),setTimeout(m,d,e),d+c):(($.location||$.formFields.location)&&(F("horizon-show",a.clip),F("daylight-show",!a.clip)),Y=t(l,u),$.adaptable=!1,d3.select({}).transition().duration(c).tween("projection",function(){return function(t){Y.alpha(t).rotate(n),Q.projection(Y),O(a.clip),Gt=p(t),Ut=Nt/Gt,Xt.style("width",M(Ct)).style("height",M(Wt)).attr("width",Ct*Ht).attr("height",Wt*Ht),Ot&&(Ot.style.height=M(Wt)),y()}}).transition().duration(0).tween("projection",function(){Bt=a,Gt=Bt.ratio,Ut=Nt/Bt.ratio,Wt=x($.background.width)?Ut+$.background.width:Ut,Vt=Bt.scale*Nt/1024,Xt.style("width",M(Ct)).style("height",M(Wt)).attr("width",Ct*Ht).attr("height",Wt*Ht),Ot&&(Ot.style.height=M(Wt)),$.projection=e.projection,Y=tt.projection(e.projection).rotate(n).translate([Ct/2,Wt/2]).scale(Vt*it),Q.projection(Y),O(Bt.clip),K.projection(Y).scaleExtent([Vt,Vt*ot]).scale(Vt*it),$.adaptable=h,Vt*=it,y()}),c)}}function y(){var t=Y.rotate();ee.setTransform(Ht,0,0,Ht,0,0),$.adaptable&&(Kt=Math.sqrt(Y.scale()/Vt)),Kt||(Kt=1),Rt=$.stars.size,Yt=$.stars.exponent,$t=$.dsos.size||Rt,Jt=$.dsos.exponent,$.orientationfixed&&$.center.length>2&&(t[2]=$.center[2],Y.rotate(t)),$.center=[-t[0],-t[1],t[2]],C($.center,$.transform),bt(),w(),$.mw.show&&(qt.selectAll(J+" .mw").each(function(t){T($.mw.style),Q(t),ee.fill()}),"supergalactic"!==$.transform&&$.background.opacity>.95&&qt.selectAll(J+" .mwbg").each(function(t){T($.background),Q(t),ee.fill()}));for(var a in $.lines)k($.lines,a)&&!0===$.lines[a].show&&(T($.lines[a]),qt.selectAll(J+" ."+a).attr("d",Q),ee.stroke());if(k($.lines.graticule,"lon")&&(j($.lines.graticule.lon),qt.selectAll(J+" .graticule_lon").each(function(t,e){if(S(t.geometry.coordinates)){var a=Y(t.geometry.coordinates);vt(a,t.properties.orientation),ee.fillText(t.properties.value,a[0],a[1])}})),k($.lines.graticule,"lat")&&(j($.lines.graticule.lat),qt.selectAll(J+" .graticule_lat").each(function(t,e){if(S(t.geometry.coordinates)){var a=Y(t.geometry.coordinates);vt(a,t.properties.orientation),ee.fillText(t.properties.value,a[0],a[1])}})),$.constellations.bounds&&(qt.selectAll(J+" .boundaryline").each(function(t){if(T($.constellations.boundStyle),tt.constellation){var e=new RegExp("\\b"+tt.constellation+"\\b");-1!==t.ids.search(e)&&(ee.lineWidth*=1.5,ee.globalAlpha=1,ee.setLineDash([]))}Q(t),ee.stroke()}),ee.setLineDash([])),$.constellations.lines&&qt.selectAll(J+" .constline").each(function(t){P(t.properties.rank,$.constellations.lineStyle),Q(t),ee.stroke()}),w(!0),$.constellations.names&&qt.selectAll(J+" .constname").each(function(t){if(S(t.geometry.coordinates)){P(t.properties.rank,$.constellations.nameStyle);var e=Y(t.geometry.coordinates);ee.fillText(ut(t),e[0],e[1])}}),$.stars.show&&(T($.stars.style),qt.selectAll(J+" .star").each(function(t){if(S(t.geometry.coordinates)&&t.properties.mag<=$.stars.limit){var e=Y(t.geometry.coordinates),a=dt(t);ee.fillStyle=pt(t),ee.beginPath(),ee.arc(e[0],e[1],a,0,2*Math.PI),ee.closePath(),ee.fill(),$.stars.designation&&t.properties.mag<=$.stars.designationLimit*Kt&&(j($.stars.designationStyle),ee.fillText(W(t.id),e[0]+a,e[1])),$.stars.propername&&t.properties.mag<=$.stars.propernameLimit*Kt&&(j($.stars.propernameStyle),ee.fillText(R(t.id),e[0]-a,e[1]))}})),$.dsos.show&&qt.selectAll(J+" .dso").each(function(t){if(S(t.geometry.coordinates)&&E(t.properties,$.dsos.limit)){var e=Y(t.geometry.coordinates),a=t.properties.type;T(!0===$.dsos.colors?$.dsos.symbols[a]:$.dsos.style);var n=N(t,e);k($.dsos.symbols[a],"stroke")?ee.stroke():ee.fill(),$.dsos.names&&E(t.properties,$.dsos.nameLimit*Kt)&&(j($.dsos.nameStyle),!0===$.dsos.colors&&(ee.fillStyle=$.dsos.symbols[a].fill),ee.fillText(G(t),e[0]+n,e[1]-n))}}),($.location||$.formFields.location)&&$.planets.show&&tt.origin){var n=tt.date(),r=tt.origin(n).spherical();qt.selectAll(J+" .planet").each(function(t){var a=t.id(),s=12*Kt,o=t(n).equatorial(r),i=e(o.ephemeris.pos,gt[$.transform]);if(S(i)){var l=Y(i),c=$.planets.symbols[a];if("letter"===$.planets.symbolType?(j($.planets.symbolStyle),ee.fillStyle=c.fill,ee.fillText(c.letter,l[0],l[1])):"lun"===a?(k(c,"size")&&x(c.size)&&(s=c.size*Kt),ee.fillStyle=c.fill,Tt.symbol().type("crescent").size(s*s).age(o.ephemeris.age).position(l)(ee)):"disk"===$.planets.symbolType?(s=k(c,"size")&&x(c.size)?c.size*Kt:ft(o.ephemeris),ee.fillStyle=c.fill,Tt.symbol().type("circle").size(s*s).position(l)(ee),ee.fill()):"symbol"===$.planets.symbolType&&(j($.planets.symbolStyle),ee.font=yt($.planets.symbolStyle.font),ee.fillStyle=c.fill,ee.fillText(c[$.planets.symbolType],l[0],l[1])),$.planets.names){var d=o[$.planets.namesType];j($.planets.nameStyle),ee.fillStyle=c.fill,ee.fillText(d,l[0]-s/2,l[1]+s/2)}}})}if(tt.data.length>0&&tt.data.forEach(function(t){t.redraw()}),($.location||$.formFields.location)&&$.daylight.show&&Bt.clip){var s=l("sol");if(s){var o=tt.zenith(),i=s.ephemeris.pos,c=d3.geo.distance(o,i),d=Y(i);X.origin(i),A(c,d),qt.selectAll(J+" .daylight").datum(X).attr("d",Q),ee.fill(),ee.fillStyle="#fff",S(i)&&(ee.beginPath(),ee.arc(d[0],d[1],6,0,2*Math.PI),ee.closePath(),ee.fill())}}($.location||$.formFields.location)&&$.horizon.show&&!Bt.clip&&(Z.origin(tt.nadir()),T($.horizon),qt.selectAll(J+" .horizon").datum(Z).attr("d",Q),ee.fill(),$.horizon.stroke&&ee.stroke()),$.controls&&D(Y.scale()),Mt&&tt.runCallback()}function w(t){var e=Y.rotate();jt($.projection,a.projectionRatio);Y.rotate([0,0]),T($.background),qt.selectAll(J+" .outline").attr("d",Q),!0===t?(ee.globalAlpha=1,ee.stroke()):ee.fill(),Y.rotate(e)}function S(t){return Bt.clip&&d3.geo.distance($.center,t)>mt?0:1}function T(t){ee.fillStyle=t.fill||null,ee.strokeStyle=t.stroke||null,ee.lineWidth=t.width||null,ee.globalAlpha=null!==t.opacity?t.opacity:1,ee.font=t.font||null,k(t,"dash")?ee.setLineDash(t.dash):ee.setLineDash([]),ee.beginPath()}function j(t){ee.fillStyle=t.fill,ee.textAlign=t.align||"left",ee.textBaseline=t.baseline||"bottom",ee.globalAlpha=null!==t.opacity?t.opacity:1,ee.font=t.font}function P(t,e){t=t||1,ee.fillStyle=z(e.fill)?e.fill[t-1]:null,ee.strokeStyle=z(e.stroke)?e.stroke[t-1]:null,ee.lineWidth=z(e.width)?e.width[t-1]:null,ee.globalAlpha=z(e.opacity)?e.opacity[t-1]:1,ee.font=z(e.font)?e.font[t-1]:null,k(e,"dash")?ee.setLineDash(e.dash):ee.setLineDash([]),ee.textAlign=e.align||"left",ee.textBaseline=e.baseline||"bottom",ee.beginPath()}function A(t,e){var a,n,r,s;if(t>1.885)return ee.fillStyle="transparent",void(ee.globalAlpha=0);t<=1.36?(n="#daf1fa",r="#93d7f0",s="#57c0e8",a=-(1.36-t)/10):(a=(t-1.36)/(1.885-1.36),n=d3.interpolateLab("#daf1fa","#e8c866")(a),r=d3.interpolateLab("#93c7d0","#ff854a")(a),s=d3.interpolateLab("#57b0c8","#6caae2")(a));var o=ee.createRadialGradient(e[0],e[1],0,e[0],e[1],300);o.addColorStop(0,n),o.addColorStop(.2+.4*a,r),o.addColorStop(1,s),ee.fillStyle=o,ee.globalAlpha=.9*(1-I(a,1.4))}function I(t,e){return(Math.pow(Math.E,t*e)-1)/(Math.pow(Math.E,e)-1)} +function D(t){var e=v("celestial-zoomin"),a=v("celestial-zoomout"),n=Bt.scale*Nt/1024;e&&a&&(e.disabled=t>=n*ot*.99,a.disabled=t<=n)}function O(t){t?Y.clipAngle(90):Y.clipAngle(null)}function _(t,e,a){var n=k(zt[t],te)?"."+te:"";return a=a?"."+a:".json",e=e?"."+e:"",t+e+n+a}function E(t,e){return 999===t.mag&&Math.sqrt(parseInt(t.dim))>e||999!==t.mag&&t.mag<=e}function N(t,e){var a=t.properties,n=B(a)||9,r=H(a.type);return Tt.symbol().type(r).size(n).position(e)(ee),Math.sqrt(n)/2}function H(t){return t&&k($.dsos.symbols,t)?$.dsos.symbols[t].shape:"circle"}function B(t){return t.mag&&999!==t.mag?Math.pow(2*$t*Kt-t.mag,Jt):Math.pow(parseInt(t.dim)*$t*Kt/7,.5)}function G(t){var e=$.dsos.namesType,a=t.id;return"desig"!==e&&k(ct,a)&&k(ct[a],e)?ct[a][e]:t.properties.desig}function W(t){return k(lt,t)?lt[t][$.stars.designationType]:""}function R(t){var e=$.stars.propernameType;return k(lt,t)?k(lt[t],e)?lt[t][e]:lt[t].name:""}function dt(t){var e=t.properties.mag;if(null===e)return.1;var a=Rt*Kt*Math.exp(Yt*(e+2));return Math.max(a,.1)}function pt(t){var e=t.properties.bv;return!$.stars.colors||isNaN(e)?$.stars.style.fill:kt(e)}function ut(t){return t.properties[$.constellations.namesType]}function ft(t){var e=t.mag;if(null===e)return 2;var a=4*Kt*Math.exp(-.05*(e+2));return Math.max(a,2)}function yt(t){var e=t.replace(/(^\D*)(\d+)(\D.+$)/i,"$2");return e=Math.round(Kt*e),t.replace(/(^\D*)(\d+)(\D.+$)/i,"$1"+e+"$3")}function vt(t,e){for(var a=e.split(""),n="center",r="middle",s=a.length-1;s>=0;s--)switch(a[s]){case"N":r="bottom";break;case"S":r="top";break;case"E":n="left",t[0]+=2;break;case"W":n="right",t[0]-=2}return ee.textAlign=n,ee.textBaseline=r,t}function bt(){ee.clearRect(0,0,Ct+Et[0],Wt+Et[1])}function St(){return x($.width)&&$.width>0?$.width:Ot?Ot.getBoundingClientRect().width-2*Et[0]:window.getBoundingClientRect().width-2*Et[0]}function jt(t,e){if(k(xt,t)){var a=xt[t];return k(a,"ratio")||(a.ratio=2),a.ratio=e||a.ratio,a}}function Pt(){if(Lt&&!(Lt.length<1)){var t,e=Lt[Dt];switch(e.param){case"projection":t=m({projection:e.value});break;case"center":t=h({center:e.value});break;case"zoom":t=s(e.value)}e.callback&&setTimeout(e.callback,t),Dt++,!0===Ft&&Dt===Lt.length&&(Dt=0),t=0===e.duration||e.duration0&&(l=2*Math.PI-l),[i/yt,l/yt,0]};vt.inverse=function(t,e,a){var n=e[0]*yt,s=e[1]*yt,o=a[0]*yt,i=Math.asin(Math.sin(n)*Math.sin(o)+Math.cos(n)*Math.cos(o)*Math.cos(s)),l=((Math.sin(n)-Math.sin(i)*Math.sin(o))/(Math.cos(i)*Math.cos(o))).toFixed(6);return l=Math.acos(l),l/=yt,[r(t,a[1])-l,i/yt,0]},tt.horizontal=vt,tt.ha=function(t,e,a){var n=r(t,e)-a;return n<180&&(n+=360),n};var Mt=!1;tt.add=function(t){var e={};return k(t,"type")?"dso"!==t.type&&"json"!==t.type||k(t,"file")&&k(t,"callback")?"line"!==t.type&&"raw"!==t.type||k(t,"callback")?(k(t,"file")&&(e.file=t.file),e.type=t.type,k(t,"callback")&&(e.callback=t.callback),k(t,"redraw")&&(e.redraw=t.redraw),k(t,"save")&&(e.save=t.save),void tt.data.push(e)):console.log("Can't add data"):console.log("Can't add data file"):console.log("Missing type")},tt.remove=function(t){if(null!==t&&tMath.PI,d=Math.abs(i)>.5?c:!c,p=t.fillStyle,u=i<.157?"#669":"#557";return t.save(),t.fillStyle=u,t.beginPath(),t.moveTo(e[0],e[1]),t.arc(e[0],e[1],s,0,2*Math.PI),t.closePath(),t.fill(),t.fillStyle=p,t.beginPath(),t.moveTo(e[0],e[1]),t.arc(e[0],e[1],s,-Math.PI/2,Math.PI/2,c),t.scale(l,1),t.arc(e[0]/l,e[1],s,Math.PI/2,-Math.PI/2,d),t.closePath(),t.fill(),t.restore(),s}});return t.type=function(e){return arguments.length?(a=d3.functor(e),t):a},t.size=function(e){return arguments.length?(n=d3.functor(e),t):n},t.age=function(e){return arguments.length?(r=d3.functor(e),t):r},t.text=function(e){return arguments.length?(s=d3.functor(e),t):s},t.position=function(a){if(arguments.length)return e=a,t},t},tt.Canvas=Tt;var jt={sinh:function(t){return(Math.pow(Math.E,t)-Math.pow(Math.E,-t))/2},cosh:function(t){return(Math.pow(Math.E,t)+Math.pow(Math.E,-t))/2},tanh:function(t){return 2/(1+Math.exp(-2*t))-1},asinh:function(t){return Math.log(t+Math.sqrt(t*t+1))},acosh:function(t){return Math.log(t+Math.sqrt(t*t-1))},normalize0:function(t){return(t+3*Math.PI)%(2*Math.PI)-Math.PI},normalize:function(t){return(t+2*Math.PI)%(2*Math.PI)},cartesian:function(t){var e=t[0],a=mt-t[1],n=t[2];return{x:n*Math.sin(a)*Math.cos(e),y:n*Math.sin(a)*Math.sin(e),z:n*Math.cos(a)}},spherical:function(t){var e=Math.sqrt(t.x*t.x+t.y*t.y+t.z*t.z),a=Math.atan(t.y/t.x),n=Math.acos(t.z/e);return[a/yt,n/yt,e]},distance:function(t,e){return Math.acos(Math.sin(t[1])*Math.sin(e[1])+Math.cos(t[1])*Math.cos(e[1])*Math.cos(t[0]-e[0]))}},Pt=(Math.PI,Math.PI,Math.PI,{"stars-show":["stars-limit","stars-colors","stars-style-fill","stars-designation","stars-propername","stars-size","stars-exponent"],"stars-designation":["stars-designationType","stars-designationLimit"],"stars-propername":["stars-propernameLimit","stars-propernameType"],"dsos-show":["dsos-limit","dsos-colors","dsos-style-fill","dsos-names","dsos-size","dsos-exponent"],"dsos-names":["dsos-namesType","dsos-nameLimit"],"mw-show":["mw-style-opacity","mw-style-fill"],"constellations-names":["constellations-namesType"],"planets-show":["planets-symbolType","planets-names"],"planets-names":["planets-namesType"]}),At=null,It={sol:.0002959122082855911,mer:0x95955473dbc3,ven:0x89d9374048629,ter:0xa923c08a47948,lun:36599199229256,mar:319711652803400,cer:467549107200,ves:129071530155,jup:0xd20883d548bcd80,sat:0x3ee3798098fbac0,ura:0x99ad2c4e2f7f70,nep:0xb54f848fd74430,plu:7327611364884,eri:827117568e4},qt={sol:"☉",mer:"☿",ven:"♀",ter:"⊕",lun:"●",mar:"♂",cer:"⚳",ves:"⚶",jup:"♃",sat:"♄",ura:"♅",nep:"♆",plu:"♇",eri:"⚪"},Lt=23.43928*yt,Dt=Math.sin(Lt),Ft=Math.cos(Lt),Ot=["a","e","i","w","M","L","W","N","n","ep","ref","lecl","becl","Tilt"],_t=function(){function t(e){return b(e),"sol"===h?(M.ephemeris.x=0,M.ephemeris.y=0,M.ephemeris.z=0,M.ephemeris.mag=-6,t):(w(),t)}function e(t,e){for(var a=e>1?t*t:-t*t,n=e*a*t/6,r=(1-e)*t-n,s=4;Math.abs(n)>1e-15;)n*=a/(s*(s+1)),r-=n,s+=2;return r}function a(){var t,a,n,r,s=M.ephemeris,o=s.e,i=s.M,l=1e-8,c=0,d=1.9,p=!1,u=0;if(!i)return 0;if(o<1&&((i<-Math.PI||i>Math.PI)&&(r=jt.normalize0(i),c=i-r,i=r),o<.9)){t=Math.atan2(Math.sin(i),Math.cos(i)-o);do{a=(t-o*Math.sin(t)-i)/(1-o*Math.cos(t)),t-=a}while(Math.abs(a)>l);return t}if(i<0&&(i=-i,p=!0),t=i,l*=Math.abs(1-o),l<1e-15&&(l=1e-15),(o>.8&&i1)&&(n=i/Math.abs(1-o),n*n>6*Math.abs(1-o)&&(n=i1&&i>4&&(t=Math.log(i)),o<1)for(;Math.abs(d)>l;)a=u++>8?e(t,o)-i:t-o*Math.sin(t)-i,d=-a/(1-o*Math.cos(t)),t+=d;else for(;Math.abs(d)>l;)a=u++>7?-e(t,o)-i:o*jt.sinh(t)-t-i,d=-a/(o*jt.cosh(t)-1),t+=d;return p?c-t:c+t}function n(){var t,e,n,r,s,o=M.ephemeris;1===o.e?(s=o.jd0-o.T,r=o.w0*s*.5,e=Math.pow(r+Math.sqrt(r*r+1),1/3),o.v=2*Math.atan(e-1/e)):(o.E=a(),o.e>1?(t=o.e-jt.cosh(o.E),e=jt.sinh(o.E)):(t=Math.cos(o.E)-o.e,e=Math.sin(o.E)),e*=Math.sqrt(Math.abs(1-o.e*o.e)),o.v=Math.atan2(e,t)),n=o.q*(1+o.e),o.r=n/(1+o.e*Math.cos(o.v))}function r(){var t=M.ephemeris;t.hasOwnProperty("w")||(t.w=t.W-t.N),t.hasOwnProperty("M")||(t.M=t.L-t.W),t.e<1&&(t.M=jt.normalize0(t.M)),t.P=ft*Math.sqrt(Math.pow(t.a,3)/y)/365.25,t.T=t.jd0-t.M/mt/t.P,1!==t.e?(t.q=t.a*(1-t.e),t.t0=t.a*Math.sqrt(Math.abs(t.a)/y)):(t.w0=3/Math.sqrt(2)/(t.q*Math.sqrt(t.q/y)),t.a=0,t.t0=0),t.am=Math.sqrt(y*t.q*(1+t.e))}function s(){var t=M.ephemeris;if(!t.ref||"ecl"===t.ref)return t.tx=t.x,t.ty=t.y,void(t.tz=t.z);var e=(t.lecl,Math.PI,t.becl,jt.cartesian([t.tl,t.tb,t.r]));t.tx=e.x,t.ty=e.y,t.tz=e.z}function o(t){var e=M.ephemeris,a=t.ephemeris;Lt=(23.439292-.0130042*e.cy-1.667e-7*e.cy*e.cy+5.028e-7*e.cy*e.cy*e.cy)*yt,Dt=Math.sin(Lt),Ft=Math.cos(Lt);var n="lun"===h?{x:0,y:0,z:0}:{x:a.x,y:a.y,z:a.z};e.xeq=e.x-n.x,e.yeq=(e.y-n.y)*Ft-(e.z-n.z)*Dt,e.zeq=(e.y-n.y)*Dt+(e.z-n.z)*Ft,e.ra=jt.normalize(Math.atan2(e.yeq,e.xeq)),e.dec=Math.atan2(e.zeq,Math.sqrt(e.xeq*e.xeq+e.yeq*e.yeq)),"lun"===h&&(e=u(e,a)),e.pos=[e.ra/yt,e.dec/yt],e.rt=Math.sqrt(e.xeq*e.xeq+e.yeq*e.yeq+e.zeq*e.zeq),"sol"!==h&&(e.mag=i())}function i(){var t=M.ephemeris,e=t.r,a=t.rt,n=Math.acos((e*e+a*a-1)/(2*e*a)),r=.666*((1-n/Math.PI)*Math.cos(n)+1/Math.PI*Math.sin(n));return 1*M.H+5*Math.log(e*a)*Math.LOG10E-2.5*Math.log(r)*Math.LOG10E}function l(){var t=M.ephemeris,e=t.v+t.w;return t.x=t.r*(Math.cos(t.N)*Math.cos(e)-Math.sin(t.N)*Math.sin(e)*Math.cos(t.i)),t.y=t.r*(Math.sin(t.N)*Math.cos(e)+Math.cos(t.N)*Math.sin(e)*Math.cos(t.i)),t.z=t.r*(Math.sin(e)*Math.sin(t.i)),M}function c(){var t=M.ephemeris,e=Math.atan2(t.y,t.x),a=Math.atan2(t.z,Math.sqrt(t.x*t.x+t.y*t.y));return t.l=jt.normalize(e),t.b=a,M}function d(t){var e=t.getUTCFullYear(),a=t.getUTCMonth()+1,n=t.getUTCDate(),r=(t.getUTCHours()-12+t.getUTCMinutes()/60+t.getUTCSeconds()/3600)/24;if(e<-4799)return-1;var s=Math.floor((14-a)/12),o=e+4800-s,i=a+12*s-3;return n+Math.floor((153*i+2)/5)+365*o+Math.floor(o/4)-Math.floor(o/100)+Math.floor(o/400)-32045+r}function p(t){if(void 0!==Et)return Et.elements(t)}function u(t,e){if(c(),void 0!==Et)return Et.corr(t,e)}var h,f,m,y=It.sol,g="sol",v={},M={},b=function(t){var e,a=M.ephemeris={};t&&(e=t instanceof Date?new Date(t.valueOf()):I(t)),e||(e=new Date),a.jd=d(e),e=I(v.ep),e||(e=I("2000-01-01")),a.jd0=d(e),a.d=a.jd-a.jd0,a.cy=a.d/36525},w=function(){var t,e=M.ephemeris;if("lun"===h){if(!(e=p(e)))return}else{for(var a=0;a48?t/4:12,n=a/2,r=n-3;return"M "+-n+" 0 h "+r+" M 0 "+-n+" v "+r+" M "+n+" 0 h "+-r+" M 0 "+n+" v "+-r},"cross-circle":function(t,e){var a=Math.sqrt(t),n=a/2;return"M"+-n+","+-n+" m"+-n+",0 a"+n+","+n+" 0 1,0"+2*n+",0 a"+n+","+n+" 0 1,0"+-2*n+",0 M"+-n+" 0 h "+a+" M 0 "+-n+" v "+a},"stroke-circle":function(t,e){var a=Math.sqrt(t),n=a/2;return"M"+-n+","+-n+" m"+-n+",0 a"+n+","+n+" 0 1,0"+2*n+",0 a"+n+","+n+" 0 1,0"+-2*n+",0 M"+(-a-2)+","+(-a-2)+" l"+(a+4)+","+(a+4)},crescent:function(t,e){var a=Math.sqrt(t),n=a/2,r=.5*(1-Math.cos(e)),s=1.6*Math.abs(r-.5)+.01,o=e>Math.PI?0:1;return"M -1,-1 m 1,"+(1-n)+" a"+n+","+n+" 0 1 "+o+" 0,"+2*n+" a"+n*s+","+n+" 0 1 "+(Math.abs(r)>.5?o:Math.abs(o-1))+" 0,"+-2*n+"z"}});d3.svg.customSymbol=function(){function t(t,r){return Nt.get(e.call(this,t,r))(a.call(this,t,r),n.call(this,t,r))}var e,a=64,n=d3.functor(1);return t.type=function(a){return arguments.length?(e=d3.functor(a),t):e},t.size=function(e){return arguments.length?(a=d3.functor(e),t):a},t.ratio=function(e){return arguments.length?(n=d3.functor(e),t):n},t};var Ct=null;tt.exportSVG=function(t){t&&(Ct=t,R())};var Ht=function(t,e){function a(){var t=W("mon").value,e=W("yr").value,a=new Date(e,t,1),n=d3.select(J+" ~ #celestial-form").select("#cal"),r=new Date;e=parseInt(e),t=parseInt(t),a.setDate(a.getDate()-a.getDay());for(var s=n.node();s.firstChild;)s.removeChild(s.firstChild);for(var o=0;o<7;o++)n.append("div").classed({date:!0,weekday:!0}).html(f[o]);for(o=0;o<42;o++){var i=a.getMonth(),l=a.getDay(),c=m(a);n.append("div").classed({date:!0,grey:i!==t,weekend:i===t&&(0===l||6===l),today:0===A(a,r),selected:0===A(a,p)}).attr("id",c).on("click",d).html(a.getDate().toString()),a.setDate(a.getDate()+1)}}function n(){var t=d3.select(J+" ~ #celestial-form").select("select#yr"),e=p.getFullYear(),a=0,n=s(p);t.selectAll("*").remove(),t.selectAll("option").data(n).enter().append("option").text(function(t,n){return t===e&&(a=n),t.toString()}),t.property("selectedIndex",a)}function r(t){g.append("div").attr("id",t).on("click",function(){var e=W("mon"),n=W("yr");"left"===t?0===e.selectedIndex?(e.selectedIndex=11,n.selectedIndex--):e.selectedIndex--:11===e.selectedIndex?(e.selectedIndex=0,n.selectedIndex++):e.selectedIndex++,a()})}function s(t){for(var e=o(t.getFullYear()),a=[],n=e[0];n<=e[1];n++)a.push(n);return a}function o(t){return!y||y.length<1?[t-10,t+10]:1===y.length&&x(y[0])?y[0]>=100?[y[0]-10,y[0]+10]:[t-y[0],t+y[0]]:2===y.length&&x(y[0])&&x(y[1])?y[1]>=100?[y[0],y[1]]:[y[0]-y[1],y[0]+y[1]]:[t-10,t+10]}function i(t,e){for(var a=W(t),n=0;n=0;)if((a=t._tasks[n])&&(t._tasks[n]=null,a.abort))try{a.abort()}catch(e){}t._active=NaN,o(t)}function o(t){if(!t._active&&t._call){var e=t._data;t._data=void 0,t._call(t._error,e)}}function i(t){if(null==t)t=1/0;else if(!((t=+t)>=1))throw new Error("invalid concurrency");return new e(t)}var l=[].slice,c={};e.prototype=i.prototype={constructor:e,defer:function(t){if("function"!=typeof t)throw new Error("invalid callback");if(this._call)throw new Error("defer after await");if(null!=this._error)return this;var e=l.call(arguments,1);return e.push(t),++this._waiting,this._tasks.push(e),a(this),this},abort:function(){return null==this._error&&s(this,new Error("abort")),this},await:function(t){if("function"!=typeof t)throw new Error("invalid callback");if(this._call)throw new Error("multiple await");return this._call=function(e,a){t.apply(null,[e].concat(a))},o(this),this},awaitAll:function(t){if("function"!=typeof t)throw new Error("invalid callback");if(this._call)throw new Error("multiple await");return this._call=t,o(this),this}},t.queue=i,d3.queue=i,Object.defineProperty(t,"__esModule",{value:!0})}),this.Celestial=tt}(); \ No newline at end of file diff --git a/frontend/vendor/celestial/d3.geo.projection.min.js b/frontend/vendor/celestial/d3.geo.projection.min.js new file mode 100644 index 0000000..32babee --- /dev/null +++ b/frontend/vendor/celestial/d3.geo.projection.min.js @@ -0,0 +1,2 @@ +!function(){function t(t,a){return{type:"Feature",id:t.id,properties:t.properties,geometry:n(t.geometry,a)}}function n(t,a){if(!t)return null;if("GeometryCollection"===t.type)return{type:"GeometryCollection",geometries:object.geometries.map(function(t){return n(t,a)})};if(!ga.hasOwnProperty(t.type))return null;var r=ga[t.type];return d3.geo.stream(t,a(r)),r.result()}function a(){}function r(t){if((n=t.length)<4)return!1;for(var n,a=0,r=t[n-1][1]*t[0][0]-t[n-1][0]*t[0][1];++a=r}function e(t,n){for(var a=n[0],r=n[1],e=!1,o=0,i=t.length,h=i-1;i>o;h=o++){var u=t[o],M=u[0],s=u[1],c=t[h],f=c[0],v=c[1];s>r^v>r&&(f-M)*(r-s)/(v-s)+M>a&&(e=!e)}return e}function o(t){return t?t/Math.sin(t):1}function i(t){return t>0?1:0>t?-1:0}function h(t){return t>1?wa:-1>t?-wa:Math.asin(t)}function u(t){return t>1?0:-1>t?pa:Math.acos(t)}function M(t){return t>0?Math.sqrt(t):0}function s(t){function n(t,n){var a=Math.cos(t),e=Math.cos(n),o=Math.sin(n),i=e*a,h=-((1-i?Math.log(.5*(1+i))/(1-i):-.5)+r/(1+i));return[h*e*Math.sin(t),h*o]}var a=Math.tan(.5*t),r=2*Math.log(Math.cos(.5*t))/(a*a);return n.invert=function(n,a){var e,o=Math.sqrt(n*n+a*a),i=t*-.5,u=50;if(!o)return[0,0];do{var M=.5*i,s=Math.cos(M),c=Math.sin(M),f=Math.tan(M),v=Math.log(1/s);i-=e=(2/f*v-r*f-o)/(-v/(c*c)+1-r/(2*s*s))}while(Math.abs(e)>da&&--u>0);var l=Math.sin(i);return[Math.atan2(n*l,o*Math.cos(i)),h(a*l/o)]},n}function c(){var t=wa,n=Qa(s),a=n(t);return a.radius=function(a){return arguments.length?n(t=a*pa/180):180*(t/pa)},a}function f(t,n){var a=Math.cos(n),r=o(u(a*Math.cos(t/=2)));return[2*a*Math.sin(t)*r,Math.sin(n)*r]}function v(t){function n(t,n){var h=Math.cos(n),u=Math.cos(t/=2);return[(1+h)*Math.sin(t),(e*n>-Math.atan2(u,o)-.001?0:10*-e)+i+Math.sin(n)*r-(1+h)*a*u]}var a=Math.sin(t),r=Math.cos(t),e=t>0?1:-1,o=Math.tan(e*t),i=(1+a-r)/2;return n.invert=function(t,n){var h=0,u=0,M=50;do{var s=Math.cos(h),c=Math.sin(h),f=Math.cos(u),v=Math.sin(u),l=1+f,g=l*c-t,d=i+v*r-l*a*s-n,b=.5*l*s,p=-c*v,w=.5*a*l*c,q=r*f+a*s*v,m=p*w-q*b,y=.5*(d*p-g*q)/m,S=(g*w-d*b)/m;h-=y,u-=S}while((Math.abs(y)>da||Math.abs(S)>da)&&--M>0);return e*u>-Math.atan2(Math.cos(h),o)-.001?[2*h,u]:null},n}function l(){var t=pa/9,n=t>0?1:-1,a=Math.tan(n*t),r=Qa(v),e=r(t),o=e.stream;return e.parallel=function(e){return arguments.length?(a=Math.tan((n=(t=e*pa/180)>0?1:-1)*t),r(t)):180*(t/pa)},e.stream=function(r){var i=e.rotate(),h=o(r),u=(e.rotate([0,0]),o(r));return e.rotate(i),h.sphere=function(){u.polygonStart(),u.lineStart();for(var r=-180*n;180>n*r;r+=90*n)u.point(r,90*n);for(;n*(r-=t)>=-180;)u.point(r,n*-Math.atan2(Math.cos(r*ma/2),a)*ya);u.lineEnd(),u.polygonEnd()},h},e}function g(t){return t=Math.exp(2*t),(t-1)/(t+1)}function d(t){return.5*(Math.exp(t)-Math.exp(-t))}function b(t){return.5*(Math.exp(t)+Math.exp(-t))}function p(t){return Math.log(t+M(t*t+1))}function w(t){return Math.log(t+M(t*t-1))}function q(t,n){var a=Math.tan(n/2),r=M(1-a*a),e=1+r*Math.cos(t/=2),o=Math.sin(t)*r/e,i=a/e,h=o*o,u=i*i;return[4/3*o*(3+h-3*u),4/3*i*(3+3*h-u)]}function m(t,n){var a=Math.abs(n);return pa/4>a?[t,Math.log(Math.tan(pa/4+n/2))]:[t*Math.cos(a)*(2*Math.SQRT2-1/Math.sin(a)),i(n)*(2*Math.SQRT2*(a-pa/4)-Math.log(Math.tan(a/2)))]}function y(t){function n(t,n){var r=Ta(t,n);if(Math.abs(t)>wa){var e=Math.atan2(r[1],r[0]),o=Math.sqrt(r[0]*r[0]+r[1]*r[1]),i=a*Math.round((e-wa)/a)+wa,u=Math.atan2(Math.sin(e-=i),2-Math.cos(e));e=i+h(pa/o*Math.sin(u))-u,r[0]=o*Math.cos(e),r[1]=o*Math.sin(e)}return r}var a=2*pa/t;return n.invert=function(t,n){var r=Math.sqrt(t*t+n*n);if(r>wa){var e=Math.atan2(n,t),o=a*Math.round((e-wa)/a)+wa,i=e>o?-1:1,h=r*Math.cos(o-e),u=1/Math.tan(i*Math.acos((h-pa)/Math.sqrt(pa*(pa-2*h)+r*r)));e=o+2*Math.atan((u+i*Math.sqrt(u*u-3))/3),t=r*Math.cos(e),n=r*Math.sin(e)}return Ta.invert(t,n)},n}function S(){var t=5,n=Qa(y),a=n(t),r=a.stream,e=.01,o=-Math.cos(e*ma),i=Math.sin(e*ma);return a.lobes=function(a){return arguments.length?n(t=+a):t},a.stream=function(n){var u=a.rotate(),M=r(n),s=(a.rotate([0,0]),r(n));return a.rotate(u),M.sphere=function(){s.polygonStart(),s.lineStart();for(var n=0,a=360/t,r=2*pa/t,u=90-180/t,M=wa;t>n;++n,u-=a,M-=r)s.point(Math.atan2(i*Math.cos(M),o)*ya,h(i*Math.sin(M))*ya),-90>u?(s.point(-90,-180-u-e),s.point(-90,-180-u+e)):(s.point(90,u+e),s.point(90,u-e));s.lineEnd(),s.polygonEnd()},M},a}function Q(t){return function(n){var a,r=t*Math.sin(n),e=30;do n-=a=(n+Math.sin(n)-r)/(1+Math.cos(n));while(Math.abs(a)>da&&--e>0);return n/2}}function R(t,n,a){function r(a,r){return[t*a*Math.cos(r=e(r)),n*Math.sin(r)]}var e=Q(a);return r.invert=function(r,e){var o=h(e/n);return[r/(t*Math.cos(o)),h((2*o+Math.sin(2*o))/a)]},r}function T(t,n){var a=2.00276,r=xa(n);return[a*t/(1/Math.cos(n)+1.11072/Math.cos(r)),(n+Math.SQRT2*Math.sin(r))/a]}function x(t){var n=0,a=Qa(t),r=a(n);return r.parallel=function(t){return arguments.length?a(n=t*pa/180):180*(n/pa)},r}function E(t,n){return[t*Math.cos(n),n]}function k(t){function n(n,r){var e=a+t-r,o=e?n*Math.cos(r)/e:e;return[e*Math.sin(o),a-e*Math.cos(o)]}if(!t)return E;var a=1/Math.tan(t);return n.invert=function(n,r){var e=Math.sqrt(n*n+(r=a-r)*r),o=a+t-e;return[e/Math.cos(o)*Math.atan2(n,r),o]},n}function P(t){function n(t,n){var r=wa-n,e=r?t*a*Math.sin(r)/r:r;return[r*Math.sin(e)/a,wa-r*Math.cos(e)]}var a=Math.sin(t);return n.invert=function(t,n){var r=t*a,e=wa-n,o=Math.sqrt(r*r+e*e),i=Math.atan2(r,e);return[(o?o/Math.sin(o):1)*i/a,wa-o]},n}function _(t){function n(n,a){for(var r=Math.sin(a),e=Math.cos(a),o=new Array(3),M=0;3>M;++M){var s=t[M];if(o[M]=B(a-s[1],s[3],s[2],e,r,n-s[0]),!o[M][0])return s.point;o[M][1]=j(o[M][1]-s.v[1])}for(var c=u.slice(),M=0;3>M;++M){var f=2==M?0:M+1,v=F(t[M].v[0],o[M][0],o[f][0]);o[M][1]<0&&(v=-v),M?1==M?(v=i-v,c[0]-=o[M][0]*Math.cos(v),c[1]-=o[M][0]*Math.sin(v)):(v=h-v,c[0]+=o[M][0]*Math.cos(v),c[1]+=o[M][0]*Math.sin(v)):(c[0]+=o[M][0]*Math.cos(v),c[1]-=o[M][0]*Math.sin(v))}return c[0]/=3,c[1]/=3,c}t=t.map(function(t){return[t[0],t[1],Math.sin(t[1]),Math.cos(t[1])]});for(var a,r=t[2],e=0;3>e;++e,r=a)a=t[e],r.v=B(a[1]-r[1],r[3],r[2],a[3],a[2],a[0]-r[0]),r.point=[0,0];var o=F(t[0].v[0],t[2].v[0],t[1].v[0]),i=F(t[0].v[0],t[1].v[0],t[2].v[0]),h=pa-o;t[2].point[1]=0,t[0].point[0]=-(t[1].point[0]=.5*t[0].v[0]);var u=[t[2].point[0]=t[0].point[0]+t[2].v[0]*Math.cos(o),2*(t[0].point[1]=t[1].point[1]=t[2].v[0]*Math.sin(o))];return n}function z(){var t=[[0,0],[0,0],[0,0]],n=Qa(_),a=n(t),r=a.rotate;return delete a.rotate,a.points=function(e){if(!arguments.length)return t;t=e;var o=d3.geo.centroid({type:"MultiPoint",coordinates:t}),i=[-o[0],-o[1]];return r.call(a,i),n(t.map(d3.geo.rotation(i)).map(A))},a.points([[-150,55],[-35,55],[-92.5,10]])}function B(t,n,a,r,e,o){var i,M=Math.cos(o);if(Math.abs(t)>1||Math.abs(o)>1)i=u(a*e+n*r*M);else{var s=Math.sin(.5*t),c=Math.sin(.5*o);i=2*h(Math.sqrt(s*s+n*r*c*c))}return Math.abs(i)>da?[i,Math.atan2(r*Math.sin(o),n*e-a*r*M)]:[0,0]}function F(t,n,a){return u(.5*(t*t+n*n-a*a)/(t*n))}function j(t){return t-2*pa*Math.floor((t+pa)/(2*pa))}function A(t){return[t[0]*ma,t[1]*ma]}function G(t,n){var a=M(1-Math.sin(n));return[2/qa*t*a,qa*(1-a)]}function C(t){function n(t,n){return[t,(t?t/Math.sin(t):1)*(Math.sin(n)*Math.cos(t)-a*Math.cos(n))]}var a=Math.tan(t);return n.invert=a?function(t,n){t&&(n*=Math.sin(t)/t);var r=Math.cos(t);return[t,2*Math.atan2(Math.sqrt(r*r+a*a-n*n)-r,a-n)]}:function(t,n){return[t,h(t?n*Math.tan(t)/t:n)]},n}function D(t,n){var a=Math.sqrt(3);return[a*t*(2*Math.cos(2*n/3)-1)/qa,a*qa*Math.sin(n/3)]}function L(t){function n(t,n){return[t*a,Math.sin(n)/a]}var a=Math.cos(t);return n.invert=function(t,n){return[t/a,h(n*a)]},n}function O(t){function n(t,n){return[t*a,(1+a)*Math.tan(.5*n)]}var a=Math.cos(t);return n.invert=function(t,n){return[t/a,2*Math.atan(n/(1+a))]},n}function H(t,n){var a=Math.sqrt(8/(3*pa));return[a*t*(1-Math.abs(n)/pa),a*n]}function I(t,n){var a=Math.sqrt(4-3*Math.sin(Math.abs(n)));return[2/Math.sqrt(6*pa)*t*a,i(n)*Math.sqrt(2*pa/3)*(2-a)]}function J(t,n){var a=Math.sqrt(pa*(4+pa));return[2/a*t*(1+Math.sqrt(1-4*n*n/(pa*pa))),4/a*n]}function K(t,n){var a=(2+wa)*Math.sin(n);n/=2;for(var r=0,e=1/0;10>r&&Math.abs(e)>da;r++){var o=Math.cos(n);n-=e=(n+Math.sin(n)*(o+2)-a)/(2*o*(1+o))}return[2/Math.sqrt(pa*(4+pa))*t*(1+Math.cos(n)),2*Math.sqrt(pa/(4+pa))*Math.sin(n)]}function N(t,n){return[t*(1+Math.cos(n))/Math.sqrt(2+pa),2*n/Math.sqrt(2+pa)]}function U(t,n){for(var a=(1+wa)*Math.sin(n),r=0,e=1/0;10>r&&Math.abs(e)>da;r++)n-=e=(n+Math.sin(n)-a)/(1+Math.cos(n));return a=Math.sqrt(2+pa),[t*(1+Math.cos(n))/a,2*n/a]}function V(t,n){var a=Math.sin(t/=2),r=Math.cos(t),e=Math.sqrt(Math.cos(n)),o=Math.cos(n/=2),i=Math.sin(n)/(o+Math.SQRT2*r*e),h=Math.sqrt(2/(1+i*i)),u=Math.sqrt((Math.SQRT2*o+(r+a)*e)/(Math.SQRT2*o+(r-a)*e));return[Pa*(h*(u-1/u)-2*Math.log(u)),Pa*(h*i*(u+1/u)-2*Math.atan(i))]}function W(t,n){var a=Math.tan(n/2);return[t*_a*M(1-a*a),(1+_a)*a]}function X(t,n){var a=n/2,r=Math.cos(a);return[2*t/qa*Math.cos(n)*r*r,qa*Math.tan(a)]}function Y(t,n){function a(n,a){var o=za(n,a),i=o[0],h=o[1],u=i*i+h*h;if(u>e){var M=Math.sqrt(u),s=Math.atan2(h,i),c=r*Math.round(s/r),f=s-c,v=t*Math.cos(f),l=(t*Math.sin(f)-f*Math.sin(v))/(wa-v),g=Z(f,l),d=(pa-t)/tn(g,v,pa);i=M;var b,p=50;do i-=b=(t+tn(g,v,i)*d-M)/(g(i)*d);while(Math.abs(b)>da&&--p>0);h=f*Math.sin(i),wa>i&&(h-=l*(i-wa));var w=Math.sin(c),q=Math.cos(c);o[0]=i*q-h*w,o[1]=i*w+h*q}return o}var r=2*pa/n,e=t*t;return a.invert=function(n,a){var o=n*n+a*a;if(o>e){var i=Math.sqrt(o),h=Math.atan2(a,n),u=r*Math.round(h/r),M=h-u,n=i*Math.cos(M);a=i*Math.sin(M);for(var s=n-wa,c=Math.sin(n),f=a/c,v=wa>n?1/0:0,l=10;;){var g=t*Math.sin(f),d=t*Math.cos(f),b=Math.sin(d),p=wa-d,w=(g-f*b)/p,q=Z(f,w);if(Math.abs(v)a&&(r-=n),Math.sqrt(1+r*r)}}function $(){var t=6,n=30*ma,a=Math.cos(n),r=Math.sin(n),e=Qa(Y),o=e(n,t),i=o.stream,h=.01,u=-Math.cos(h*ma),M=Math.sin(h*ma);return o.radius=function(o){return arguments.length?(a=Math.cos(n=o*ma),r=Math.sin(n),e(n,t)):n*ya},o.lobes=function(a){return arguments.length?e(n,t=+a):t},o.stream=function(n){var e=o.rotate(),h=i(n),s=(o.rotate([0,0]),i(n));return o.rotate(e),h.sphere=function(){s.polygonStart(),s.lineStart();for(var n=0,e=2*pa/t,o=0;t>n;++n,o-=e)s.point(Math.atan2(M*Math.cos(o),u)*ya,Math.asin(M*Math.sin(o))*ya),s.point(Math.atan2(r*Math.cos(o-e/2),a)*ya,Math.asin(r*Math.sin(o-e/2))*ya);s.lineEnd(),s.polygonEnd()},h},o}function tn(t,n,a){for(var r=50,e=(a-n)/r,o=t(n)+t(a),i=1,h=n;r>i;++i)o+=2*t(h+=e);return.5*o*e}function nn(t,n,a,r,e,o,i,h){function u(u,M){if(!M)return[t*u/pa,0];var s=M*M,c=t+s*(n+s*(a+s*r)),f=M*(e-1+s*(o-h+s*i)),v=(c*c+f*f)/(2*f),l=u*Math.asin(c/v)/pa;return[v*Math.sin(l),M*(1+s*h)+v*(1-Math.cos(l))]}return arguments.length<8&&(h=0),u.invert=function(u,s){var c,f,v=pa*u/t,l=s,g=50;do{var d=l*l,b=t+d*(n+d*(a+d*r)),p=l*(e-1+d*(o-h+d*i)),w=b*b+p*p,q=2*p,m=w/q,y=m*m,S=Math.asin(b/m)/pa,Q=v*S;if(xB2=b*b,dxBdφ=(2*n+d*(4*a+6*d*r))*l,dyBdφ=e+d*(3*o+5*d*i),dpdφ=2*(b*dxBdφ+p*(dyBdφ-1)),dqdφ=2*(dyBdφ-1),dmdφ=(dpdφ*q-w*dqdφ)/(q*q),cosα=Math.cos(Q),sinα=Math.sin(Q),mcosα=m*cosα,msinα=m*sinα,dαdφ=v/pa*(1/M(1-xB2/y))*(dxBdφ*m-b*dmdφ)/y,fx=msinα-u,fy=l*(1+d*h)+m-mcosα-s,δxδφ=dmdφ*sinα+mcosα*dαdφ,δxδλ=mcosα*S,δyδφ=1+dmdφ-(dmdφ*cosα-msinα*dαdφ),δyδλ=msinα*S,denominator=δxδφ*δyδλ-δyδφ*δxδλ,!denominator)break;v-=c=(fy*δxδφ-fx*δyδφ)/denominator,l-=f=(fx*δyδλ-fy*δxδλ)/denominator}while((Math.abs(c)>da||Math.abs(f)>da)&&--g>0);return[v,l]},u}function an(t,n){var a=t*t,r=n*n;return[t*(1-.162388*r)*(.87-952426e-9*a*a),n*(1+r/12)]}function rn(t){function n(){var t=!1,n=Qa(a),r=n(t);return r.quincuncial=function(a){return arguments.length?n(t=!!a):t},r}function a(n){var a=n?function(n,a){var e=Math.abs(n)0?n-pa:n+pa,a),h=(o[0]-o[1])*Math.SQRT1_2,u=(o[0]+o[1])*Math.SQRT1_2;if(e)return[h,u];var M=r*Math.SQRT1_2,s=h>0^u>0?-1:1;return[s*h-i(u)*M,s*u-i(h)*M]}:function(n,a){var e=n>0?-.5:.5,o=t(n+e*pa,a);return o[0]-=e*r,o};return t.invert&&(a.invert=n?function(n,a){var e=(n+a)*Math.SQRT1_2,o=(a-n)*Math.SQRT1_2,i=Math.abs(e)<.5*r&&Math.abs(o)<.5*r;if(!i){var h=r*Math.SQRT1_2,u=e>0^o>0?-1:1,M=-u*(n+(o>0?1:-1)*h),s=-u*(a+(e>0?1:-1)*h);e=(-M-s)*Math.SQRT1_2,o=(M-s)*Math.SQRT1_2}var c=t.invert(e,o);return i||(c[0]+=e>0?pa:-pa),c}:function(n,a){var e=n>0?-.5:.5,o=t.invert(n+e*r,a),i=o[0]-e*pa;return-pa>i?i+=2*pa:i>pa&&(i-=2*pa),o[0]=i,o}),a}var r=t(wa,0)[0]-t(-wa,0)[0];return n.raw=a,n}function en(t,n){var a=i(t),r=i(n),e=Math.cos(n),o=Math.cos(t)*e,u=Math.sin(t)*e,M=Math.sin(r*n);t=Math.abs(Math.atan2(u,M)),n=h(o),Math.abs(t-wa)>da&&(t%=wa);var s=on(t>pa/4?wa-t:t,n);return t>pa/4&&(M=s[0],s[0]=-s[1],s[1]=-M),s[0]*=a,s[1]*=-r,s}function on(t,n){if(n===wa)return[0,0];var a=Math.sin(n),r=a*a,e=r*r,o=1+e,i=1+3*e,u=1-e,s=h(1/Math.sqrt(o)),c=u+r*o*s,f=(1-a)/c,v=Math.sqrt(f),l=f*o,g=Math.sqrt(l),d=v*u;if(0===t)return[0,-(d+r*g)];var b=Math.cos(n),p=1/b,w=2*a*b,q=(-3*r+s*i)*w,m=(-c*b-(1-a)*q)/(c*c),y=.5*m/v,S=u*y-2*r*v*w,Q=r*o*m+f*i*w,R=-p*w,T=-p*Q,x=-2*p*S,E=4*t/pa;if(t>.222*pa||pa/4>n&&t>.175*pa){var k=(d+r*M(l*(1+e)-d*d))/(1+e);if(t>pa/4)return[k,k];var P=k,_=.5*k,z=50;k=.5*(_+P);do{var B=Math.sqrt(l-k*k),F=k*(x+R*B)+T*h(k/g)-E;if(!F)break;0>F?_=k:P=k,k=.5*(_+P)}while(Math.abs(P-_)>da&&--z>0)}else{var j,k=da,z=25;do{var A=k*k,B=M(l-A),G=x+R*B,F=k*G+T*h(k/g)-E,C=G+(T-R*A)/B;k-=j=B?F/C:0}while(Math.abs(j)>da&&--z>0)}return[k,-d-r*M(l-k*k)]}function hn(t,n){for(var a=0,r=1,e=.5,o=50;;){var i=e*e,h=Math.sqrt(e),u=Math.asin(1/Math.sqrt(1+i)),M=1-i+e*(1+i)*u,s=(1-h)/M,c=Math.sqrt(s),f=s*(1+i),v=c*(1-i),l=f-t*t,g=Math.sqrt(l),d=n+v+e*g;if(Math.abs(r-a)0?a=e:r=e,e=.5*(a+r)}if(!o)return null;var b=Math.asin(h),p=Math.cos(b),w=1/p,q=2*h*p,m=(-3*e+u*(1+3*i))*q,y=(-M*p-(1-h)*m)/(M*M),S=.5*y/c,Q=(1-i)*S-2*e*c*q,R=-2*w*Q,T=-w*q,x=-w*(e*(1+i)*y+s*(1+3*i)*q);return[pa/4*(t*(R+T*g)+x*Math.asin(t/Math.sqrt(f))),b]}function un(t,n,a){if(!t){var r=Mn(n,1-a);return[[0,r[0]/r[1]],[1/r[1],0],[r[2]/r[1],0]]}var e=Mn(t,a);if(!n)return[[e[0],0],[e[1],0],[e[2],0]];var r=Mn(n,1-a),o=r[1]*r[1]+a*e[0]*e[0]*r[0]*r[0];return[[e[0]*r[2]/o,e[1]*e[2]*r[0]*r[1]/o],[e[1]*r[1]/o,-e[0]*e[2]*r[0]*r[2]/o],[e[2]*r[1]*r[2]/o,-a*e[0]*e[1]*r[0]/o]]}function Mn(t,n){var a,r,e,o,i;if(da>n)return o=Math.sin(t),r=Math.cos(t),a=.25*n*(t-o*r),[o-a*r,r+a*o,1-.5*n*o*o,t-a];if(n>=1-da)return a=.25*(1-n),r=b(t),o=g(t),e=1/r,i=r*d(t),[o+a*(i-t)/(r*r),e-a*o*e*(i-t),e+a*o*e*(i+t),2*Math.atan(Math.exp(t))-wa+a*(i-t)/r];var u=[1,0,0,0,0,0,0,0,0],s=[Math.sqrt(n),0,0,0,0,0,0,0,0],c=0;for(r=Math.sqrt(1-n),i=1;Math.abs(s[c]/u[c])>da&&8>c;)a=u[c++],s[c]=.5*(a-r),u[c]=.5*(a+r),r=M(a*r),i*=2;e=i*u[c]*t;do o=s[c]*Math.sin(r=e)/u[c],e=.5*(h(o)+e);while(--c);return[Math.sin(e),o=Math.cos(e),o/Math.cos(e-r),e]}function sn(t,n,a){var r=Math.abs(t),e=Math.abs(n),o=d(e);if(r){var h=1/Math.sin(r),u=1/(Math.tan(r)*Math.tan(r)),s=-(u+a*o*o*h*h-1+a),c=(a-1)*u,f=.5*(-s+Math.sqrt(s*s-4*c));return[cn(Math.atan(1/Math.sqrt(f)),a)*i(t),cn(Math.atan(M((f/u-1)/a)),1-a)*i(n)]}return[0,cn(Math.atan(o),1-a)*i(n)]}function cn(t,n){if(!n)return t;if(1===n)return Math.log(Math.tan(t/2+pa/4));for(var a=1,r=Math.sqrt(1-n),e=Math.sqrt(n),o=0;Math.abs(e)>da;o++){if(t%pa){var i=Math.atan(r*Math.tan(t)/a);0>i&&(i+=pa),t+=i+~~(t/pa)*pa}else t+=t;e=(a+r)/2,r=Math.sqrt(a*r),e=((a=e)-r)/2}return t/(Math.pow(2,o)*a)}function fn(t,n){var a=(Math.SQRT2-1)/(Math.SQRT2+1),r=Math.sqrt(1-a*a),e=cn(wa,r*r),o=-1,i=Math.log(Math.tan(pa/4+Math.abs(n)/2)),h=Math.exp(o*i)/Math.sqrt(a),u=vn(h*Math.cos(o*t),h*Math.sin(o*t)),M=sn(u[0],u[1],r*r);return[-M[1],(n>=0?1:-1)*(.5*e-M[0])]}function vn(t,n){var a=t*t,r=n+1,e=1-a-n*n;return[.5*((t>=0?wa:-wa)-Math.atan2(e,2*t)),-.25*Math.log(e*e+4*a)+.5*Math.log(r*r+a)]}function ln(t,n){var a=n[0]*n[0]+n[1]*n[1];return[(t[0]*n[0]+t[1]*n[1])/a,(t[1]*n[0]-t[0]*n[1])/a]}function gn(t){function n(t,n){var o=e(t,n);t=o[0],n=o[1];var i=Math.sin(n),h=Math.cos(n),M=Math.cos(t),s=u(a*i+r*h*M),c=Math.sin(s),f=Math.abs(c)>da?s/c:1;return[f*r*Math.sin(t),(Math.abs(t)>wa?f:-f)*(a*h-r*i*M)]}var a=Math.sin(t),r=Math.cos(t),e=dn(t);return e.invert=dn(-t),n.invert=function(t,n){var r=Math.sqrt(t*t+n*n),o=-Math.sin(r),i=Math.cos(r),h=r*i,u=-n*o,s=r*a,c=M(h*h+u*u-s*s),f=Math.atan2(h*s+u*c,u*s-h*c),v=(r>wa?-1:1)*Math.atan2(t*o,r*Math.cos(f)*i+n*Math.sin(f)*o);return e.invert(v,f)},n}function dn(t){var n=Math.sin(t),a=Math.cos(t);return function(t,r){var e=Math.cos(r),o=Math.cos(t)*e,i=Math.sin(t)*e,u=Math.sin(r);return[Math.atan2(i,o*a-u*n),h(u*a+o*n)]}}function bn(){var t=0,n=Qa(gn),a=n(t),r=a.rotate,e=a.stream,o=d3.geo.circle();return a.parallel=function(r){if(!arguments.length)return 180*(t/pa);var e=a.rotate();return n(t=r*pa/180).rotate(e)},a.rotate=function(n){return arguments.length?(r.call(a,[n[0],n[1]-180*(t/pa)]),o.origin([-n[0],-n[1]]),a):(n=r.call(a),n[1]+=180*(t/pa),n)},a.stream=function(t){return t=e(t),t.sphere=function(){t.polygonStart();var n,a=.01,r=o.angle(90-a)().coordinates[0],e=r.length-1,i=-1;for(t.lineStart();++i=0;)t.point((n=r[i])[0],n[1]);t.lineEnd(),t.polygonEnd()},t},a}function pn(t,n){function a(a,r){var e=Ga(a/n,r);return e[0]*=t,e}return arguments.length<2&&(n=t),1===n?Ga:1/0===n?qn:(a.invert=function(a,r){var e=Ga.invert(a/t,r);return e[0]*=n,e},a)}function wn(){var t=2,n=Qa(pn),a=n(t);return a.coefficient=function(a){return arguments.length?n(t=+a):t},a}function qn(t,n){return[t*Math.cos(n)/Math.cos(n/=2),2*Math.sin(n)]}function mn(t,n){for(var a,r=Math.sin(n)*(0>n?2.43763:2.67595),e=0;20>e&&(n-=a=(n+Math.sin(n)-r)/(1+Math.cos(n)),!(Math.abs(a)n?1.93052:1.75859)]}function yn(t){function n(n,s){var c,f=Math.abs(s);if(f>r){var v=Math.min(t-1,Math.max(0,Math.floor((n+pa)/M)));n+=pa*(t-1)/t-v*M,c=d3.geo.collignon.raw(n,f),c[0]=c[0]*e/o-e*(t-1)/(2*t)+v*e/t,c[1]=i+4*(c[1]-h)*u/e,0>s&&(c[1]=-c[1])}else c=a(n,s);return c[0]/=2,c}var a=d3.geo.cylindricalEqualArea.raw(0),r=Ca*pa/180,e=2*pa,o=d3.geo.collignon.raw(pa,r)[0]-d3.geo.collignon.raw(-pa,r)[0],i=a(0,r)[1],h=d3.geo.collignon.raw(0,r)[1],u=d3.geo.collignon.raw(0,wa)[1]-h,M=2*pa/t;return n.invert=function(n,r){n*=2;var s=Math.abs(r);if(s>i){var c=Math.min(t-1,Math.max(0,Math.floor((n+pa)/M)));n=(n+pa*(t-1)/t-c*M)*o/e;var f=d3.geo.collignon.raw.invert(n,.25*(s-i)*e/u+h);return f[0]-=pa*(t-1)/t-c*M,0>r&&(f[1]=-f[1]),f}return a.invert(n,r)},n}function Sn(){function t(){var t=180/n;return{type:"Polygon",coordinates:[d3.range(-180,180+t/2,t).map(function(t,n){return[t,1&n?90-1e-6:Ca]}).concat(d3.range(180,-180-t/2,-t).map(function(t,n){return[t,1&n?-90+1e-6:-Ca]}))]}}var n=2,a=Qa(yn),r=a(n),e=r.stream;return r.lobes=function(t){return arguments.length?a(n=+t):n},r.stream=function(n){var a=r.rotate(),o=e(n),i=(r.rotate([0,0]),e(n));return r.rotate(a),o.sphere=function(){d3.geo.stream(t(),i)},o},r}function Qn(t){function n(n,e){var h,u,f=1-Math.sin(e);if(f&&2>f){var v,l=wa-e,g=25;do{var d=Math.sin(l),b=Math.cos(l),p=o+Math.atan2(d,r-b),w=1+c-2*r*b;l-=v=(l-s*o-r*d+w*p-.5*f*a)/(2*r*d*p)}while(Math.abs(v)>ba&&--g>0);h=i*Math.sqrt(w),u=n*p/pa}else h=i*(t+f),u=n*o/pa;return[h*Math.sin(u),M-h*Math.cos(u)]}var a,r=1+t,e=Math.sin(1/r),o=h(e),i=2*Math.sqrt(pa/(a=pa+4*o*r)),M=.5*i*(r+Math.sqrt(t*(2+t))),s=t*t,c=r*r;return n.invert=function(t,n){var e=t*t+(n-=M)*n,f=(1+c-e/(i*i))/(2*r),v=u(f),l=Math.sin(v),g=o+Math.atan2(l,r-f);return[h(t/Math.sqrt(e))*pa/g,h(1-2*(v-s*o-r*l+(1+c-2*r*f)*g)/a)]},n}function Rn(){var t=1,n=Qa(Qn),a=n(t);return a.ratio=function(a){return arguments.length?n(t=+a):t},a}function Tn(t,n){return n>-Da?(t=Ea(t,n),t[1]+=La,t):E(t,n)}function xn(t,n){return Math.abs(n)>Da?(t=Ea(t,n),t[1]-=n>0?La:-La,t):E(t,n)}function En(t,n){return[3*t/(2*pa)*Math.sqrt(pa*pa/3-n*n),n]}function kn(t){function n(n,a){if(Math.abs(Math.abs(a)-wa)a?-2:2];var r=Math.sin(a),e=Math.pow((1+r)/(1-r),t/2),o=.5*(e+1/e)+Math.cos(n*=t);return[2*Math.sin(n)/o,(e-1/e)/o]}return n.invert=function(n,a){var r=Math.abs(a);if(Math.abs(r-2)2)return null;n/=2,a/=2;var e=n*n,o=a*a,u=2*a/(1+e+o);return u=Math.pow((1+u)/(1-u),1/t),[Math.atan2(2*n,1-e-o)/t,h((u-1)/(u+1))]},n}function Pn(){var t=.5,n=Qa(kn),a=n(t);return a.spacing=function(a){return arguments.length?n(t=+a):t},a}function _n(t,n){return[t*(1+Math.sqrt(Math.cos(n)))/2,n/(Math.cos(n/2)*Math.cos(t/6))]}function zn(t,n){var a=t*t,r=n*n;return[t*(.975534+r*(-.119161+a*-.0143059+r*-.0547009)),n*(1.00384+a*(.0802894+r*-.02855+199025e-9*a)+r*(.0998909+r*-.0491032))]}function Bn(t,n){return[Math.sin(t)/Math.cos(n),Math.tan(n)*Math.cos(t)]}function Fn(t){function n(n,e){var o=e-t,i=Math.abs(o)=0;)s=t[M],c=s[0]+h*(e=c)-u*f,f=s[1]+h*f+u*e;return c=h*(e=c)-u*f,f=h*f+u*e,[c,f]}var a=t.length-1;return n.invert=function(n,r){var e=20,o=n,i=r;do{for(var u,M=a,s=t[M],c=s[0],f=s[1],v=0,l=0;--M>=0;)s=t[M],v=c+o*(u=v)-i*l,l=f+o*l+i*u,c=s[0]+o*(u=c)-i*f,f=s[1]+o*f+i*u;v=c+o*(u=v)-i*l,l=f+o*l+i*u,c=o*(u=c)-i*f-n,f=o*f+i*u-r;var g,d,b=v*v+l*l;o-=g=(c*v+f*l)/b,i-=d=(f*v-c*l)/b}while(Math.abs(g)+Math.abs(d)>da*da&&--e>0);if(e){var p=Math.sqrt(o*o+i*i),w=2*Math.atan(.5*p),q=Math.sin(w);return[Math.atan2(o*q,p*Math.cos(w)),p?h(i*q/p):0]}},n}function Gn(){var t=Oa.miller,n=Qa(An),a=n(t);return a.coefficients=function(a){return arguments.length?n(t="string"==typeof a?Oa[a]:a):t},a}function Cn(t,n){var a=Math.sqrt(6),r=Math.sqrt(7),e=Math.asin(7*Math.sin(n)/(3*a));return[a*t*(2*Math.cos(2*e/3)-1)/r,9*Math.sin(e/3)/r]}function Dn(t,n){for(var a,r=(1+Math.SQRT1_2)*Math.sin(n),e=n,o=0;25>o&&(e-=a=(Math.sin(e/2)+Math.sin(e)-r)/(.5*Math.cos(e/2)+Math.cos(e)),!(Math.abs(a)i&&(o-=a=(o/2+Math.sin(o)-e)/(.5+Math.cos(o)),!(Math.abs(a)da&&--M>0);var v=n*(s=Math.tan(i)),l=Math.tan(Math.abs(r)0?wa:-wa)*(M+o*(c-h)/2+o*o*(c-2*M+h)/2)]}function Un(t){function n(n,a){var r=Math.cos(a),e=(t-1)/(t-r*Math.cos(n));return[e*r*Math.sin(n),e*Math.sin(a)]}return n.invert=function(n,a){var r=n*n+a*a,e=Math.sqrt(r),o=(t-Math.sqrt(1-r*(t+1)/(t-1)))/((t-1)/e+e/(t-1));return[Math.atan2(n*o,e*Math.sqrt(1-o*o)),e?h(a*o/e):0]},n}function Vn(t,n){function a(n,a){var i=r(n,a),h=i[1],u=h*o/(t-1)+e;return[i[0]*e/u,h/u]}var r=Un(t);if(!n)return r;var e=Math.cos(n),o=Math.sin(n);return a.invert=function(n,a){var i=(t-1)/(t-1-a*o);return r.invert(i*n,i*a*e)},a}function Wn(){var t=1.4,n=0,a=Qa(Vn),r=a(t,n);return r.distance=function(r){return arguments.length?a(t=+r,n):t},r.tilt=function(r){return arguments.length?a(t,n=r*pa/180):180*n/pa},r}function Xn(t,n){var a=Math.tan(n/2),r=Math.sin(pa/4*a);return[t*(.74482-.34588*r*r),1.70711*a]}function Yn(t){function n(n,o){var i=u(Math.cos(o)*Math.cos(n-a)),h=u(Math.cos(o)*Math.cos(n-r)),s=0>o?-1:1;return i*=i,h*=h,[(i-h)/(2*t),s*M(4*e*h-(e-i+h)*(e-i+h))/(2*t)]}if(!t)return d3.geo.azimuthalEquidistant.raw;var a=-t/2,r=-a,e=t*t,o=Math.tan(r),i=.5/Math.sin(r);return n.invert=function(t,n){var e,h,M=n*n,s=Math.cos(Math.sqrt(M+(e=t+a)*e)),c=Math.cos(Math.sqrt(M+(e=t+r)*e));return[Math.atan2(h=s-c,e=(s+c)*o),(0>n?-1:1)*u(Math.sqrt(e*e+h*h)*i)]},n}function Zn(){var t=[[0,0],[0,0]],n=Qa(Yn),a=n(0),r=a.rotate;return delete a.rotate,a.points=function(a){if(!arguments.length)return t;t=a;var e=d3.geo.interpolate(a[0],a[1]),o=e(.5),i=d3.geo.rotation([-o[0],-o[1]])(a[0]),u=.5*e.distance,M=-h(Math.sin(i[1]*ma)/Math.sin(u));return i[0]>0&&(M=pa-M),r.call(i,[-o[0],-o[1],-M*ya]),n(2*u)},a}function $n(t){function n(t,n){var r=d3.geo.gnomonic.raw(t,n);return r[0]*=a,r}var a=Math.cos(t);return n.invert=function(t,n){return d3.geo.gnomonic.raw.invert(t/a,n)},n}function ta(){var t=[[0,0],[0,0]],n=Qa($n),a=n(0),r=a.rotate;return delete a.rotate,a.points=function(a){if(!arguments.length)return t;t=a;var e=d3.geo.interpolate(a[0],a[1]),o=e(.5),i=d3.geo.rotation([-o[0],-o[1]])(a[0]),u=.5*e.distance,M=-h(Math.sin(i[1]*ma)/Math.sin(u));return i[0]>0&&(M=pa-M),r.call(i,[-o[0],-o[1],-M*ya]),n(u)},a}function na(t,n){if(Math.abs(n)1?{type:"MultiPolygon",coordinates:t}:{type:"Polygon",coordinates:t[0]}:null}},ga={Point:fa,MultiPoint:fa,LineString:va,MultiLineString:va,Polygon:la,MultiPolygon:la,Sphere:la},da=1e-6,ba=da*da,pa=Math.PI,wa=pa/2,qa=Math.sqrt(pa),ma=pa/180,ya=180/pa,Sa=d3.geo.projection,Qa=d3.geo.projectionMutator;d3.geo.interrupt=function(t){function n(n,a){for(var r=0>a?-1:1,e=h[+(0>a)],o=0,i=e.length-1;i>o&&n>e[o][2][0];++o);var u=t(n-e[o][1][0],a);return u[0]+=t(e[o][1][0],r*a>r*e[o][0][1]?e[o][0][1]:a)[0],u}function a(){i=h.map(function(n){return n.map(function(n){var a,r=t(n[0][0],n[0][1])[0],e=t(n[2][0],n[2][1])[0],o=t(n[1][0],n[0][1])[1],i=t(n[1][0],n[1][1])[1];return o>i&&(a=o,o=i,i=a),[[r,o],[e,i]]})})}function r(){for(var t=1e-6,n=[],a=0,r=h[0].length;r>a;++a){var o=h[0][a],i=180*o[0][0]/pa,u=180*o[0][1]/pa,M=180*o[1][1]/pa,s=180*o[2][0]/pa,c=180*o[2][1]/pa;n.push(e([[i+t,u+t],[i+t,M-t],[s-t,M-t],[s-t,c+t]],30))}for(var a=h[1].length-1;a>=0;--a){var o=h[1][a],i=180*o[0][0]/pa,u=180*o[0][1]/pa,M=180*o[1][1]/pa,s=180*o[2][0]/pa,c=180*o[2][1]/pa;n.push(e([[s-t,c-t],[s-t,M+t],[i+t,M+t],[i+t,u-t]],30))}return{type:"Polygon",coordinates:[d3.merge(n)]}}function e(t,n){for(var a,r,e,o=-1,i=t.length,h=t[0],u=[];++oM;++M)u.push([h[0]+M*r,h[1]+M*e]);h=a}return u.push(a),u}function o(t,n){return Math.abs(t[0]-n[0])r)],u=h[+(0>r)],M=0,s=e.length;s>M;++M){var c=e[M];if(c[0][0]<=a&&apa*pa+da)){var a=t,r=n,e=25;do{var o,i=Math.sin(a),h=Math.sin(a/2),M=Math.cos(a/2),s=Math.sin(r),c=Math.cos(r),f=Math.sin(2*r),v=s*s,l=c*c,g=h*h,d=1-l*M*M,b=d?u(c*M)*Math.sqrt(o=1/d):o=0,p=2*b*c*h-t,w=b*s-n,q=o*(l*g+b*c*M*v),m=o*(.5*i*f-2*b*s*h),y=.25*o*(f*h-b*s*l*i),S=o*(v*M+b*g*c),Q=m*y-S*q;if(!Q)break;var R=(w*m-p*S)/Q,T=(p*y-w*q)/Q;a-=R,r-=T}while((Math.abs(R)>da||Math.abs(T)>da)&&--e>0);return[a,r]}},(d3.geo.aitoff=function(){return Sa(f)}).raw=f,(d3.geo.armadillo=l).raw=v,q.invert=function(t,n){if(t*=3/8,n*=3/8,!t&&Math.abs(n)>1)return null;var a=t*t,r=n*n,e=1+a+r,o=Math.sqrt(.5*(e-Math.sqrt(e*e-4*n*n))),u=h(o)/3,M=o?w(Math.abs(n/o))/3:p(Math.abs(t))/3,s=Math.cos(u),c=b(M),f=c*c-s*s;return[2*i(t)*Math.atan2(d(M)*s,.25-f),2*i(n)*Math.atan2(c*Math.sin(u),.25+f)]},(d3.geo.august=function(){return Sa(q)}).raw=q;var Ra=Math.log(1+Math.SQRT2);m.invert=function(t,n){if((r=Math.abs(n))ba&&--h>0);return[t/(Math.cos(o)*(e-1/Math.sin(o))),i(n)*o]},(d3.geo.baker=function(){return Sa(m)}).raw=m;var Ta=d3.geo.azimuthalEquidistant.raw;(d3.geo.berghaus=S).raw=y;var xa=Q(pa),Ea=R(Math.SQRT2/wa,Math.SQRT2,pa);(d3.geo.mollweide=function(){return Sa(Ea)}).raw=Ea,T.invert=function(t,n){var a,r,e=2.00276,o=e*n,i=0>n?-pa/4:pa/4,h=25;do r=o-Math.SQRT2*Math.sin(i),i-=a=(Math.sin(2*i)+2*i-pa*Math.sin(r))/(2*Math.cos(2*i)+2+pa*Math.cos(r)*Math.SQRT2*Math.cos(i));while(Math.abs(a)>da&&--h>0);return r=o-Math.SQRT2*Math.sin(i),[t*(1/Math.cos(r)+1.11072/Math.cos(i))/e,r]},(d3.geo.boggs=function(){return Sa(T)}).raw=T,E.invert=function(t,n){return[t/Math.cos(n),n]},(d3.geo.sinusoidal=function(){return Sa(E)}).raw=E,(d3.geo.bonne=function(){return x(k).parallel(45)}).raw=k,(d3.geo.bottomley=function(){var t=pa/6,n=d3.geo.projectionMutator(P),a=n(t);return a.variant=function(a){return arguments.length?n(t=+a):t},a}).raw=P;var ka=R(1,4/pa,pa);(d3.geo.bromley=function(){return Sa(ka)}).raw=ka,(d3.geo.chamberlin=z).raw=_,G.invert=function(t,n){var a=(a=n/qa-1)*a;return[a>0?t*Math.sqrt(pa/a)/2:0,h(1-a)]},(d3.geo.collignon=function(){return Sa(G)}).raw=G,(d3.geo.craig=function(){return x(C)}).raw=C,D.invert=function(t,n){var a=Math.sqrt(3),r=3*h(n/(a*qa));return[qa*t/(a*(2*Math.cos(2*r/3)-1)),r]},(d3.geo.craster=function(){return Sa(D)}).raw=D,(d3.geo.cylindricalEqualArea=function(){return x(L)}).raw=L,(d3.geo.cylindricalStereographic=function(){return x(O)}).raw=O,H.invert=function(t,n){var a=Math.sqrt(8/(3*pa)),r=n/a;return[t/(a*(1-Math.abs(r)/pa)),r]},(d3.geo.eckert1=function(){return Sa(H)}).raw=H,I.invert=function(t,n){var a=2-Math.abs(n)/Math.sqrt(2*pa/3);return[t*Math.sqrt(6*pa)/(2*a),i(n)*h((4-a*a)/3)]},(d3.geo.eckert2=function(){return Sa(I)}).raw=I,J.invert=function(t,n){var a=Math.sqrt(pa*(4+pa))/2;return[t*a/(1+M(1-n*n*(4+pa)/(4*pa))),n*a/2]},(d3.geo.eckert3=function(){return Sa(J)}).raw=J,K.invert=function(t,n){var a=.5*n*Math.sqrt((4+pa)/pa),r=h(a),e=Math.cos(r);return[t/(2/Math.sqrt(pa*(4+pa))*(1+e)),h((r+a*(e+2))/(2+wa))]},(d3.geo.eckert4=function(){return Sa(K)}).raw=K,N.invert=function(t,n){var a=Math.sqrt(2+pa),r=n*a/2;return[a*t/(1+Math.cos(r)),r]},(d3.geo.eckert5=function(){return Sa(N)}).raw=N,U.invert=function(t,n){var a=1+wa,r=Math.sqrt(a/2);return[2*t*r/(1+Math.cos(n*=r)),h((n+Math.sin(n))/a)]},(d3.geo.eckert6=function(){return Sa(U)}).raw=U,V.invert=function(t,n){var a=d3.geo.august.raw.invert(t/1.2,1.065*n);if(!a)return null;var r=a[0],e=a[1],o=20;t/=Pa,n/=Pa;do{var i=r/2,h=e/2,u=Math.sin(i),M=Math.cos(i),s=Math.sin(h),c=Math.cos(h),f=Math.cos(e),v=Math.sqrt(f),l=s/(c+Math.SQRT2*M*v),g=l*l,d=Math.sqrt(2/(1+g)),b=Math.SQRT2*c+(M+u)*v,p=Math.SQRT2*c+(M-u)*v,w=b/p,q=Math.sqrt(w),m=q-1/q,y=q+1/q,S=d*m-2*Math.log(q)-t,Q=d*l*y-2*Math.atan(l)-n,R=s&&Math.SQRT1_2*v*u*g/s,T=(Math.SQRT2*M*c+v)/(2*(c+Math.SQRT2*M*v)*(c+Math.SQRT2*M*v)*v),x=-.5*l*d*d*d,E=x*R,k=x*T,P=(P=2*c+Math.SQRT2*v*(M-u))*P*q,_=(Math.SQRT2*M*c*v+f)/P,z=-(Math.SQRT2*u*s)/(v*P),B=m*E-2*_/q+d*(_+_/w),F=m*k-2*z/q+d*(z+z/w),j=l*y*E-2*R/(1+g)+d*y*R+d*l*(_-_/w),A=l*y*k-2*T/(1+g)+d*y*T+d*l*(z-z/w),G=F*j-A*B;if(!G)break;var C=(Q*F-S*A)/G,D=(S*j-Q*B)/G;r-=C,e=Math.max(-wa,Math.min(wa,e-D))}while((Math.abs(C)>da||Math.abs(D)>da)&&--o>0);return Math.abs(Math.abs(e)-wa)da&&--o>0);o=50,t/=1-.162388*i;do{var h=(h=r*r)*h;r-=a=(r*(.87-952426e-9*h)-t)/(.87-.00476213*h)}while(Math.abs(a)>da&&--o>0);return[r,e]},(d3.geo.ginzburg8=function(){return Sa(an)}).raw=an;var Aa=nn(2.6516,-.76534,.19123,-.047094,1.36289,-.13965,.031762);(d3.geo.ginzburg9=function(){return Sa(Aa)}).raw=Aa,en.invert=function(t,n){var a=i(t),r=i(n),e=-a*t,o=-r*n,u=1>o/e,M=hn(u?o:e,u?e:o),s=M[0],c=M[1];u&&(s=-wa-s);var f=Math.cos(c),t=Math.cos(s)*f,n=Math.sin(s)*f,v=Math.sin(c);return[a*(Math.atan2(n,-v)+pa),r*h(t)]},d3.geo.gringorten=rn(en),fn.invert=function(t,n){var a=(Math.SQRT2-1)/(Math.SQRT2+1),r=Math.sqrt(1-a*a),e=cn(wa,r*r),o=-1,i=un(.5*e-n,-t,r*r),h=ln(i[0],i[1]),u=Math.atan2(h[1],h[0])/o;return[u,2*Math.atan(Math.exp(.5/o*Math.log(a*h[0]*h[0]+a*h[1]*h[1])))-wa]},d3.geo.guyou=rn(fn),(d3.geo.hammerRetroazimuthal=bn).raw=gn;var Ga=d3.geo.azimuthalEqualArea.raw;qn.invert=function(t,n){var a=2*h(n/2);return[t*Math.cos(a/2)/Math.cos(a),a]},(d3.geo.hammer=wn).raw=pn,mn.invert=function(t,n){var a=Math.abs(a=n*(0>n?.5179951515653813:.5686373742600607))>1-da?a>0?wa:-wa:h(a);return[1.1764705882352942*t/Math.cos(a),Math.abs(a=((a+=a)+Math.sin(a))*(0>n?.4102345310814193:.3736990601468637))>1-da?a>0?wa:-wa:h(a)]},(d3.geo.hatano=function(){return Sa(mn)}).raw=mn;var Ca=41+48/36+37/3600;(d3.geo.healpix=Sn).raw=yn,(d3.geo.hill=Rn).raw=Qn;var Da=.7109889596207567,La=.0528035274542;Tn.invert=function(t,n){return n>-Da?Ea.invert(t,n-La):E.invert(t,n)},(d3.geo.sinuMollweide=function(){return Sa(Tn).rotate([-20,-55])}).raw=Tn,xn.invert=function(t,n){return Math.abs(n)>Da?Ea.invert(t,n+(n>0?La:-La)):E.invert(t,n)},(d3.geo.homolosine=function(){return Sa(xn)}).raw=xn,En.invert=function(t,n){return[2/3*pa*t/Math.sqrt(pa*pa/3-n*n),n]},(d3.geo.kavrayskiy7=function(){return Sa(En)}).raw=En,(d3.geo.lagrange=Pn).raw=kn,_n.invert=function(t,n){var a=Math.abs(t),r=Math.abs(n),e=pa/Math.SQRT2,o=da,i=wa;e>r?i*=r/e:o+=6*u(e/r);for(var h=0;25>h;h++){var s=Math.sin(i),c=M(Math.cos(i)),f=Math.sin(i/2),v=Math.cos(i/2),l=Math.sin(o/6),g=Math.cos(o/6),d=.5*o*(1+c)-a,b=i/(v*g)-r,p=c?-.25*o*s/c:0,w=.5*(1+c),q=(1+.5*i*f/v)/(v*g),m=i/v*(l/6)/(g*g),y=p*m-q*w,S=(d*m-b*w)/y,Q=(b*p-d*q)/y;if(i-=S,o-=Q,Math.abs(S)t?-o:o,0>n?-i:i]},(d3.geo.larrivee=function(){return Sa(_n)}).raw=_n,zn.invert=function(t,n){var a=i(t)*pa,r=n/2,e=50;do{var o=a*a,h=r*r,u=a*r,M=a*(.975534+h*(-.119161+o*-.0143059+h*-.0547009))-t,s=r*(1.00384+o*(.0802894+h*-.02855+199025e-9*o)+h*(.0998909+h*-.0491032))-n,c=.975534-h*(.119161+.0143059*3*o+.0547009*h),f=-u*(.238322+.2188036*h+.0286118*o),v=u*(.1605788+7961e-7*o+-0.0571*h),l=1.00384+o*(.0802894+199025e-9*o)+h*(3*(.0998909-.02855*o)-.245516*h),g=f*v-l*c,d=(s*f-M*l)/g,b=(M*v-s*c)/g;a-=d,r-=b}while((Math.abs(d)>da||Math.abs(b)>da)&&--e>0);return e&&[a,r]},(d3.geo.laskowski=function(){return Sa(zn)}).raw=zn,Bn.invert=function(t,n){var a=t*t,r=n*n,e=r+1,o=t?Math.SQRT1_2*Math.sqrt((e-Math.sqrt(a*a+2*a*(r-1)+e*e))/a+1):1/Math.sqrt(e);return[h(t*o),i(n)*u(o)]},(d3.geo.littrow=function(){return Sa(Bn)}).raw=Bn,(d3.geo.loximuthal=function(){return x(Fn).parallel(40)}).raw=Fn,jn.invert=function(t,n){return[t,2.5*Math.atan(Math.exp(.8*n))-.625*pa]},(d3.geo.miller=function(){return Sa(jn)}).raw=jn;var Oa={alaska:[[.9972523,0],[.0052513,-.0041175],[.0074606,.0048125],[-.0153783,-.1968253],[.0636871,-.1408027],[.3660976,-.2937382]],gs48:[[.98879,0],[0,0],[-.050909,0],[0,0],[.075528,0]],gs50:[[.984299,0],[.0211642,.0037608],[-.1036018,-.0575102],[-.0329095,-.0320119],[.0499471,.1223335],[.026046,.0899805],[7388e-7,-.1435792],[.0075848,-.1334108],[-.0216473,.0776645],[-.0225161,.0853673]],miller:[[.9245,0],[0,0],[.01943,0]],lee:[[.721316,0],[0,0],[-.00881625,-.00617325]]};(d3.geo.modifiedStereographic=Gn).raw=An,Cn.invert=function(t,n){var a=Math.sqrt(6),r=Math.sqrt(7),e=3*h(n*r/9);return[t*r/(a*(2*Math.cos(2*e/3)-1)),h(3*Math.sin(e)*a/7)]},(d3.geo.mtFlatPolarParabolic=function(){return Sa(Cn)}).raw=Cn,Dn.invert=function(t,n){var a=n*Math.sqrt(2+Math.SQRT2)/(2*Math.sqrt(3)),r=2*h(a);return[3*Math.SQRT2*t/(1+2*Math.cos(r)/Math.cos(r/2)),h((a+Math.sin(r))/(1+Math.SQRT1_2))]},(d3.geo.mtFlatPolarQuartic=function(){return Sa(Dn)}).raw=Dn,Ln.invert=function(t,n){var a=Math.sqrt(6/(4+pa)),r=n/a;return Math.abs(Math.abs(r)-wa)r?-wa:wa),[1.5*t/(a*(.5+Math.cos(r))),h((r/2+Math.sin(r))/(1+pa/4))]},(d3.geo.mtFlatPolarSinusoidal=function(){return Sa(Ln)}).raw=Ln,On.invert=function(t,n){var a,r=n,e=25;do{var o=r*r,i=o*o;r-=a=(r*(1.007226+o*(.015085+i*(-.044475+.028874*o-.005916*i)))-n)/(1.007226+o*(.045255+i*(-0.311325+.259866*o-.005916*11*i)))}while(Math.abs(a)>da&&--e>0);return[t/(.8707+(o=r*r)*(-.131979+o*(-.013791+o*o*o*(.003971-.001529*o)))),r]},(d3.geo.naturalEarth=function(){return Sa(On)}).raw=On,Hn.invert=function(t,n){for(var a=n/2,r=0,e=1/0;10>r&&Math.abs(e)>da;r++){var o=Math.cos(n/2);n-=e=(n-Math.tan(n/2)-a)/(1-.5/(o*o))}return[2*t/(1+Math.cos(n)),n]},(d3.geo.nellHammer=function(){return Sa(Hn)}).raw=Hn;var Ha=1.0148,Ia=.23185,Ja=-.14499,Ka=.02406,Na=Ha,Ua=5*Ia,Va=7*Ja,Wa=9*Ka,Xa=1.790857183;In.invert=function(t,n){n>Xa?n=Xa:-Xa>n&&(n=-Xa);var a,r=n;do{var e=r*r;r-=a=(r*(Ha+e*e*(Ia+e*(Ja+Ka*e)))-n)/(Na+e*e*(Ua+e*(Va+Wa*e)))}while(Math.abs(a)>da);return[t,r]},(d3.geo.patterson=function(){return Sa(In)}).raw=In;var Ya=rn(fn);(d3.geo.peirceQuincuncial=function(){return Ya().quincuncial(!0).rotate([-90,-90,45]).clipAngle(180-1e-6)}).raw=Ya.raw,Jn.invert=function(t,n){if(Math.abs(n)da&&--o>0);return M=Math.tan(e),[(Math.abs(n)=0||1===o){r=(n>=0?5:-5)*(v+e);var l,g=50;do e=Math.min(18,Math.abs(r)/5),o=Math.floor(e),v=e-o,i=Za[o][1],h=Za[o+1][1],u=Za[Math.min(19,o+2)][1],r-=(l=(n>=0?wa:-wa)*(h+v*(u-i)/2+v*v*(u-2*h+i)/2)-n)*ya;while(Math.abs(l)>ba&&--g>0);break}}while(--o>=0);var d=Za[o][0],b=Za[o+1][0],p=Za[Math.min(19,o+2)][0];return[t/(b+v*(p-d)/2+v*v*(p-2*b+d)/2),r*ma]},(d3.geo.robinson=function(){return Sa(Nn)}).raw=Nn,(d3.geo.satellite=Wn).raw=Vn,Xn.invert=function(t,n){var a=n/1.70711,r=Math.sin(pa/4*a);return[t/(.74482-.34588*r*r),2*Math.atan(a)]},(d3.geo.times=function(){return Sa(Xn)}).raw=Xn,(d3.geo.twoPointEquidistant=Zn).raw=Yn,(d3.geo.twoPointAzimuthal=ta).raw=$n,na.invert=function(t,n){if(Math.abs(n)da&&--h>0);return[i(t)*(Math.sqrt(r*r+4)+r)*pa/4,wa*o]},(d3.geo.vanDerGrinten4=function(){return Sa(ea)}).raw=ea;var $a=function(){var t=4*pa+3*Math.sqrt(3),n=2*Math.sqrt(2*pa*Math.sqrt(3)/t);return R(n*Math.sqrt(3)/pa,n,t/6)}();(d3.geo.wagner4=function(){return Sa($a)}).raw=$a,oa.invert=function(t,n){return[t/Math.sqrt(1-3*n*n/(pa*pa)),n]},(d3.geo.wagner6=function(){return Sa(oa)}).raw=oa,ia.invert=function(t,n){var a=t/2.66723,r=n/1.24104,e=Math.sqrt(a*a+r*r),o=2*h(e/2);return[3*Math.atan2(t*Math.tan(o),2.66723*e),e&&h(n*Math.sin(o)/(1.24104*.90631*e))]},(d3.geo.wagner7=function(){return Sa(ia)}).raw=ia,ha.invert=function(t,n){var a=-.5*(t*t+n*n),r=Math.sqrt(-a*(2+a)),e=n*a+t*r,o=t*a-n*r,i=Math.sqrt(o*o+e*e);return[Math.atan2(r*e,i*(1+a)),i?-h(r*o/i):0]},(d3.geo.wiechel=function(){return Sa(ha)}).raw=ha,ua.invert=function(t,n){var a=t,r=n,e=25;do{var o,i=Math.cos(r),h=Math.sin(r),M=Math.sin(2*r),s=h*h,c=i*i,f=Math.sin(a),v=Math.cos(a/2),l=Math.sin(a/2),g=l*l,d=1-c*v*v,b=d?u(i*v)*Math.sqrt(o=1/d):o=0,p=.5*(2*b*i*l+a/wa)-t,w=.5*(b*h+r)-n,q=.5*o*(c*g+b*i*v*s)+.5/wa,m=o*(f*M/4-b*h*l),y=.125*o*(M*l-b*h*c*f),S=.5*o*(s*v+b*g*i)+.5,Q=m*y-S*q,R=(w*m-p*S)/Q,T=(p*y-w*q)/Q;a-=R,r-=T}while((Math.abs(R)>da||Math.abs(T)>da)&&--e>0);return[a,r]},(d3.geo.winkel3=function(){return Sa(ua)}).raw=ua}(); \ No newline at end of file diff --git a/frontend/vendor/celestial/d3.min.js b/frontend/vendor/celestial/d3.min.js new file mode 100644 index 0000000..258d391 --- /dev/null +++ b/frontend/vendor/celestial/d3.min.js @@ -0,0 +1,5 @@ +!function(){function n(n){return n&&(n.ownerDocument||n.document||n).documentElement}function t(n){return n&&(n.ownerDocument&&n.ownerDocument.defaultView||n.document&&n||n.defaultView)}function e(n,t){return t>n?-1:n>t?1:n>=t?0:NaN}function r(n){return null===n?NaN:+n}function i(n){return!isNaN(n)}function u(n){return{left:function(t,e,r,i){for(arguments.length<3&&(r=0),arguments.length<4&&(i=t.length);i>r;){var u=r+i>>>1;n(t[u],e)<0?r=u+1:i=u}return r},right:function(t,e,r,i){for(arguments.length<3&&(r=0),arguments.length<4&&(i=t.length);i>r;){var u=r+i>>>1;n(t[u],e)>0?i=u:r=u+1}return r}}}function o(n){return n.length}function a(n){for(var t=1;n*t%1;)t*=10;return t}function l(n,t){for(var e in t)Object.defineProperty(n.prototype,e,{value:t[e],enumerable:!1})}function c(){this._=Object.create(null)}function f(n){return(n+="")===bo||n[0]===_o?_o+n:n}function s(n){return(n+="")[0]===_o?n.slice(1):n}function h(n){return f(n)in this._}function p(n){return(n=f(n))in this._&&delete this._[n]}function g(){var n=[];for(var t in this._)n.push(s(t));return n}function v(){var n=0;for(var t in this._)++n;return n}function d(){for(var n in this._)return!1;return!0}function y(){this._=Object.create(null)}function m(n){return n}function M(n,t,e){return function(){var r=e.apply(t,arguments);return r===t?n:r}}function x(n,t){if(t in n)return t;t=t.charAt(0).toUpperCase()+t.slice(1);for(var e=0,r=wo.length;r>e;++e){var i=wo[e]+t;if(i in n)return i}}function b(){}function _(){}function w(n){function t(){for(var t,r=e,i=-1,u=r.length;++ie;e++)for(var i,u=n[e],o=0,a=u.length;a>o;o++)(i=u[o])&&t(i,o,e);return n}function Z(n){return ko(n,qo),n}function V(n){var t,e;return function(r,i,u){var o,a=n[u].update,l=a.length;for(u!=e&&(e=u,t=0),i>=t&&(t=i+1);!(o=a[t])&&++t0&&(n=n.slice(0,a));var c=To.get(n);return c&&(n=c,l=B),a?t?i:r:t?b:u}function $(n,t){return function(e){var r=ao.event;ao.event=e,t[0]=this.__data__;try{n.apply(this,t)}finally{ao.event=r}}}function B(n,t){var e=$(n,t);return function(n){var t=this,r=n.relatedTarget;r&&(r===t||8&r.compareDocumentPosition(t))||e.call(t,n)}}function W(e){var r=".dragsuppress-"+ ++Do,i="click"+r,u=ao.select(t(e)).on("touchmove"+r,S).on("dragstart"+r,S).on("selectstart"+r,S);if(null==Ro&&(Ro="onselectstart"in e?!1:x(e.style,"userSelect")),Ro){var o=n(e).style,a=o[Ro];o[Ro]="none"}return function(n){if(u.on(r,null),Ro&&(o[Ro]=a),n){var t=function(){u.on(i,null)};u.on(i,function(){S(),t()},!0),setTimeout(t,0)}}}function J(n,e){e.changedTouches&&(e=e.changedTouches[0]);var r=n.ownerSVGElement||n;if(r.createSVGPoint){var i=r.createSVGPoint();if(0>Po){var u=t(n);if(u.scrollX||u.scrollY){r=ao.select("body").append("svg").style({position:"absolute",top:0,left:0,margin:0,padding:0,border:"none"},"important");var o=r[0][0].getScreenCTM();Po=!(o.f||o.e),r.remove()}}return Po?(i.x=e.pageX,i.y=e.pageY):(i.x=e.clientX,i.y=e.clientY),i=i.matrixTransform(n.getScreenCTM().inverse()),[i.x,i.y]}var a=n.getBoundingClientRect();return[e.clientX-a.left-n.clientLeft,e.clientY-a.top-n.clientTop]}function G(){return ao.event.changedTouches[0].identifier}function K(n){return n>0?1:0>n?-1:0}function Q(n,t,e){return(t[0]-n[0])*(e[1]-n[1])-(t[1]-n[1])*(e[0]-n[0])}function nn(n){return n>1?0:-1>n?Fo:Math.acos(n)}function tn(n){return n>1?Io:-1>n?-Io:Math.asin(n)}function en(n){return((n=Math.exp(n))-1/n)/2}function rn(n){return((n=Math.exp(n))+1/n)/2}function un(n){return((n=Math.exp(2*n))-1)/(n+1)}function on(n){return(n=Math.sin(n/2))*n}function an(){}function ln(n,t,e){return this instanceof ln?(this.h=+n,this.s=+t,void(this.l=+e)):arguments.length<2?n instanceof ln?new ln(n.h,n.s,n.l):_n(""+n,wn,ln):new ln(n,t,e)}function cn(n,t,e){function r(n){return n>360?n-=360:0>n&&(n+=360),60>n?u+(o-u)*n/60:180>n?o:240>n?u+(o-u)*(240-n)/60:u}function i(n){return Math.round(255*r(n))}var u,o;return n=isNaN(n)?0:(n%=360)<0?n+360:n,t=isNaN(t)?0:0>t?0:t>1?1:t,e=0>e?0:e>1?1:e,o=.5>=e?e*(1+t):e+t-e*t,u=2*e-o,new mn(i(n+120),i(n),i(n-120))}function fn(n,t,e){return this instanceof fn?(this.h=+n,this.c=+t,void(this.l=+e)):arguments.length<2?n instanceof fn?new fn(n.h,n.c,n.l):n instanceof hn?gn(n.l,n.a,n.b):gn((n=Sn((n=ao.rgb(n)).r,n.g,n.b)).l,n.a,n.b):new fn(n,t,e)}function sn(n,t,e){return isNaN(n)&&(n=0),isNaN(t)&&(t=0),new hn(e,Math.cos(n*=Yo)*t,Math.sin(n)*t)}function hn(n,t,e){return this instanceof hn?(this.l=+n,this.a=+t,void(this.b=+e)):arguments.length<2?n instanceof hn?new hn(n.l,n.a,n.b):n instanceof fn?sn(n.h,n.c,n.l):Sn((n=mn(n)).r,n.g,n.b):new hn(n,t,e)}function pn(n,t,e){var r=(n+16)/116,i=r+t/500,u=r-e/200;return i=vn(i)*na,r=vn(r)*ta,u=vn(u)*ea,new mn(yn(3.2404542*i-1.5371385*r-.4985314*u),yn(-.969266*i+1.8760108*r+.041556*u),yn(.0556434*i-.2040259*r+1.0572252*u))}function gn(n,t,e){return n>0?new fn(Math.atan2(e,t)*Zo,Math.sqrt(t*t+e*e),n):new fn(NaN,NaN,n)}function vn(n){return n>.206893034?n*n*n:(n-4/29)/7.787037}function dn(n){return n>.008856?Math.pow(n,1/3):7.787037*n+4/29}function yn(n){return Math.round(255*(.00304>=n?12.92*n:1.055*Math.pow(n,1/2.4)-.055))}function mn(n,t,e){return this instanceof mn?(this.r=~~n,this.g=~~t,void(this.b=~~e)):arguments.length<2?n instanceof mn?new mn(n.r,n.g,n.b):_n(""+n,mn,cn):new mn(n,t,e)}function Mn(n){return new mn(n>>16,n>>8&255,255&n)}function xn(n){return Mn(n)+""}function bn(n){return 16>n?"0"+Math.max(0,n).toString(16):Math.min(255,n).toString(16)}function _n(n,t,e){var r,i,u,o=0,a=0,l=0;if(r=/([a-z]+)\((.*)\)/.exec(n=n.toLowerCase()))switch(i=r[2].split(","),r[1]){case"hsl":return e(parseFloat(i[0]),parseFloat(i[1])/100,parseFloat(i[2])/100);case"rgb":return t(Nn(i[0]),Nn(i[1]),Nn(i[2]))}return(u=ua.get(n))?t(u.r,u.g,u.b):(null==n||"#"!==n.charAt(0)||isNaN(u=parseInt(n.slice(1),16))||(4===n.length?(o=(3840&u)>>4,o=o>>4|o,a=240&u,a=a>>4|a,l=15&u,l=l<<4|l):7===n.length&&(o=(16711680&u)>>16,a=(65280&u)>>8,l=255&u)),t(o,a,l))}function wn(n,t,e){var r,i,u=Math.min(n/=255,t/=255,e/=255),o=Math.max(n,t,e),a=o-u,l=(o+u)/2;return a?(i=.5>l?a/(o+u):a/(2-o-u),r=n==o?(t-e)/a+(e>t?6:0):t==o?(e-n)/a+2:(n-t)/a+4,r*=60):(r=NaN,i=l>0&&1>l?0:r),new ln(r,i,l)}function Sn(n,t,e){n=kn(n),t=kn(t),e=kn(e);var r=dn((.4124564*n+.3575761*t+.1804375*e)/na),i=dn((.2126729*n+.7151522*t+.072175*e)/ta),u=dn((.0193339*n+.119192*t+.9503041*e)/ea);return hn(116*i-16,500*(r-i),200*(i-u))}function kn(n){return(n/=255)<=.04045?n/12.92:Math.pow((n+.055)/1.055,2.4)}function Nn(n){var t=parseFloat(n);return"%"===n.charAt(n.length-1)?Math.round(2.55*t):t}function En(n){return"function"==typeof n?n:function(){return n}}function An(n){return function(t,e,r){return 2===arguments.length&&"function"==typeof e&&(r=e,e=null),Cn(t,e,n,r)}}function Cn(n,t,e,r){function i(){var n,t=l.status;if(!t&&Ln(l)||t>=200&&300>t||304===t){try{n=e.call(u,l)}catch(r){return void o.error.call(u,r)}o.load.call(u,n)}else o.error.call(u,l)}var u={},o=ao.dispatch("beforesend","progress","load","error"),a={},l=new XMLHttpRequest,c=null;return!this.XDomainRequest||"withCredentials"in l||!/^(http(s)?:)?\/\//.test(n)||(l=new XDomainRequest),"onload"in l?l.onload=l.onerror=i:l.onreadystatechange=function(){l.readyState>3&&i()},l.onprogress=function(n){var t=ao.event;ao.event=n;try{o.progress.call(u,l)}finally{ao.event=t}},u.header=function(n,t){return n=(n+"").toLowerCase(),arguments.length<2?a[n]:(null==t?delete a[n]:a[n]=t+"",u)},u.mimeType=function(n){return arguments.length?(t=null==n?null:n+"",u):t},u.responseType=function(n){return arguments.length?(c=n,u):c},u.response=function(n){return e=n,u},["get","post"].forEach(function(n){u[n]=function(){return u.send.apply(u,[n].concat(co(arguments)))}}),u.send=function(e,r,i){if(2===arguments.length&&"function"==typeof r&&(i=r,r=null),l.open(e,n,!0),null==t||"accept"in a||(a.accept=t+",*/*"),l.setRequestHeader)for(var f in a)l.setRequestHeader(f,a[f]);return null!=t&&l.overrideMimeType&&l.overrideMimeType(t),null!=c&&(l.responseType=c),null!=i&&u.on("error",i).on("load",function(n){i(null,n)}),o.beforesend.call(u,l),l.send(null==r?null:r),u},u.abort=function(){return l.abort(),u},ao.rebind(u,o,"on"),null==r?u:u.get(zn(r))}function zn(n){return 1===n.length?function(t,e){n(null==t?e:null)}:n}function Ln(n){var t=n.responseType;return t&&"text"!==t?n.response:n.responseText}function qn(n,t,e){var r=arguments.length;2>r&&(t=0),3>r&&(e=Date.now());var i=e+t,u={c:n,t:i,n:null};return aa?aa.n=u:oa=u,aa=u,la||(ca=clearTimeout(ca),la=1,fa(Tn)),u}function Tn(){var n=Rn(),t=Dn()-n;t>24?(isFinite(t)&&(clearTimeout(ca),ca=setTimeout(Tn,t)),la=0):(la=1,fa(Tn))}function Rn(){for(var n=Date.now(),t=oa;t;)n>=t.t&&t.c(n-t.t)&&(t.c=null),t=t.n;return n}function Dn(){for(var n,t=oa,e=1/0;t;)t.c?(t.t8?function(n){return n/e}:function(n){return n*e},symbol:n}}function jn(n){var t=n.decimal,e=n.thousands,r=n.grouping,i=n.currency,u=r&&e?function(n,t){for(var i=n.length,u=[],o=0,a=r[0],l=0;i>0&&a>0&&(l+a+1>t&&(a=Math.max(1,t-l)),u.push(n.substring(i-=a,i+a)),!((l+=a+1)>t));)a=r[o=(o+1)%r.length];return u.reverse().join(e)}:m;return function(n){var e=ha.exec(n),r=e[1]||" ",o=e[2]||">",a=e[3]||"-",l=e[4]||"",c=e[5],f=+e[6],s=e[7],h=e[8],p=e[9],g=1,v="",d="",y=!1,m=!0;switch(h&&(h=+h.substring(1)),(c||"0"===r&&"="===o)&&(c=r="0",o="="),p){case"n":s=!0,p="g";break;case"%":g=100,d="%",p="f";break;case"p":g=100,d="%",p="r";break;case"b":case"o":case"x":case"X":"#"===l&&(v="0"+p.toLowerCase());case"c":m=!1;case"d":y=!0,h=0;break;case"s":g=-1,p="r"}"$"===l&&(v=i[0],d=i[1]),"r"!=p||h||(p="g"),null!=h&&("g"==p?h=Math.max(1,Math.min(21,h)):"e"!=p&&"f"!=p||(h=Math.max(0,Math.min(20,h)))),p=pa.get(p)||Fn;var M=c&&s;return function(n){var e=d;if(y&&n%1)return"";var i=0>n||0===n&&0>1/n?(n=-n,"-"):"-"===a?"":a;if(0>g){var l=ao.formatPrefix(n,h);n=l.scale(n),e=l.symbol+d}else n*=g;n=p(n,h);var x,b,_=n.lastIndexOf(".");if(0>_){var w=m?n.lastIndexOf("e"):-1;0>w?(x=n,b=""):(x=n.substring(0,w),b=n.substring(w))}else x=n.substring(0,_),b=t+n.substring(_+1);!c&&s&&(x=u(x,1/0));var S=v.length+x.length+b.length+(M?0:i.length),k=f>S?new Array(S=f-S+1).join(r):"";return M&&(x=u(k+x,k.length?f-b.length:1/0)),i+=v,n=x+b,("<"===o?i+n+k:">"===o?k+i+n:"^"===o?k.substring(0,S>>=1)+i+n+k.substring(S):i+(M?n:k+n))+e}}}function Fn(n){return n+""}function Hn(){this._=new Date(arguments.length>1?Date.UTC.apply(this,arguments):arguments[0])}function On(n,t,e){function r(t){var e=n(t),r=u(e,1);return r-t>t-e?e:r}function i(e){return t(e=n(new va(e-1)),1),e}function u(n,e){return t(n=new va(+n),e),n}function o(n,r,u){var o=i(n),a=[];if(u>1)for(;r>o;)e(o)%u||a.push(new Date(+o)),t(o,1);else for(;r>o;)a.push(new Date(+o)),t(o,1);return a}function a(n,t,e){try{va=Hn;var r=new Hn;return r._=n,o(r,t,e)}finally{va=Date}}n.floor=n,n.round=r,n.ceil=i,n.offset=u,n.range=o;var l=n.utc=In(n);return l.floor=l,l.round=In(r),l.ceil=In(i),l.offset=In(u),l.range=a,n}function In(n){return function(t,e){try{va=Hn;var r=new Hn;return r._=t,n(r,e)._}finally{va=Date}}}function Yn(n){function t(n){function t(t){for(var e,i,u,o=[],a=-1,l=0;++aa;){if(r>=c)return-1;if(i=t.charCodeAt(a++),37===i){if(o=t.charAt(a++),u=C[o in ya?t.charAt(a++):o],!u||(r=u(n,e,r))<0)return-1}else if(i!=e.charCodeAt(r++))return-1}return r}function r(n,t,e){_.lastIndex=0;var r=_.exec(t.slice(e));return r?(n.w=w.get(r[0].toLowerCase()),e+r[0].length):-1}function i(n,t,e){x.lastIndex=0;var r=x.exec(t.slice(e));return r?(n.w=b.get(r[0].toLowerCase()),e+r[0].length):-1}function u(n,t,e){N.lastIndex=0;var r=N.exec(t.slice(e));return r?(n.m=E.get(r[0].toLowerCase()),e+r[0].length):-1}function o(n,t,e){S.lastIndex=0;var r=S.exec(t.slice(e));return r?(n.m=k.get(r[0].toLowerCase()),e+r[0].length):-1}function a(n,t,r){return e(n,A.c.toString(),t,r)}function l(n,t,r){return e(n,A.x.toString(),t,r)}function c(n,t,r){return e(n,A.X.toString(),t,r)}function f(n,t,e){var r=M.get(t.slice(e,e+=2).toLowerCase());return null==r?-1:(n.p=r,e)}var s=n.dateTime,h=n.date,p=n.time,g=n.periods,v=n.days,d=n.shortDays,y=n.months,m=n.shortMonths;t.utc=function(n){function e(n){try{va=Hn;var t=new va;return t._=n,r(t)}finally{va=Date}}var r=t(n);return e.parse=function(n){try{va=Hn;var t=r.parse(n);return t&&t._}finally{va=Date}},e.toString=r.toString,e},t.multi=t.utc.multi=ct;var M=ao.map(),x=Vn(v),b=Xn(v),_=Vn(d),w=Xn(d),S=Vn(y),k=Xn(y),N=Vn(m),E=Xn(m);g.forEach(function(n,t){M.set(n.toLowerCase(),t)});var A={a:function(n){return d[n.getDay()]},A:function(n){return v[n.getDay()]},b:function(n){return m[n.getMonth()]},B:function(n){return y[n.getMonth()]},c:t(s),d:function(n,t){return Zn(n.getDate(),t,2)},e:function(n,t){return Zn(n.getDate(),t,2)},H:function(n,t){return Zn(n.getHours(),t,2)},I:function(n,t){return Zn(n.getHours()%12||12,t,2)},j:function(n,t){return Zn(1+ga.dayOfYear(n),t,3)},L:function(n,t){return Zn(n.getMilliseconds(),t,3)},m:function(n,t){return Zn(n.getMonth()+1,t,2)},M:function(n,t){return Zn(n.getMinutes(),t,2)},p:function(n){return g[+(n.getHours()>=12)]},S:function(n,t){return Zn(n.getSeconds(),t,2)},U:function(n,t){return Zn(ga.sundayOfYear(n),t,2)},w:function(n){return n.getDay()},W:function(n,t){return Zn(ga.mondayOfYear(n),t,2)},x:t(h),X:t(p),y:function(n,t){return Zn(n.getFullYear()%100,t,2)},Y:function(n,t){return Zn(n.getFullYear()%1e4,t,4)},Z:at,"%":function(){return"%"}},C={a:r,A:i,b:u,B:o,c:a,d:tt,e:tt,H:rt,I:rt,j:et,L:ot,m:nt,M:it,p:f,S:ut,U:Bn,w:$n,W:Wn,x:l,X:c,y:Gn,Y:Jn,Z:Kn,"%":lt};return t}function Zn(n,t,e){var r=0>n?"-":"",i=(r?-n:n)+"",u=i.length;return r+(e>u?new Array(e-u+1).join(t)+i:i)}function Vn(n){return new RegExp("^(?:"+n.map(ao.requote).join("|")+")","i")}function Xn(n){for(var t=new c,e=-1,r=n.length;++e68?1900:2e3)}function nt(n,t,e){ma.lastIndex=0;var r=ma.exec(t.slice(e,e+2));return r?(n.m=r[0]-1,e+r[0].length):-1}function tt(n,t,e){ma.lastIndex=0;var r=ma.exec(t.slice(e,e+2));return r?(n.d=+r[0],e+r[0].length):-1}function et(n,t,e){ma.lastIndex=0;var r=ma.exec(t.slice(e,e+3));return r?(n.j=+r[0],e+r[0].length):-1}function rt(n,t,e){ma.lastIndex=0;var r=ma.exec(t.slice(e,e+2));return r?(n.H=+r[0],e+r[0].length):-1}function it(n,t,e){ma.lastIndex=0;var r=ma.exec(t.slice(e,e+2));return r?(n.M=+r[0],e+r[0].length):-1}function ut(n,t,e){ma.lastIndex=0;var r=ma.exec(t.slice(e,e+2));return r?(n.S=+r[0],e+r[0].length):-1}function ot(n,t,e){ma.lastIndex=0;var r=ma.exec(t.slice(e,e+3));return r?(n.L=+r[0],e+r[0].length):-1}function at(n){var t=n.getTimezoneOffset(),e=t>0?"-":"+",r=xo(t)/60|0,i=xo(t)%60;return e+Zn(r,"0",2)+Zn(i,"0",2)}function lt(n,t,e){Ma.lastIndex=0;var r=Ma.exec(t.slice(e,e+1));return r?e+r[0].length:-1}function ct(n){for(var t=n.length,e=-1;++e=0?1:-1,a=o*e,l=Math.cos(t),c=Math.sin(t),f=u*c,s=i*l+f*Math.cos(a),h=f*o*Math.sin(a);ka.add(Math.atan2(h,s)),r=n,i=l,u=c}var t,e,r,i,u;Na.point=function(o,a){Na.point=n,r=(t=o)*Yo,i=Math.cos(a=(e=a)*Yo/2+Fo/4),u=Math.sin(a)},Na.lineEnd=function(){n(t,e)}}function dt(n){var t=n[0],e=n[1],r=Math.cos(e);return[r*Math.cos(t),r*Math.sin(t),Math.sin(e)]}function yt(n,t){return n[0]*t[0]+n[1]*t[1]+n[2]*t[2]}function mt(n,t){return[n[1]*t[2]-n[2]*t[1],n[2]*t[0]-n[0]*t[2],n[0]*t[1]-n[1]*t[0]]}function Mt(n,t){n[0]+=t[0],n[1]+=t[1],n[2]+=t[2]}function xt(n,t){return[n[0]*t,n[1]*t,n[2]*t]}function bt(n){var t=Math.sqrt(n[0]*n[0]+n[1]*n[1]+n[2]*n[2]);n[0]/=t,n[1]/=t,n[2]/=t}function _t(n){return[Math.atan2(n[1],n[0]),tn(n[2])]}function wt(n,t){return xo(n[0]-t[0])a;++a)i.point((e=n[a])[0],e[1]);return void i.lineEnd()}var l=new Tt(e,n,null,!0),c=new Tt(e,null,l,!1);l.o=c,u.push(l),o.push(c),l=new Tt(r,n,null,!1),c=new Tt(r,null,l,!0),l.o=c,u.push(l),o.push(c)}}),o.sort(t),qt(u),qt(o),u.length){for(var a=0,l=e,c=o.length;c>a;++a)o[a].e=l=!l;for(var f,s,h=u[0];;){for(var p=h,g=!0;p.v;)if((p=p.n)===h)return;f=p.z,i.lineStart();do{if(p.v=p.o.v=!0,p.e){if(g)for(var a=0,c=f.length;c>a;++a)i.point((s=f[a])[0],s[1]);else r(p.x,p.n.x,1,i);p=p.n}else{if(g){f=p.p.z;for(var a=f.length-1;a>=0;--a)i.point((s=f[a])[0],s[1])}else r(p.x,p.p.x,-1,i);p=p.p}p=p.o,f=p.z,g=!g}while(!p.v);i.lineEnd()}}}function qt(n){if(t=n.length){for(var t,e,r=0,i=n[0];++r0){for(b||(u.polygonStart(),b=!0),u.lineStart();++o1&&2&t&&e.push(e.pop().concat(e.shift())),p.push(e.filter(Dt))}var p,g,v,d=t(u),y=i.invert(r[0],r[1]),m={point:o,lineStart:l,lineEnd:c,polygonStart:function(){m.point=f,m.lineStart=s,m.lineEnd=h,p=[],g=[]},polygonEnd:function(){m.point=o,m.lineStart=l,m.lineEnd=c,p=ao.merge(p);var n=Ot(y,g);p.length?(b||(u.polygonStart(),b=!0),Lt(p,Ut,n,e,u)):n&&(b||(u.polygonStart(),b=!0),u.lineStart(),e(null,null,1,u),u.lineEnd()),b&&(u.polygonEnd(),b=!1),p=g=null},sphere:function(){u.polygonStart(),u.lineStart(),e(null,null,1,u),u.lineEnd(),u.polygonEnd()}},M=Pt(),x=t(M),b=!1;return m}}function Dt(n){return n.length>1}function Pt(){var n,t=[];return{lineStart:function(){t.push(n=[])},point:function(t,e){n.push([t,e])},lineEnd:b,buffer:function(){var e=t;return t=[],n=null,e},rejoin:function(){t.length>1&&t.push(t.pop().concat(t.shift()))}}}function Ut(n,t){return((n=n.x)[0]<0?n[1]-Io-Uo:Io-n[1])-((t=t.x)[0]<0?t[1]-Io-Uo:Io-t[1])}function jt(n){var t,e=NaN,r=NaN,i=NaN;return{lineStart:function(){n.lineStart(),t=1},point:function(u,o){var a=u>0?Fo:-Fo,l=xo(u-e);xo(l-Fo)0?Io:-Io),n.point(i,r),n.lineEnd(),n.lineStart(),n.point(a,r),n.point(u,r),t=0):i!==a&&l>=Fo&&(xo(e-i)Uo?Math.atan((Math.sin(t)*(u=Math.cos(r))*Math.sin(e)-Math.sin(r)*(i=Math.cos(t))*Math.sin(n))/(i*u*o)):(t+r)/2}function Ht(n,t,e,r){var i;if(null==n)i=e*Io,r.point(-Fo,i),r.point(0,i),r.point(Fo,i),r.point(Fo,0),r.point(Fo,-i),r.point(0,-i),r.point(-Fo,-i),r.point(-Fo,0),r.point(-Fo,i);else if(xo(n[0]-t[0])>Uo){var u=n[0]a;++a){var c=t[a],f=c.length;if(f)for(var s=c[0],h=s[0],p=s[1]/2+Fo/4,g=Math.sin(p),v=Math.cos(p),d=1;;){d===f&&(d=0),n=c[d];var y=n[0],m=n[1]/2+Fo/4,M=Math.sin(m),x=Math.cos(m),b=y-h,_=b>=0?1:-1,w=_*b,S=w>Fo,k=g*M;if(ka.add(Math.atan2(k*_*Math.sin(w),v*x+k*Math.cos(w))),u+=S?b+_*Ho:b,S^h>=e^y>=e){var N=mt(dt(s),dt(n));bt(N);var E=mt(i,N);bt(E);var A=(S^b>=0?-1:1)*tn(E[2]);(r>A||r===A&&(N[0]||N[1]))&&(o+=S^b>=0?1:-1)}if(!d++)break;h=y,g=M,v=x,s=n}}return(-Uo>u||Uo>u&&-Uo>ka)^1&o}function It(n){function t(n,t){return Math.cos(n)*Math.cos(t)>u}function e(n){var e,u,l,c,f;return{lineStart:function(){c=l=!1,f=1},point:function(s,h){var p,g=[s,h],v=t(s,h),d=o?v?0:i(s,h):v?i(s+(0>s?Fo:-Fo),h):0;if(!e&&(c=l=v)&&n.lineStart(),v!==l&&(p=r(e,g),(wt(e,p)||wt(g,p))&&(g[0]+=Uo,g[1]+=Uo,v=t(g[0],g[1]))),v!==l)f=0,v?(n.lineStart(),p=r(g,e),n.point(p[0],p[1])):(p=r(e,g),n.point(p[0],p[1]),n.lineEnd()),e=p;else if(a&&e&&o^v){var y;d&u||!(y=r(g,e,!0))||(f=0,o?(n.lineStart(),n.point(y[0][0],y[0][1]),n.point(y[1][0],y[1][1]),n.lineEnd()):(n.point(y[1][0],y[1][1]),n.lineEnd(),n.lineStart(),n.point(y[0][0],y[0][1])))}!v||e&&wt(e,g)||n.point(g[0],g[1]),e=g,l=v,u=d},lineEnd:function(){l&&n.lineEnd(),e=null},clean:function(){return f|(c&&l)<<1}}}function r(n,t,e){var r=dt(n),i=dt(t),o=[1,0,0],a=mt(r,i),l=yt(a,a),c=a[0],f=l-c*c;if(!f)return!e&&n;var s=u*l/f,h=-u*c/f,p=mt(o,a),g=xt(o,s),v=xt(a,h);Mt(g,v);var d=p,y=yt(g,d),m=yt(d,d),M=y*y-m*(yt(g,g)-1);if(!(0>M)){var x=Math.sqrt(M),b=xt(d,(-y-x)/m);if(Mt(b,g),b=_t(b),!e)return b;var _,w=n[0],S=t[0],k=n[1],N=t[1];w>S&&(_=w,w=S,S=_);var E=S-w,A=xo(E-Fo)E;if(!A&&k>N&&(_=k,k=N,N=_),C?A?k+N>0^b[1]<(xo(b[0]-w)Fo^(w<=b[0]&&b[0]<=S)){var z=xt(d,(-y+x)/m);return Mt(z,g),[b,_t(z)]}}}function i(t,e){var r=o?n:Fo-n,i=0;return-r>t?i|=1:t>r&&(i|=2),-r>e?i|=4:e>r&&(i|=8),i}var u=Math.cos(n),o=u>0,a=xo(u)>Uo,l=ve(n,6*Yo);return Rt(t,e,l,o?[0,-n]:[-Fo,n-Fo])}function Yt(n,t,e,r){return function(i){var u,o=i.a,a=i.b,l=o.x,c=o.y,f=a.x,s=a.y,h=0,p=1,g=f-l,v=s-c;if(u=n-l,g||!(u>0)){if(u/=g,0>g){if(h>u)return;p>u&&(p=u)}else if(g>0){if(u>p)return;u>h&&(h=u)}if(u=e-l,g||!(0>u)){if(u/=g,0>g){if(u>p)return;u>h&&(h=u)}else if(g>0){if(h>u)return;p>u&&(p=u)}if(u=t-c,v||!(u>0)){if(u/=v,0>v){if(h>u)return;p>u&&(p=u)}else if(v>0){if(u>p)return;u>h&&(h=u)}if(u=r-c,v||!(0>u)){if(u/=v,0>v){if(u>p)return;u>h&&(h=u)}else if(v>0){if(h>u)return;p>u&&(p=u)}return h>0&&(i.a={x:l+h*g,y:c+h*v}),1>p&&(i.b={x:l+p*g,y:c+p*v}),i}}}}}}function Zt(n,t,e,r){function i(r,i){return xo(r[0]-n)0?0:3:xo(r[0]-e)0?2:1:xo(r[1]-t)0?1:0:i>0?3:2}function u(n,t){return o(n.x,t.x)}function o(n,t){var e=i(n,1),r=i(t,1);return e!==r?e-r:0===e?t[1]-n[1]:1===e?n[0]-t[0]:2===e?n[1]-t[1]:t[0]-n[0]}return function(a){function l(n){for(var t=0,e=d.length,r=n[1],i=0;e>i;++i)for(var u,o=1,a=d[i],l=a.length,c=a[0];l>o;++o)u=a[o],c[1]<=r?u[1]>r&&Q(c,u,n)>0&&++t:u[1]<=r&&Q(c,u,n)<0&&--t,c=u;return 0!==t}function c(u,a,l,c){var f=0,s=0;if(null==u||(f=i(u,l))!==(s=i(a,l))||o(u,a)<0^l>0){do c.point(0===f||3===f?n:e,f>1?r:t);while((f=(f+l+4)%4)!==s)}else c.point(a[0],a[1])}function f(i,u){return i>=n&&e>=i&&u>=t&&r>=u}function s(n,t){f(n,t)&&a.point(n,t)}function h(){C.point=g,d&&d.push(y=[]),S=!0,w=!1,b=_=NaN}function p(){v&&(g(m,M),x&&w&&E.rejoin(),v.push(E.buffer())),C.point=s,w&&a.lineEnd()}function g(n,t){n=Math.max(-Ha,Math.min(Ha,n)),t=Math.max(-Ha,Math.min(Ha,t));var e=f(n,t);if(d&&y.push([n,t]),S)m=n,M=t,x=e,S=!1,e&&(a.lineStart(),a.point(n,t));else if(e&&w)a.point(n,t);else{var r={a:{x:b,y:_},b:{x:n,y:t}};A(r)?(w||(a.lineStart(),a.point(r.a.x,r.a.y)),a.point(r.b.x,r.b.y),e||a.lineEnd(),k=!1):e&&(a.lineStart(),a.point(n,t),k=!1)}b=n,_=t,w=e}var v,d,y,m,M,x,b,_,w,S,k,N=a,E=Pt(),A=Yt(n,t,e,r),C={point:s,lineStart:h,lineEnd:p,polygonStart:function(){a=E,v=[],d=[],k=!0},polygonEnd:function(){a=N,v=ao.merge(v);var t=l([n,r]),e=k&&t,i=v.length;(e||i)&&(a.polygonStart(),e&&(a.lineStart(),c(null,null,1,a),a.lineEnd()),i&&Lt(v,u,t,c,a),a.polygonEnd()),v=d=y=null}};return C}}function Vt(n){var t=0,e=Fo/3,r=ae(n),i=r(t,e);return i.parallels=function(n){return arguments.length?r(t=n[0]*Fo/180,e=n[1]*Fo/180):[t/Fo*180,e/Fo*180]},i}function Xt(n,t){function e(n,t){var e=Math.sqrt(u-2*i*Math.sin(t))/i;return[e*Math.sin(n*=i),o-e*Math.cos(n)]}var r=Math.sin(n),i=(r+Math.sin(t))/2,u=1+r*(2*i-r),o=Math.sqrt(u)/i;return e.invert=function(n,t){var e=o-t;return[Math.atan2(n,e)/i,tn((u-(n*n+e*e)*i*i)/(2*i))]},e}function $t(){function n(n,t){Ia+=i*n-r*t,r=n,i=t}var t,e,r,i;$a.point=function(u,o){$a.point=n,t=r=u,e=i=o},$a.lineEnd=function(){n(t,e)}}function Bt(n,t){Ya>n&&(Ya=n),n>Va&&(Va=n),Za>t&&(Za=t),t>Xa&&(Xa=t)}function Wt(){function n(n,t){o.push("M",n,",",t,u)}function t(n,t){o.push("M",n,",",t),a.point=e}function e(n,t){o.push("L",n,",",t)}function r(){a.point=n}function i(){o.push("Z")}var u=Jt(4.5),o=[],a={point:n,lineStart:function(){a.point=t},lineEnd:r,polygonStart:function(){a.lineEnd=i},polygonEnd:function(){a.lineEnd=r,a.point=n},pointRadius:function(n){return u=Jt(n),a},result:function(){if(o.length){var n=o.join("");return o=[],n}}};return a}function Jt(n){return"m0,"+n+"a"+n+","+n+" 0 1,1 0,"+-2*n+"a"+n+","+n+" 0 1,1 0,"+2*n+"z"}function Gt(n,t){Ca+=n,za+=t,++La}function Kt(){function n(n,r){var i=n-t,u=r-e,o=Math.sqrt(i*i+u*u);qa+=o*(t+n)/2,Ta+=o*(e+r)/2,Ra+=o,Gt(t=n,e=r)}var t,e;Wa.point=function(r,i){Wa.point=n,Gt(t=r,e=i)}}function Qt(){Wa.point=Gt}function ne(){function n(n,t){var e=n-r,u=t-i,o=Math.sqrt(e*e+u*u);qa+=o*(r+n)/2,Ta+=o*(i+t)/2,Ra+=o,o=i*n-r*t,Da+=o*(r+n),Pa+=o*(i+t),Ua+=3*o,Gt(r=n,i=t)}var t,e,r,i;Wa.point=function(u,o){Wa.point=n,Gt(t=r=u,e=i=o)},Wa.lineEnd=function(){n(t,e)}}function te(n){function t(t,e){n.moveTo(t+o,e),n.arc(t,e,o,0,Ho)}function e(t,e){n.moveTo(t,e),a.point=r}function r(t,e){n.lineTo(t,e)}function i(){a.point=t}function u(){n.closePath()}var o=4.5,a={point:t,lineStart:function(){a.point=e},lineEnd:i,polygonStart:function(){a.lineEnd=u},polygonEnd:function(){a.lineEnd=i,a.point=t},pointRadius:function(n){return o=n,a},result:b};return a}function ee(n){function t(n){return(a?r:e)(n)}function e(t){return ue(t,function(e,r){e=n(e,r),t.point(e[0],e[1])})}function r(t){function e(e,r){e=n(e,r),t.point(e[0],e[1])}function r(){M=NaN,S.point=u,t.lineStart()}function u(e,r){var u=dt([e,r]),o=n(e,r);i(M,x,m,b,_,w,M=o[0],x=o[1],m=e,b=u[0],_=u[1],w=u[2],a,t),t.point(M,x)}function o(){S.point=e,t.lineEnd()}function l(){ +r(),S.point=c,S.lineEnd=f}function c(n,t){u(s=n,h=t),p=M,g=x,v=b,d=_,y=w,S.point=u}function f(){i(M,x,m,b,_,w,p,g,s,v,d,y,a,t),S.lineEnd=o,o()}var s,h,p,g,v,d,y,m,M,x,b,_,w,S={point:e,lineStart:r,lineEnd:o,polygonStart:function(){t.polygonStart(),S.lineStart=l},polygonEnd:function(){t.polygonEnd(),S.lineStart=r}};return S}function i(t,e,r,a,l,c,f,s,h,p,g,v,d,y){var m=f-t,M=s-e,x=m*m+M*M;if(x>4*u&&d--){var b=a+p,_=l+g,w=c+v,S=Math.sqrt(b*b+_*_+w*w),k=Math.asin(w/=S),N=xo(xo(w)-1)u||xo((m*z+M*L)/x-.5)>.3||o>a*p+l*g+c*v)&&(i(t,e,r,a,l,c,A,C,N,b/=S,_/=S,w,d,y),y.point(A,C),i(A,C,N,b,_,w,f,s,h,p,g,v,d,y))}}var u=.5,o=Math.cos(30*Yo),a=16;return t.precision=function(n){return arguments.length?(a=(u=n*n)>0&&16,t):Math.sqrt(u)},t}function re(n){var t=ee(function(t,e){return n([t*Zo,e*Zo])});return function(n){return le(t(n))}}function ie(n){this.stream=n}function ue(n,t){return{point:t,sphere:function(){n.sphere()},lineStart:function(){n.lineStart()},lineEnd:function(){n.lineEnd()},polygonStart:function(){n.polygonStart()},polygonEnd:function(){n.polygonEnd()}}}function oe(n){return ae(function(){return n})()}function ae(n){function t(n){return n=a(n[0]*Yo,n[1]*Yo),[n[0]*h+l,c-n[1]*h]}function e(n){return n=a.invert((n[0]-l)/h,(c-n[1])/h),n&&[n[0]*Zo,n[1]*Zo]}function r(){a=Ct(o=se(y,M,x),u);var n=u(v,d);return l=p-n[0]*h,c=g+n[1]*h,i()}function i(){return f&&(f.valid=!1,f=null),t}var u,o,a,l,c,f,s=ee(function(n,t){return n=u(n,t),[n[0]*h+l,c-n[1]*h]}),h=150,p=480,g=250,v=0,d=0,y=0,M=0,x=0,b=Fa,_=m,w=null,S=null;return t.stream=function(n){return f&&(f.valid=!1),f=le(b(o,s(_(n)))),f.valid=!0,f},t.clipAngle=function(n){return arguments.length?(b=null==n?(w=n,Fa):It((w=+n)*Yo),i()):w},t.clipExtent=function(n){return arguments.length?(S=n,_=n?Zt(n[0][0],n[0][1],n[1][0],n[1][1]):m,i()):S},t.scale=function(n){return arguments.length?(h=+n,r()):h},t.translate=function(n){return arguments.length?(p=+n[0],g=+n[1],r()):[p,g]},t.center=function(n){return arguments.length?(v=n[0]%360*Yo,d=n[1]%360*Yo,r()):[v*Zo,d*Zo]},t.rotate=function(n){return arguments.length?(y=n[0]%360*Yo,M=n[1]%360*Yo,x=n.length>2?n[2]%360*Yo:0,r()):[y*Zo,M*Zo,x*Zo]},ao.rebind(t,s,"precision"),function(){return u=n.apply(this,arguments),t.invert=u.invert&&e,r()}}function le(n){return ue(n,function(t,e){n.point(t*Yo,e*Yo)})}function ce(n,t){return[n,t]}function fe(n,t){return[n>Fo?n-Ho:-Fo>n?n+Ho:n,t]}function se(n,t,e){return n?t||e?Ct(pe(n),ge(t,e)):pe(n):t||e?ge(t,e):fe}function he(n){return function(t,e){return t+=n,[t>Fo?t-Ho:-Fo>t?t+Ho:t,e]}}function pe(n){var t=he(n);return t.invert=he(-n),t}function ge(n,t){function e(n,t){var e=Math.cos(t),a=Math.cos(n)*e,l=Math.sin(n)*e,c=Math.sin(t),f=c*r+a*i;return[Math.atan2(l*u-f*o,a*r-c*i),tn(f*u+l*o)]}var r=Math.cos(n),i=Math.sin(n),u=Math.cos(t),o=Math.sin(t);return e.invert=function(n,t){var e=Math.cos(t),a=Math.cos(n)*e,l=Math.sin(n)*e,c=Math.sin(t),f=c*u-l*o;return[Math.atan2(l*u+c*o,a*r+f*i),tn(f*r-a*i)]},e}function ve(n,t){var e=Math.cos(n),r=Math.sin(n);return function(i,u,o,a){var l=o*t;null!=i?(i=de(e,i),u=de(e,u),(o>0?u>i:i>u)&&(i+=o*Ho)):(i=n+o*Ho,u=n-.5*l);for(var c,f=i;o>0?f>u:u>f;f-=l)a.point((c=_t([e,-r*Math.cos(f),-r*Math.sin(f)]))[0],c[1])}}function de(n,t){var e=dt(t);e[0]-=n,bt(e);var r=nn(-e[1]);return((-e[2]<0?-r:r)+2*Math.PI-Uo)%(2*Math.PI)}function ye(n,t,e){var r=ao.range(n,t-Uo,e).concat(t);return function(n){return r.map(function(t){return[n,t]})}}function me(n,t,e){var r=ao.range(n,t-Uo,e).concat(t);return function(n){return r.map(function(t){return[t,n]})}}function Me(n){return n.source}function xe(n){return n.target}function be(n,t,e,r){var i=Math.cos(t),u=Math.sin(t),o=Math.cos(r),a=Math.sin(r),l=i*Math.cos(n),c=i*Math.sin(n),f=o*Math.cos(e),s=o*Math.sin(e),h=2*Math.asin(Math.sqrt(on(r-t)+i*o*on(e-n))),p=1/Math.sin(h),g=h?function(n){var t=Math.sin(n*=h)*p,e=Math.sin(h-n)*p,r=e*l+t*f,i=e*c+t*s,o=e*u+t*a;return[Math.atan2(i,r)*Zo,Math.atan2(o,Math.sqrt(r*r+i*i))*Zo]}:function(){return[n*Zo,t*Zo]};return g.distance=h,g}function _e(){function n(n,i){var u=Math.sin(i*=Yo),o=Math.cos(i),a=xo((n*=Yo)-t),l=Math.cos(a);Ja+=Math.atan2(Math.sqrt((a=o*Math.sin(a))*a+(a=r*u-e*o*l)*a),e*u+r*o*l),t=n,e=u,r=o}var t,e,r;Ga.point=function(i,u){t=i*Yo,e=Math.sin(u*=Yo),r=Math.cos(u),Ga.point=n},Ga.lineEnd=function(){Ga.point=Ga.lineEnd=b}}function we(n,t){function e(t,e){var r=Math.cos(t),i=Math.cos(e),u=n(r*i);return[u*i*Math.sin(t),u*Math.sin(e)]}return e.invert=function(n,e){var r=Math.sqrt(n*n+e*e),i=t(r),u=Math.sin(i),o=Math.cos(i);return[Math.atan2(n*u,r*o),Math.asin(r&&e*u/r)]},e}function Se(n,t){function e(n,t){o>0?-Io+Uo>t&&(t=-Io+Uo):t>Io-Uo&&(t=Io-Uo);var e=o/Math.pow(i(t),u);return[e*Math.sin(u*n),o-e*Math.cos(u*n)]}var r=Math.cos(n),i=function(n){return Math.tan(Fo/4+n/2)},u=n===t?Math.sin(n):Math.log(r/Math.cos(t))/Math.log(i(t)/i(n)),o=r*Math.pow(i(n),u)/u;return u?(e.invert=function(n,t){var e=o-t,r=K(u)*Math.sqrt(n*n+e*e);return[Math.atan2(n,e)/u,2*Math.atan(Math.pow(o/r,1/u))-Io]},e):Ne}function ke(n,t){function e(n,t){var e=u-t;return[e*Math.sin(i*n),u-e*Math.cos(i*n)]}var r=Math.cos(n),i=n===t?Math.sin(n):(r-Math.cos(t))/(t-n),u=r/i+n;return xo(i)i;i++){for(;r>1&&Q(n[e[r-2]],n[e[r-1]],n[i])<=0;)--r;e[r++]=i}return e.slice(0,r)}function qe(n,t){return n[0]-t[0]||n[1]-t[1]}function Te(n,t,e){return(e[0]-t[0])*(n[1]-t[1])<(e[1]-t[1])*(n[0]-t[0])}function Re(n,t,e,r){var i=n[0],u=e[0],o=t[0]-i,a=r[0]-u,l=n[1],c=e[1],f=t[1]-l,s=r[1]-c,h=(a*(l-c)-s*(i-u))/(s*o-a*f);return[i+h*o,l+h*f]}function De(n){var t=n[0],e=n[n.length-1];return!(t[0]-e[0]||t[1]-e[1])}function Pe(){rr(this),this.edge=this.site=this.circle=null}function Ue(n){var t=cl.pop()||new Pe;return t.site=n,t}function je(n){Be(n),ol.remove(n),cl.push(n),rr(n)}function Fe(n){var t=n.circle,e=t.x,r=t.cy,i={x:e,y:r},u=n.P,o=n.N,a=[n];je(n);for(var l=u;l.circle&&xo(e-l.circle.x)f;++f)c=a[f],l=a[f-1],nr(c.edge,l.site,c.site,i);l=a[0],c=a[s-1],c.edge=Ke(l.site,c.site,null,i),$e(l),$e(c)}function He(n){for(var t,e,r,i,u=n.x,o=n.y,a=ol._;a;)if(r=Oe(a,o)-u,r>Uo)a=a.L;else{if(i=u-Ie(a,o),!(i>Uo)){r>-Uo?(t=a.P,e=a):i>-Uo?(t=a,e=a.N):t=e=a;break}if(!a.R){t=a;break}a=a.R}var l=Ue(n);if(ol.insert(t,l),t||e){if(t===e)return Be(t),e=Ue(t.site),ol.insert(l,e),l.edge=e.edge=Ke(t.site,l.site),$e(t),void $e(e);if(!e)return void(l.edge=Ke(t.site,l.site));Be(t),Be(e);var c=t.site,f=c.x,s=c.y,h=n.x-f,p=n.y-s,g=e.site,v=g.x-f,d=g.y-s,y=2*(h*d-p*v),m=h*h+p*p,M=v*v+d*d,x={x:(d*m-p*M)/y+f,y:(h*M-v*m)/y+s};nr(e.edge,c,g,x),l.edge=Ke(c,n,null,x),e.edge=Ke(n,g,null,x),$e(t),$e(e)}}function Oe(n,t){var e=n.site,r=e.x,i=e.y,u=i-t;if(!u)return r;var o=n.P;if(!o)return-(1/0);e=o.site;var a=e.x,l=e.y,c=l-t;if(!c)return a;var f=a-r,s=1/u-1/c,h=f/c;return s?(-h+Math.sqrt(h*h-2*s*(f*f/(-2*c)-l+c/2+i-u/2)))/s+r:(r+a)/2}function Ie(n,t){var e=n.N;if(e)return Oe(e,t);var r=n.site;return r.y===t?r.x:1/0}function Ye(n){this.site=n,this.edges=[]}function Ze(n){for(var t,e,r,i,u,o,a,l,c,f,s=n[0][0],h=n[1][0],p=n[0][1],g=n[1][1],v=ul,d=v.length;d--;)if(u=v[d],u&&u.prepare())for(a=u.edges,l=a.length,o=0;l>o;)f=a[o].end(),r=f.x,i=f.y,c=a[++o%l].start(),t=c.x,e=c.y,(xo(r-t)>Uo||xo(i-e)>Uo)&&(a.splice(o,0,new tr(Qe(u.site,f,xo(r-s)Uo?{x:s,y:xo(t-s)Uo?{x:xo(e-g)Uo?{x:h,y:xo(t-h)Uo?{x:xo(e-p)=-jo)){var p=l*l+c*c,g=f*f+s*s,v=(s*p-c*g)/h,d=(l*g-f*p)/h,s=d+a,y=fl.pop()||new Xe;y.arc=n,y.site=i,y.x=v+o,y.y=s+Math.sqrt(v*v+d*d),y.cy=s,n.circle=y;for(var m=null,M=ll._;M;)if(y.yd||d>=a)return;if(h>g){if(u){if(u.y>=c)return}else u={x:d,y:l};e={x:d,y:c}}else{if(u){if(u.yr||r>1)if(h>g){if(u){if(u.y>=c)return}else u={x:(l-i)/r,y:l};e={x:(c-i)/r,y:c}}else{if(u){if(u.yp){if(u){if(u.x>=a)return}else u={x:o,y:r*o+i};e={x:a,y:r*a+i}}else{if(u){if(u.xu||s>o||r>h||i>p)){if(g=n.point){var g,v=t-n.x,d=e-n.y,y=v*v+d*d;if(l>y){var m=Math.sqrt(l=y);r=t-m,i=e-m,u=t+m,o=e+m,a=g}}for(var M=n.nodes,x=.5*(f+h),b=.5*(s+p),_=t>=x,w=e>=b,S=w<<1|_,k=S+4;k>S;++S)if(n=M[3&S])switch(3&S){case 0:c(n,f,s,x,b);break;case 1:c(n,x,s,h,b);break;case 2:c(n,f,b,x,p);break;case 3:c(n,x,b,h,p)}}}(n,r,i,u,o),a}function vr(n,t){n=ao.rgb(n),t=ao.rgb(t);var e=n.r,r=n.g,i=n.b,u=t.r-e,o=t.g-r,a=t.b-i;return function(n){return"#"+bn(Math.round(e+u*n))+bn(Math.round(r+o*n))+bn(Math.round(i+a*n))}}function dr(n,t){var e,r={},i={};for(e in n)e in t?r[e]=Mr(n[e],t[e]):i[e]=n[e];for(e in t)e in n||(i[e]=t[e]);return function(n){for(e in r)i[e]=r[e](n);return i}}function yr(n,t){return n=+n,t=+t,function(e){return n*(1-e)+t*e}}function mr(n,t){var e,r,i,u=hl.lastIndex=pl.lastIndex=0,o=-1,a=[],l=[];for(n+="",t+="";(e=hl.exec(n))&&(r=pl.exec(t));)(i=r.index)>u&&(i=t.slice(u,i),a[o]?a[o]+=i:a[++o]=i),(e=e[0])===(r=r[0])?a[o]?a[o]+=r:a[++o]=r:(a[++o]=null,l.push({i:o,x:yr(e,r)})),u=pl.lastIndex;return ur;++r)a[(e=l[r]).i]=e.x(n);return a.join("")})}function Mr(n,t){for(var e,r=ao.interpolators.length;--r>=0&&!(e=ao.interpolators[r](n,t)););return e}function xr(n,t){var e,r=[],i=[],u=n.length,o=t.length,a=Math.min(n.length,t.length);for(e=0;a>e;++e)r.push(Mr(n[e],t[e]));for(;u>e;++e)i[e]=n[e];for(;o>e;++e)i[e]=t[e];return function(n){for(e=0;a>e;++e)i[e]=r[e](n);return i}}function br(n){return function(t){return 0>=t?0:t>=1?1:n(t)}}function _r(n){return function(t){return 1-n(1-t)}}function wr(n){return function(t){return.5*(.5>t?n(2*t):2-n(2-2*t))}}function Sr(n){return n*n}function kr(n){return n*n*n}function Nr(n){if(0>=n)return 0;if(n>=1)return 1;var t=n*n,e=t*n;return 4*(.5>n?e:3*(n-t)+e-.75)}function Er(n){return function(t){return Math.pow(t,n)}}function Ar(n){return 1-Math.cos(n*Io)}function Cr(n){return Math.pow(2,10*(n-1))}function zr(n){return 1-Math.sqrt(1-n*n)}function Lr(n,t){var e;return arguments.length<2&&(t=.45),arguments.length?e=t/Ho*Math.asin(1/n):(n=1,e=t/4),function(r){return 1+n*Math.pow(2,-10*r)*Math.sin((r-e)*Ho/t)}}function qr(n){return n||(n=1.70158),function(t){return t*t*((n+1)*t-n)}}function Tr(n){return 1/2.75>n?7.5625*n*n:2/2.75>n?7.5625*(n-=1.5/2.75)*n+.75:2.5/2.75>n?7.5625*(n-=2.25/2.75)*n+.9375:7.5625*(n-=2.625/2.75)*n+.984375}function Rr(n,t){n=ao.hcl(n),t=ao.hcl(t);var e=n.h,r=n.c,i=n.l,u=t.h-e,o=t.c-r,a=t.l-i;return isNaN(o)&&(o=0,r=isNaN(r)?t.c:r),isNaN(u)?(u=0,e=isNaN(e)?t.h:e):u>180?u-=360:-180>u&&(u+=360),function(n){return sn(e+u*n,r+o*n,i+a*n)+""}}function Dr(n,t){n=ao.hsl(n),t=ao.hsl(t);var e=n.h,r=n.s,i=n.l,u=t.h-e,o=t.s-r,a=t.l-i;return isNaN(o)&&(o=0,r=isNaN(r)?t.s:r),isNaN(u)?(u=0,e=isNaN(e)?t.h:e):u>180?u-=360:-180>u&&(u+=360),function(n){return cn(e+u*n,r+o*n,i+a*n)+""}}function Pr(n,t){n=ao.lab(n),t=ao.lab(t);var e=n.l,r=n.a,i=n.b,u=t.l-e,o=t.a-r,a=t.b-i;return function(n){return pn(e+u*n,r+o*n,i+a*n)+""}}function Ur(n,t){return t-=n,function(e){return Math.round(n+t*e)}}function jr(n){var t=[n.a,n.b],e=[n.c,n.d],r=Hr(t),i=Fr(t,e),u=Hr(Or(e,t,-i))||0;t[0]*e[1]180?t+=360:t-n>180&&(n+=360),r.push({i:e.push(Ir(e)+"rotate(",null,")")-2,x:yr(n,t)})):t&&e.push(Ir(e)+"rotate("+t+")")}function Vr(n,t,e,r){n!==t?r.push({i:e.push(Ir(e)+"skewX(",null,")")-2,x:yr(n,t)}):t&&e.push(Ir(e)+"skewX("+t+")")}function Xr(n,t,e,r){if(n[0]!==t[0]||n[1]!==t[1]){var i=e.push(Ir(e)+"scale(",null,",",null,")");r.push({i:i-4,x:yr(n[0],t[0])},{i:i-2,x:yr(n[1],t[1])})}else 1===t[0]&&1===t[1]||e.push(Ir(e)+"scale("+t+")")}function $r(n,t){var e=[],r=[];return n=ao.transform(n),t=ao.transform(t),Yr(n.translate,t.translate,e,r),Zr(n.rotate,t.rotate,e,r),Vr(n.skew,t.skew,e,r),Xr(n.scale,t.scale,e,r),n=t=null,function(n){for(var t,i=-1,u=r.length;++i=0;)e.push(i[r])}function oi(n,t){for(var e=[n],r=[];null!=(n=e.pop());)if(r.push(n),(u=n.children)&&(i=u.length))for(var i,u,o=-1;++oe;++e)(t=n[e][1])>i&&(r=e,i=t);return r}function yi(n){return n.reduce(mi,0)}function mi(n,t){return n+t[1]}function Mi(n,t){return xi(n,Math.ceil(Math.log(t.length)/Math.LN2+1))}function xi(n,t){for(var e=-1,r=+n[0],i=(n[1]-r)/t,u=[];++e<=t;)u[e]=i*e+r;return u}function bi(n){return[ao.min(n),ao.max(n)]}function _i(n,t){return n.value-t.value}function wi(n,t){var e=n._pack_next;n._pack_next=t,t._pack_prev=n,t._pack_next=e,e._pack_prev=t}function Si(n,t){n._pack_next=t,t._pack_prev=n}function ki(n,t){var e=t.x-n.x,r=t.y-n.y,i=n.r+t.r;return.999*i*i>e*e+r*r}function Ni(n){function t(n){f=Math.min(n.x-n.r,f),s=Math.max(n.x+n.r,s),h=Math.min(n.y-n.r,h),p=Math.max(n.y+n.r,p)}if((e=n.children)&&(c=e.length)){var e,r,i,u,o,a,l,c,f=1/0,s=-(1/0),h=1/0,p=-(1/0);if(e.forEach(Ei),r=e[0],r.x=-r.r,r.y=0,t(r),c>1&&(i=e[1],i.x=i.r,i.y=0,t(i),c>2))for(u=e[2],zi(r,i,u),t(u),wi(r,u),r._pack_prev=u,wi(u,i),i=r._pack_next,o=3;c>o;o++){zi(r,i,u=e[o]);var g=0,v=1,d=1;for(a=i._pack_next;a!==i;a=a._pack_next,v++)if(ki(a,u)){g=1;break}if(1==g)for(l=r._pack_prev;l!==a._pack_prev&&!ki(l,u);l=l._pack_prev,d++);g?(d>v||v==d&&i.ro;o++)u=e[o],u.x-=y,u.y-=m,M=Math.max(M,u.r+Math.sqrt(u.x*u.x+u.y*u.y));n.r=M,e.forEach(Ai)}}function Ei(n){n._pack_next=n._pack_prev=n}function Ai(n){delete n._pack_next,delete n._pack_prev}function Ci(n,t,e,r){var i=n.children;if(n.x=t+=r*n.x,n.y=e+=r*n.y,n.r*=r,i)for(var u=-1,o=i.length;++u=0;)t=i[u],t.z+=e,t.m+=e,e+=t.s+(r+=t.c)}function Pi(n,t,e){return n.a.parent===t.parent?n.a:e}function Ui(n){return 1+ao.max(n,function(n){return n.y})}function ji(n){return n.reduce(function(n,t){return n+t.x},0)/n.length}function Fi(n){var t=n.children;return t&&t.length?Fi(t[0]):n}function Hi(n){var t,e=n.children;return e&&(t=e.length)?Hi(e[t-1]):n}function Oi(n){return{x:n.x,y:n.y,dx:n.dx,dy:n.dy}}function Ii(n,t){var e=n.x+t[3],r=n.y+t[0],i=n.dx-t[1]-t[3],u=n.dy-t[0]-t[2];return 0>i&&(e+=i/2,i=0),0>u&&(r+=u/2,u=0),{x:e,y:r,dx:i,dy:u}}function Yi(n){var t=n[0],e=n[n.length-1];return e>t?[t,e]:[e,t]}function Zi(n){return n.rangeExtent?n.rangeExtent():Yi(n.range())}function Vi(n,t,e,r){var i=e(n[0],n[1]),u=r(t[0],t[1]);return function(n){return u(i(n))}}function Xi(n,t){var e,r=0,i=n.length-1,u=n[r],o=n[i];return u>o&&(e=r,r=i,i=e,e=u,u=o,o=e),n[r]=t.floor(u),n[i]=t.ceil(o),n}function $i(n){return n?{floor:function(t){return Math.floor(t/n)*n},ceil:function(t){return Math.ceil(t/n)*n}}:Sl}function Bi(n,t,e,r){var i=[],u=[],o=0,a=Math.min(n.length,t.length)-1;for(n[a]2?Bi:Vi,l=r?Wr:Br;return o=i(n,t,l,e),a=i(t,n,l,Mr),u}function u(n){return o(n)}var o,a;return u.invert=function(n){return a(n)},u.domain=function(t){return arguments.length?(n=t.map(Number),i()):n},u.range=function(n){return arguments.length?(t=n,i()):t},u.rangeRound=function(n){return u.range(n).interpolate(Ur)},u.clamp=function(n){return arguments.length?(r=n,i()):r},u.interpolate=function(n){return arguments.length?(e=n,i()):e},u.ticks=function(t){return Qi(n,t)},u.tickFormat=function(t,e){return nu(n,t,e)},u.nice=function(t){return Gi(n,t),i()},u.copy=function(){return Wi(n,t,e,r)},i()}function Ji(n,t){return ao.rebind(n,t,"range","rangeRound","interpolate","clamp")}function Gi(n,t){return Xi(n,$i(Ki(n,t)[2])),Xi(n,$i(Ki(n,t)[2])),n}function Ki(n,t){null==t&&(t=10);var e=Yi(n),r=e[1]-e[0],i=Math.pow(10,Math.floor(Math.log(r/t)/Math.LN10)),u=t/r*i;return.15>=u?i*=10:.35>=u?i*=5:.75>=u&&(i*=2),e[0]=Math.ceil(e[0]/i)*i,e[1]=Math.floor(e[1]/i)*i+.5*i,e[2]=i,e}function Qi(n,t){return ao.range.apply(ao,Ki(n,t))}function nu(n,t,e){var r=Ki(n,t);if(e){var i=ha.exec(e);if(i.shift(),"s"===i[8]){var u=ao.formatPrefix(Math.max(xo(r[0]),xo(r[1])));return i[7]||(i[7]="."+tu(u.scale(r[2]))),i[8]="f",e=ao.format(i.join("")),function(n){return e(u.scale(n))+u.symbol}}i[7]||(i[7]="."+eu(i[8],r)),e=i.join("")}else e=",."+tu(r[2])+"f";return ao.format(e)}function tu(n){return-Math.floor(Math.log(n)/Math.LN10+.01)}function eu(n,t){var e=tu(t[2]);return n in kl?Math.abs(e-tu(Math.max(xo(t[0]),xo(t[1]))))+ +("e"!==n):e-2*("%"===n)}function ru(n,t,e,r){function i(n){return(e?Math.log(0>n?0:n):-Math.log(n>0?0:-n))/Math.log(t)}function u(n){return e?Math.pow(t,n):-Math.pow(t,-n)}function o(t){return n(i(t))}return o.invert=function(t){return u(n.invert(t))},o.domain=function(t){return arguments.length?(e=t[0]>=0,n.domain((r=t.map(Number)).map(i)),o):r},o.base=function(e){return arguments.length?(t=+e,n.domain(r.map(i)),o):t},o.nice=function(){var t=Xi(r.map(i),e?Math:El);return n.domain(t),r=t.map(u),o},o.ticks=function(){var n=Yi(r),o=[],a=n[0],l=n[1],c=Math.floor(i(a)),f=Math.ceil(i(l)),s=t%1?2:t;if(isFinite(f-c)){if(e){for(;f>c;c++)for(var h=1;s>h;h++)o.push(u(c)*h);o.push(u(c))}else for(o.push(u(c));c++0;h--)o.push(u(c)*h);for(c=0;o[c]l;f--);o=o.slice(c,f)}return o},o.tickFormat=function(n,e){if(!arguments.length)return Nl;arguments.length<2?e=Nl:"function"!=typeof e&&(e=ao.format(e));var r=Math.max(1,t*n/o.ticks().length);return function(n){var o=n/u(Math.round(i(n)));return t-.5>o*t&&(o*=t),r>=o?e(n):""}},o.copy=function(){return ru(n.copy(),t,e,r)},Ji(o,n)}function iu(n,t,e){function r(t){return n(i(t))}var i=uu(t),u=uu(1/t);return r.invert=function(t){return u(n.invert(t))},r.domain=function(t){return arguments.length?(n.domain((e=t.map(Number)).map(i)),r):e},r.ticks=function(n){return Qi(e,n)},r.tickFormat=function(n,t){return nu(e,n,t)},r.nice=function(n){return r.domain(Gi(e,n))},r.exponent=function(o){return arguments.length?(i=uu(t=o),u=uu(1/t),n.domain(e.map(i)),r):t},r.copy=function(){return iu(n.copy(),t,e)},Ji(r,n)}function uu(n){return function(t){return 0>t?-Math.pow(-t,n):Math.pow(t,n)}}function ou(n,t){function e(e){return u[((i.get(e)||("range"===t.t?i.set(e,n.push(e)):NaN))-1)%u.length]}function r(t,e){return ao.range(n.length).map(function(n){return t+e*n})}var i,u,o;return e.domain=function(r){if(!arguments.length)return n;n=[],i=new c;for(var u,o=-1,a=r.length;++oe?[NaN,NaN]:[e>0?a[e-1]:n[0],et?NaN:t/u+n,[t,t+1/u]},r.copy=function(){return lu(n,t,e)},i()}function cu(n,t){function e(e){return e>=e?t[ao.bisect(n,e)]:void 0}return e.domain=function(t){return arguments.length?(n=t,e):n},e.range=function(n){return arguments.length?(t=n,e):t},e.invertExtent=function(e){return e=t.indexOf(e),[n[e-1],n[e]]},e.copy=function(){return cu(n,t)},e}function fu(n){function t(n){return+n}return t.invert=t,t.domain=t.range=function(e){return arguments.length?(n=e.map(t),t):n},t.ticks=function(t){return Qi(n,t)},t.tickFormat=function(t,e){return nu(n,t,e)},t.copy=function(){return fu(n)},t}function su(){return 0}function hu(n){return n.innerRadius}function pu(n){return n.outerRadius}function gu(n){return n.startAngle}function vu(n){return n.endAngle}function du(n){return n&&n.padAngle}function yu(n,t,e,r){return(n-e)*t-(t-r)*n>0?0:1}function mu(n,t,e,r,i){var u=n[0]-t[0],o=n[1]-t[1],a=(i?r:-r)/Math.sqrt(u*u+o*o),l=a*o,c=-a*u,f=n[0]+l,s=n[1]+c,h=t[0]+l,p=t[1]+c,g=(f+h)/2,v=(s+p)/2,d=h-f,y=p-s,m=d*d+y*y,M=e-r,x=f*p-h*s,b=(0>y?-1:1)*Math.sqrt(Math.max(0,M*M*m-x*x)),_=(x*y-d*b)/m,w=(-x*d-y*b)/m,S=(x*y+d*b)/m,k=(-x*d+y*b)/m,N=_-g,E=w-v,A=S-g,C=k-v;return N*N+E*E>A*A+C*C&&(_=S,w=k),[[_-l,w-c],[_*e/M,w*e/M]]}function Mu(n){function t(t){function o(){c.push("M",u(n(f),a))}for(var l,c=[],f=[],s=-1,h=t.length,p=En(e),g=En(r);++s1?n.join("L"):n+"Z"}function bu(n){return n.join("L")+"Z"}function _u(n){for(var t=0,e=n.length,r=n[0],i=[r[0],",",r[1]];++t1&&i.push("H",r[0]),i.join("")}function wu(n){for(var t=0,e=n.length,r=n[0],i=[r[0],",",r[1]];++t1){a=t[1],u=n[l],l++,r+="C"+(i[0]+o[0])+","+(i[1]+o[1])+","+(u[0]-a[0])+","+(u[1]-a[1])+","+u[0]+","+u[1];for(var c=2;c9&&(i=3*t/Math.sqrt(i),o[a]=i*e,o[a+1]=i*r));for(a=-1;++a<=l;)i=(n[Math.min(l,a+1)][0]-n[Math.max(0,a-1)][0])/(6*(1+o[a]*o[a])),u.push([i||0,o[a]*i||0]);return u}function Fu(n){return n.length<3?xu(n):n[0]+Au(n,ju(n))}function Hu(n){for(var t,e,r,i=-1,u=n.length;++i=t?o(n-t):void(f.c=o)}function o(e){var i=g.active,u=g[i];u&&(u.timer.c=null,u.timer.t=NaN,--g.count,delete g[i],u.event&&u.event.interrupt.call(n,n.__data__,u.index));for(var o in g)if(r>+o){var c=g[o];c.timer.c=null,c.timer.t=NaN,--g.count,delete g[o]}f.c=a,qn(function(){return f.c&&a(e||1)&&(f.c=null,f.t=NaN),1},0,l),g.active=r,v.event&&v.event.start.call(n,n.__data__,t),p=[],v.tween.forEach(function(e,r){(r=r.call(n,n.__data__,t))&&p.push(r)}),h=v.ease,s=v.duration}function a(i){for(var u=i/s,o=h(u),a=p.length;a>0;)p[--a].call(n,o);return u>=1?(v.event&&v.event.end.call(n,n.__data__,t),--g.count?delete g[r]:delete n[e],1):void 0}var l,f,s,h,p,g=n[e]||(n[e]={active:0,count:0}),v=g[r];v||(l=i.time,f=qn(u,0,l),v=g[r]={tween:new c,time:l,timer:f,delay:i.delay,duration:i.duration,ease:i.ease,index:t},i=null,++g.count)}function no(n,t,e){n.attr("transform",function(n){var r=t(n);return"translate("+(isFinite(r)?r:e(n))+",0)"})}function to(n,t,e){n.attr("transform",function(n){var r=t(n);return"translate(0,"+(isFinite(r)?r:e(n))+")"})}function eo(n){return n.toISOString()}function ro(n,t,e){function r(t){return n(t)}function i(n,e){var r=n[1]-n[0],i=r/e,u=ao.bisect(Kl,i);return u==Kl.length?[t.year,Ki(n.map(function(n){return n/31536e6}),e)[2]]:u?t[i/Kl[u-1]1?{floor:function(t){for(;e(t=n.floor(t));)t=io(t-1);return t},ceil:function(t){for(;e(t=n.ceil(t));)t=io(+t+1);return t}}:n))},r.ticks=function(n,t){var e=Yi(r.domain()),u=null==n?i(e,10):"number"==typeof n?i(e,n):!n.range&&[{range:n},t];return u&&(n=u[0],t=u[1]),n.range(e[0],io(+e[1]+1),1>t?1:t)},r.tickFormat=function(){return e},r.copy=function(){return ro(n.copy(),t,e)},Ji(r,n)}function io(n){return new Date(n)}function uo(n){return JSON.parse(n.responseText)}function oo(n){var t=fo.createRange();return t.selectNode(fo.body),t.createContextualFragment(n.responseText)}var ao={version:"3.5.17"},lo=[].slice,co=function(n){return lo.call(n)},fo=this.document;if(fo)try{co(fo.documentElement.childNodes)[0].nodeType}catch(so){co=function(n){for(var t=n.length,e=new Array(t);t--;)e[t]=n[t];return e}}if(Date.now||(Date.now=function(){return+new Date}),fo)try{fo.createElement("DIV").style.setProperty("opacity",0,"")}catch(ho){var po=this.Element.prototype,go=po.setAttribute,vo=po.setAttributeNS,yo=this.CSSStyleDeclaration.prototype,mo=yo.setProperty;po.setAttribute=function(n,t){go.call(this,n,t+"")},po.setAttributeNS=function(n,t,e){vo.call(this,n,t,e+"")},yo.setProperty=function(n,t,e){mo.call(this,n,t+"",e)}}ao.ascending=e,ao.descending=function(n,t){return n>t?-1:t>n?1:t>=n?0:NaN},ao.min=function(n,t){var e,r,i=-1,u=n.length;if(1===arguments.length){for(;++i=r){e=r;break}for(;++ir&&(e=r)}else{for(;++i=r){e=r;break}for(;++ir&&(e=r)}return e},ao.max=function(n,t){var e,r,i=-1,u=n.length;if(1===arguments.length){for(;++i=r){e=r;break}for(;++ie&&(e=r)}else{for(;++i=r){e=r;break}for(;++ie&&(e=r)}return e},ao.extent=function(n,t){var e,r,i,u=-1,o=n.length;if(1===arguments.length){for(;++u=r){e=i=r;break}for(;++ur&&(e=r),r>i&&(i=r))}else{for(;++u=r){e=i=r;break}for(;++ur&&(e=r),r>i&&(i=r))}return[e,i]},ao.sum=function(n,t){var e,r=0,u=n.length,o=-1;if(1===arguments.length)for(;++o1?l/(f-1):void 0},ao.deviation=function(){var n=ao.variance.apply(this,arguments);return n?Math.sqrt(n):n};var Mo=u(e);ao.bisectLeft=Mo.left,ao.bisect=ao.bisectRight=Mo.right,ao.bisector=function(n){return u(1===n.length?function(t,r){return e(n(t),r)}:n)},ao.shuffle=function(n,t,e){(u=arguments.length)<3&&(e=n.length,2>u&&(t=0));for(var r,i,u=e-t;u;)i=Math.random()*u--|0,r=n[u+t],n[u+t]=n[i+t],n[i+t]=r;return n},ao.permute=function(n,t){for(var e=t.length,r=new Array(e);e--;)r[e]=n[t[e]];return r},ao.pairs=function(n){for(var t,e=0,r=n.length-1,i=n[0],u=new Array(0>r?0:r);r>e;)u[e]=[t=i,i=n[++e]];return u},ao.transpose=function(n){if(!(i=n.length))return[];for(var t=-1,e=ao.min(n,o),r=new Array(e);++t=0;)for(r=n[i],t=r.length;--t>=0;)e[--o]=r[t];return e};var xo=Math.abs;ao.range=function(n,t,e){if(arguments.length<3&&(e=1,arguments.length<2&&(t=n,n=0)),(t-n)/e===1/0)throw new Error("infinite range");var r,i=[],u=a(xo(e)),o=-1;if(n*=u,t*=u,e*=u,0>e)for(;(r=n+e*++o)>t;)i.push(r/u);else for(;(r=n+e*++o)=u.length)return r?r.call(i,o):e?o.sort(e):o;for(var l,f,s,h,p=-1,g=o.length,v=u[a++],d=new c;++p=u.length)return n;var r=[],i=o[e++];return n.forEach(function(n,i){r.push({key:n,values:t(i,e)})}),i?r.sort(function(n,t){return i(n.key,t.key)}):r}var e,r,i={},u=[],o=[];return i.map=function(t,e){return n(e,t,0)},i.entries=function(e){return t(n(ao.map,e,0),0)},i.key=function(n){return u.push(n),i},i.sortKeys=function(n){return o[u.length-1]=n,i},i.sortValues=function(n){return e=n,i},i.rollup=function(n){return r=n,i},i},ao.set=function(n){var t=new y;if(n)for(var e=0,r=n.length;r>e;++e)t.add(n[e]);return t},l(y,{has:h,add:function(n){return this._[f(n+="")]=!0,n},remove:p,values:g,size:v,empty:d,forEach:function(n){for(var t in this._)n.call(this,s(t))}}),ao.behavior={},ao.rebind=function(n,t){for(var e,r=1,i=arguments.length;++r=0&&(r=n.slice(e+1),n=n.slice(0,e)),n)return arguments.length<2?this[n].on(r):this[n].on(r,t);if(2===arguments.length){if(null==t)for(n in this)this.hasOwnProperty(n)&&this[n].on(r,null);return this}},ao.event=null,ao.requote=function(n){return n.replace(So,"\\$&")};var So=/[\\\^\$\*\+\?\|\[\]\(\)\.\{\}]/g,ko={}.__proto__?function(n,t){n.__proto__=t}:function(n,t){for(var e in t)n[e]=t[e]},No=function(n,t){return t.querySelector(n)},Eo=function(n,t){return t.querySelectorAll(n)},Ao=function(n,t){var e=n.matches||n[x(n,"matchesSelector")];return(Ao=function(n,t){return e.call(n,t)})(n,t)};"function"==typeof Sizzle&&(No=function(n,t){return Sizzle(n,t)[0]||null},Eo=Sizzle,Ao=Sizzle.matchesSelector),ao.selection=function(){return ao.select(fo.documentElement)};var Co=ao.selection.prototype=[];Co.select=function(n){var t,e,r,i,u=[];n=A(n);for(var o=-1,a=this.length;++o=0&&"xmlns"!==(e=n.slice(0,t))&&(n=n.slice(t+1)),Lo.hasOwnProperty(e)?{space:Lo[e],local:n}:n}},Co.attr=function(n,t){if(arguments.length<2){if("string"==typeof n){var e=this.node();return n=ao.ns.qualify(n),n.local?e.getAttributeNS(n.space,n.local):e.getAttribute(n)}for(t in n)this.each(z(t,n[t]));return this}return this.each(z(n,t))},Co.classed=function(n,t){if(arguments.length<2){if("string"==typeof n){var e=this.node(),r=(n=T(n)).length,i=-1;if(t=e.classList){for(;++ii){if("string"!=typeof n){2>i&&(e="");for(r in n)this.each(P(r,n[r],e));return this}if(2>i){var u=this.node();return t(u).getComputedStyle(u,null).getPropertyValue(n)}r=""}return this.each(P(n,e,r))},Co.property=function(n,t){if(arguments.length<2){if("string"==typeof n)return this.node()[n];for(t in n)this.each(U(t,n[t]));return this}return this.each(U(n,t))},Co.text=function(n){return arguments.length?this.each("function"==typeof n?function(){var t=n.apply(this,arguments);this.textContent=null==t?"":t}:null==n?function(){this.textContent=""}:function(){this.textContent=n}):this.node().textContent},Co.html=function(n){return arguments.length?this.each("function"==typeof n?function(){var t=n.apply(this,arguments);this.innerHTML=null==t?"":t}:null==n?function(){this.innerHTML=""}:function(){this.innerHTML=n}):this.node().innerHTML},Co.append=function(n){return n=j(n),this.select(function(){return this.appendChild(n.apply(this,arguments))})},Co.insert=function(n,t){return n=j(n),t=A(t),this.select(function(){return this.insertBefore(n.apply(this,arguments),t.apply(this,arguments)||null)})},Co.remove=function(){return this.each(F)},Co.data=function(n,t){function e(n,e){var r,i,u,o=n.length,s=e.length,h=Math.min(o,s),p=new Array(s),g=new Array(s),v=new Array(o);if(t){var d,y=new c,m=new Array(o);for(r=-1;++rr;++r)g[r]=H(e[r]);for(;o>r;++r)v[r]=n[r]}g.update=p,g.parentNode=p.parentNode=v.parentNode=n.parentNode,a.push(g),l.push(p),f.push(v)}var r,i,u=-1,o=this.length;if(!arguments.length){for(n=new Array(o=(r=this[0]).length);++uu;u++){i.push(t=[]),t.parentNode=(e=this[u]).parentNode;for(var a=0,l=e.length;l>a;a++)(r=e[a])&&n.call(r,r.__data__,a,u)&&t.push(r)}return E(i)},Co.order=function(){for(var n=-1,t=this.length;++n=0;)(e=r[i])&&(u&&u!==e.nextSibling&&u.parentNode.insertBefore(e,u),u=e);return this},Co.sort=function(n){n=I.apply(this,arguments);for(var t=-1,e=this.length;++tn;n++)for(var e=this[n],r=0,i=e.length;i>r;r++){var u=e[r];if(u)return u}return null},Co.size=function(){var n=0;return Y(this,function(){++n}),n};var qo=[];ao.selection.enter=Z,ao.selection.enter.prototype=qo,qo.append=Co.append,qo.empty=Co.empty,qo.node=Co.node,qo.call=Co.call,qo.size=Co.size,qo.select=function(n){for(var t,e,r,i,u,o=[],a=-1,l=this.length;++ar){if("string"!=typeof n){2>r&&(t=!1);for(e in n)this.each(X(e,n[e],t));return this}if(2>r)return(r=this.node()["__on"+n])&&r._;e=!1}return this.each(X(n,t,e))};var To=ao.map({mouseenter:"mouseover",mouseleave:"mouseout"});fo&&To.forEach(function(n){"on"+n in fo&&To.remove(n)});var Ro,Do=0;ao.mouse=function(n){return J(n,k())};var Po=this.navigator&&/WebKit/.test(this.navigator.userAgent)?-1:0;ao.touch=function(n,t,e){if(arguments.length<3&&(e=t,t=k().changedTouches),t)for(var r,i=0,u=t.length;u>i;++i)if((r=t[i]).identifier===e)return J(n,r)},ao.behavior.drag=function(){function n(){this.on("mousedown.drag",u).on("touchstart.drag",o)}function e(n,t,e,u,o){return function(){function a(){var n,e,r=t(h,v);r&&(n=r[0]-M[0],e=r[1]-M[1],g|=n|e,M=r,p({type:"drag",x:r[0]+c[0],y:r[1]+c[1],dx:n,dy:e}))}function l(){t(h,v)&&(y.on(u+d,null).on(o+d,null),m(g),p({type:"dragend"}))}var c,f=this,s=ao.event.target.correspondingElement||ao.event.target,h=f.parentNode,p=r.of(f,arguments),g=0,v=n(),d=".drag"+(null==v?"":"-"+v),y=ao.select(e(s)).on(u+d,a).on(o+d,l),m=W(s),M=t(h,v);i?(c=i.apply(f,arguments),c=[c.x-M[0],c.y-M[1]]):c=[0,0],p({type:"dragstart"})}}var r=N(n,"drag","dragstart","dragend"),i=null,u=e(b,ao.mouse,t,"mousemove","mouseup"),o=e(G,ao.touch,m,"touchmove","touchend");return n.origin=function(t){return arguments.length?(i=t,n):i},ao.rebind(n,r,"on")},ao.touches=function(n,t){return arguments.length<2&&(t=k().touches),t?co(t).map(function(t){var e=J(n,t);return e.identifier=t.identifier,e}):[]};var Uo=1e-6,jo=Uo*Uo,Fo=Math.PI,Ho=2*Fo,Oo=Ho-Uo,Io=Fo/2,Yo=Fo/180,Zo=180/Fo,Vo=Math.SQRT2,Xo=2,$o=4;ao.interpolateZoom=function(n,t){var e,r,i=n[0],u=n[1],o=n[2],a=t[0],l=t[1],c=t[2],f=a-i,s=l-u,h=f*f+s*s;if(jo>h)r=Math.log(c/o)/Vo,e=function(n){return[i+n*f,u+n*s,o*Math.exp(Vo*n*r)]};else{var p=Math.sqrt(h),g=(c*c-o*o+$o*h)/(2*o*Xo*p),v=(c*c-o*o-$o*h)/(2*c*Xo*p),d=Math.log(Math.sqrt(g*g+1)-g),y=Math.log(Math.sqrt(v*v+1)-v);r=(y-d)/Vo,e=function(n){var t=n*r,e=rn(d),a=o/(Xo*p)*(e*un(Vo*t+d)-en(d));return[i+a*f,u+a*s,o*e/rn(Vo*t+d)]}}return e.duration=1e3*r,e},ao.behavior.zoom=function(){function n(n){n.on(L,s).on(Wo+".zoom",p).on("dblclick.zoom",g).on(R,h)}function e(n){return[(n[0]-k.x)/k.k,(n[1]-k.y)/k.k]}function r(n){return[n[0]*k.k+k.x,n[1]*k.k+k.y]}function i(n){k.k=Math.max(A[0],Math.min(A[1],n))}function u(n,t){t=r(t),k.x+=n[0]-t[0],k.y+=n[1]-t[1]}function o(t,e,r,o){t.__chart__={x:k.x,y:k.y,k:k.k},i(Math.pow(2,o)),u(d=e,r),t=ao.select(t),C>0&&(t=t.transition().duration(C)),t.call(n.event)}function a(){b&&b.domain(x.range().map(function(n){return(n-k.x)/k.k}).map(x.invert)),w&&w.domain(_.range().map(function(n){return(n-k.y)/k.k}).map(_.invert))}function l(n){z++||n({type:"zoomstart"})}function c(n){a(),n({type:"zoom",scale:k.k,translate:[k.x,k.y]})}function f(n){--z||(n({type:"zoomend"}),d=null)}function s(){function n(){a=1,u(ao.mouse(i),h),c(o)}function r(){s.on(q,null).on(T,null),p(a),f(o)}var i=this,o=D.of(i,arguments),a=0,s=ao.select(t(i)).on(q,n).on(T,r),h=e(ao.mouse(i)),p=W(i);Il.call(i),l(o)}function h(){function n(){var n=ao.touches(g);return p=k.k,n.forEach(function(n){n.identifier in d&&(d[n.identifier]=e(n))}),n}function t(){var t=ao.event.target;ao.select(t).on(x,r).on(b,a),_.push(t);for(var e=ao.event.changedTouches,i=0,u=e.length;u>i;++i)d[e[i].identifier]=null;var l=n(),c=Date.now();if(1===l.length){if(500>c-M){var f=l[0];o(g,f,d[f.identifier],Math.floor(Math.log(k.k)/Math.LN2)+1),S()}M=c}else if(l.length>1){var f=l[0],s=l[1],h=f[0]-s[0],p=f[1]-s[1];y=h*h+p*p}}function r(){var n,t,e,r,o=ao.touches(g);Il.call(g);for(var a=0,l=o.length;l>a;++a,r=null)if(e=o[a],r=d[e.identifier]){if(t)break;n=e,t=r}if(r){var f=(f=e[0]-n[0])*f+(f=e[1]-n[1])*f,s=y&&Math.sqrt(f/y);n=[(n[0]+e[0])/2,(n[1]+e[1])/2],t=[(t[0]+r[0])/2,(t[1]+r[1])/2],i(s*p)}M=null,u(n,t),c(v)}function a(){if(ao.event.touches.length){for(var t=ao.event.changedTouches,e=0,r=t.length;r>e;++e)delete d[t[e].identifier];for(var i in d)return void n()}ao.selectAll(_).on(m,null),w.on(L,s).on(R,h),N(),f(v)}var p,g=this,v=D.of(g,arguments),d={},y=0,m=".zoom-"+ao.event.changedTouches[0].identifier,x="touchmove"+m,b="touchend"+m,_=[],w=ao.select(g),N=W(g);t(),l(v),w.on(L,null).on(R,t)}function p(){var n=D.of(this,arguments);m?clearTimeout(m):(Il.call(this),v=e(d=y||ao.mouse(this)),l(n)),m=setTimeout(function(){m=null,f(n)},50),S(),i(Math.pow(2,.002*Bo())*k.k),u(d,v),c(n)}function g(){return;var n=ao.mouse(this),t=Math.log(k.k)/Math.LN2;o(this,n,e(n),ao.event.shiftKey?Math.ceil(t)-1:Math.floor(t)+1)}var v,d,y,m,M,x,b,_,w,k={x:0,y:0,k:1},E=[960,500],A=Jo,C=250,z=0,L="mousedown.zoom",q="mousemove.zoom",T="mouseup.zoom",R="touchstart.zoom",D=N(n,"zoomstart","zoom","zoomend");return Wo||(Wo="onwheel"in fo?(Bo=function(){return-ao.event.deltaY*(ao.event.deltaMode?120:1)},"wheel"):"onmousewheel"in fo?(Bo=function(){return ao.event.wheelDelta},"mousewheel"):(Bo=function(){return-ao.event.detail},"MozMousePixelScroll")),n.event=function(n){n.each(function(){var n=D.of(this,arguments),t=k;Hl?ao.select(this).transition().each("start.zoom",function(){k=this.__chart__||{x:0,y:0,k:1},l(n)}).tween("zoom:zoom",function(){var e=E[0],r=E[1],i=d?d[0]:e/2,u=d?d[1]:r/2,o=ao.interpolateZoom([(i-k.x)/k.k,(u-k.y)/k.k,e/k.k],[(i-t.x)/t.k,(u-t.y)/t.k,e/t.k]);return function(t){var r=o(t),a=e/r[2];this.__chart__=k={x:i-r[0]*a,y:u-r[1]*a,k:a},c(n)}}).each("interrupt.zoom",function(){f(n)}).each("end.zoom",function(){f(n)}):(this.__chart__=k,l(n),c(n),f(n))})},n.translate=function(t){return arguments.length?(k={x:+t[0],y:+t[1],k:k.k},a(),n):[k.x,k.y]},n.scale=function(t){return arguments.length?(k={x:k.x,y:k.y,k:null},i(+t),a(),n):k.k},n.scaleExtent=function(t){return arguments.length?(A=null==t?Jo:[+t[0],+t[1]],n):A},n.center=function(t){return arguments.length?(y=t&&[+t[0],+t[1]],n):y},n.size=function(t){return arguments.length?(E=t&&[+t[0],+t[1]],n):E},n.duration=function(t){return arguments.length?(C=+t,n):C},n.x=function(t){return arguments.length?(b=t,x=t.copy(),k={x:0,y:0,k:1},n):b},n.y=function(t){return arguments.length?(w=t,_=t.copy(),k={x:0,y:0,k:1},n):w},ao.rebind(n,D,"on")};var Bo,Wo,Jo=[0,1/0];ao.color=an,an.prototype.toString=function(){return this.rgb()+""},ao.hsl=ln;var Go=ln.prototype=new an;Go.brighter=function(n){return n=Math.pow(.7,arguments.length?n:1),new ln(this.h,this.s,this.l/n)},Go.darker=function(n){return n=Math.pow(.7,arguments.length?n:1),new ln(this.h,this.s,n*this.l)},Go.rgb=function(){return cn(this.h,this.s,this.l)},ao.hcl=fn;var Ko=fn.prototype=new an;Ko.brighter=function(n){return new fn(this.h,this.c,Math.min(100,this.l+Qo*(arguments.length?n:1)))},Ko.darker=function(n){return new fn(this.h,this.c,Math.max(0,this.l-Qo*(arguments.length?n:1)))},Ko.rgb=function(){return sn(this.h,this.c,this.l).rgb()},ao.lab=hn;var Qo=18,na=.95047,ta=1,ea=1.08883,ra=hn.prototype=new an;ra.brighter=function(n){return new hn(Math.min(100,this.l+Qo*(arguments.length?n:1)),this.a,this.b)},ra.darker=function(n){return new hn(Math.max(0,this.l-Qo*(arguments.length?n:1)),this.a,this.b)},ra.rgb=function(){return pn(this.l,this.a,this.b)},ao.rgb=mn;var ia=mn.prototype=new an;ia.brighter=function(n){n=Math.pow(.7,arguments.length?n:1);var t=this.r,e=this.g,r=this.b,i=30;return t||e||r?(t&&i>t&&(t=i),e&&i>e&&(e=i),r&&i>r&&(r=i),new mn(Math.min(255,t/n),Math.min(255,e/n),Math.min(255,r/n))):new mn(i,i,i)},ia.darker=function(n){return n=Math.pow(.7,arguments.length?n:1),new mn(n*this.r,n*this.g,n*this.b)},ia.hsl=function(){return wn(this.r,this.g,this.b)},ia.toString=function(){return"#"+bn(this.r)+bn(this.g)+bn(this.b)};var ua=ao.map({aliceblue:15792383,antiquewhite:16444375,aqua:65535,aquamarine:8388564,azure:15794175,beige:16119260,bisque:16770244,black:0,blanchedalmond:16772045,blue:255,blueviolet:9055202,brown:10824234,burlywood:14596231,cadetblue:6266528,chartreuse:8388352,chocolate:13789470,coral:16744272,cornflowerblue:6591981,cornsilk:16775388,crimson:14423100,cyan:65535,darkblue:139,darkcyan:35723,darkgoldenrod:12092939,darkgray:11119017,darkgreen:25600,darkgrey:11119017,darkkhaki:12433259,darkmagenta:9109643,darkolivegreen:5597999,darkorange:16747520,darkorchid:10040012,darkred:9109504,darksalmon:15308410,darkseagreen:9419919,darkslateblue:4734347,darkslategray:3100495,darkslategrey:3100495,darkturquoise:52945,darkviolet:9699539,deeppink:16716947,deepskyblue:49151,dimgray:6908265,dimgrey:6908265,dodgerblue:2003199,firebrick:11674146,floralwhite:16775920,forestgreen:2263842,fuchsia:16711935,gainsboro:14474460,ghostwhite:16316671,gold:16766720,goldenrod:14329120,gray:8421504,green:32768,greenyellow:11403055,grey:8421504,honeydew:15794160,hotpink:16738740,indianred:13458524,indigo:4915330,ivory:16777200,khaki:15787660,lavender:15132410,lavenderblush:16773365,lawngreen:8190976,lemonchiffon:16775885,lightblue:11393254,lightcoral:15761536,lightcyan:14745599,lightgoldenrodyellow:16448210,lightgray:13882323,lightgreen:9498256,lightgrey:13882323,lightpink:16758465,lightsalmon:16752762,lightseagreen:2142890,lightskyblue:8900346,lightslategray:7833753,lightslategrey:7833753,lightsteelblue:11584734,lightyellow:16777184,lime:65280,limegreen:3329330,linen:16445670,magenta:16711935,maroon:8388608,mediumaquamarine:6737322,mediumblue:205,mediumorchid:12211667,mediumpurple:9662683,mediumseagreen:3978097,mediumslateblue:8087790,mediumspringgreen:64154,mediumturquoise:4772300,mediumvioletred:13047173,midnightblue:1644912,mintcream:16121850,mistyrose:16770273,moccasin:16770229,navajowhite:16768685,navy:128,oldlace:16643558,olive:8421376,olivedrab:7048739,orange:16753920,orangered:16729344,orchid:14315734,palegoldenrod:15657130,palegreen:10025880,paleturquoise:11529966,palevioletred:14381203,papayawhip:16773077,peachpuff:16767673,peru:13468991,pink:16761035,plum:14524637,powderblue:11591910,purple:8388736,rebeccapurple:6697881,red:16711680,rosybrown:12357519,royalblue:4286945,saddlebrown:9127187,salmon:16416882,sandybrown:16032864,seagreen:3050327,seashell:16774638,sienna:10506797,silver:12632256,skyblue:8900331,slateblue:6970061,slategray:7372944,slategrey:7372944,snow:16775930,springgreen:65407,steelblue:4620980,tan:13808780,teal:32896,thistle:14204888,tomato:16737095,turquoise:4251856,violet:15631086,wheat:16113331,white:16777215,whitesmoke:16119285,yellow:16776960,yellowgreen:10145074});ua.forEach(function(n,t){ua.set(n,Mn(t))}),ao.functor=En,ao.xhr=An(m),ao.dsv=function(n,t){function e(n,e,u){arguments.length<3&&(u=e,e=null);var o=Cn(n,t,null==e?r:i(e),u);return o.row=function(n){return arguments.length?o.response(null==(e=n)?r:i(n)):e},o}function r(n){return e.parse(n.responseText)}function i(n){return function(t){return e.parse(t.responseText,n)}}function u(t){return t.map(o).join(n)}function o(n){return a.test(n)?'"'+n.replace(/\"/g,'""')+'"':n}var a=new RegExp('["'+n+"\n]"),l=n.charCodeAt(0);return e.parse=function(n,t){var r;return e.parseRows(n,function(n,e){if(r)return r(n,e-1);var i=new Function("d","return {"+n.map(function(n,t){return JSON.stringify(n)+": d["+t+"]"}).join(",")+"}");r=t?function(n,e){return t(i(n),e)}:i})},e.parseRows=function(n,t){function e(){if(f>=c)return o;if(i)return i=!1,u;var t=f;if(34===n.charCodeAt(t)){for(var e=t;e++f;){var r=n.charCodeAt(f++),a=1;if(10===r)i=!0;else if(13===r)i=!0,10===n.charCodeAt(f)&&(++f,++a);else if(r!==l)continue;return n.slice(t,f-a)}return n.slice(t)}for(var r,i,u={},o={},a=[],c=n.length,f=0,s=0;(r=e())!==o;){for(var h=[];r!==u&&r!==o;)h.push(r),r=e();t&&null==(h=t(h,s++))||a.push(h)}return a},e.format=function(t){if(Array.isArray(t[0]))return e.formatRows(t);var r=new y,i=[];return t.forEach(function(n){for(var t in n)r.has(t)||i.push(r.add(t))}),[i.map(o).join(n)].concat(t.map(function(t){return i.map(function(n){return o(t[n])}).join(n)})).join("\n")},e.formatRows=function(n){return n.map(u).join("\n")},e},ao.csv=ao.dsv(",","text/csv"),ao.tsv=ao.dsv(" ","text/tab-separated-values");var oa,aa,la,ca,fa=this[x(this,"requestAnimationFrame")]||function(n){setTimeout(n,17)};ao.timer=function(){qn.apply(this,arguments)},ao.timer.flush=function(){Rn(),Dn()},ao.round=function(n,t){return t?Math.round(n*(t=Math.pow(10,t)))/t:Math.round(n)};var sa=["y","z","a","f","p","n","\xb5","m","","k","M","G","T","P","E","Z","Y"].map(Un);ao.formatPrefix=function(n,t){var e=0;return(n=+n)&&(0>n&&(n*=-1),t&&(n=ao.round(n,Pn(n,t))),e=1+Math.floor(1e-12+Math.log(n)/Math.LN10),e=Math.max(-24,Math.min(24,3*Math.floor((e-1)/3)))),sa[8+e/3]};var ha=/(?:([^{])?([<>=^]))?([+\- ])?([$#])?(0)?(\d+)?(,)?(\.-?\d+)?([a-z%])?/i,pa=ao.map({b:function(n){return n.toString(2)},c:function(n){return String.fromCharCode(n)},o:function(n){return n.toString(8)},x:function(n){return n.toString(16)},X:function(n){return n.toString(16).toUpperCase()},g:function(n,t){return n.toPrecision(t)},e:function(n,t){return n.toExponential(t)},f:function(n,t){return n.toFixed(t)},r:function(n,t){return(n=ao.round(n,Pn(n,t))).toFixed(Math.max(0,Math.min(20,Pn(n*(1+1e-15),t))))}}),ga=ao.time={},va=Date;Hn.prototype={getDate:function(){return this._.getUTCDate()},getDay:function(){return this._.getUTCDay()},getFullYear:function(){return this._.getUTCFullYear()},getHours:function(){return this._.getUTCHours()},getMilliseconds:function(){return this._.getUTCMilliseconds()},getMinutes:function(){return this._.getUTCMinutes()},getMonth:function(){return this._.getUTCMonth()},getSeconds:function(){return this._.getUTCSeconds()},getTime:function(){return this._.getTime()},getTimezoneOffset:function(){return 0},valueOf:function(){return this._.valueOf()},setDate:function(){da.setUTCDate.apply(this._,arguments)},setDay:function(){da.setUTCDay.apply(this._,arguments)},setFullYear:function(){da.setUTCFullYear.apply(this._,arguments)},setHours:function(){da.setUTCHours.apply(this._,arguments)},setMilliseconds:function(){da.setUTCMilliseconds.apply(this._,arguments)},setMinutes:function(){da.setUTCMinutes.apply(this._,arguments)},setMonth:function(){da.setUTCMonth.apply(this._,arguments)},setSeconds:function(){da.setUTCSeconds.apply(this._,arguments)},setTime:function(){da.setTime.apply(this._,arguments)}};var da=Date.prototype;ga.year=On(function(n){return n=ga.day(n),n.setMonth(0,1),n},function(n,t){n.setFullYear(n.getFullYear()+t)},function(n){return n.getFullYear()}),ga.years=ga.year.range,ga.years.utc=ga.year.utc.range,ga.day=On(function(n){var t=new va(2e3,0);return t.setFullYear(n.getFullYear(),n.getMonth(),n.getDate()),t},function(n,t){n.setDate(n.getDate()+t)},function(n){return n.getDate()-1}),ga.days=ga.day.range,ga.days.utc=ga.day.utc.range,ga.dayOfYear=function(n){var t=ga.year(n);return Math.floor((n-t-6e4*(n.getTimezoneOffset()-t.getTimezoneOffset()))/864e5)},["sunday","monday","tuesday","wednesday","thursday","friday","saturday"].forEach(function(n,t){t=7-t;var e=ga[n]=On(function(n){return(n=ga.day(n)).setDate(n.getDate()-(n.getDay()+t)%7),n},function(n,t){n.setDate(n.getDate()+7*Math.floor(t))},function(n){var e=ga.year(n).getDay();return Math.floor((ga.dayOfYear(n)+(e+t)%7)/7)-(e!==t)});ga[n+"s"]=e.range,ga[n+"s"].utc=e.utc.range,ga[n+"OfYear"]=function(n){var e=ga.year(n).getDay();return Math.floor((ga.dayOfYear(n)+(e+t)%7)/7)}}),ga.week=ga.sunday,ga.weeks=ga.sunday.range,ga.weeks.utc=ga.sunday.utc.range,ga.weekOfYear=ga.sundayOfYear;var ya={"-":"",_:" ",0:"0"},ma=/^\s*\d+/,Ma=/^%/;ao.locale=function(n){return{numberFormat:jn(n),timeFormat:Yn(n)}};var xa=ao.locale({decimal:".",thousands:",",grouping:[3],currency:["$",""],dateTime:"%a %b %e %X %Y",date:"%m/%d/%Y",time:"%H:%M:%S",periods:["AM","PM"],days:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"], +shortDays:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],months:["January","February","March","April","May","June","July","August","September","October","November","December"],shortMonths:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"]});ao.format=xa.numberFormat,ao.geo={},ft.prototype={s:0,t:0,add:function(n){st(n,this.t,ba),st(ba.s,this.s,this),this.s?this.t+=ba.t:this.s=ba.t},reset:function(){this.s=this.t=0},valueOf:function(){return this.s}};var ba=new ft;ao.geo.stream=function(n,t){n&&_a.hasOwnProperty(n.type)?_a[n.type](n,t):ht(n,t)};var _a={Feature:function(n,t){ht(n.geometry,t)},FeatureCollection:function(n,t){for(var e=n.features,r=-1,i=e.length;++rn?4*Fo+n:n,Na.lineStart=Na.lineEnd=Na.point=b}};ao.geo.bounds=function(){function n(n,t){M.push(x=[f=n,h=n]),s>t&&(s=t),t>p&&(p=t)}function t(t,e){var r=dt([t*Yo,e*Yo]);if(y){var i=mt(y,r),u=[i[1],-i[0],0],o=mt(u,i);bt(o),o=_t(o);var l=t-g,c=l>0?1:-1,v=o[0]*Zo*c,d=xo(l)>180;if(d^(v>c*g&&c*t>v)){var m=o[1]*Zo;m>p&&(p=m)}else if(v=(v+360)%360-180,d^(v>c*g&&c*t>v)){var m=-o[1]*Zo;s>m&&(s=m)}else s>e&&(s=e),e>p&&(p=e);d?g>t?a(f,t)>a(f,h)&&(h=t):a(t,h)>a(f,h)&&(f=t):h>=f?(f>t&&(f=t),t>h&&(h=t)):t>g?a(f,t)>a(f,h)&&(h=t):a(t,h)>a(f,h)&&(f=t)}else n(t,e);y=r,g=t}function e(){b.point=t}function r(){x[0]=f,x[1]=h,b.point=n,y=null}function i(n,e){if(y){var r=n-g;m+=xo(r)>180?r+(r>0?360:-360):r}else v=n,d=e;Na.point(n,e),t(n,e)}function u(){Na.lineStart()}function o(){i(v,d),Na.lineEnd(),xo(m)>Uo&&(f=-(h=180)),x[0]=f,x[1]=h,y=null}function a(n,t){return(t-=n)<0?t+360:t}function l(n,t){return n[0]-t[0]}function c(n,t){return t[0]<=t[1]?t[0]<=n&&n<=t[1]:nka?(f=-(h=180),s=-(p=90)):m>Uo?p=90:-Uo>m&&(s=-90),x[0]=f,x[1]=h}};return function(n){p=h=-(f=s=1/0),M=[],ao.geo.stream(n,b);var t=M.length;if(t){M.sort(l);for(var e,r=1,i=M[0],u=[i];t>r;++r)e=M[r],c(e[0],i)||c(e[1],i)?(a(i[0],e[1])>a(i[0],i[1])&&(i[1]=e[1]),a(e[0],i[1])>a(i[0],i[1])&&(i[0]=e[0])):u.push(i=e);for(var o,e,g=-(1/0),t=u.length-1,r=0,i=u[t];t>=r;i=e,++r)e=u[r],(o=a(i[1],e[0]))>g&&(g=o,f=e[0],h=i[1])}return M=x=null,f===1/0||s===1/0?[[NaN,NaN],[NaN,NaN]]:[[f,s],[h,p]]}}(),ao.geo.centroid=function(n){Ea=Aa=Ca=za=La=qa=Ta=Ra=Da=Pa=Ua=0,ao.geo.stream(n,ja);var t=Da,e=Pa,r=Ua,i=t*t+e*e+r*r;return jo>i&&(t=qa,e=Ta,r=Ra,Uo>Aa&&(t=Ca,e=za,r=La),i=t*t+e*e+r*r,jo>i)?[NaN,NaN]:[Math.atan2(e,t)*Zo,tn(r/Math.sqrt(i))*Zo]};var Ea,Aa,Ca,za,La,qa,Ta,Ra,Da,Pa,Ua,ja={sphere:b,point:St,lineStart:Nt,lineEnd:Et,polygonStart:function(){ja.lineStart=At},polygonEnd:function(){ja.lineStart=Nt}},Fa=Rt(zt,jt,Ht,[-Fo,-Fo/2]),Ha=1e9;ao.geo.clipExtent=function(){var n,t,e,r,i,u,o={stream:function(n){return i&&(i.valid=!1),i=u(n),i.valid=!0,i},extent:function(a){return arguments.length?(u=Zt(n=+a[0][0],t=+a[0][1],e=+a[1][0],r=+a[1][1]),i&&(i.valid=!1,i=null),o):[[n,t],[e,r]]}};return o.extent([[0,0],[960,500]])},(ao.geo.conicEqualArea=function(){return Vt(Xt)}).raw=Xt,ao.geo.albers=function(){return ao.geo.conicEqualArea().rotate([96,0]).center([-.6,38.7]).parallels([29.5,45.5]).scale(1070)},ao.geo.albersUsa=function(){function n(n){var u=n[0],o=n[1];return t=null,e(u,o),t||(r(u,o),t)||i(u,o),t}var t,e,r,i,u=ao.geo.albers(),o=ao.geo.conicEqualArea().rotate([154,0]).center([-2,58.5]).parallels([55,65]),a=ao.geo.conicEqualArea().rotate([157,0]).center([-3,19.9]).parallels([8,18]),l={point:function(n,e){t=[n,e]}};return n.invert=function(n){var t=u.scale(),e=u.translate(),r=(n[0]-e[0])/t,i=(n[1]-e[1])/t;return(i>=.12&&.234>i&&r>=-.425&&-.214>r?o:i>=.166&&.234>i&&r>=-.214&&-.115>r?a:u).invert(n)},n.stream=function(n){var t=u.stream(n),e=o.stream(n),r=a.stream(n);return{point:function(n,i){t.point(n,i),e.point(n,i),r.point(n,i)},sphere:function(){t.sphere(),e.sphere(),r.sphere()},lineStart:function(){t.lineStart(),e.lineStart(),r.lineStart()},lineEnd:function(){t.lineEnd(),e.lineEnd(),r.lineEnd()},polygonStart:function(){t.polygonStart(),e.polygonStart(),r.polygonStart()},polygonEnd:function(){t.polygonEnd(),e.polygonEnd(),r.polygonEnd()}}},n.precision=function(t){return arguments.length?(u.precision(t),o.precision(t),a.precision(t),n):u.precision()},n.scale=function(t){return arguments.length?(u.scale(t),o.scale(.35*t),a.scale(t),n.translate(u.translate())):u.scale()},n.translate=function(t){if(!arguments.length)return u.translate();var c=u.scale(),f=+t[0],s=+t[1];return e=u.translate(t).clipExtent([[f-.455*c,s-.238*c],[f+.455*c,s+.238*c]]).stream(l).point,r=o.translate([f-.307*c,s+.201*c]).clipExtent([[f-.425*c+Uo,s+.12*c+Uo],[f-.214*c-Uo,s+.234*c-Uo]]).stream(l).point,i=a.translate([f-.205*c,s+.212*c]).clipExtent([[f-.214*c+Uo,s+.166*c+Uo],[f-.115*c-Uo,s+.234*c-Uo]]).stream(l).point,n},n.scale(1070)};var Oa,Ia,Ya,Za,Va,Xa,$a={point:b,lineStart:b,lineEnd:b,polygonStart:function(){Ia=0,$a.lineStart=$t},polygonEnd:function(){$a.lineStart=$a.lineEnd=$a.point=b,Oa+=xo(Ia/2)}},Ba={point:Bt,lineStart:b,lineEnd:b,polygonStart:b,polygonEnd:b},Wa={point:Gt,lineStart:Kt,lineEnd:Qt,polygonStart:function(){Wa.lineStart=ne},polygonEnd:function(){Wa.point=Gt,Wa.lineStart=Kt,Wa.lineEnd=Qt}};ao.geo.path=function(){function n(n){return n&&("function"==typeof a&&u.pointRadius(+a.apply(this,arguments)),o&&o.valid||(o=i(u)),ao.geo.stream(n,o)),u.result()}function t(){return o=null,n}var e,r,i,u,o,a=4.5;return n.area=function(n){return Oa=0,ao.geo.stream(n,i($a)),Oa},n.centroid=function(n){return Ca=za=La=qa=Ta=Ra=Da=Pa=Ua=0,ao.geo.stream(n,i(Wa)),Ua?[Da/Ua,Pa/Ua]:Ra?[qa/Ra,Ta/Ra]:La?[Ca/La,za/La]:[NaN,NaN]},n.bounds=function(n){return Va=Xa=-(Ya=Za=1/0),ao.geo.stream(n,i(Ba)),[[Ya,Za],[Va,Xa]]},n.projection=function(n){return arguments.length?(i=(e=n)?n.stream||re(n):m,t()):e},n.context=function(n){return arguments.length?(u=null==(r=n)?new Wt:new te(n),"function"!=typeof a&&u.pointRadius(a),t()):r},n.pointRadius=function(t){return arguments.length?(a="function"==typeof t?t:(u.pointRadius(+t),+t),n):a},n.projection(ao.geo.albersUsa()).context(null)},ao.geo.transform=function(n){return{stream:function(t){var e=new ie(t);for(var r in n)e[r]=n[r];return e}}},ie.prototype={point:function(n,t){this.stream.point(n,t)},sphere:function(){this.stream.sphere()},lineStart:function(){this.stream.lineStart()},lineEnd:function(){this.stream.lineEnd()},polygonStart:function(){this.stream.polygonStart()},polygonEnd:function(){this.stream.polygonEnd()}},ao.geo.projection=oe,ao.geo.projectionMutator=ae,(ao.geo.equirectangular=function(){return oe(ce)}).raw=ce.invert=ce,ao.geo.rotation=function(n){function t(t){return t=n(t[0]*Yo,t[1]*Yo),t[0]*=Zo,t[1]*=Zo,t}return n=se(n[0]%360*Yo,n[1]*Yo,n.length>2?n[2]*Yo:0),t.invert=function(t){return t=n.invert(t[0]*Yo,t[1]*Yo),t[0]*=Zo,t[1]*=Zo,t},t},fe.invert=ce,ao.geo.circle=function(){function n(){var n="function"==typeof r?r.apply(this,arguments):r,t=se(-n[0]*Yo,-n[1]*Yo,0).invert,i=[];return e(null,null,1,{point:function(n,e){i.push(n=t(n,e)),n[0]*=Zo,n[1]*=Zo}}),{type:"Polygon",coordinates:[i]}}var t,e,r=[0,0],i=6;return n.origin=function(t){return arguments.length?(r=t,n):r},n.angle=function(r){return arguments.length?(e=ve((t=+r)*Yo,i*Yo),n):t},n.precision=function(r){return arguments.length?(e=ve(t*Yo,(i=+r)*Yo),n):i},n.angle(90)},ao.geo.distance=function(n,t){var e,r=(t[0]-n[0])*Yo,i=n[1]*Yo,u=t[1]*Yo,o=Math.sin(r),a=Math.cos(r),l=Math.sin(i),c=Math.cos(i),f=Math.sin(u),s=Math.cos(u);return Math.atan2(Math.sqrt((e=s*o)*e+(e=c*f-l*s*a)*e),l*f+c*s*a)},ao.geo.graticule=function(){function n(){return{type:"MultiLineString",coordinates:t()}}function t(){return ao.range(Math.ceil(u/d)*d,i,d).map(h).concat(ao.range(Math.ceil(c/y)*y,l,y).map(p)).concat(ao.range(Math.ceil(r/g)*g,e,g).filter(function(n){return xo(n%d)>Uo}).map(f)).concat(ao.range(Math.ceil(a/v)*v,o,v).filter(function(n){return xo(n%y)>Uo}).map(s))}var e,r,i,u,o,a,l,c,f,s,h,p,g=10,v=g,d=90,y=360,m=2.5;return n.lines=function(){return t().map(function(n){return{type:"LineString",coordinates:n}})},n.outline=function(){return{type:"Polygon",coordinates:[h(u).concat(p(l).slice(1),h(i).reverse().slice(1),p(c).reverse().slice(1))]}},n.extent=function(t){return arguments.length?n.majorExtent(t).minorExtent(t):n.minorExtent()},n.majorExtent=function(t){return arguments.length?(u=+t[0][0],i=+t[1][0],c=+t[0][1],l=+t[1][1],u>i&&(t=u,u=i,i=t),c>l&&(t=c,c=l,l=t),n.precision(m)):[[u,c],[i,l]]},n.minorExtent=function(t){return arguments.length?(r=+t[0][0],e=+t[1][0],a=+t[0][1],o=+t[1][1],r>e&&(t=r,r=e,e=t),a>o&&(t=a,a=o,o=t),n.precision(m)):[[r,a],[e,o]]},n.step=function(t){return arguments.length?n.majorStep(t).minorStep(t):n.minorStep()},n.majorStep=function(t){return arguments.length?(d=+t[0],y=+t[1],n):[d,y]},n.minorStep=function(t){return arguments.length?(g=+t[0],v=+t[1],n):[g,v]},n.precision=function(t){return arguments.length?(m=+t,f=ye(a,o,90),s=me(r,e,m),h=ye(c,l,90),p=me(u,i,m),n):m},n.majorExtent([[-180,-90+Uo],[180,90-Uo]]).minorExtent([[-180,-80-Uo],[180,80+Uo]])},ao.geo.greatArc=function(){function n(){return{type:"LineString",coordinates:[t||r.apply(this,arguments),e||i.apply(this,arguments)]}}var t,e,r=Me,i=xe;return n.distance=function(){return ao.geo.distance(t||r.apply(this,arguments),e||i.apply(this,arguments))},n.source=function(e){return arguments.length?(r=e,t="function"==typeof e?null:e,n):r},n.target=function(t){return arguments.length?(i=t,e="function"==typeof t?null:t,n):i},n.precision=function(){return arguments.length?n:0},n},ao.geo.interpolate=function(n,t){return be(n[0]*Yo,n[1]*Yo,t[0]*Yo,t[1]*Yo)},ao.geo.length=function(n){return Ja=0,ao.geo.stream(n,Ga),Ja};var Ja,Ga={sphere:b,point:b,lineStart:_e,lineEnd:b,polygonStart:b,polygonEnd:b},Ka=we(function(n){return Math.sqrt(2/(1+n))},function(n){return 2*Math.asin(n/2)});(ao.geo.azimuthalEqualArea=function(){return oe(Ka)}).raw=Ka;var Qa=we(function(n){var t=Math.acos(n);return t&&t/Math.sin(t)},m);(ao.geo.azimuthalEquidistant=function(){return oe(Qa)}).raw=Qa,(ao.geo.conicConformal=function(){return Vt(Se)}).raw=Se,(ao.geo.conicEquidistant=function(){return Vt(ke)}).raw=ke;var nl=we(function(n){return 1/n},Math.atan);(ao.geo.gnomonic=function(){return oe(nl)}).raw=nl,Ne.invert=function(n,t){return[n,2*Math.atan(Math.exp(t))-Io]},(ao.geo.mercator=function(){return Ee(Ne)}).raw=Ne;var tl=we(function(){return 1},Math.asin);(ao.geo.orthographic=function(){return oe(tl)}).raw=tl;var el=we(function(n){return 1/(1+n)},function(n){return 2*Math.atan(n)});(ao.geo.stereographic=function(){return oe(el)}).raw=el,Ae.invert=function(n,t){return[-t,2*Math.atan(Math.exp(n))-Io]},(ao.geo.transverseMercator=function(){var n=Ee(Ae),t=n.center,e=n.rotate;return n.center=function(n){return n?t([-n[1],n[0]]):(n=t(),[n[1],-n[0]])},n.rotate=function(n){return n?e([n[0],n[1],n.length>2?n[2]+90:90]):(n=e(),[n[0],n[1],n[2]-90])},e([0,0,90])}).raw=Ae,ao.geom={},ao.geom.hull=function(n){function t(n){if(n.length<3)return[];var t,i=En(e),u=En(r),o=n.length,a=[],l=[];for(t=0;o>t;t++)a.push([+i.call(this,n[t],t),+u.call(this,n[t],t),t]);for(a.sort(qe),t=0;o>t;t++)l.push([a[t][0],-a[t][1]]);var c=Le(a),f=Le(l),s=f[0]===c[0],h=f[f.length-1]===c[c.length-1],p=[];for(t=c.length-1;t>=0;--t)p.push(n[a[c[t]][2]]);for(t=+s;t=r&&c.x<=u&&c.y>=i&&c.y<=o?[[r,o],[u,o],[u,i],[r,i]]:[];f.point=n[a]}),t}function e(n){return n.map(function(n,t){return{x:Math.round(u(n,t)/Uo)*Uo,y:Math.round(o(n,t)/Uo)*Uo,i:t}})}var r=Ce,i=ze,u=r,o=i,a=sl;return n?t(n):(t.links=function(n){return ar(e(n)).edges.filter(function(n){return n.l&&n.r}).map(function(t){return{source:n[t.l.i],target:n[t.r.i]}})},t.triangles=function(n){var t=[];return ar(e(n)).cells.forEach(function(e,r){for(var i,u,o=e.site,a=e.edges.sort(Ve),l=-1,c=a.length,f=a[c-1].edge,s=f.l===o?f.r:f.l;++l=c,h=r>=f,p=h<<1|s;n.leaf=!1,n=n.nodes[p]||(n.nodes[p]=hr()),s?i=c:a=c,h?o=f:l=f,u(n,t,e,r,i,o,a,l)}var f,s,h,p,g,v,d,y,m,M=En(a),x=En(l);if(null!=t)v=t,d=e,y=r,m=i;else if(y=m=-(v=d=1/0),s=[],h=[],g=n.length,o)for(p=0;g>p;++p)f=n[p],f.xy&&(y=f.x),f.y>m&&(m=f.y),s.push(f.x),h.push(f.y);else for(p=0;g>p;++p){var b=+M(f=n[p],p),_=+x(f,p);v>b&&(v=b),d>_&&(d=_),b>y&&(y=b),_>m&&(m=_),s.push(b),h.push(_)}var w=y-v,S=m-d;w>S?m=d+w:y=v+S;var k=hr();if(k.add=function(n){u(k,n,+M(n,++p),+x(n,p),v,d,y,m)},k.visit=function(n){pr(n,k,v,d,y,m)},k.find=function(n){return gr(k,n[0],n[1],v,d,y,m)},p=-1,null==t){for(;++p=0?n.slice(0,t):n,r=t>=0?n.slice(t+1):"in";return e=vl.get(e)||gl,r=dl.get(r)||m,br(r(e.apply(null,lo.call(arguments,1))))},ao.interpolateHcl=Rr,ao.interpolateHsl=Dr,ao.interpolateLab=Pr,ao.interpolateRound=Ur,ao.transform=function(n){var t=fo.createElementNS(ao.ns.prefix.svg,"g");return(ao.transform=function(n){if(null!=n){t.setAttribute("transform",n);var e=t.transform.baseVal.consolidate()}return new jr(e?e.matrix:yl)})(n)},jr.prototype.toString=function(){return"translate("+this.translate+")rotate("+this.rotate+")skewX("+this.skew+")scale("+this.scale+")"};var yl={a:1,b:0,c:0,d:1,e:0,f:0};ao.interpolateTransform=$r,ao.layout={},ao.layout.bundle=function(){return function(n){for(var t=[],e=-1,r=n.length;++ea*a/y){if(v>l){var c=t.charge/l;n.px-=u*c,n.py-=o*c}return!0}if(t.point&&l&&v>l){var c=t.pointCharge/l;n.px-=u*c,n.py-=o*c}}return!t.charge}}function t(n){n.px=ao.event.x,n.py=ao.event.y,l.resume()}var e,r,i,u,o,a,l={},c=ao.dispatch("start","tick","end"),f=[1,1],s=.9,h=ml,p=Ml,g=-30,v=xl,d=.1,y=.64,M=[],x=[];return l.tick=function(){if((i*=.99)<.005)return e=null,c.end({type:"end",alpha:i=0}),!0;var t,r,l,h,p,v,y,m,b,_=M.length,w=x.length;for(r=0;w>r;++r)l=x[r],h=l.source,p=l.target,m=p.x-h.x,b=p.y-h.y,(v=m*m+b*b)&&(v=i*o[r]*((v=Math.sqrt(v))-u[r])/v,m*=v,b*=v,p.x-=m*(y=h.weight+p.weight?h.weight/(h.weight+p.weight):.5),p.y-=b*y,h.x+=m*(y=1-y),h.y+=b*y);if((y=i*d)&&(m=f[0]/2,b=f[1]/2,r=-1,y))for(;++r<_;)l=M[r],l.x+=(m-l.x)*y,l.y+=(b-l.y)*y;if(g)for(ri(t=ao.geom.quadtree(M),i,a),r=-1;++r<_;)(l=M[r]).fixed||t.visit(n(l));for(r=-1;++r<_;)l=M[r],l.fixed?(l.x=l.px,l.y=l.py):(l.x-=(l.px-(l.px=l.x))*s,l.y-=(l.py-(l.py=l.y))*s);c.tick({type:"tick",alpha:i})},l.nodes=function(n){return arguments.length?(M=n,l):M},l.links=function(n){return arguments.length?(x=n,l):x},l.size=function(n){return arguments.length?(f=n,l):f},l.linkDistance=function(n){return arguments.length?(h="function"==typeof n?n:+n,l):h},l.distance=l.linkDistance,l.linkStrength=function(n){return arguments.length?(p="function"==typeof n?n:+n,l):p},l.friction=function(n){return arguments.length?(s=+n,l):s},l.charge=function(n){return arguments.length?(g="function"==typeof n?n:+n,l):g},l.chargeDistance=function(n){return arguments.length?(v=n*n,l):Math.sqrt(v)},l.gravity=function(n){return arguments.length?(d=+n,l):d},l.theta=function(n){return arguments.length?(y=n*n,l):Math.sqrt(y)},l.alpha=function(n){return arguments.length?(n=+n,i?n>0?i=n:(e.c=null,e.t=NaN,e=null,c.end({type:"end",alpha:i=0})):n>0&&(c.start({type:"start",alpha:i=n}),e=qn(l.tick)),l):i},l.start=function(){function n(n,r){if(!e){for(e=new Array(i),l=0;i>l;++l)e[l]=[];for(l=0;c>l;++l){var u=x[l];e[u.source.index].push(u.target),e[u.target.index].push(u.source)}}for(var o,a=e[t],l=-1,f=a.length;++lt;++t)(r=M[t]).index=t,r.weight=0;for(t=0;c>t;++t)r=x[t],"number"==typeof r.source&&(r.source=M[r.source]),"number"==typeof r.target&&(r.target=M[r.target]),++r.source.weight,++r.target.weight;for(t=0;i>t;++t)r=M[t],isNaN(r.x)&&(r.x=n("x",s)),isNaN(r.y)&&(r.y=n("y",v)),isNaN(r.px)&&(r.px=r.x),isNaN(r.py)&&(r.py=r.y);if(u=[],"function"==typeof h)for(t=0;c>t;++t)u[t]=+h.call(this,x[t],t);else for(t=0;c>t;++t)u[t]=h;if(o=[],"function"==typeof p)for(t=0;c>t;++t)o[t]=+p.call(this,x[t],t);else for(t=0;c>t;++t)o[t]=p;if(a=[],"function"==typeof g)for(t=0;i>t;++t)a[t]=+g.call(this,M[t],t);else for(t=0;i>t;++t)a[t]=g;return l.resume()},l.resume=function(){return l.alpha(.1)},l.stop=function(){return l.alpha(0)},l.drag=function(){return r||(r=ao.behavior.drag().origin(m).on("dragstart.force",Qr).on("drag.force",t).on("dragend.force",ni)),arguments.length?void this.on("mouseover.force",ti).on("mouseout.force",ei).call(r):r},ao.rebind(l,c,"on")};var ml=20,Ml=1,xl=1/0;ao.layout.hierarchy=function(){function n(i){var u,o=[i],a=[];for(i.depth=0;null!=(u=o.pop());)if(a.push(u),(c=e.call(n,u,u.depth))&&(l=c.length)){for(var l,c,f;--l>=0;)o.push(f=c[l]),f.parent=u,f.depth=u.depth+1;r&&(u.value=0),u.children=c}else r&&(u.value=+r.call(n,u,u.depth)||0),delete u.children;return oi(i,function(n){var e,i;t&&(e=n.children)&&e.sort(t),r&&(i=n.parent)&&(i.value+=n.value)}),a}var t=ci,e=ai,r=li;return n.sort=function(e){return arguments.length?(t=e,n):t},n.children=function(t){return arguments.length?(e=t,n):e},n.value=function(t){return arguments.length?(r=t,n):r},n.revalue=function(t){return r&&(ui(t,function(n){n.children&&(n.value=0)}),oi(t,function(t){var e;t.children||(t.value=+r.call(n,t,t.depth)||0),(e=t.parent)&&(e.value+=t.value)})),t},n},ao.layout.partition=function(){function n(t,e,r,i){var u=t.children;if(t.x=e,t.y=t.depth*i,t.dx=r,t.dy=i,u&&(o=u.length)){var o,a,l,c=-1;for(r=t.value?r/t.value:0;++cs?-1:1),g=ao.sum(c),v=g?(s-l*p)/g:0,d=ao.range(l),y=[];return null!=e&&d.sort(e===bl?function(n,t){return c[t]-c[n]}:function(n,t){return e(o[n],o[t])}),d.forEach(function(n){y[n]={data:o[n],value:a=c[n],startAngle:f,endAngle:f+=a*v+p,padAngle:h}}),y}var t=Number,e=bl,r=0,i=Ho,u=0;return n.value=function(e){return arguments.length?(t=e,n):t},n.sort=function(t){return arguments.length?(e=t,n):e},n.startAngle=function(t){return arguments.length?(r=t,n):r},n.endAngle=function(t){return arguments.length?(i=t,n):i},n.padAngle=function(t){return arguments.length?(u=t,n):u},n};var bl={};ao.layout.stack=function(){function n(a,l){if(!(h=a.length))return a;var c=a.map(function(e,r){return t.call(n,e,r)}),f=c.map(function(t){return t.map(function(t,e){return[u.call(n,t,e),o.call(n,t,e)]})}),s=e.call(n,f,l);c=ao.permute(c,s),f=ao.permute(f,s);var h,p,g,v,d=r.call(n,f,l),y=c[0].length;for(g=0;y>g;++g)for(i.call(n,c[0][g],v=d[g],f[0][g][1]),p=1;h>p;++p)i.call(n,c[p][g],v+=f[p-1][g][1],f[p][g][1]);return a}var t=m,e=gi,r=vi,i=pi,u=si,o=hi;return n.values=function(e){return arguments.length?(t=e,n):t},n.order=function(t){return arguments.length?(e="function"==typeof t?t:_l.get(t)||gi,n):e},n.offset=function(t){return arguments.length?(r="function"==typeof t?t:wl.get(t)||vi,n):r},n.x=function(t){return arguments.length?(u=t,n):u},n.y=function(t){return arguments.length?(o=t,n):o},n.out=function(t){return arguments.length?(i=t,n):i},n};var _l=ao.map({"inside-out":function(n){var t,e,r=n.length,i=n.map(di),u=n.map(yi),o=ao.range(r).sort(function(n,t){return i[n]-i[t]}),a=0,l=0,c=[],f=[];for(t=0;r>t;++t)e=o[t],l>a?(a+=u[e],c.push(e)):(l+=u[e],f.push(e));return f.reverse().concat(c)},reverse:function(n){return ao.range(n.length).reverse()},"default":gi}),wl=ao.map({silhouette:function(n){var t,e,r,i=n.length,u=n[0].length,o=[],a=0,l=[];for(e=0;u>e;++e){for(t=0,r=0;i>t;t++)r+=n[t][e][1];r>a&&(a=r),o.push(r)}for(e=0;u>e;++e)l[e]=(a-o[e])/2;return l},wiggle:function(n){var t,e,r,i,u,o,a,l,c,f=n.length,s=n[0],h=s.length,p=[];for(p[0]=l=c=0,e=1;h>e;++e){for(t=0,i=0;f>t;++t)i+=n[t][e][1];for(t=0,u=0,a=s[e][0]-s[e-1][0];f>t;++t){for(r=0,o=(n[t][e][1]-n[t][e-1][1])/(2*a);t>r;++r)o+=(n[r][e][1]-n[r][e-1][1])/a;u+=o*n[t][e][1]}p[e]=l-=i?u/i*a:0,c>l&&(c=l)}for(e=0;h>e;++e)p[e]-=c;return p},expand:function(n){var t,e,r,i=n.length,u=n[0].length,o=1/i,a=[];for(e=0;u>e;++e){for(t=0,r=0;i>t;t++)r+=n[t][e][1];if(r)for(t=0;i>t;t++)n[t][e][1]/=r;else for(t=0;i>t;t++)n[t][e][1]=o}for(e=0;u>e;++e)a[e]=0;return a},zero:vi});ao.layout.histogram=function(){function n(n,u){for(var o,a,l=[],c=n.map(e,this),f=r.call(this,c,u),s=i.call(this,f,c,u),u=-1,h=c.length,p=s.length-1,g=t?1:1/h;++u0)for(u=-1;++u=f[0]&&a<=f[1]&&(o=l[ao.bisect(s,a,1,p)-1],o.y+=g,o.push(n[u]));return l}var t=!0,e=Number,r=bi,i=Mi;return n.value=function(t){return arguments.length?(e=t,n):e},n.range=function(t){return arguments.length?(r=En(t),n):r},n.bins=function(t){return arguments.length?(i="number"==typeof t?function(n){return xi(n,t)}:En(t),n):i},n.frequency=function(e){return arguments.length?(t=!!e,n):t},n},ao.layout.pack=function(){function n(n,u){var o=e.call(this,n,u),a=o[0],l=i[0],c=i[1],f=null==t?Math.sqrt:"function"==typeof t?t:function(){return t};if(a.x=a.y=0,oi(a,function(n){n.r=+f(n.value)}),oi(a,Ni),r){var s=r*(t?1:Math.max(2*a.r/l,2*a.r/c))/2;oi(a,function(n){n.r+=s}),oi(a,Ni),oi(a,function(n){n.r-=s})}return Ci(a,l/2,c/2,t?1:1/Math.max(2*a.r/l,2*a.r/c)),o}var t,e=ao.layout.hierarchy().sort(_i),r=0,i=[1,1];return n.size=function(t){return arguments.length?(i=t,n):i},n.radius=function(e){return arguments.length?(t=null==e||"function"==typeof e?e:+e,n):t},n.padding=function(t){return arguments.length?(r=+t,n):r},ii(n,e)},ao.layout.tree=function(){function n(n,i){var f=o.call(this,n,i),s=f[0],h=t(s);if(oi(h,e),h.parent.m=-h.z,ui(h,r),c)ui(s,u);else{var p=s,g=s,v=s;ui(s,function(n){n.xg.x&&(g=n),n.depth>v.depth&&(v=n)});var d=a(p,g)/2-p.x,y=l[0]/(g.x+a(g,p)/2+d),m=l[1]/(v.depth||1);ui(s,function(n){n.x=(n.x+d)*y,n.y=n.depth*m})}return f}function t(n){for(var t,e={A:null,children:[n]},r=[e];null!=(t=r.pop());)for(var i,u=t.children,o=0,a=u.length;a>o;++o)r.push((u[o]=i={_:u[o],parent:t,children:(i=u[o].children)&&i.slice()||[],A:null,a:null,z:0,m:0,c:0,s:0,t:null,i:o}).a=i);return e.children[0]}function e(n){var t=n.children,e=n.parent.children,r=n.i?e[n.i-1]:null;if(t.length){Di(n);var u=(t[0].z+t[t.length-1].z)/2;r?(n.z=r.z+a(n._,r._),n.m=n.z-u):n.z=u}else r&&(n.z=r.z+a(n._,r._));n.parent.A=i(n,r,n.parent.A||e[0])}function r(n){n._.x=n.z+n.parent.m,n.m+=n.parent.m}function i(n,t,e){if(t){for(var r,i=n,u=n,o=t,l=i.parent.children[0],c=i.m,f=u.m,s=o.m,h=l.m;o=Ti(o),i=qi(i),o&&i;)l=qi(l),u=Ti(u),u.a=n,r=o.z+s-i.z-c+a(o._,i._),r>0&&(Ri(Pi(o,n,e),n,r),c+=r,f+=r),s+=o.m,c+=i.m,h+=l.m,f+=u.m;o&&!Ti(u)&&(u.t=o,u.m+=s-f),i&&!qi(l)&&(l.t=i,l.m+=c-h,e=n)}return e}function u(n){n.x*=l[0],n.y=n.depth*l[1]}var o=ao.layout.hierarchy().sort(null).value(null),a=Li,l=[1,1],c=null;return n.separation=function(t){return arguments.length?(a=t,n):a},n.size=function(t){return arguments.length?(c=null==(l=t)?u:null,n):c?null:l},n.nodeSize=function(t){return arguments.length?(c=null==(l=t)?null:u,n):c?l:null},ii(n,o)},ao.layout.cluster=function(){function n(n,u){var o,a=t.call(this,n,u),l=a[0],c=0;oi(l,function(n){var t=n.children;t&&t.length?(n.x=ji(t),n.y=Ui(t)):(n.x=o?c+=e(n,o):0,n.y=0,o=n)});var f=Fi(l),s=Hi(l),h=f.x-e(f,s)/2,p=s.x+e(s,f)/2;return oi(l,i?function(n){n.x=(n.x-l.x)*r[0],n.y=(l.y-n.y)*r[1]}:function(n){n.x=(n.x-h)/(p-h)*r[0],n.y=(1-(l.y?n.y/l.y:1))*r[1]}),a}var t=ao.layout.hierarchy().sort(null).value(null),e=Li,r=[1,1],i=!1;return n.separation=function(t){return arguments.length?(e=t,n):e},n.size=function(t){return arguments.length?(i=null==(r=t),n):i?null:r},n.nodeSize=function(t){return arguments.length?(i=null!=(r=t),n):i?r:null},ii(n,t)},ao.layout.treemap=function(){function n(n,t){for(var e,r,i=-1,u=n.length;++it?0:t),e.area=isNaN(r)||0>=r?0:r}function t(e){var u=e.children;if(u&&u.length){var o,a,l,c=s(e),f=[],h=u.slice(),g=1/0,v="slice"===p?c.dx:"dice"===p?c.dy:"slice-dice"===p?1&e.depth?c.dy:c.dx:Math.min(c.dx,c.dy);for(n(h,c.dx*c.dy/e.value),f.area=0;(l=h.length)>0;)f.push(o=h[l-1]),f.area+=o.area,"squarify"!==p||(a=r(f,v))<=g?(h.pop(),g=a):(f.area-=f.pop().area,i(f,v,c,!1),v=Math.min(c.dx,c.dy),f.length=f.area=0,g=1/0);f.length&&(i(f,v,c,!0),f.length=f.area=0),u.forEach(t)}}function e(t){var r=t.children;if(r&&r.length){var u,o=s(t),a=r.slice(),l=[];for(n(a,o.dx*o.dy/t.value),l.area=0;u=a.pop();)l.push(u),l.area+=u.area,null!=u.z&&(i(l,u.z?o.dx:o.dy,o,!a.length),l.length=l.area=0);r.forEach(e)}}function r(n,t){for(var e,r=n.area,i=0,u=1/0,o=-1,a=n.length;++oe&&(u=e),e>i&&(i=e));return r*=r,t*=t,r?Math.max(t*i*g/r,r/(t*u*g)):1/0}function i(n,t,e,r){var i,u=-1,o=n.length,a=e.x,c=e.y,f=t?l(n.area/t):0; +if(t==e.dx){for((r||f>e.dy)&&(f=e.dy);++ue.dx)&&(f=e.dx);++ue&&(t=1),1>e&&(n=0),function(){var e,r,i;do e=2*Math.random()-1,r=2*Math.random()-1,i=e*e+r*r;while(!i||i>1);return n+t*e*Math.sqrt(-2*Math.log(i)/i)}},logNormal:function(){var n=ao.random.normal.apply(ao,arguments);return function(){return Math.exp(n())}},bates:function(n){var t=ao.random.irwinHall(n);return function(){return t()/n}},irwinHall:function(n){return function(){for(var t=0,e=0;n>e;e++)t+=Math.random();return t}}},ao.scale={};var Sl={floor:m,ceil:m};ao.scale.linear=function(){return Wi([0,1],[0,1],Mr,!1)};var kl={s:1,g:1,p:1,r:1,e:1};ao.scale.log=function(){return ru(ao.scale.linear().domain([0,1]),10,!0,[1,10])};var Nl=ao.format(".0e"),El={floor:function(n){return-Math.ceil(-n)},ceil:function(n){return-Math.floor(-n)}};ao.scale.pow=function(){return iu(ao.scale.linear(),1,[0,1])},ao.scale.sqrt=function(){return ao.scale.pow().exponent(.5)},ao.scale.ordinal=function(){return ou([],{t:"range",a:[[]]})},ao.scale.category10=function(){return ao.scale.ordinal().range(Al)},ao.scale.category20=function(){return ao.scale.ordinal().range(Cl)},ao.scale.category20b=function(){return ao.scale.ordinal().range(zl)},ao.scale.category20c=function(){return ao.scale.ordinal().range(Ll)};var Al=[2062260,16744206,2924588,14034728,9725885,9197131,14907330,8355711,12369186,1556175].map(xn),Cl=[2062260,11454440,16744206,16759672,2924588,10018698,14034728,16750742,9725885,12955861,9197131,12885140,14907330,16234194,8355711,13092807,12369186,14408589,1556175,10410725].map(xn),zl=[3750777,5395619,7040719,10264286,6519097,9216594,11915115,13556636,9202993,12426809,15186514,15190932,8666169,11356490,14049643,15177372,8077683,10834324,13528509,14589654].map(xn),Ll=[3244733,7057110,10406625,13032431,15095053,16616764,16625259,16634018,3253076,7652470,10607003,13101504,7695281,10394312,12369372,14342891,6513507,9868950,12434877,14277081].map(xn);ao.scale.quantile=function(){return au([],[])},ao.scale.quantize=function(){return lu(0,1,[0,1])},ao.scale.threshold=function(){return cu([.5],[0,1])},ao.scale.identity=function(){return fu([0,1])},ao.svg={},ao.svg.arc=function(){function n(){var n=Math.max(0,+e.apply(this,arguments)),c=Math.max(0,+r.apply(this,arguments)),f=o.apply(this,arguments)-Io,s=a.apply(this,arguments)-Io,h=Math.abs(s-f),p=f>s?0:1;if(n>c&&(g=c,c=n,n=g),h>=Oo)return t(c,p)+(n?t(n,1-p):"")+"Z";var g,v,d,y,m,M,x,b,_,w,S,k,N=0,E=0,A=[];if((y=(+l.apply(this,arguments)||0)/2)&&(d=u===ql?Math.sqrt(n*n+c*c):+u.apply(this,arguments),p||(E*=-1),c&&(E=tn(d/c*Math.sin(y))),n&&(N=tn(d/n*Math.sin(y)))),c){m=c*Math.cos(f+E),M=c*Math.sin(f+E),x=c*Math.cos(s-E),b=c*Math.sin(s-E);var C=Math.abs(s-f-2*E)<=Fo?0:1;if(E&&yu(m,M,x,b)===p^C){var z=(f+s)/2;m=c*Math.cos(z),M=c*Math.sin(z),x=b=null}}else m=M=0;if(n){_=n*Math.cos(s-N),w=n*Math.sin(s-N),S=n*Math.cos(f+N),k=n*Math.sin(f+N);var L=Math.abs(f-s+2*N)<=Fo?0:1;if(N&&yu(_,w,S,k)===1-p^L){var q=(f+s)/2;_=n*Math.cos(q),w=n*Math.sin(q),S=k=null}}else _=w=0;if(h>Uo&&(g=Math.min(Math.abs(c-n)/2,+i.apply(this,arguments)))>.001){v=c>n^p?0:1;var T=g,R=g;if(Fo>h){var D=null==S?[_,w]:null==x?[m,M]:Re([m,M],[S,k],[x,b],[_,w]),P=m-D[0],U=M-D[1],j=x-D[0],F=b-D[1],H=1/Math.sin(Math.acos((P*j+U*F)/(Math.sqrt(P*P+U*U)*Math.sqrt(j*j+F*F)))/2),O=Math.sqrt(D[0]*D[0]+D[1]*D[1]);R=Math.min(g,(n-O)/(H-1)),T=Math.min(g,(c-O)/(H+1))}if(null!=x){var I=mu(null==S?[_,w]:[S,k],[m,M],c,T,p),Y=mu([x,b],[_,w],c,T,p);g===T?A.push("M",I[0],"A",T,",",T," 0 0,",v," ",I[1],"A",c,",",c," 0 ",1-p^yu(I[1][0],I[1][1],Y[1][0],Y[1][1]),",",p," ",Y[1],"A",T,",",T," 0 0,",v," ",Y[0]):A.push("M",I[0],"A",T,",",T," 0 1,",v," ",Y[0])}else A.push("M",m,",",M);if(null!=S){var Z=mu([m,M],[S,k],n,-R,p),V=mu([_,w],null==x?[m,M]:[x,b],n,-R,p);g===R?A.push("L",V[0],"A",R,",",R," 0 0,",v," ",V[1],"A",n,",",n," 0 ",p^yu(V[1][0],V[1][1],Z[1][0],Z[1][1]),",",1-p," ",Z[1],"A",R,",",R," 0 0,",v," ",Z[0]):A.push("L",V[0],"A",R,",",R," 0 0,",v," ",Z[0])}else A.push("L",_,",",w)}else A.push("M",m,",",M),null!=x&&A.push("A",c,",",c," 0 ",C,",",p," ",x,",",b),A.push("L",_,",",w),null!=S&&A.push("A",n,",",n," 0 ",L,",",1-p," ",S,",",k);return A.push("Z"),A.join("")}function t(n,t){return"M0,"+n+"A"+n+","+n+" 0 1,"+t+" 0,"+-n+"A"+n+","+n+" 0 1,"+t+" 0,"+n}var e=hu,r=pu,i=su,u=ql,o=gu,a=vu,l=du;return n.innerRadius=function(t){return arguments.length?(e=En(t),n):e},n.outerRadius=function(t){return arguments.length?(r=En(t),n):r},n.cornerRadius=function(t){return arguments.length?(i=En(t),n):i},n.padRadius=function(t){return arguments.length?(u=t==ql?ql:En(t),n):u},n.startAngle=function(t){return arguments.length?(o=En(t),n):o},n.endAngle=function(t){return arguments.length?(a=En(t),n):a},n.padAngle=function(t){return arguments.length?(l=En(t),n):l},n.centroid=function(){var n=(+e.apply(this,arguments)+ +r.apply(this,arguments))/2,t=(+o.apply(this,arguments)+ +a.apply(this,arguments))/2-Io;return[Math.cos(t)*n,Math.sin(t)*n]},n};var ql="auto";ao.svg.line=function(){return Mu(m)};var Tl=ao.map({linear:xu,"linear-closed":bu,step:_u,"step-before":wu,"step-after":Su,basis:zu,"basis-open":Lu,"basis-closed":qu,bundle:Tu,cardinal:Eu,"cardinal-open":ku,"cardinal-closed":Nu,monotone:Fu});Tl.forEach(function(n,t){t.key=n,t.closed=/-closed$/.test(n)});var Rl=[0,2/3,1/3,0],Dl=[0,1/3,2/3,0],Pl=[0,1/6,2/3,1/6];ao.svg.line.radial=function(){var n=Mu(Hu);return n.radius=n.x,delete n.x,n.angle=n.y,delete n.y,n},wu.reverse=Su,Su.reverse=wu,ao.svg.area=function(){return Ou(m)},ao.svg.area.radial=function(){var n=Ou(Hu);return n.radius=n.x,delete n.x,n.innerRadius=n.x0,delete n.x0,n.outerRadius=n.x1,delete n.x1,n.angle=n.y,delete n.y,n.startAngle=n.y0,delete n.y0,n.endAngle=n.y1,delete n.y1,n},ao.svg.chord=function(){function n(n,a){var l=t(this,u,n,a),c=t(this,o,n,a);return"M"+l.p0+r(l.r,l.p1,l.a1-l.a0)+(e(l,c)?i(l.r,l.p1,l.r,l.p0):i(l.r,l.p1,c.r,c.p0)+r(c.r,c.p1,c.a1-c.a0)+i(c.r,c.p1,l.r,l.p0))+"Z"}function t(n,t,e,r){var i=t.call(n,e,r),u=a.call(n,i,r),o=l.call(n,i,r)-Io,f=c.call(n,i,r)-Io;return{r:u,a0:o,a1:f,p0:[u*Math.cos(o),u*Math.sin(o)],p1:[u*Math.cos(f),u*Math.sin(f)]}}function e(n,t){return n.a0==t.a0&&n.a1==t.a1}function r(n,t,e){return"A"+n+","+n+" 0 "+ +(e>Fo)+",1 "+t}function i(n,t,e,r){return"Q 0,0 "+r}var u=Me,o=xe,a=Iu,l=gu,c=vu;return n.radius=function(t){return arguments.length?(a=En(t),n):a},n.source=function(t){return arguments.length?(u=En(t),n):u},n.target=function(t){return arguments.length?(o=En(t),n):o},n.startAngle=function(t){return arguments.length?(l=En(t),n):l},n.endAngle=function(t){return arguments.length?(c=En(t),n):c},n},ao.svg.diagonal=function(){function n(n,i){var u=t.call(this,n,i),o=e.call(this,n,i),a=(u.y+o.y)/2,l=[u,{x:u.x,y:a},{x:o.x,y:a},o];return l=l.map(r),"M"+l[0]+"C"+l[1]+" "+l[2]+" "+l[3]}var t=Me,e=xe,r=Yu;return n.source=function(e){return arguments.length?(t=En(e),n):t},n.target=function(t){return arguments.length?(e=En(t),n):e},n.projection=function(t){return arguments.length?(r=t,n):r},n},ao.svg.diagonal.radial=function(){var n=ao.svg.diagonal(),t=Yu,e=n.projection;return n.projection=function(n){return arguments.length?e(Zu(t=n)):t},n},ao.svg.symbol=function(){function n(n,r){return(Ul.get(t.call(this,n,r))||$u)(e.call(this,n,r))}var t=Xu,e=Vu;return n.type=function(e){return arguments.length?(t=En(e),n):t},n.size=function(t){return arguments.length?(e=En(t),n):e},n};var Ul=ao.map({circle:$u,cross:function(n){var t=Math.sqrt(n/5)/2;return"M"+-3*t+","+-t+"H"+-t+"V"+-3*t+"H"+t+"V"+-t+"H"+3*t+"V"+t+"H"+t+"V"+3*t+"H"+-t+"V"+t+"H"+-3*t+"Z"},diamond:function(n){var t=Math.sqrt(n/(2*Fl)),e=t*Fl;return"M0,"+-t+"L"+e+",0 0,"+t+" "+-e+",0Z"},square:function(n){var t=Math.sqrt(n)/2;return"M"+-t+","+-t+"L"+t+","+-t+" "+t+","+t+" "+-t+","+t+"Z"},"triangle-down":function(n){var t=Math.sqrt(n/jl),e=t*jl/2;return"M0,"+e+"L"+t+","+-e+" "+-t+","+-e+"Z"},"triangle-up":function(n){var t=Math.sqrt(n/jl),e=t*jl/2;return"M0,"+-e+"L"+t+","+e+" "+-t+","+e+"Z"}});ao.svg.symbolTypes=Ul.keys();var jl=Math.sqrt(3),Fl=Math.tan(30*Yo);Co.transition=function(n){for(var t,e,r=Hl||++Zl,i=Ku(n),u=[],o=Ol||{time:Date.now(),ease:Nr,delay:0,duration:250},a=-1,l=this.length;++au;u++){i.push(t=[]);for(var e=this[u],a=0,l=e.length;l>a;a++)(r=e[a])&&n.call(r,r.__data__,a,u)&&t.push(r)}return Wu(i,this.namespace,this.id)},Yl.tween=function(n,t){var e=this.id,r=this.namespace;return arguments.length<2?this.node()[r][e].tween.get(n):Y(this,null==t?function(t){t[r][e].tween.remove(n)}:function(i){i[r][e].tween.set(n,t)})},Yl.attr=function(n,t){function e(){this.removeAttribute(a)}function r(){this.removeAttributeNS(a.space,a.local)}function i(n){return null==n?e:(n+="",function(){var t,e=this.getAttribute(a);return e!==n&&(t=o(e,n),function(n){this.setAttribute(a,t(n))})})}function u(n){return null==n?r:(n+="",function(){var t,e=this.getAttributeNS(a.space,a.local);return e!==n&&(t=o(e,n),function(n){this.setAttributeNS(a.space,a.local,t(n))})})}if(arguments.length<2){for(t in n)this.attr(t,n[t]);return this}var o="transform"==n?$r:Mr,a=ao.ns.qualify(n);return Ju(this,"attr."+n,t,a.local?u:i)},Yl.attrTween=function(n,t){function e(n,e){var r=t.call(this,n,e,this.getAttribute(i));return r&&function(n){this.setAttribute(i,r(n))}}function r(n,e){var r=t.call(this,n,e,this.getAttributeNS(i.space,i.local));return r&&function(n){this.setAttributeNS(i.space,i.local,r(n))}}var i=ao.ns.qualify(n);return this.tween("attr."+n,i.local?r:e)},Yl.style=function(n,e,r){function i(){this.style.removeProperty(n)}function u(e){return null==e?i:(e+="",function(){var i,u=t(this).getComputedStyle(this,null).getPropertyValue(n);return u!==e&&(i=Mr(u,e),function(t){this.style.setProperty(n,i(t),r)})})}var o=arguments.length;if(3>o){if("string"!=typeof n){2>o&&(e="");for(r in n)this.style(r,n[r],e);return this}r=""}return Ju(this,"style."+n,e,u)},Yl.styleTween=function(n,e,r){function i(i,u){var o=e.call(this,i,u,t(this).getComputedStyle(this,null).getPropertyValue(n));return o&&function(t){this.style.setProperty(n,o(t),r)}}return arguments.length<3&&(r=""),this.tween("style."+n,i)},Yl.text=function(n){return Ju(this,"text",n,Gu)},Yl.remove=function(){var n=this.namespace;return this.each("end.transition",function(){var t;this[n].count<2&&(t=this.parentNode)&&t.removeChild(this)})},Yl.ease=function(n){var t=this.id,e=this.namespace;return arguments.length<1?this.node()[e][t].ease:("function"!=typeof n&&(n=ao.ease.apply(ao,arguments)),Y(this,function(r){r[e][t].ease=n}))},Yl.delay=function(n){var t=this.id,e=this.namespace;return arguments.length<1?this.node()[e][t].delay:Y(this,"function"==typeof n?function(r,i,u){r[e][t].delay=+n.call(r,r.__data__,i,u)}:(n=+n,function(r){r[e][t].delay=n}))},Yl.duration=function(n){var t=this.id,e=this.namespace;return arguments.length<1?this.node()[e][t].duration:Y(this,"function"==typeof n?function(r,i,u){r[e][t].duration=Math.max(1,n.call(r,r.__data__,i,u))}:(n=Math.max(1,n),function(r){r[e][t].duration=n}))},Yl.each=function(n,t){var e=this.id,r=this.namespace;if(arguments.length<2){var i=Ol,u=Hl;try{Hl=e,Y(this,function(t,i,u){Ol=t[r][e],n.call(t,t.__data__,i,u)})}finally{Ol=i,Hl=u}}else Y(this,function(i){var u=i[r][e];(u.event||(u.event=ao.dispatch("start","end","interrupt"))).on(n,t)});return this},Yl.transition=function(){for(var n,t,e,r,i=this.id,u=++Zl,o=this.namespace,a=[],l=0,c=this.length;c>l;l++){a.push(n=[]);for(var t=this[l],f=0,s=t.length;s>f;f++)(e=t[f])&&(r=e[o][i],Qu(e,f,o,u,{time:r.time,ease:r.ease,delay:r.delay+r.duration,duration:r.duration})),n.push(e)}return Wu(a,o,u)},ao.svg.axis=function(){function n(n){n.each(function(){var n,c=ao.select(this),f=this.__chart__||e,s=this.__chart__=e.copy(),h=null==l?s.ticks?s.ticks.apply(s,a):s.domain():l,p=null==t?s.tickFormat?s.tickFormat.apply(s,a):m:t,g=c.selectAll(".tick").data(h,s),v=g.enter().insert("g",".domain").attr("class","tick").style("opacity",Uo),d=ao.transition(g.exit()).style("opacity",Uo).remove(),y=ao.transition(g.order()).style("opacity",1),M=Math.max(i,0)+o,x=Zi(s),b=c.selectAll(".domain").data([0]),_=(b.enter().append("path").attr("class","domain"),ao.transition(b));v.append("line"),v.append("text");var w,S,k,N,E=v.select("line"),A=y.select("line"),C=g.select("text").text(p),z=v.select("text"),L=y.select("text"),q="top"===r||"left"===r?-1:1;if("bottom"===r||"top"===r?(n=no,w="x",k="y",S="x2",N="y2",C.attr("dy",0>q?"0em":".71em").style("text-anchor","middle"),_.attr("d","M"+x[0]+","+q*u+"V0H"+x[1]+"V"+q*u)):(n=to,w="y",k="x",S="y2",N="x2",C.attr("dy",".32em").style("text-anchor",0>q?"end":"start"),_.attr("d","M"+q*u+","+x[0]+"H0V"+x[1]+"H"+q*u)),E.attr(N,q*i),z.attr(k,q*M),A.attr(S,0).attr(N,q*i),L.attr(w,0).attr(k,q*M),s.rangeBand){var T=s,R=T.rangeBand()/2;f=s=function(n){return T(n)+R}}else f.rangeBand?f=s:d.call(n,s,f);v.call(n,f,s),y.call(n,s,s)})}var t,e=ao.scale.linear(),r=Vl,i=6,u=6,o=3,a=[10],l=null;return n.scale=function(t){return arguments.length?(e=t,n):e},n.orient=function(t){return arguments.length?(r=t in Xl?t+"":Vl,n):r},n.ticks=function(){return arguments.length?(a=co(arguments),n):a},n.tickValues=function(t){return arguments.length?(l=t,n):l},n.tickFormat=function(e){return arguments.length?(t=e,n):t},n.tickSize=function(t){var e=arguments.length;return e?(i=+t,u=+arguments[e-1],n):i},n.innerTickSize=function(t){return arguments.length?(i=+t,n):i},n.outerTickSize=function(t){return arguments.length?(u=+t,n):u},n.tickPadding=function(t){return arguments.length?(o=+t,n):o},n.tickSubdivide=function(){return arguments.length&&n},n};var Vl="bottom",Xl={top:1,right:1,bottom:1,left:1};ao.svg.brush=function(){function n(t){t.each(function(){var t=ao.select(this).style("pointer-events","all").style("-webkit-tap-highlight-color","rgba(0,0,0,0)").on("mousedown.brush",u).on("touchstart.brush",u),o=t.selectAll(".background").data([0]);o.enter().append("rect").attr("class","background").style("visibility","hidden").style("cursor","crosshair"),t.selectAll(".extent").data([0]).enter().append("rect").attr("class","extent").style("cursor","move");var a=t.selectAll(".resize").data(v,m);a.exit().remove(),a.enter().append("g").attr("class",function(n){return"resize "+n}).style("cursor",function(n){return $l[n]}).append("rect").attr("x",function(n){return/[ew]$/.test(n)?-3:null}).attr("y",function(n){return/^[ns]/.test(n)?-3:null}).attr("width",6).attr("height",6).style("visibility","hidden"),a.style("display",n.empty()?"none":null);var l,s=ao.transition(t),h=ao.transition(o);c&&(l=Zi(c),h.attr("x",l[0]).attr("width",l[1]-l[0]),r(s)),f&&(l=Zi(f),h.attr("y",l[0]).attr("height",l[1]-l[0]),i(s)),e(s)})}function e(n){n.selectAll(".resize").attr("transform",function(n){return"translate("+s[+/e$/.test(n)]+","+h[+/^s/.test(n)]+")"})}function r(n){n.select(".extent").attr("x",s[0]),n.selectAll(".extent,.n>rect,.s>rect").attr("width",s[1]-s[0])}function i(n){n.select(".extent").attr("y",h[0]),n.selectAll(".extent,.e>rect,.w>rect").attr("height",h[1]-h[0])}function u(){function u(){32==ao.event.keyCode&&(C||(M=null,L[0]-=s[1],L[1]-=h[1],C=2),S())}function v(){32==ao.event.keyCode&&2==C&&(L[0]+=s[1],L[1]+=h[1],C=0,S())}function d(){var n=ao.mouse(b),t=!1;x&&(n[0]+=x[0],n[1]+=x[1]),C||(ao.event.altKey?(M||(M=[(s[0]+s[1])/2,(h[0]+h[1])/2]),L[0]=s[+(n[0]f?(i=r,r=f):i=f),v[0]!=r||v[1]!=i?(e?a=null:o=null,v[0]=r,v[1]=i,!0):void 0}function m(){d(),k.style("pointer-events","all").selectAll(".resize").style("display",n.empty()?"none":null),ao.select("body").style("cursor",null),q.on("mousemove.brush",null).on("mouseup.brush",null).on("touchmove.brush",null).on("touchend.brush",null).on("keydown.brush",null).on("keyup.brush",null),z(),w({type:"brushend"})}var M,x,b=this,_=ao.select(ao.event.target),w=l.of(b,arguments),k=ao.select(b),N=_.datum(),E=!/^(n|s)$/.test(N)&&c,A=!/^(e|w)$/.test(N)&&f,C=_.classed("extent"),z=W(b),L=ao.mouse(b),q=ao.select(t(b)).on("keydown.brush",u).on("keyup.brush",v);if(ao.event.changedTouches?q.on("touchmove.brush",d).on("touchend.brush",m):q.on("mousemove.brush",d).on("mouseup.brush",m),k.interrupt().selectAll("*").interrupt(),C)L[0]=s[0]-L[0],L[1]=h[0]-L[1];else if(N){var T=+/w$/.test(N),R=+/^n/.test(N);x=[s[1-T]-L[0],h[1-R]-L[1]],L[0]=s[T],L[1]=h[R]}else ao.event.altKey&&(M=L.slice());k.style("pointer-events","none").selectAll(".resize").style("display",null),ao.select("body").style("cursor",_.style("cursor")),w({type:"brushstart"}),d()}var o,a,l=N(n,"brushstart","brush","brushend"),c=null,f=null,s=[0,0],h=[0,0],p=!0,g=!0,v=Bl[0];return n.event=function(n){n.each(function(){var n=l.of(this,arguments),t={x:s,y:h,i:o,j:a},e=this.__chart__||t;this.__chart__=t,Hl?ao.select(this).transition().each("start.brush",function(){o=e.i,a=e.j,s=e.x,h=e.y,n({type:"brushstart"})}).tween("brush:brush",function(){var e=xr(s,t.x),r=xr(h,t.y);return o=a=null,function(i){s=t.x=e(i),h=t.y=r(i),n({type:"brush",mode:"resize"})}}).each("end.brush",function(){o=t.i,a=t.j,n({type:"brush",mode:"resize"}),n({type:"brushend"})}):(n({type:"brushstart"}),n({type:"brush",mode:"resize"}),n({type:"brushend"}))})},n.x=function(t){return arguments.length?(c=t,v=Bl[!c<<1|!f],n):c},n.y=function(t){return arguments.length?(f=t,v=Bl[!c<<1|!f],n):f},n.clamp=function(t){return arguments.length?(c&&f?(p=!!t[0],g=!!t[1]):c?p=!!t:f&&(g=!!t),n):c&&f?[p,g]:c?p:f?g:null},n.extent=function(t){var e,r,i,u,l;return arguments.length?(c&&(e=t[0],r=t[1],f&&(e=e[0],r=r[0]),o=[e,r],c.invert&&(e=c(e),r=c(r)),e>r&&(l=e,e=r,r=l),e==s[0]&&r==s[1]||(s=[e,r])),f&&(i=t[0],u=t[1],c&&(i=i[1],u=u[1]),a=[i,u],f.invert&&(i=f(i),u=f(u)),i>u&&(l=i,i=u,u=l),i==h[0]&&u==h[1]||(h=[i,u])),n):(c&&(o?(e=o[0],r=o[1]):(e=s[0],r=s[1],c.invert&&(e=c.invert(e),r=c.invert(r)),e>r&&(l=e,e=r,r=l))),f&&(a?(i=a[0],u=a[1]):(i=h[0],u=h[1],f.invert&&(i=f.invert(i),u=f.invert(u)),i>u&&(l=i,i=u,u=l))),c&&f?[[e,i],[r,u]]:c?[e,r]:f&&[i,u])},n.clear=function(){return n.empty()||(s=[0,0],h=[0,0],o=a=null),n},n.empty=function(){return!!c&&s[0]==s[1]||!!f&&h[0]==h[1]},ao.rebind(n,l,"on")};var $l={n:"ns-resize",e:"ew-resize",s:"ns-resize",w:"ew-resize",nw:"nwse-resize",ne:"nesw-resize",se:"nwse-resize",sw:"nesw-resize"},Bl=[["n","e","s","w","nw","ne","se","sw"],["e","w"],["n","s"],[]],Wl=ga.format=xa.timeFormat,Jl=Wl.utc,Gl=Jl("%Y-%m-%dT%H:%M:%S.%LZ");Wl.iso=Date.prototype.toISOString&&+new Date("2000-01-01T00:00:00.000Z")?eo:Gl,eo.parse=function(n){var t=new Date(n);return isNaN(t)?null:t},eo.toString=Gl.toString,ga.second=On(function(n){return new va(1e3*Math.floor(n/1e3))},function(n,t){n.setTime(n.getTime()+1e3*Math.floor(t))},function(n){return n.getSeconds()}),ga.seconds=ga.second.range,ga.seconds.utc=ga.second.utc.range,ga.minute=On(function(n){return new va(6e4*Math.floor(n/6e4))},function(n,t){n.setTime(n.getTime()+6e4*Math.floor(t))},function(n){return n.getMinutes()}),ga.minutes=ga.minute.range,ga.minutes.utc=ga.minute.utc.range,ga.hour=On(function(n){var t=n.getTimezoneOffset()/60;return new va(36e5*(Math.floor(n/36e5-t)+t))},function(n,t){n.setTime(n.getTime()+36e5*Math.floor(t))},function(n){return n.getHours()}),ga.hours=ga.hour.range,ga.hours.utc=ga.hour.utc.range,ga.month=On(function(n){return n=ga.day(n),n.setDate(1),n},function(n,t){n.setMonth(n.getMonth()+t)},function(n){return n.getMonth()}),ga.months=ga.month.range,ga.months.utc=ga.month.utc.range;var Kl=[1e3,5e3,15e3,3e4,6e4,3e5,9e5,18e5,36e5,108e5,216e5,432e5,864e5,1728e5,6048e5,2592e6,7776e6,31536e6],Ql=[[ga.second,1],[ga.second,5],[ga.second,15],[ga.second,30],[ga.minute,1],[ga.minute,5],[ga.minute,15],[ga.minute,30],[ga.hour,1],[ga.hour,3],[ga.hour,6],[ga.hour,12],[ga.day,1],[ga.day,2],[ga.week,1],[ga.month,1],[ga.month,3],[ga.year,1]],nc=Wl.multi([[".%L",function(n){return n.getMilliseconds()}],[":%S",function(n){return n.getSeconds()}],["%I:%M",function(n){return n.getMinutes()}],["%I %p",function(n){return n.getHours()}],["%a %d",function(n){return n.getDay()&&1!=n.getDate()}],["%b %d",function(n){return 1!=n.getDate()}],["%B",function(n){return n.getMonth()}],["%Y",zt]]),tc={range:function(n,t,e){return ao.range(Math.ceil(n/e)*e,+t,e).map(io)},floor:m,ceil:m};Ql.year=ga.year,ga.scale=function(){return ro(ao.scale.linear(),Ql,nc)};var ec=Ql.map(function(n){return[n[0].utc,n[1]]}),rc=Jl.multi([[".%L",function(n){return n.getUTCMilliseconds()}],[":%S",function(n){return n.getUTCSeconds()}],["%I:%M",function(n){return n.getUTCMinutes()}],["%I %p",function(n){return n.getUTCHours()}],["%a %d",function(n){return n.getUTCDay()&&1!=n.getUTCDate()}],["%b %d",function(n){return 1!=n.getUTCDate()}],["%B",function(n){return n.getUTCMonth()}],["%Y",zt]]);ec.year=ga.year.utc,ga.scale.utc=function(){return ro(ao.scale.linear(),ec,rc)},ao.text=An(function(n){return n.responseText}),ao.json=function(n,t){return Cn(n,"application/json",uo,t)},ao.html=function(n,t){return Cn(n,"text/html",oo,t)},ao.xml=An(function(n){return n.responseXML}),"function"==typeof define&&define.amd?(this.d3=ao,define(ao)):"object"==typeof module&&module.exports?module.exports=ao:this.d3=ao}(); \ No newline at end of file diff --git a/frontend/vendor/celestial/data/constellations.json b/frontend/vendor/celestial/data/constellations.json new file mode 100644 index 0000000..39361d8 --- /dev/null +++ b/frontend/vendor/celestial/data/constellations.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","id":"And","properties":{"name":"Andromeda","desig":"And","gen":"Andromedae","rank":"1","en":"Andromeda","la":"Andromeda","ar":"المرأة المسلسلة","zh":"仙女座","cz":"Andromeda","fa":"زن به زنجیر بسته","ee":"Andromeeda","fi":"Andromeda","fr":"Andromède","de":"Andromeda","el":"Ανδρομέδα","it":"Andromeda","ja":"アンドロメダ座","ko":"안드로메다자리","hi":"देवयानी","ru":"Андромеда","es":"Andrómeda","tr":"Andromeda","he":"אנדרומדה","sw":"Mara","display":[-350,37,115]},"geometry":{"type":"Point","coordinates":[0.75,43]}},{"type":"Feature","id":"Ant","properties":{"name":"Antlia","desig":"Ant","gen":"Antliae","rank":"3","en":"Air Pump","la":"Antlia","ar":"مفرغة الهواء","zh":"唧筒座","cz":"Vývěva","fa":"تلمبه","ee":"Pump","fi":"Ilmapumppu","fr":"Machine Pneumatique","de":"Luftpumpe","el":"Αντλία","it":"Macchina Pneumatica","ja":"ポンプ座","ko":"공기펌프자리","hi":"वाताकर्षक","ru":"Насос","es":"Máquina Neumática","tr":"Pompa","he":"משאבה","sw":"Pampu","display":[154.1067,-32.4836,60]},"geometry":{"type":"Point","coordinates":[156,-36]}},{"type":"Feature","id":"Aps","properties":{"name":"Apus","desig":"Aps","gen":"Apodis","rank":"3","en":"Bird of Paradise","la":"Apus","ar":"طائر الفردوس","zh":"天燕座","cz":"Rajka","fa":"مرغ بهشتی","ee":"Paradiisilind","fi":"Paratiisilintu","fr":"Oiseau de Paradis","de":"Paradiesvogel","el":"Πτηνόν","it":"Uccello del Paradiso","ja":"ふうちょう座","ko":"극락조자리","hi":"कपोत","ru":"Райская Птица","es":"Ave del Paraíso","tr":"Cennetkuşu","he":"ציפור גן עדן","sw":"Ndege wa Peponi","display":[-118,-75,47]},"geometry":{"type":"Point","coordinates":[-120,-74]}},{"type":"Feature","id":"Aqr","properties":{"name":"Aquarius","desig":"Aqr","gen":"Aquarii","rank":"2","en":"Aquarius","la":"Aquarius","ar":"الدلو","zh":"寶瓶座","cz":"Vodnář","fa":"آب‌ریز","ee":"Veevalaja","fi":"Vesimies","fr":"Verseau","de":"Wassermann","el":"Υδροχόος","it":"Acquario","ja":"みずがめ座","ko":"물병자리","hi":"कुंभ","ru":"Водолей","es":"Acuario","tr":"Kova","he":"דלי","sw":"Ndoo","display":[-25,-11,115]},"geometry":{"type":"Point","coordinates":[-22.5,-5]}},{"type":"Feature","id":"Aql","properties":{"name":"Aquila","desig":"Aql","gen":"Aquilae","rank":"1","en":"Eagle","la":"Aquila","ar":"العقاب","zh":"天鷹座","cz":"Orel","fa":"شاهین","ee":"Kotkas","fi":"Kotka","fr":"Aigle","de":"Adler","el":"Αετός","it":"Aquila","ja":"わし座","ko":"독수리자리","hi":"गरुड","ru":"Орёл","es":"Águila","tr":"Kartal","he":"נשר","sw":"Ukabu","display":[-64.9946,3.4109,64]},"geometry":{"type":"Point","coordinates":[-69,8]}},{"type":"Feature","id":"Ara","properties":{"name":"Ara","desig":"Ara","gen":"Arae","rank":"3","en":"Altar","la":"Ara","ar":"المجمرة","zh":"天壇座","cz":"Oltář","fa":"آتش‌دان","ee":"Altar","fi":"Alttari","fr":"Autel","de":"Altar","el":"Βωμός","it":"Altare","ja":"さいだん座","ko":"제단자리","hi":"पीठ","ru":"Жертвенник","es":"Altar","tr":"Sunak","he":"מזבח","sw":"Madhabahu","display":[-99.3786,-56.5883,59]},"geometry":{"type":"Point","coordinates":[-102,-56]}},{"type":"Feature","id":"Ari","properties":{"name":"Aries","desig":"Ari","gen":"Arietis","rank":"1","en":"Ram","la":"Aries","ar":"الحمل","zh":"白羊座","cz":"Beran","fa":"بره","ee":"Jäär","fi":"Oinas","fr":"Bélier","de":"Widder","el":"Κριός","it":"Ariete","ja":"おひつじ座","ko":"양자리","hi":"मेष","ru":"Овен","es":"Carnero","tr":"Koç","he":"טלה","sw":"Kondoo","display":[39.5412,20.7923,61]},"geometry":{"type":"Point","coordinates":[42,22]}},{"type":"Feature","id":"Aur","properties":{"name":"Auriga","desig":"Aur","gen":"Aurigae","rank":"1","en":"Charioteer","la":"Auriga","ar":"ممسك الأعنة","zh":"御夫座","cz":"Vozka","fa":"ارّابه‌ران","ee":"Veomees","fi":"Ajomies","fr":"Cocher","de":"Fuhrmann","el":"Ηνίοχος","it":"Auriga","ja":"ぎょしゃ座","ko":"마차부자리","hi":"सारथी","ru":"Возничий","es":"Cochero","tr":"Arabacı","he":"עגלון","sw":"Hudhi","display":[91,42,88]},"geometry":{"type":"Point","coordinates":[82.5,37]}},{"type":"Feature","id":"Boo","properties":{"name":"Boötes","desig":"Boo","gen":"Boötis","rank":"1","en":"Herdsman","la":"Bootes","ar":"العواء","zh":"牧夫座","cz":"Pastýř","fa":"مَتراک","ee":"Karjane","fi":"Karhunvartija","fr":"Bouvier","de":"Bärenhüter","el":"Βοώτης","it":"Boote","ja":"うしかい座","ko":"목동자리","hi":"भूतप","ru":"Волопас","es":"Boyero","tr":"Çoban","he":"רועה דובים","sw":"Bakari","display":[-140,31,108]},"geometry":{"type":"Point","coordinates":[-136.5,35]}},{"type":"Feature","id":"Cae","properties":{"name":"Caelum","desig":"Cae","gen":"Caeli","rank":"3","en":"Graving tool","la":"Caelum","ar":"آلة النقاش","zh":"雕具座","cz":"Rydlo","fa":"اِسکِنِه","ee":"Uurits","fi":"Veistotaltta","fr":"Burin","de":"Grabstichel","el":"Γλυφείον","it":"Bulino dello Incisore","ja":"ちょうこくぐ座","ko":"조각칼자리","hi":"टंक","ru":"Резец","es":"Cincel","tr":"Çelikkalem","he":"מפסלת","sw":"Patasi","display":[70.5687,-37.8817,46]},"geometry":{"type":"Point","coordinates":[73.5,-42]}},{"type":"Feature","id":"Cam","properties":{"name":"Camelopardalis","desig":"Cam","gen":"Camelopardalis","rank":"2","en":"Giraffe","la":"Camelopardalis","ar":"الزرافة","zh":"鹿豹座","cz":"Žirafa","fa":"زرّافه","ee":"Kaelkirjak","fi":"Kirahvi","fr":"Girafe","de":"Giraffe","el":"Καμηλοπάρδαλις","it":"Giraffa","ja":"きりん座","ko":"기린자리","hi":"करभ","ru":"Жираф","es":"Jirafa","tr":"Zürafa","he":"ג'ירף","sw":"Twiga","display":[80,70,160]},"geometry":{"type":"Point","coordinates":[84,72]}},{"type":"Feature","id":"Cnc","properties":{"name":"Cancer","desig":"Cnc","gen":"Cancri","rank":"2","en":"Crab","la":"Cancer","ar":"السرطان","zh":"巨蟹座","cz":"Rak","fa":"خرچنگ","ee":"Vähk","fi":"Krapu","fr":"Cancer","de":"Krebs","el":"Καρκίνος","it":"Cancro","ja":"かに座","ko":"게자리","hi":"कर्क","ru":"Рак","es":"Cangrejo","tr":"Yengeç","he":"סרטן","sw":"Nge","display":[129.7392,19.8058,57]},"geometry":{"type":"Point","coordinates":[128.25,27]}},{"type":"Feature","id":"CVn","properties":{"name":"Canes Venatici","desig":"CVn","gen":"Canum Venaticorum","rank":"2","en":"Hunting Dogs","la":"Canes Venatici","ar":"السلوقيان","zh":"獵犬座","cz":"Honicí psi","fa":"تازی‌ها","ee":"Jahipenid","fi":"Ajokoirat","fr":"Chiens de Chasse","de":"Jagdhunde","el":"Κύνες Θηρευτικοί","it":"Cani da Caccia","ja":"りょうけん座","ko":"사냥개자리","hi":"श्याम शबल","ru":"Гончие Псы","es":"Lebreles","tr":"Av Köpekleri","he":"כלבי ציד","sw":"Mbwa wawindaji","display":[-163.2598,40.1018,65]},"geometry":{"type":"Point","coordinates":[-168,43]}},{"type":"Feature","id":"CMa","properties":{"name":"Canis Major","desig":"CMa","gen":"Canis Majoris","rank":"1","en":"Great Dog","la":"Canis Maior","ar":"الكلب الأكبر","zh":"大犬座","cz":"Velký pes","fa":"سگِ مِهتَر","ee":"Suur Peni","fi":"Iso koira","fr":"Grand Chien","de":"Großer Hund","el":"Κύων Μέγας","it":"Cane Maggiore","ja":"おおいぬ座","ko":"큰개자리","hi":"बृहद् लुब्धक","ru":"Большой Пёс","es":"Perro Mayor","tr":"Büyük Köpek","he":"כלב גדול","sw":"Mbwa Mkubwa","display":[102.4362,-22.1403,54]},"geometry":{"type":"Point","coordinates":[97.5,-26]}},{"type":"Feature","id":"CMi","properties":{"name":"Canis Minor","desig":"CMi","gen":"Canis Minoris","rank":"2","en":"Little Dog","la":"Canis Minor","ar":"الكلب الأصغر","zh":"小犬座","cz":"Malý pes","fa":"سگِ کِهتَر","ee":"Väike Peni","fi":"Pieni koira","fr":"Petit Chien","de":"Kleiner Hund","el":"Κύων Μικρός","it":"Cane Minore","ja":"こいぬ座","ko":"작은개자리","hi":"लघु लुब्धक","ru":"Малый Пёс","es":"Perro Menor","tr":"Küçük Köpek","he":"כלב קטן","sw":"Mbwa Mdogo","display":[114.7929,6.4272,51]},"geometry":{"type":"Point","coordinates":[109.5,5]}},{"type":"Feature","id":"Cap","properties":{"name":"Capricornus","desig":"Cap","gen":"Capricorni","rank":"2","en":"Capricorn","la":"Capricornus","ar":"الجدي","zh":"摩羯座","cz":"Kozoroh","fa":"بُزماهی","ee":"Kaljukits","fi":"Kauris","fr":"Capricorne","de":"Steinbock","el":"Αιγόκερως","it":"Capricorno","ja":"やぎ座","ko":"염소자리","hi":"मकर","ru":"Козерог","es":"Capricornio","tr":"Oğlak","he":"גדי","sw":"Mbuzi","display":[-44.268,-18.0232,63]},"geometry":{"type":"Point","coordinates":[-45,-22]}},{"type":"Feature","id":"Car","properties":{"name":"Carina","desig":"Car","gen":"Carinae","rank":"1","en":"Keel","la":"Carina","ar":"القاعدة","zh":"船底座","cz":"Lodní kýl","fa":"شاه‌تخته","ee":"Kiil","fi":"Köli","fr":"Carène","de":"Kiel des Schiffs","el":"Τρόπις","it":"Carena","ja":"りゅうこつ座","ko":"용골자리","hi":"नौकातल","ru":"Киль","es":"Carina","tr":"Karina","he":"שדרית","sw":"Mkuku","display":[130.4248,-63.2193,114]},"geometry":{"type":"Point","coordinates":[144,-66]}},{"type":"Feature","id":"Cas","properties":{"name":"Cassiopeia","desig":"Cas","gen":"Cassiopeiae","rank":"1","en":"Cassiopeia","la":"Cassiopeia","ar":"الكرسي","zh":"仙后座","cz":"Kasiopeja","fa":"خداوندِ اورُنگ","ee":"Kassiopeia","fi":"Kassiopeia","fr":"Cassiopée","de":"Kassiopeia","el":"Κασσιόπη","it":"Cassiopeia","ja":"カシオペヤ座","ko":"카시오페이아자리","hi":"शर्मिष्ठा","ru":"Кассиопея","es":"Casiopea","tr":"Koltuk","he":"קסיופאה","sw":"Mke wa Kurusi","display":[-340.2111,62.184,106]},"geometry":{"type":"Point","coordinates":[-6,55.5]}},{"type":"Feature","id":"Cen","properties":{"name":"Centaurus","desig":"Cen","gen":"Centauri","rank":"1","en":"Centaur","la":"Centaurus","ar":"قنطور","zh":"半人馬座","cz":"Kentaur","fa":"قنطورُس","ee":"Kentaur","fi":"Kentauri","fr":"Centaure","de":"Zentaur","el":"Κένταυρος","it":"Centauro","ja":"ケンタウルス座","ko":"센타우루스자리","hi":"नरतुरंग","ru":"Центавр","es":"Centauro","tr":"Erboğa","he":"קנטאור","sw":"Kantarusi","display":[-164,-47,115]},"geometry":{"type":"Point","coordinates":[-160.5,-40]}},{"type":"Feature","id":"Cep","properties":{"name":"Cepheus","desig":"Cep","gen":"Cephei","rank":"2","en":"Cepheus","la":"Cepheus","ar":"الملتهب","zh":"仙王座","cz":"Kefeus","fa":"کیکاوُس","ee":"Kefeus","fi":"Kefeus","fr":"Céphée","de":"Kepheus","el":"Κηφεύς","it":"Cefeo","ja":"ケフェウス座","ko":"세페우스자리","hi":"वृषपर्वा","ru":"Цефей","es":"Cefeo","tr":"Kral","he":"קפאוס","sw":"Kifausi","display":[-18,73,78]},"geometry":{"type":"Point","coordinates":[-22.5,71]}},{"type":"Feature","id":"Cet","properties":{"name":"Cetus","desig":"Cet","gen":"Ceti","rank":"1","en":"Whale","la":"Cetus","ar":"قيطس","zh":"鯨魚座","cz":"Velryba","fa":"وال","ee":"Vaal","fi":"Valaskala","fr":"Baleine","de":"Walfisch","el":"Κήτος","it":"Balena","ja":"くじら座","ko":"고래자리","hi":"तिमिंगिल","ru":"Кит","es":"Ballena","tr":"Balina","he":"לווייתן","sw":"Ketusi","display":[-335,-7,117]},"geometry":{"type":"Point","coordinates":[28.5,-5]}},{"type":"Feature","id":"Cha","properties":{"name":"Chamaeleon","desig":"Cha","gen":"Chamaeleontis","rank":"3","en":"Chamaeleon","la":"Chamaeleon","ar":"الحرباء","zh":"蝘蜒座","cz":"Chameleón","fa":"هورپا","ee":"Kameeleon","fi":"Kameleontti","fr":"Caméléon","de":"Chamäleon","el":"Χαμαιλέων","it":"Camaleonte","ja":"カメレオン座","ko":"카멜레온자리","hi":"वायुभक्ष","ru":"Хамелеон","es":"Camaleón","tr":"Bukalemun","he":"זיקית","sw":"Kinyonga","display":[160,-79,95]},"geometry":{"type":"Point","coordinates":[-171,-81]}},{"type":"Feature","id":"Cir","properties":{"name":"Circinus","desig":"Cir","gen":"Circini","rank":"3","en":"Compass","la":"Circinus","ar":"البيكار","zh":"圓規座","cz":"Kružítko","fa":"دوپَرگار","ee":"Sirkel","fi":"Harppi","fr":"Compas","de":"Zirkel","el":"Διαβήτης","it":"Compasso","ja":"コンパス座","ko":"컴퍼스자리","hi":"कर्काटक","ru":"Циркуль","es":"Compás","tr":"Pergel","he":"מחוגה","sw":"Bikari","display":[-141.365,-63.0304,63]},"geometry":{"type":"Point","coordinates":[-142.5,-67]}},{"type":"Feature","id":"Col","properties":{"name":"Columba","desig":"Col","gen":"Columbae","rank":"3","en":"Dove","la":"Columba","ar":"الحمامة","zh":"天鴿座","cz":"Holubice","fa":"کبوتر","ee":"Tuvi","fi":"Kyyhkynen","fr":"Colombe","de":"Taube","el":"Περιστερά","it":"Colomba","ja":"はと座","ko":"비둘기자리","hi":"पारावत","ru":"Голубь","es":"Paloma","tr":"Güvercin","he":"יונה","sw":"Njiwa","display":[87.9392,-35.0944,59]},"geometry":{"type":"Point","coordinates":[85.5,-39]}},{"type":"Feature","id":"Com","properties":{"name":"Coma Berenices","desig":"Com","gen":"Comae Berenices","rank":"3","en":"Berenice's Hair","la":"Coma Berenices","ar":"الهلبة","zh":"后髮座","cz":"Vlasy Bereniky","fa":"گیسویِ بِرِنیسه","ee":"Berenike Juuksed","fi":"Bereniken hiukset","fr":"Chevelure de Bérénice","de":"Haar der Berenike","el":"Κόμη Βερενίκης","it":"Chioma di Berenice","ja":"かみのけ座","ko":"머리털자리","hi":"अरुंधती केश","ru":"Волосы Вероники","es":"Pelo de Berenice","tr":"Berenis'in Saçı","he":"שיערות ברניקי","sw":"Nywele za Berenike","display":[-168.1833,23.3057,59]},"geometry":{"type":"Point","coordinates":[-166.5,24]}},{"type":"Feature","id":"CrA","properties":{"name":"Corona Austrina","desig":"CrA","gen":"Coronae Austrini","rank":"3","en":"Southern Crown","la":"Corona Australis","ar":"الإكليل الجنوبي","zh":"南冕座","cz":"Jižní koruna","fa":"افسرِ نیم‌روز","ee":"Lõunakroon","fi":"Etelän kruunu","fr":"Couronne Australe","de":"Südliche Krone","el":"Στέφανος Νότιος","it":"Corona Australe","ja":"みなみのかんむり座","ko":"남쪽왕관자리","hi":"दक्षिण मुकुट","ru":"Южная Корона","es":"Corona Austral","tr":"Güneytacı","he":"כתר דרומי","sw":"Kobe","display":[-80.3024,-41.1475,55]},"geometry":{"type":"Point","coordinates":[-78,-40]}},{"type":"Feature","id":"CrB","properties":{"name":"Corona Borealis","desig":"CrB","gen":"Coronae Borealis","rank":"2","en":"Northern Crown","la":"Corona Borealis","ar":"الإكليل الشمالي","zh":"北冕座","cz":"Severní koruna","fa":"افسرِ شمالی","ee":"Põhjakroon","fi":"Pohjan kruunu","fr":"Couronne Boréale","de":"Nördliche Krone","el":"Στέφανος Βόρειος","it":"Corona Boreale","ja":"かんむり座","ko":"북쪽왕관자리","hi":"उत्तर मुकुट","ru":"Северная Корона","es":"Corona Boreal","tr":"Kuzeytacı","he":"כתר צפוני","sw":"Kasi ya Masakini","display":[-122.3521,32.6249,52]},"geometry":{"type":"Point","coordinates":[-121.5,32]}},{"type":"Feature","id":"Crv","properties":{"name":"Corvus","desig":"Crv","gen":"Corvi","rank":"3","en":"Crow","la":"Corvus","ar":"الغراب","zh":"烏鴉座","cz":"Havran","fa":"کلاغ","ee":"Kaaren","fi":"Korppi","fr":"Corbeau","de":"Rabe","el":"Κόραξ","it":"Corvo","ja":"からす座","ko":"남십자자리","hi":"ध्वांक्ष","ru":"Ворон","es":"Cuervo","tr":"Karga","he":"עורב","sw":"Ghurabu","display":[-173.3709,-18.4366,50]},"geometry":{"type":"Point","coordinates":[-174,-19.5]}},{"type":"Feature","id":"Crt","properties":{"name":"Crater","desig":"Crt","gen":"Crateris","rank":"3","en":"Cup","la":"Crater","ar":"الباطية","zh":"巨爵座","cz":"Pohár","fa":"پیاله","ee":"Karikas","fi":"Malja","fr":"Coupe","de":"Becher","el":"Κρατήρ","it":"Coppa","ja":"コップ座","ko":"컵자리","hi":"चषक","ru":"Чаша","es":"Copa","tr":"Kupa","he":"גביע","sw":"Batiya","display":[170.9371,-15.929,51]},"geometry":{"type":"Point","coordinates":[174.75,-15]}},{"type":"Feature","id":"Cru","properties":{"name":"Crux","desig":"Cru","gen":"Crux","rank":"2","en":"Cross","la":"Crux","ar":"صليب الجنوب","zh":"南十字座","cz":"Jižní kříž","fa":"چَلیپا","ee":"Lõunarist","fi":"Etelän risti","fr":"Croix du Sud","de":"Kreuz des Südens","el":"Σταυρός Νότιος","it":"Croce del Sud","ja":"みなみじゅうじ座","ko":"남십자자리","hi":"त्रिशंकु","ru":"Южный Крест","es":"Cruz del Sur","tr":"Haç","he":"הצלב הדרומי","sw":"Salibu","display":[-173.2521,-60.1864,50]},"geometry":{"type":"Point","coordinates":[-166.5,-62]}},{"type":"Feature","id":"Cyg","properties":{"name":"Cygnus","desig":"Cyg","gen":"Cygni","rank":"1","en":"Swan","la":"Cygnus","ar":"الدجاجة","zh":"天鵝座","cz":"Labuť","fa":"قو","ee":"Luik","fi":"Joutsen","fr":"Cygne","de":"Schwan","el":"Κύκνος","it":"Cigno","ja":"はくちょう座","ko":"고니자리","hi":"हंस","ru":"Лебедь","es":"Cisne","tr":"Kuğu","he":"ברבור","sw":"Dajaja","display":[-51.1804,44.5451,79]},"geometry":{"type":"Point","coordinates":[-52.5,50]}},{"type":"Feature","id":"Del","properties":{"name":"Delphinus","desig":"Del","gen":"Delphini","rank":"3","en":"Dolphin","la":"Delphinus","ar":"الدلفين","zh":"海豚座","cz":"Delfín","fa":"دُلفین","ee":"Delfiin","fi":"Delfiini","fr":"Dauphin","de":"Delphin","el":"Δελφίν","it":"Delfino","ja":"いるか座","ko":"돌고래자리","hi":"तिमि","ru":"Дельфин","es":"Delfín","tr":"Yunus","he":"דולפין","sw":"Dalufnin","display":[-49.5963,11.671,49]},"geometry":{"type":"Point","coordinates":[-51,6]}},{"type":"Feature","id":"Dor","properties":{"name":"Dorado","desig":"Dor","gen":"Doradus","rank":"3","en":"Goldfish","la":"Dorado","ar":"أبو سيف","zh":"劍魚座","cz":"Mečoun","fa":"زَرماهی","ee":"Kuldkala","fi":"Kultakala","fr":"Dorade","de":"Goldfisch","el":"Δοράς","it":"Pesce Dorato","ja":"かじき座","ko":"황새치자리","hi":"असिदंष्ट्र","ru":"Золотая Рыба","es":"Pez dorado","tr":"Kılıçbalığı","he":"דג זהב","sw":"Panji","display":[78.628,-59.3871,76]},"geometry":{"type":"Point","coordinates":[76.5,-64]}},{"type":"Feature","id":"Dra","properties":{"name":"Draco","desig":"Dra","gen":"Draconis","rank":"2","en":"Dragon","la":"Draco","ar":"التنين","zh":"天龍座","cz":"Drak","fa":"اژدها","ee":"Lohe","fi":"Lohikäärme","fr":"Dragon","de":"Drache","el":"Δράκων","it":"Dragone","ja":"りゅう座","ko":"용자리","hi":"कालेय","ru":"Дракон","es":"Dragón","tr":"Ejderha","he":"דרקון","sw":"Tinini","display":[-132.8393,67.0066,208]},"geometry":{"type":"Point","coordinates":[-91.5,64]}},{"type":"Feature","id":"Equ","properties":{"name":"Equuleus","desig":"Equ","gen":"Equulei","rank":"3","en":"Colt","la":"Equuleus","ar":"قطعة الفرس","zh":"小馬座","cz":"Koníček","fa":"پاره‌یِ اسب","ee":"Hobu","fi":"Pieni hevonen","fr":"Petit Cheval","de":"Füllen","el":"Ιππάριον","it":"Cavallo","ja":"こうま座","ko":"조랑말자리","hi":"अश्वमुख","ru":"Малый Конь","es":"Caballito","tr":"Tay","he":"סוסון","sw":"Mwanafarasi","display":[-42.1855,7.7582,43]},"geometry":{"type":"Point","coordinates":[-39.75,11.5]}},{"type":"Feature","id":"Eri","properties":{"name":"Eridanus","desig":"Eri","gen":"Eridani","rank":"1","en":"Eridanus","la":"Eridanus","ar":"النهر","zh":"波江座","cz":"Eridanus","fa":"رودخانه","ee":"Eriidanus","fi":"Eridanus","fr":"Eridan","de":"Eridanus","el":"Ηριδανός","it":"Fiume Eridano","ja":"エリダヌス座","ko":"에리다누스자리","hi":"यमुना","ru":"Эридан","es":"Erídano","tr":"Irmak","he":"ארידנוס","sw":"Nahari","display":[50,-28,129]},"geometry":{"type":"Point","coordinates":[52.5,-18]}},{"type":"Feature","id":"For","properties":{"name":"Fornax","desig":"For","gen":"Fornacis","rank":"3","en":"Furnace","la":"Fornax","ar":"الكور","zh":"天爐座","cz":"Pec","fa":"کوره","ee":"Ahi","fi":"Sulatusuuni","fr":"Fourneau","de":"Chemischer Ofen","el":"Κάμινος","it":"Fornace","ja":"ろ座","ko":"화로자리","hi":"अश्मंत","ru":"Печь","es":"Horno","tr":"Ocak","he":"תנור","sw":"Tanuri","display":[41.9698,-31.6346,66]},"geometry":{"type":"Point","coordinates":[40.5,-28]}},{"type":"Feature","id":"Gem","properties":{"name":"Gemini","desig":"Gem","gen":"Geminorum","rank":"1","en":"Twins","la":"Gemini","ar":"التوأمان","zh":"雙子座","cz":"Blíženci","fa":"دوپیِکَر","ee":"Kaksikud","fi":"Kaksoset","fr":"Gémeaux","de":"Zwillinge","el":"Δίδυμοι","it":"Gemelli","ja":"ふたご座","ko":"쌍둥이자리","hi":"मिथुन","ru":"Близнецы","es":"Gemelos","tr":"İkizler","he":"תאומים","sw":"Mapacha","display":[106.0592,22.6002,67]},"geometry":{"type":"Point","coordinates":[107.25,23.5]}},{"type":"Feature","id":"Gru","properties":{"name":"Grus","desig":"Gru","gen":"Gruis","rank":"3","en":"Crane","la":"Grus","ar":"الكركي","zh":"天鶴座","cz":"Jeřáb","fa":"دُرنا","ee":"Kurg","fi":"Kurki","fr":"Grue","de":"Kranich","el":"Γερανός","it":"Gru","ja":"つる座","ko":"두루미자리","hi":"बक","ru":"Журавль","es":"Grulla","tr":"Turna","he":"עגור","sw":"Kuruki","display":[-23.1517,-46.3518,65]},"geometry":{"type":"Point","coordinates":[-18,-41.5]}},{"type":"Feature","id":"Her","properties":{"name":"Hercules","desig":"Her","gen":"Herculis","rank":"2","en":"Hercules","la":"Hercules","ar":"الجاثي","zh":"武仙座","cz":"Herkules","fa":"بر زانو نشسته","ee":"Herkules","fi":"Herkules","fr":"Hercule","de":"Herkules","el":"Ηρακλής","it":"Ercole","ja":"ヘルクレス座","ko":"허큘리스자리","hi":"शौरि","ru":"Геркулес","es":"Hércules","tr":"Herkül","he":"הרקולס","sw":"Rakisi","display":[-99,27,107]},"geometry":{"type":"Point","coordinates":[-106.5,35]}},{"type":"Feature","id":"Hor","properties":{"name":"Horologium","desig":"Hor","gen":"Horologii","rank":"3","en":"Clock","la":"Horologium","ar":"الساعة","zh":"時鐘座","cz":"Hodiny","fa":"ساعت","ee":"Kell","fi":"Heilurikello","fr":"Horloge","de":"Pendeluhr","el":"Ωρολόγιον","it":"Orologio","ja":"とけい座","ko":"시계자리","hi":"कालयंत्र","ru":"Часы","es":"Reloj","tr":"Saat","he":"שעון מטוטלת","sw":"Saa","display":[49.1394,-53.3363,67]},"geometry":{"type":"Point","coordinates":[51,-52]}},{"type":"Feature","id":"Hya","properties":{"name":"Hydra","desig":"Hya","gen":"Hydrae","rank":"2","en":"Sea Serpent","la":"Hydra","ar":"الحية","zh":"長蛇座","cz":"Hydra","fa":"آب‌مار","ee":"Hüdra","fi":"Vesikäärme","fr":"Hydre Femelle","de":"Wasserschlange","el":"Ύδρα","it":"Idra femmina","ja":"うみへび座","ko":"바다뱀자리","hi":"वासुकि","ru":"Гидра","es":"Hidra","tr":"Suyılanı","he":"נחש מים/N","sw":"Shuja","display":[174,-14,173]},"geometry":{"type":"Point","coordinates":[150,-22]}},{"type":"Feature","id":"Hyi","properties":{"name":"Hydrus","desig":"Hyi","gen":"Hydri","rank":"3","en":"Hydrus","la":"Hydrus","ar":"ثعبان البحر","zh":"水蛇座","cz":"Malý vodní had","fa":"نَرمار","ee":"Lõunahüdra","fi":"Etelän vesikäärme","fr":"Hydre Mâle","de":"Kleine Männliche Wasserschlange","el":"Ύδρος","it":"Idra maschio","ja":"みずへび座","ko":"물뱀자리","hi":"अलगर्द","ru":"Южная Гидра","es":"Hidra Macho","tr":"Küçük suyılanı","he":"נחש מים קטן","sw":"Nyoka Maji","display":[35.1637,-69.9564,102]},"geometry":{"type":"Point","coordinates":[34.5,-72]}},{"type":"Feature","id":"Ind","properties":{"name":"Indus","desig":"Ind","gen":"Indi","rank":"3","en":"Indian","la":"Indus","ar":"الهندي","zh":"印第安座","cz":"Indián","fa":"هندی","ee":"Indiaanlane","fi":"Intiaani","fr":"Indien","de":"Inder","el":"Ινδός","it":"Indiano","ja":"インディアン座","ko":"인디언자리","hi":"यम","ru":"Индеец","es":"Indio","tr":"Hintli","he":"אינדיאני","sw":"Mhindi","display":[-40,-63,75]},"geometry":{"type":"Point","coordinates":[-42,-55.5]}},{"type":"Feature","id":"Lac","properties":{"name":"Lacerta","desig":"Lac","gen":"Lacertae","rank":"3","en":"Lizard","la":"Lacerta","ar":"العظاءة","zh":"蠍虎座","cz":"Ještěrka","fa":"چَلپاسه","ee":"Sisalik","fi":"Sisilisko","fr":"Lézard","de":"Eidechse","el":"Σαύρα","it":"Lucertola","ja":"とかげ座","ko":"도마뱀자리","hi":"सरठ","ru":"Ящерица","es":"Lagarto","tr":"Kertenkele","he":"לטאה","sw":"Mjusi","display":[-23.079,46.0418,50]},"geometry":{"type":"Point","coordinates":[-18,47]}},{"type":"Feature","id":"Leo","properties":{"name":"Leo","desig":"Leo","gen":"Leonis","rank":"1","en":"Lion","la":"Leo","ar":"الأسد","zh":"獅子座","cz":"Lev","fa":"شیر","ee":"Lõvi","fi":"Leijona","fr":"Lion","de":"Löwe","el":"Λέων","it":"Leone","ja":"しし座","ko":"사자자리","hi":"सिंह","ru":"Лев","es":"León","tr":"Aslan","he":"אריה","sw":"Simba","display":[160,13,95]},"geometry":{"type":"Point","coordinates":[159,15]}},{"type":"Feature","id":"LMi","properties":{"name":"Leo Minor","desig":"LMi","gen":"Leonis Minoris","rank":"3","en":"Little Lion","la":"Leo Minor","ar":"الأسد الأصغر","zh":"小獅座","cz":"Malý lev","fa":"شیرِ کِهتَر","ee":"Väike Lõvi","fi":"Pieni leijona","fr":"Petit Lion","de":"Kleiner Löwe","el":"Λέων Μικρός","it":"Leone Minore","ja":"こじし座","ko":"작은사자자리","hi":"लघु सिंह","ru":"Малый Лев","es":"León Menor","tr":"Küçük Aslan","he":"אריה קטן","sw":"Simba Mdogo","display":[153.6801,32.1346,61]},"geometry":{"type":"Point","coordinates":[157.5,30]}},{"type":"Feature","id":"Lep","properties":{"name":"Lepus","desig":"Lep","gen":"Leporis","rank":"3","en":"Hare","la":"Lepus","ar":"الأرنب","zh":"天兔座","cz":"Zajíc","fa":"خرگوش","ee":"Jänes","fi":"Jänis","fr":"Lièvre","de":"Hase","el":"Λαγωός","it":"Lepre","ja":"うさぎ座","ko":"토끼자리","hi":"शशक","ru":"Заяц","es":"Conejo","tr":"Tavşan","he":"ארנבת","sw":"Arinabu","display":[83.4875,-19.0463,54]},"geometry":{"type":"Point","coordinates":[88.5,-25]}},{"type":"Feature","id":"Lib","properties":{"name":"Libra","desig":"Lib","gen":"Librae","rank":"2","en":"Balance","la":"Libra","ar":"الميزان","zh":"天秤座","cz":"Váhy","fa":"ترازو","ee":"Kaalud","fi":"Vaaka","fr":"Balance","de":"Waage","el":"Ζυγός","it":"Bilancia","ja":"てんびん座","ko":"천칭자리","hi":"तुळ","ru":"Весы","es":"Balanza","tr":"Terazi","he":"מאזניים","sw":"Mizani","display":[-132.0099,-15.2346,60]},"geometry":{"type":"Point","coordinates":[-129,-26]}},{"type":"Feature","id":"Lup","properties":{"name":"Lupus","desig":"Lup","gen":"Lupi","rank":"3","en":"Wolf","la":"Lupus","ar":"السبع","zh":"豺狼座","cz":"Vlk","fa":"گُرگ","ee":"Hunt","fi":"Susi","fr":"Loup","de":"Wolf","el":"Λύκος","it":"Lupo","ja":"おおかみ座","ko":"이리자리","hi":"वृक","ru":"Волк","es":"Lobo","tr":"Kurt","he":"זאב","sw":"Dhibu","display":[-131.6985,-42.7089,63]},"geometry":{"type":"Point","coordinates":[-131.25,-35]}},{"type":"Feature","id":"Lyn","properties":{"name":"Lynx","desig":"Lyn","gen":"Lyncis","rank":"3","en":"Lynx","la":"Lynx","ar":"الوشق","zh":"天貓座","cz":"Rys","fa":"سیاه‌گوش","ee":"Ilves","fi":"Ilves","fr":"Lynx","de":"Luchs","el":"Λυγξ","it":"Lince","ja":"やまねこ座","ko":"살쾡이자리","hi":"गवय","ru":"Рысь","es":"Lince","tr":"Vaşak","he":"לינקס","sw":"Washaki","display":[119.8833,47.4666,87]},"geometry":{"type":"Point","coordinates":[121.5,49]}},{"type":"Feature","id":"Lyr","properties":{"name":"Lyra","desig":"Lyr","gen":"Lyrae","rank":"2","en":"Lyre","la":"Lyra","ar":"القيثارة","zh":"天琴座","cz":"Lyra","fa":"چَنگِ رومی","ee":"Lüüra","fi":"Lyyra","fr":"Lyre","de":"Leier","el":"Λύρα","it":"Lira","ja":"こと座","ko":"거문고자리","hi":"स्वरमंडळ","ru":"Лира","es":"Lira","tr":"Çalgı","he":"נבל","sw":"Shaliaki","display":[-77.2067,36.6893,54]},"geometry":{"type":"Point","coordinates":[-81,30]}},{"type":"Feature","id":"Men","properties":{"name":"Mensa","desig":"Men","gen":"Mensae","rank":"3","en":"Mensa","la":"Mensa","ar":"الجبل","zh":"山案座","cz":"Tabulová hora","fa":"کوه‌میز","ee":"Lavamägi","fi":"Pöytävuori","fr":"Table","de":"Tafelberg","el":"Τράπεζα","it":"Mensa","ja":"テーブルさん座","ko":"테이블산자리","hi":"त्रिकुट","ru":"Столовая Гора","es":"Mesa","tr":"Masa","he":"הר השולחן","sw":"Meza","display":[81.2238,-77.5041,101]},"geometry":{"type":"Point","coordinates":[82.5,-80]}},{"type":"Feature","id":"Mic","properties":{"name":"Microscopium","desig":"Mic","gen":"Microscopii","rank":"3","en":"Microscope","la":"Microscopium","ar":"المجهر","zh":"顯微鏡座","cz":"Mikroskop","fa":"ریزبین","ee":"Mikroskoop","fi":"Mikroskooppi","fr":"Microscope","de":"Mikroskop","el":"Μικροσκόπιον","it":"Microscopio","ja":"けんびきょう座","ko":"현미경자리","hi":"सूक्ष्मदर्शी","ru":"Микроскоп","es":"Microscopio","tr":"Mikroskop","he":"מיקרוסקופ","sw":"Hadubini","display":[-45.5299,-36.2748,50]},"geometry":{"type":"Point","coordinates":[-43.5,-37]}},{"type":"Feature","id":"Mon","properties":{"name":"Monoceros","desig":"Mon","gen":"Monocerotis","rank":"2","en":"Unicorn","la":"Monoceros","ar":"وحيد القرن","zh":"麒麟座","cz":"Jednorožec","fa":"تک‌شاخ","ee":"Ükssarvik","fi":"Yksisarvinen","fr":"Licorne","de":"Einhorn","el":"Μονόκερως","it":"Unicorno","ja":"いっかくじゅう座","ko":"외뿔소자리","hi":"शृंगाश्व","ru":"Единорог","es":"Unicornio","tr":"Tekboynuz","he":"חד קרן","sw":"Munukero","display":[105,0,73]},"geometry":{"type":"Point","coordinates":[114.75,-6]}},{"type":"Feature","id":"Mus","properties":{"name":"Musca","desig":"Mus","gen":"Muscae","rank":"3","en":"Fly","la":"Musca","ar":"الذبابة","zh":"蒼蠅座","cz":"Moucha","fa":"مَگَس","ee":"Kärbes","fi":"Kärpänen","fr":"Mouche","de":"Fliege","el":"Μυία","it":"Mosca","ja":"はえ座","ko":"파리자리","hi":"मक्षिका","ru":"Муха","es":"Mosca","tr":"Sinek","he":"זבוב","sw":"Nzi","display":[-171.1808,-70.161,73]},"geometry":{"type":"Point","coordinates":[-165,-73]}},{"type":"Feature","id":"Nor","properties":{"name":"Norma","desig":"Nor","gen":"Normae","rank":"3","en":"Level","la":"Norma","ar":"مربع النجار","zh":"矩尺座","cz":"Pravítko","fa":"چارگوش","ee":"Vinkel","fi":"Kulmaviivoitin","fr":"Règle","de":"Winkelmaß","el":"Γνώμων","it":"Squadra","ja":"じょうぎ座","ko":"직각자자리","hi":"रेखाटणी","ru":"Наугольник","es":"Escuadra","tr":"Cetvel","he":"סרגל","sw":"Pembemraba","display":[-121.4543,-51.3515,56]},"geometry":{"type":"Point","coordinates":[-117,-52]}},{"type":"Feature","id":"Oct","properties":{"name":"Octans","desig":"Oct","gen":"Octantis","rank":"3","en":"Octant","la":"Octans","ar":"الثمن","zh":"南極座","cz":"Oktant","fa":"هَشتَک","ee":"Oktant","fi":"Oktantti","fr":"Octant","de":"Oktant","el":"Οκτάς","it":"Ottante","ja":"はちぶんぎ座","ko":"팔분의자리","hi":"अष्टक","ru":"Октант","es":"Bastón","tr":"Sekizlik","he":"אוקטנט","sw":"Thumni","display":[-30,-83,50]},"geometry":{"type":"Point","coordinates":[-60,-80]}},{"type":"Feature","id":"Oph","properties":{"name":"Ophiuchus","desig":"Oph","gen":"Ophiuchi","rank":"2","en":"Ophiuchus","la":"Ophiuchus","ar":"الحواء","zh":"蛇夫座","cz":"Hadonoš","fa":"ماراَفسای","ee":"Maokandja","fi":"Käärmeenkantaja","fr":"Ophiuchus","de":"Schlangenträger","el":"Οφιούχος","it":"Ofiucho","ja":"へびつかい座","ko":"뱀주인자리","hi":"भुजंगधारी","ru":"Змееносец","es":"Ofiuco","tr":"Yılancı","he":"נושא הנחש","sw":"Hawaa","display":[-99,-7,105]},"geometry":{"type":"Point","coordinates":[-102,3]}},{"type":"Feature","id":"Ori","properties":{"name":"Orion","desig":"Ori","gen":"Orionis","rank":"1","en":"Orion","la":"Orion","ar":"الجبار","zh":"獵戶座","cz":"Orion","fa":"شکارچی","ee":"Orion","fi":"Orion","fr":"Orion","de":"Orion","el":"Ωρίων","it":"Orione","ja":"オリオン座","ko":"오리온자리","hi":"मृग","ru":"Орион","es":"Orión","tr":"Avcı","he":"אוריון","sw":"Jabari","display":[83,6,75]},"geometry":{"type":"Point","coordinates":[84,13]}},{"type":"Feature","id":"Pav","properties":{"name":"Pavo","desig":"Pav","gen":"Pavonis","rank":"2","en":"Peacock","la":"Pavo","ar":"الطاووس","zh":"孔雀座","cz":"Páv","fa":"طاووس","ee":"Paabulind","fi":"Riikinkukko","fr":"Paon","de":"Pfau","el":"Ταώς","it":"Pavone","ja":"くじゃく座","ko":"공작자리","hi":"मयुर","ru":"Павлин","es":"Pavo","tr":"Tavus","he":"טווס","sw":"Tausi","display":[-65.8235,-65.7815,93]},"geometry":{"type":"Point","coordinates":[-63,-62]}},{"type":"Feature","id":"Peg","properties":{"name":"Pegasus","desig":"Peg","gen":"Pegasi","rank":"1","en":"Pegasus","la":"Pegasus","ar":"الفرس الأعظم","zh":"飛馬座","cz":"Pegas","fa":"اسب بال‌دار","ee":"Pegasus","fi":"Pegasus","fr":"Pégase","de":"Pegasus","el":"Πήγασος","it":"Pegaso","ja":"ペガスス座","ko":"페가수스자리","hi":"उच्चै:श्रवा","ru":"Пегас","es":"Pegaso","tr":"Kanatlıat","he":"פגסוס","sw":"Farasi","display":[-19,19,95]},"geometry":{"type":"Point","coordinates":[-25.5,16]}},{"type":"Feature","id":"Per","properties":{"name":"Perseus","desig":"Per","gen":"Persei","rank":"1","en":"Perseus","la":"Perseus","ar":"حامل رأس الغول","zh":"英仙座","cz":"Perseus","fa":"پَرساوُش","ee":"Perseus","fi":"Perseus","fr":"Persée","de":"Perseus","el":"Περσεύς","it":"Perseo","ja":"ペルセウス座","ko":"페르세우스자리","hi":"ययाती","ru":"Персей","es":"Perseo","tr":"Kahraman","he":"פרסאוס","sw":"Farisi","display":[47.6241,45.0132,85]},"geometry":{"type":"Point","coordinates":[66,45]}},{"type":"Feature","id":"Phe","properties":{"name":"Phoenix","desig":"Phe","gen":"Phoenicis","rank":"2","en":"Phoenix","la":"Phoenix","ar":"العنقاء","zh":"鳳凰座","cz":"Fénix","fa":"سیمرغ","ee":"Fööniks","fi":"Feeniks","fr":"Phénix","de":"Phoenix","el":"Φοίνιξ","it":"Fenice","ja":"ほうおう座","ko":"봉황자리","hi":"जटायू","ru":"Феникс","es":"Fénix","tr":"Anka","he":"עוף החול","sw":"Zoraki","display":[-346.0216,-48.5762,80]},"geometry":{"type":"Point","coordinates":[16.5,-43]}},{"type":"Feature","id":"Pic","properties":{"name":"Pictor","desig":"Pic","gen":"Pictoris","rank":"3","en":"Painter","la":"Pictor","ar":"آلة الرسام","zh":"繪架座","cz":"Malíř","fa":"سه‌پایه","ee":"Maalija","fi":"Maalari","fr":"Peintre","de":"Maler","el":"Οκρίβας","it":"Pittore","ja":"がか座","ko":"화가자리","hi":"चित्रफलक","ru":"Живописец","es":"Paleta del Pintor","tr":"Ressam","he":"כן ציור","sw":"Mchoraji","display":[85.6144,-53.4741,70]},"geometry":{"type":"Point","coordinates":[82.5,-50]}},{"type":"Feature","id":"Psc","properties":{"name":"Pisces","desig":"Psc","gen":"Piscium","rank":"2","en":"Fishes","la":"Pisces","ar":"الحوت","zh":"雙魚座","cz":"Ryby","fa":"دوماهی","ee":"Kalad","fi":"Kalat","fr":"Poissons","de":"Fische","el":"Ιχθύες","it":"Pesci","ja":"うお座","ko":"물고기자리","hi":"मीन","ru":"Рыбы","es":"Peces","tr":"Balık","he":"דגים","sw":"Samaki","display":[-353,14,125]},"geometry":{"type":"Point","coordinates":[19.5,15]}},{"type":"Feature","id":"PsA","properties":{"name":"Piscis Austrinus","desig":"PsA","gen":"Piscis Austrini","rank":"2","en":"Southern Fish","la":"Piscis Austrinus","ar":"الحوت الجنوبي","zh":"南魚座","cz":"Jižní ryba","fa":"ماهیِ نیم‌روزی","ee":"Lõunakala","fi":"Etelän kala","fr":"Poisson Austral","de":"Südlicher Fisch","el":"Ιχθύς Νότιος","it":"Pesce Australe","ja":"みなみのうお座","ko":"남쪽물고기자리","hi":"दक्षिण मत्स्य","ru":"Южная Рыба","es":"Pez Austral","tr":"Güneybalığı","he":"דג דרומי","sw":"Hutu Junubi","display":[-25.7324,-30.6422,60]},"geometry":{"type":"Point","coordinates":[-27,-29]}},{"type":"Feature","id":"Pup","properties":{"name":"Puppis","desig":"Pup","gen":"Puppis","rank":"2","en":"Poop Deck","la":"Puppis","ar":"الكوثل","zh":"船尾座","cz":"Lodní záď","fa":"کشتی‌دُم","ee":"Ahter","fi":"Peräkeula","fr":"Poupe","de":"Achterdeck","el":"Πρύμνη","it":"Poppa","ja":"とも座","ko":"고물자리","hi":"नौका अरित्र","ru":"Корма","es":"Popa","tr":"Pupa","he":"ירכתי הספינה","sw":"Shetri","display":[109,-31,91]},"geometry":{"type":"Point","coordinates":[111,-46]}},{"type":"Feature","id":"Pyx","properties":{"name":"Pyxis","desig":"Pyx","gen":"Pyxidis","rank":"3","en":"Compass","la":"Pyxis","ar":"بيت الإبرة","zh":"羅盤座","cz":"Kompas","fa":"قطب‌نما","ee":"Kompass","fi":"Kompassi","fr":"Boussole","de":"Schiffskompass","el":"Πυξίς","it":"Bussola","ja":"らしんばん座","ko":"나침반자리","hi":"दिग्दर्शक","ru":"Компас","es":"Brújula","tr":"Kumpas","he":"מצפן","sw":"Dira","display":[134.2911,-27.3516,50]},"geometry":{"type":"Point","coordinates":[132,-24]}},{"type":"Feature","id":"Ret","properties":{"name":"Reticulum","desig":"Ret","gen":"Reticuli","rank":"3","en":"Net","la":"Reticulum","ar":"الشبكة","zh":"網罟座","cz":"Síť","fa":"تاربَست","ee":"Võrk","fi":"Verkko","fr":"Réticule","de":"Netz","el":"Δίκτυον","it":"Reticolo","ja":"レチクル座","ko":"그물자리","hi":"जाल","ru":"Сетка","es":"Retículo","tr":"Ağcık","he":"רשת","sw":"Nyavu","display":[58.8186,-59.9975,56]},"geometry":{"type":"Point","coordinates":[55.5,-61]}},{"type":"Feature","id":"Sge","properties":{"name":"Sagitta","desig":"Sge","gen":"Sagittae","rank":"3","en":"Arrow","la":"Sagitta","ar":"السهم","zh":"天箭座","cz":"Šíp","fa":"پیکان","ee":"Nool","fi":"Nuoli","fr":"Flèche","de":"Pfeil","el":"Βέλος","it":"Freccia","ja":"や座","ko":"화살자리","hi":"शर","ru":"Стрела","es":"Flecha","tr":"Okçuk","he":"חץ","sw":"Sagita","display":[-65.237,18.8614,56]},"geometry":{"type":"Point","coordinates":[-69,18]}},{"type":"Feature","id":"Sgr","properties":{"name":"Sagittarius","desig":"Sgr","gen":"Sagittarii","rank":"1","en":"Archer","la":"Sagittarius","ar":"الرامي","zh":"人馬座","cz":"Střelec","fa":"نیم‌اسب","ee":"Ambur","fi":"Jousimies","fr":"Sagittaire","de":"Schütze","el":"Τοξότης","it":"Sagittario","ja":"いて座","ko":"궁수자리","hi":"धनु","ru":"Стрелец","es":"Sagitario","tr":"Yay","he":"קשת","sw":"Mshale","display":[-73.5153,-28.4769,76]},"geometry":{"type":"Point","coordinates":[-67.5,-34]}},{"type":"Feature","id":"Sco","properties":{"name":"Scorpius","desig":"Sco","gen":"Scorpii","rank":"1","en":"Scorpion","la":"Scorpius","ar":"العقرب","zh":"天蠍座","cz":"Štír","fa":"کَژدُم","ee":"Skorpion","fi":"Skorpioni","fr":"Scorpion","de":"Skorpion","el":"Σκορπιός","it":"Scorpione","ja":"さそり座","ko":"전갈자리","hi":"वृश्चिक","ru":"Скорпион","es":"Escorpión","tr":"Akrep","he":"עקרב","sw":"Nge","display":[-106,-32,73]},"geometry":{"type":"Point","coordinates":[-111,-38]}},{"type":"Feature","id":"Scl","properties":{"name":"Sculptor","desig":"Scl","gen":"Sculptoris","rank":"3","en":"Sculptor","la":"Sculptor","ar":"معمل النحات","zh":"玉夫座","cz":"Sochař","fa":"سنگ‌تراش","ee":"Kujur","fi":"Kuvanveistäjä","fr":"Sculpteur","de":"Bildhauer","el":"Γλύπτης","it":"Scultore","ja":"ちょうこくしつ座","ko":"조각가자리","hi":"पाषाणकुट्टक","ru":"Скульптор","es":"Escultor","tr":"Heykeltraş","he":"פסל","sw":"Najari","display":[-353.4301,-32.0884,75]},"geometry":{"type":"Point","coordinates":[1.5,-33]}},{"type":"Feature","id":"Sct","properties":{"name":"Scutum","desig":"Sct","gen":"Scuti","rank":"3","en":"Shield","la":"Scutum","ar":"الترس","zh":"盾牌座","cz":"Štít","fa":"سِپَر","ee":"Kilp","fi":"Kilpi","fr":"Écu de Sobieski","de":"Schild","el":"Ασπίς","it":"Scudo","ja":"たて座","ko":"방패자리","hi":"फलक","ru":"Щит","es":"Escudo","tr":"Kalkan","he":"מגן","sw":"Ngao","display":[-79.9036,-9.8886,44]},"geometry":{"type":"Point","coordinates":[-78,-12.5]}},{"type":"Feature","id":"Ser","properties":{"name":"Serpens Caput","desig":"Ser","gen":"Serpentis","rank":"3","en":"Serpent","la":"Serpens","ar":"الحية","zh":"巨蛇座","cz":"Had","fa":"افعی","ee":"Madu","fi":"Käärme","fr":"Serpent","de":"Schlange","el":"Όφις","it":"Serpente","ja":"へび座","ko":"뱀자리","hi":"भुजंग","ru":"Змея","es":"Serpiente","tr":"Yılan","he":"נחש","sw":"Hayya","display":[-104,5,145]},"geometry":{"type":"Point","coordinates":[-127.5,5]}},{"type":"Feature","id":"Ser","properties":{"name":"Serpens Cauda","desig":"Ser","gen":"Serpentis","rank":"3","en":"Serpent","la":"Serpens","ar":"الحية","zh":"巨蛇座","cz":"Had","fa":"افعی","ee":"Madu","fi":"Käärme","fr":"Serpent","de":"Schlange","el":"Όφις","it":"Serpente","ja":"へび座","ko":"뱀자리","hi":"भुजंग","ru":"Змея","es":"Serpiente","tr":"Yılan","he":"נחש","sw":"Hayya","display":[-104,5,145]},"geometry":{"type":"Point","coordinates":[-79.5,3]}},{"type":"Feature","id":"Sex","properties":{"name":"Sextans","desig":"Sex","gen":"Sextantis","rank":"3","en":"Sextant","la":"Sextans","ar":"السدس","zh":"六分儀座","cz":"Sextant","fa":"سِکِستان","ee":"Sekstant","fi":"Sekstantti","fr":"Sextant","de":"Sextant","el":"Εξάς","it":"Sestante","ja":"ろくぶんぎ座","ko":"육분의자리","hi":"षडंश","ru":"Секстант","es":"Sextante","tr":"Altılık","he":"סקסטנט","sw":"Sudusi","display":[154.0731,-2.6147,53]},"geometry":{"type":"Point","coordinates":[157.5,-7]}},{"type":"Feature","id":"Tau","properties":{"name":"Taurus","desig":"Tau","gen":"Tauri","rank":"1","en":"Bull","la":"Taurus","ar":"الثور","zh":"金牛座","cz":"Býk","fa":"گاو","ee":"Sõnn","fi":"Härkä","fr":"Taureau","de":"Stier","el":"Ταύρος","it":"Toro","ja":"おうし座","ko":"황소자리","hi":"वृषभ","ru":"Телец","es":"Toro","tr":"Boğa","he":"שור","sw":"Ng'ombe","display":[70,15,94]},"geometry":{"type":"Point","coordinates":[54,15]}},{"type":"Feature","id":"Tel","properties":{"name":"Telescopium","desig":"Tel","gen":"Telescopii","rank":"3","en":"Telescope","la":"Telescopium","ar":"المرقب","zh":"望遠鏡座","cz":"Dalekohled","fa":"تِلِسکوپ","ee":"Teleskoop","fi":"Kaukoputki","fr":"Télescope","de":"Teleskop","el":"Τηλεσκόπιον","it":"Telescopio","ja":"ぼうえんきょう座","ko":"망원경자리","hi":"दूरदर्शी","ru":"Телескоп","es":"Telescopio","tr":"Dürbün","he":"טלסקופ","sw":"Darubini","display":[-70.1161,-51.0369,70]},"geometry":{"type":"Point","coordinates":[-82.5,-54]}},{"type":"Feature","id":"Tri","properties":{"name":"Triangulum","desig":"Tri","gen":"Trianguli","rank":"3","en":"Triangle","la":"Triangulum","ar":"المثلث","zh":"三角座","cz":"Trojúhelník","fa":"سه‌گوش","ee":"Kolmnurk","fi":"Kolmio","fr":"Triangle","de":"Dreieck","el":"Τρίγωνον","it":"Triangolo","ja":"さんかく座","ko":"삼각형자리","hi":"त्रिकोण","ru":"Треугольник","es":"Triángulo","tr":"Üçgen","he":"משולש","sw":"Pembetatu","display":[32.7664,31.4761,55]},"geometry":{"type":"Point","coordinates":[27,34]}},{"type":"Feature","id":"TrA","properties":{"name":"Triangulum Australe","desig":"TrA","gen":"Trianguli Australis","rank":"2","en":"Southern Triangle","la":"Triangulum Australe","ar":"المثلث الجنوبي","zh":"南三角座","cz":"Jižní trojúhelník","fa":"سه‌گوشِ جنوبی","ee":"Lõunakolmnurk","fi":"Etelän kolmio","fr":"Triangle Austral","de":"Südliches Dreieck","el":"Τρίγωνον Νότιον","it":"Triangolo Australe","ja":"みなみのさんかく座","ko":"남쪽삼각형자리","hi":"दक्षिण त्रिकोण","ru":"Южный Треугольник","es":"Triángulo Austral","tr":"Güney Üçgeni","he":"משולש צפוני","sw":"Pembetatu ya Kusini","display":[-118.7628,-65.388,69]},"geometry":{"type":"Point","coordinates":[-120,-67.5]}},{"type":"Feature","id":"Tuc","properties":{"name":"Tucana","desig":"Tuc","gen":"Tucanae","rank":"3","en":"Toucan","la":"Tucana","ar":"الطوقان","zh":"杜鵑座","cz":"Tukan","fa":"توکایی","ee":"Tuukan","fi":"Tukaani","fr":"Toucan","de":"Tukan","el":"Τουκάνα","it":"Tucano","ja":"きょしちょう座","ko":"큰부리새자리","hi":"कारंडव","ru":"Тукан","es":"Tucán","tr":"Tukan","he":"טוקאן","sw":"Tukani","display":[-3.34,-65.83,84]},"geometry":{"type":"Point","coordinates":[-12,-64]}},{"type":"Feature","id":"UMa","properties":{"name":"Ursa Major","desig":"UMa","gen":"Ursae Majoris","rank":"1","en":"Big Dipper","la":"Ursa Maior","ar":"الدب الأكبر","zh":"大熊座","cz":"Velká medvědice","fa":"خِرسِ مِهتَر","ee":"Suur Vanker","fi":"Iso karhu","fr":"Grande Ourse","de":"Großer Bär","el":"Άρκτος Μεγάλη","it":"Orsa Maggiore","ja":"おおぐま座","ko":"큰곰자리","hi":"सप्तर्षी","ru":"Большая Медведица","es":"Osa Mayor","tr":"Büyük Ayı","he":"הדובה הגדולה","sw":"Dubu Mkubwa","display":[169.6902,50.7212,130]},"geometry":{"type":"Point","coordinates":[165,48]}},{"type":"Feature","id":"UMi","properties":{"name":"Ursa Minor","desig":"UMi","gen":"Ursae Minoris","rank":"2","en":"Little Dipper","la":"Ursa Minor","ar":"الدب الأصغر","zh":"小熊座","cz":"Malý medvěd","fa":"خِرسِ کِهتَر","ee":"Väike Vanker","fi":"Pieni karhu","fr":"Petite Ourse","de":"Kleiner Bär","el":"Άρκτος Μικρή","it":"Orsa Minore","ja":"こぐま座","ko":"작은곰자리","hi":"लघु ऋक्ष","ru":"Малая Медведица","es":"Osa Menor","tr":"Küçük Ayı","he":"הדובה הקטנה","sw":"Dubu Mdogo","display":[-140,78,42]},"geometry":{"type":"Point","coordinates":[-133.5,68]}},{"type":"Feature","id":"Vel","properties":{"name":"Vela","desig":"Vel","gen":"Velorum","rank":"2","en":"Sails","la":"Vela","ar":"الشجاع","zh":"船帆座","cz":"Plachty","fa":"بادبان‌ها","ee":"Purjed","fi":"Purje","fr":"Voiles","de":"Segel","el":"Ιστία","it":"Vela","ja":"ほ座","ko":"돛자리","hi":"नौ-शीर्ष","ru":"Паруса","es":"Vela","tr":"Yelken","he":"מפרש","sw":"Tanga","display":[143.6591,-47.1672,81]},"geometry":{"type":"Point","coordinates":[143.25,-46]}},{"type":"Feature","id":"Vir","properties":{"name":"Virgo","desig":"Vir","gen":"Virginis","rank":"1","en":"Virgin","la":"Virgo","ar":"العذراء","zh":"處女座","cz":"Panna","fa":"خوشه","ee":"Neitsi","fi":"Neitsyt","fr":"Vierge","de":"Jungfrau","el":"Παρθένος","it":"Vergine","ja":"おとめ座","ko":"처녀자리","hi":"कन्या","ru":"Дева","es":"Virgen","tr":"Başak","he":"בתולה","sw":"Mashuke","display":[-158,-4,120]},"geometry":{"type":"Point","coordinates":[-160.5,-4]}},{"type":"Feature","id":"Vol","properties":{"name":"Volans","desig":"Vol","gen":"Volantis","rank":"3","en":"Flying Fish","la":"Volans","ar":"السمكة الطائرة","zh":"飛鱼座","cz":"Létající ryba","fa":"ماهیِ پرنده","ee":"Lendkala","fi":"Lentokala","fr":"Poisson Volant","de":"Fliegender Fisch","el":"Ιχθύς Ιπτάμενος","it":"Pesce volante","ja":"とびうお座","ko":"날치자리","hi":"तिमि","ru":"Летучая Рыба","es":"Pez Volador","tr":"Uçanbalık","he":"דג מעופף","sw":"Panzimaji","display":[116.9327,-69.8012,73]},"geometry":{"type":"Point","coordinates":[111,-73]}},{"type":"Feature","id":"Vul","properties":{"name":"Vulpecula","desig":"Vul","gen":"Vulpeculae","rank":"3","en":"Little Fox","la":"Vulpecula","ar":"الثعلب","zh":"狐狸座","cz":"Lištička","fa":"روباه","ee":"Rebane","fi":"Kettu","fr":"Petit Renard","de":"Fuchs","el":"Αλώπηξ","it":"Volpetta","ja":"こぎつね座","ko":"작은여우자리","hi":"जंबुक","ru":"Лисичка","es":"Zorro","tr":"Tilkicik","he":"שועלון","sw":"Mbweha","display":[-56.5304,24.4427,73]},"geometry":{"type":"Point","coordinates":[-64.5,21]}}]} \ No newline at end of file diff --git a/frontend/vendor/celestial/data/constellations.lines.json b/frontend/vendor/celestial/data/constellations.lines.json new file mode 100644 index 0000000..ce64cf3 --- /dev/null +++ b/frontend/vendor/celestial/data/constellations.lines.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","id":"And","properties":{"rank":"1"},"geometry":{"type":"MultiLineString","coordinates":[[[30.9748,42.3297],[17.433,35.6206],[9.832,30.861],[2.0969,29.0904]],[[14.3017,23.4176],[11.8347,24.2672],[9.6389,29.3118],[9.832,30.861],[9.2202,33.7193],[-5.4658,43.2681],[-14.5197,42.326]],[[-5.4658,43.2681],[-4.8979,44.3339],[-5.609,46.4582]],[[17.433,35.6206],[14.1884,38.4993],[12.4535,41.0789],[17.3755,47.2418],[24.4982,48.6282]],[[-4.8979,44.3339],[-3.4915,46.4203]]]}},{"type":"Feature","id":"Ant","properties":{"rank":"3"},"geometry":{"type":"MultiLineString","coordinates":[[[142.3113,-35.9513],[156.7879,-31.0678],[164.1794,-37.1378]]]}},{"type":"Feature","id":"Aps","properties":{"rank":"3"},"geometry":{"type":"MultiLineString","coordinates":[[[-138.0345,-79.0448],[-114.9133,-78.6957],[-109.2306,-77.5174],[-111.6372,-78.8971]]]}},{"type":"Feature","id":"Aqr","properties":{"rank":"2"},"geometry":{"type":"MultiLineString","coordinates":[[[-48.081,-9.4958],[-46.8365,-8.9833],[-37.1103,-5.5712],[-28.554,-0.3199],[-24.5859,-1.3873],[-22.792,-0.02],[-21.1609,-0.1175],[-16.8464,-7.5796],[-10.5241,-9.1825],[-12.6383,-21.1724]],[[-37.1103,-5.5712],[-28.3907,-13.8697]],[[-28.554,-0.3199],[-25.7915,-7.7833]],[[-22.792,-0.02],[-23.6807,1.3774]],[[-9.2574,-20.1006],[-10.5241,-9.1825],[-4.5591,-17.8165]]]}},{"type":"Feature","id":"Aql","properties":{"rank":"1"},"geometry":{"type":"MultiLineString","coordinates":[[[-63.4351,10.6133],[-62.3042,8.8683],[-61.1717,6.4068],[-57.1738,-0.8215],[-61.8818,1.0057],[-68.6254,3.1148],[-73.6475,13.8635],[-62.3042,8.8683],[-68.6254,3.1148],[-73.4378,-4.8826]]]}},{"type":"Feature","id":"Ara","properties":{"rank":"3"},"geometry":{"type":"MultiLineString","coordinates":[[[-98.6514,-56.3777],[-97.2254,-60.6838],[-107.5535,-59.0414],[-105.345,-55.9901],[-105.104,-53.1604],[-97.0396,-49.8761],[-98.675,-55.5299]]]}},{"type":"Feature","id":"Ari","properties":{"rank":"1"},"geometry":{"type":"MultiLineString","coordinates":[[[42.496,27.2605],[31.7934,23.4624],[28.66,20.808],[28.3826,19.2939]]]}},{"type":"Feature","id":"Aur","properties":{"rank":"1"},"geometry":{"type":"MultiLineString","coordinates":[[[89.8822,44.9474],[79.1723,45.998],[76.6287,41.2345],[74.2484,33.1661],[81.573,28.6075],[89.9303,37.2126],[89.8822,44.9474],[89.8818,54.2847],[79.1723,45.998],[75.4922,43.8233],[75.6195,41.0758]]]}},{"type":"Feature","id":"Boo","properties":{"rank":"1"},"geometry":{"type":"MultiLineString","coordinates":[[[-153.1844,17.4569],[-151.3288,18.3977],[-146.0847,19.1824],[-142.0425,30.3714],[-141.9805,38.3083],[-134.5135,40.3906],[-131.1243,33.3148],[-138.7533,27.0742],[-146.0847,19.1824],[-139.7127,13.7283]],[[-141.9805,38.3083],[-145.9041,46.0883],[-146.6341,51.7879],[-143.7008,51.8507],[-145.9041,46.0883]]]}},{"type":"Feature","id":"Cae","properties":{"rank":"3"},"geometry":{"type":"MultiLineString","coordinates":[[[67.7087,-44.9537],[70.1405,-41.8638],[70.5145,-37.1443],[76.1017,-35.483]]]}},{"type":"Feature","id":"Cam","properties":{"rank":"2"},"geometry":{"type":"MultiLineString","coordinates":[[[74.3217,53.7521],[75.8545,60.4422],[73.5125,66.3427],[57.5896,71.3323],[57.3803,65.526],[52.2672,59.9403]],[[73.5125,66.3427],[94.7116,69.3198],[105.0168,76.9774]]]}},{"type":"Feature","id":"Cnc","properties":{"rank":"2"},"geometry":{"type":"MultiLineString","coordinates":[[[134.6218,11.8577],[131.1712,18.1543],[130.8214,21.4685],[131.6666,28.7651]],[[131.1712,18.1543],[124.1288,9.1855]]]}},{"type":"Feature","id":"CVn","properties":{"rank":"2"},"geometry":{"type":"MultiLineString","coordinates":[[[-165.9981,38.3149],[-171.5644,41.3575]]]}},{"type":"Feature","id":"CMa","properties":{"rank":"1"},"geometry":{"type":"MultiLineString","coordinates":[[[95.6749,-17.9559],[101.2872,-16.7161],[105.7561,-23.8333],[107.0979,-26.3932],[105.4298,-27.9348],[104.6565,-28.9721],[95.0783,-30.0634]],[[111.0238,-29.3031],[107.0979,-26.3932]],[[101.2872,-16.7161],[104.0343,-17.0542],[105.9396,-15.6333],[103.5475,-12.0386],[104.0343,-17.0542]]]}},{"type":"Feature","id":"CMi","properties":{"rank":"2"},"geometry":{"type":"MultiLineString","coordinates":[[[114.8255,5.225],[111.7877,8.2893]]]}},{"type":"Feature","id":"Cap","properties":{"rank":"2"},"geometry":{"type":"MultiLineString","coordinates":[[[-55.588,-12.5082],[-54.7472,-14.7814],[-52.7849,-17.8137],[-48.4761,-25.2709],[-47.0446,-26.9191],[-38.3332,-22.4113],[-33.2398,-16.1273],[-34.9773,-16.6623],[-39.4383,-16.8345],[-43.5132,-17.2329],[-55.588,-12.5082]]]}},{"type":"Feature","id":"Car","properties":{"rank":"1"},"geometry":{"type":"MultiLineString","coordinates":[[[99.4403,-43.1959],[95.988,-52.6957],[138.2999,-69.7172],[153.4342,-70.0379],[160.7392,-64.3945],[158.0061,-61.6853],[154.2707,-61.3323],[139.2725,-59.2752],[125.6285,-59.5095],[119.1946,-52.9824],[122.3831,-47.3366],[131.1759,-54.7088],[139.2725,-59.2752]],[[160.7392,-64.3945],[166.6351,-62.4241],[167.1417,-61.9472],[168.1501,-60.3176],[167.1475,-58.975],[163.3736,-58.8532],[158.0061,-61.6853]]]}},{"type":"Feature","id":"Cas","properties":{"rank":"1"},"geometry":{"type":"MultiLineString","coordinates":[[[28.5989,63.6701],[21.454,60.2353],[14.1772,60.7167],[10.1268,56.5373],[2.2945,59.1498]]]}},{"type":"Feature","id":"Cen","properties":{"rank":"1"},"geometry":{"type":"MultiLineString","coordinates":[[[170.2517,-54.491],[-177.9104,-50.7224],[-172.9901,-50.2306],[-169.6207,-48.9599],[-155.0281,-53.4664],[-151.1151,-47.2884],[-152.5959,-42.4737],[-152.6238,-41.6877],[-148.3294,-36.37],[-141.1232,-42.1578],[-135.2096,-42.1042]],[[-152.6238,-41.6877],[-159.8508,-36.7123]],[[-140.1038,-60.8372],[-155.0281,-53.4664],[-149.0441,-60.373]],[[-172.9901,-50.2306],[-177.087,-52.3685],[172.942,-59.4421]]]}},{"type":"Feature","id":"Cep","properties":{"rank":"2"},"geometry":{"type":"MultiLineString","coordinates":[[[-52.6046,62.9941],[-48.6776,61.8388],[-40.3551,62.5856],[-34.1231,58.78],[-26.2409,57.0436],[-27.2863,58.2013],[-22.7072,58.4152],[-17.5799,66.2004],[-5.1631,77.6323],[-37.835,70.5607],[-40.3551,62.5856]],[[-37.835,70.5607],[-17.5799,66.2004]]]}},{"type":"Feature","id":"Cet","properties":{"rank":"1"},"geometry":{"type":"MultiLineString","coordinates":[[[40.8252,3.2358],[38.9686,5.5932],[37.0398,8.4601],[41.2356,10.1141],[44.9288,8.9074],[45.5699,4.0897],[40.8252,3.2358],[39.8707,0.3285],[34.8366,-2.9776],[27.8651,-10.335],[26.017,-15.9375],[10.8974,-17.9866],[4.857,-8.8239],[17.1475,-10.1823],[21.0059,-8.1833],[27.8651,-10.335]]]}},{"type":"Feature","id":"Cha","properties":{"rank":"3"},"geometry":{"type":"MultiLineString","coordinates":[[[124.6315,-76.9197],[158.8671,-78.6078],[161.318,-80.4696],[-175.4132,-79.3122],[179.9066,-78.2218],[158.8671,-78.6078]]]}},{"type":"Feature","id":"Cir","properties":{"rank":"3"},"geometry":{"type":"MultiLineString","coordinates":[[[-130.6215,-58.8012],[-139.3733,-64.9751],[-129.1556,-59.3208]]]}},{"type":"Feature","id":"Col","properties":{"rank":"3"},"geometry":{"type":"MultiLineString","coordinates":[[[95.5285,-33.4364],[87.74,-35.7683],[84.9122,-34.0741],[82.8031,-35.4705]],[[87.74,-35.7683],[89.7867,-42.8151]]]}},{"type":"Feature","id":"Com","properties":{"rank":"3"},"geometry":{"type":"MultiLineString","coordinates":[[[-162.503,17.5294],[-162.0317,27.8782],[-173.2655,28.2684]]]}},{"type":"Feature","id":"CrA","properties":{"rank":"3"},"geometry":{"type":"MultiLineString","coordinates":[[[-75.3193,-37.1074],[-73.3954,-37.0634],[-72.6319,-37.9045],[-72.4927,-39.3408],[-72.9126,-40.4967],[-74.2213,-42.0951],[-77.6042,-43.4341],[-81.6242,-42.3125]]]}},{"type":"Feature","id":"CrB","properties":{"rank":"2"},"geometry":{"type":"MultiLineString","coordinates":[[[-126.7676,31.3591],[-128.0428,29.1057],[-126.328,26.7147],[-124.3143,26.2956],[-122.6015,26.0684],[-120.6031,26.8779],[-119.6393,29.8511]]]}},{"type":"Feature","id":"Crv","properties":{"rank":"3"},"geometry":{"type":"MultiLineString","coordinates":[[[-177.8966,-24.7289],[-177.4688,-22.6198],[-176.0485,-17.5419],[-172.5339,-16.5154],[-171.4032,-23.3968],[-177.4688,-22.6198]]]}},{"type":"Feature","id":"Crt","properties":{"rank":"3"},"geometry":{"type":"MultiLineString","coordinates":[[[174.1705,-9.8022],[171.1525,-10.8593],[169.8352,-14.7785],[164.9436,-18.2988],[167.9145,-22.8258],[170.8412,-18.78],[171.2205,-17.684],[176.1907,-18.3507],[179.004,-17.1508]],[[169.8352,-14.7785],[171.2205,-17.684]]]}},{"type":"Feature","id":"Cru","properties":{"rank":"2"},"geometry":{"type":"MultiLineString","coordinates":[[[-168.0697,-59.6888],[-176.2137,-58.7489]],[[-173.3504,-63.0991],[-172.2085,-57.1132]]]}},{"type":"Feature","id":"Cyg","properties":{"rank":"1"},"geometry":{"type":"MultiLineString","coordinates":[[[-41.7659,30.2269],[-48.4472,33.9703],[-54.4429,40.2567],[-63.7563,45.1308],[-67.5735,51.7298],[-70.7243,53.3685]],[[-49.642,45.2803],[-54.4429,40.2567],[-60.9235,35.0834],[-67.3197,27.9597]]]}},{"type":"Feature","id":"Del","properties":{"rank":"3"},"geometry":{"type":"MultiLineString","coordinates":[[[-51.6968,11.3033],[-50.6127,14.5951],[-50.0905,15.9121],[-48.3381,16.1241],[-49.1353,15.0746],[-50.6127,14.5951]]]}},{"type":"Feature","id":"Dor","properties":{"rank":"3"},"geometry":{"type":"MultiLineString","coordinates":[[[64.0066,-51.4866],[68.4991,-55.045],[83.4063,-62.4898],[86.1932,-65.7355],[88.5252,-63.0896],[83.4063,-62.4898],[76.3777,-57.4727],[68.4991,-55.045]]]}},{"type":"Feature","id":"Dra","properties":{"rank":"2"},"geometry":{"type":"MultiLineString","coordinates":[[[-91.6178,56.8726],[-90.8485,51.4889],[-97.3918,52.3014],[-96.9332,55.173],[-91.6178,56.8726],[-71.8612,67.6615],[-84.8107,71.3378],[-102.8034,65.7147],[-114.0021,61.5142],[-119.5277,58.5653],[-128.7676,58.9661],[-148.9027,64.3759],[-171.6294,69.7882],[172.8509,69.3311]],[[-84.8107,71.3378],[-84.7359,72.7328]],[[-71.8612,67.6615],[-62.9569,70.2679]]]}},{"type":"Feature","id":"Equ","properties":{"rank":"3"},"geometry":{"type":"MultiLineString","coordinates":[[[-41.044,5.2478],[-41.3799,10.007],[-42.4146,10.1316]]]}},{"type":"Feature","id":"Eri","properties":{"rank":"1"},"geometry":{"type":"MultiLineString","coordinates":[[[76.9624,-5.0864],[71.3756,-3.2547],[69.0798,-3.3525],[62.9664,-6.8376],[59.5074,-13.5085],[56.5356,-12.1016],[55.8121,-9.7634],[53.2327,-9.4583],[44.1069,-8.8981],[41.0306,-13.8587],[41.2758,-18.5726],[45.5979,-23.6245],[49.8792,-21.7579],[53.447,-21.6329],[56.712,-23.2497],[68.8877,-30.5623],[66.0092,-34.0168],[64.4736,-33.7983],[57.3635,-36.2003],[54.2737,-40.2745],[49.9819,-43.0698],[44.5653,-40.3047],[40.1668,-39.8554],[36.7463,-47.7038],[34.1274,-51.5122],[28.9895,-51.6089],[24.4285,-57.2368]]]}},{"type":"Feature","id":"For","properties":{"rank":"3"},"geometry":{"type":"MultiLineString","coordinates":[[[48.0189,-28.9876],[42.2726,-32.4059],[31.1227,-29.2968]]]}},{"type":"Feature","id":"Gem","properties":{"rank":"1"},"geometry":{"type":"MultiLineString","coordinates":[[[93.7194,22.5068],[95.7401,22.5136],[100.983,25.1311],[107.7849,30.2452],[113.6494,31.8883],[116.329,28.0262],[113.9806,26.8957],[110.0307,21.9823],[106.0272,20.5703],[99.4279,16.3993],[101.3224,12.8956]],[[110.0307,21.9823],[109.5232,16.5404]]]}},{"type":"Feature","id":"Gru","properties":{"rank":"3"},"geometry":{"type":"MultiLineString","coordinates":[[[-14.78,-52.7541],[-17.8613,-51.3169],[-19.3331,-46.8846],[-22.5607,-43.7492],[-27.9417,-46.961],[-19.3331,-46.8846]],[[-22.6826,-43.4956],[-26.0962,-41.3467],[-28.4713,-39.5434],[-31.5178,-37.3649]]]}},{"type":"Feature","id":"Her","properties":{"rank":"2"},"geometry":{"type":"MultiLineString","coordinates":[[[-114.5199,19.1531],[-112.445,21.4896],[-109.6785,31.6027],[-109.276,38.9223],[-111.4742,42.437],[-115.0648,46.3134],[-117.8076,44.9349],[-121.8311,42.4515]],[[-109.6785,31.6027],[-104.9276,30.9264]],[[-109.276,38.9223],[-101.2382,36.8092]],[[-90.9367,37.2505],[-99.0794,37.1459],[-101.2382,36.8092],[-104.9276,30.9264],[-101.242,24.8392],[-93.3853,27.7207],[-90.5588,29.2479],[-88.1144,28.7625]],[[-101.3381,14.3903],[-112.445,21.4896]]]}},{"type":"Feature","id":"Hor","properties":{"rank":"3"},"geometry":{"type":"MultiLineString","coordinates":[[[63.5005,-42.2944],[40.6394,-50.8003],[39.3515,-52.5431],[40.1651,-54.5499],[45.9034,-59.7378],[44.6992,-64.0713]]]}},{"type":"Feature","id":"Hya","properties":{"rank":"2"},"geometry":{"type":"MultiLineString","coordinates":[[[131.6938,6.4188],[132.1082,5.8378],[130.8061,3.3987],[129.6893,3.3414],[129.414,5.7038],[131.6938,6.4188],[133.8484,5.9456],[138.5911,2.3143],[144.964,-1.1428],[141.8968,-8.6586],[147.8696,-14.8466],[152.647,-12.3541],[156.5226,-16.8363],[162.4062,-16.1936],[173.2505,-31.8576],[178.2272,-33.9081],[-160.2696,-23.1715],[-148.4071,-26.6824],[-137.4279,-27.9604]]]}},{"type":"Feature","id":"Hyi","properties":{"rank":"3"},"geometry":{"type":"MultiLineString","coordinates":[[[6.4378,-77.2542],[56.8098,-74.239],[39.8973,-68.2669],[35.4373,-68.6594],[28.7339,-67.6473],[29.6925,-61.5699]]]}},{"type":"Feature","id":"Ind","properties":{"rank":"3"},"geometry":{"type":"MultiLineString","coordinates":[[[-50.6082,-47.2915],[-48.9903,-51.921],[-46.2975,-58.4542],[-30.5205,-54.9926],[-40.0334,-53.4494],[-50.6082,-47.2915]]]}},{"type":"Feature","id":"Lac","properties":{"rank":"3"},"geometry":{"type":"MultiLineString","coordinates":[[[-24.1099,52.229],[-22.1771,50.2825],[-22.6174,47.7069],[-24.7436,46.5366],[-22.3781,43.1234],[-19.8714,44.2763],[-22.6174,47.7069],[-23.8709,49.4764],[-24.1099,52.229]],[[-22.3781,43.1234],[-26.5303,39.7149],[-26.0076,37.7487]]]}},{"type":"Feature","id":"Leo","properties":{"rank":"1"},"geometry":{"type":"MultiLineString","coordinates":[[[152.093,11.9672],[151.8331,16.7627],[154.9931,19.8415],[168.5271,20.5237],[177.2649,14.5721],[168.56,15.4296],[152.093,11.9672]],[[154.9931,19.8415],[154.1726,23.4173],[148.1909,26.007],[146.4628,23.7743]]]}},{"type":"Feature","id":"LMi","properties":{"rank":"3"},"geometry":{"type":"MultiLineString","coordinates":[[[151.8573,35.2447],[156.4784,33.7961],[163.3279,34.2149],[156.9708,36.7072],[151.8573,35.2447],[143.5558,36.3976]]]}},{"type":"Feature","id":"Lep","properties":{"rank":"3"},"geometry":{"type":"MultiLineString","coordinates":[[[91.5388,-14.9353],[89.1012,-14.1677],[86.7389,-14.822],[83.1826,-17.8223],[78.2329,-16.2055],[76.3653,-22.371],[82.0613,-20.7594],[86.1158,-22.4484],[87.8304,-20.8791]],[[78.3078,-12.9413],[78.2329,-16.2055],[79.8939,-13.1768]]]}},{"type":"Feature","id":"Lib","properties":{"rank":"2"},"geometry":{"type":"MultiLineString","coordinates":[[[-133.9824,-25.282],[-137.2804,-16.0418],[-130.7483,-9.3829],[-126.1184,-14.7895],[-125.744,-28.1351],[-125.336,-29.7778]],[[-137.2804,-16.0418],[-126.1184,-14.7895]]]}},{"type":"Feature","id":"Lup","properties":{"rank":"3"},"geometry":{"type":"MultiLineString","coordinates":[[[-122.2603,-33.6272],[-125.0584,-34.4119],[-129.5485,-36.2614],[-129.657,-40.6475],[-135.367,-43.134],[-139.5177,-47.3882],[-131.9288,-52.0992],[-130.3666,-47.8753],[-129.3297,-44.6896],[-126.2148,-41.1668],[-119.9695,-38.3967],[-118.3519,-36.8023]],[[-129.657,-40.6475],[-126.2148,-41.1668]]]}},{"type":"Feature","id":"Lyn","properties":{"rank":"3"},"geometry":{"type":"MultiLineString","coordinates":[[[94.9058,59.011],[104.3192,58.4228],[111.6785,49.2115],[125.7088,43.1881],[135.1599,41.7829],[139.711,36.8026],[140.2638,34.3926]]]}},{"type":"Feature","id":"Lyr","properties":{"rank":"2"},"geometry":{"type":"MultiLineString","coordinates":[[[-78.8068,37.6051],[-78.9051,39.6127],[-80.7653,38.7837],[-78.8068,37.6051],[-76.3738,36.8986],[-75.2641,32.6896],[-77.48,33.3627],[-78.8068,37.6051]]]}},{"type":"Feature","id":"Men","properties":{"rank":"3"},"geometry":{"type":"MultiLineString","coordinates":[[[92.5603,-74.753],[82.9709,-76.341],[73.7967,-74.9369],[75.6792,-71.3143]]]}},{"type":"Feature","id":"Mic","properties":{"rank":"3"},"geometry":{"type":"MultiLineString","coordinates":[[[-47.508,-33.7797],[-47.8786,-43.9885],[-39.8098,-40.8095],[-40.5155,-32.1725],[-44.6772,-32.2578],[-47.508,-33.7797]]]}},{"type":"Feature","id":"Mon","properties":{"rank":"2"},"geometry":{"type":"MultiLineString","coordinates":[[[115.3118,-9.5511],[122.1485,-2.9838],[107.9661,-0.4928],[97.2045,-7.0331],[93.7139,-6.2748]],[[107.9661,-0.4928],[101.9652,2.4122],[95.942,4.5929],[98.2259,7.333],[100.2444,9.8958]]]}},{"type":"Feature","id":"Mus","properties":{"rank":"3"},"geometry":{"type":"MultiLineString","coordinates":[[[176.4017,-66.7288],[-175.6072,-67.9607],[-170.7041,-69.1356],[-168.43,-68.1081],[-164.4322,-71.5489],[-171.8833,-72.133],[-170.7041,-69.1356]]]}},{"type":"Feature","id":"Nor","properties":{"rank":"3"},"geometry":{"type":"MultiLineString","coordinates":[[[-118.3773,-45.1732],[-113.204,-47.5548],[-115.0399,-50.1555],[-119.1963,-49.2297],[-118.3773,-45.1732]]]}},{"type":"Feature","id":"Oct","properties":{"rank":"3"},"geometry":{"type":"MultiLineString","coordinates":[[[-143.2699,-83.6679],[-18.4854,-81.3816],[-34.6306,-77.39],[-143.2699,-83.6679]]]}},{"type":"Feature","id":"Oph","properties":{"rank":"2"},"geometry":{"type":"MultiLineString","coordinates":[[[-90.2434,-9.7736],[-93.0268,2.7073],[-94.1319,4.5673],[-96.2664,12.56],[-105.5829,9.375],[-112.2716,1.9839],[-116.4136,-3.6943],[-115.4196,-4.6925],[-110.7103,-10.5671],[-102.4055,-15.7249]],[[-105.5829,9.375],[-110.7103,-10.5671],[-112.2151,-16.6127],[-113.244,-18.4563],[-113.9742,-20.0373],[-113.6037,-23.4472]],[[-94.1319,4.5673],[-102.4055,-15.7249],[-99.4976,-24.9995],[-98.1614,-29.867]]]}},{"type":"Feature","id":"Ori","properties":{"rank":"1"},"geometry":{"type":"MultiLineString","coordinates":[[[91.893,14.7685],[88.5958,20.2762],[90.9799,20.1385],[92.985,14.2088],[90.5958,9.6473],[88.7929,7.4071],[81.2828,6.3497],[73.7239,10.1508]],[[74.6371,1.714],[73.5629,2.4407],[72.8015,5.6051],[72.46,6.9613],[72.653,8.9002],[73.7239,10.1508],[74.0928,13.5145],[76.1423,15.4041],[77.4248,15.5972]],[[78.6345,-8.2016],[81.1192,-2.3971],[83.0017,-0.2991],[81.2828,6.3497],[83.7845,9.9342],[88.7929,7.4071],[85.1897,-1.9426],[86.9391,-9.6696]],[[85.1897,-1.9426],[84.0534,-1.2019],[83.0017,-0.2991]]]}},{"type":"Feature","id":"Pav","properties":{"rank":"2"},"geometry":{"type":"MultiLineString","coordinates":[[[-53.5881,-56.7351],[-48.7604,-66.2032],[-57.8183,-66.1821],[-76.9457,-62.1876],[-84.1932,-61.4939],[-87.8549,-63.6686],[-93.5667,-64.7239],[-79.2411,-71.4281],[-59.8519,-72.9105],[-48.7604,-66.2032],[-38.3891,-65.3662]]]}},{"type":"Feature","id":"Peg","properties":{"rank":"1"},"geometry":{"type":"MultiLineString","coordinates":[[[-27.5031,33.1782],[-19.2494,30.2212],[-14.0564,28.0828],[2.0969,29.0904],[3.309,15.1836],[-13.8098,15.2053],[-18.3267,12.1729],[-19.6345,10.8314],[-27.4501,6.1979],[-33.9535,9.875]],[[-13.8098,15.2053],[-14.0564,28.0828],[-17.4992,24.6016],[-18.3672,23.5657],[-28.2472,25.3451],[-33.8386,25.645]]]}},{"type":"Feature","id":"Per","properties":{"rank":"1"},"geometry":{"type":"MultiLineString","coordinates":[[[56.0797,32.2882],[58.533,31.8836],[59.7413,35.791],[59.4635,40.0102],[56.2985,42.5785],[55.7313,47.7876],[54.1224,48.1926],[51.0807,49.8612],[46.1991,53.5064],[42.6742,55.8955],[43.5644,52.7625],[47.2667,49.6133],[47.374,44.8575],[47.0422,40.9556],[47.8224,39.6116],[46.2941,38.8403],[44.6903,39.6627],[44.9162,41.0329],[47.0422,40.9556]],[[61.646,50.3513],[63.7244,48.4093],[62.1654,47.7125],[55.7313,47.7876]],[[47.2667,49.6133],[41.0499,49.2284],[25.9152,50.6887]]]}},{"type":"Feature","id":"Phe","properties":{"rank":"2"},"geometry":{"type":"MultiLineString","coordinates":[[[6.571,-42.306],[16.521,-46.7184],[22.0914,-43.3182],[22.8129,-49.0727],[17.0962,-55.2458],[16.521,-46.7184],[2.3527,-45.7474],[6.571,-42.306]]]}},{"type":"Feature","id":"Pic","properties":{"rank":"3"},"geometry":{"type":"MultiLineString","coordinates":[[[102.0477,-61.9414],[87.4569,-56.1667],[86.8212,-51.0665]]]}},{"type":"Feature","id":"Psc","properties":{"rank":"2"},"geometry":{"type":"MultiLineString","coordinates":[[[18.4373,24.5837],[17.9152,30.0896],[19.8666,27.2641],[18.4373,24.5837],[17.8634,21.0347],[22.8709,15.3458],[26.3485,9.1577],[30.5118,2.7638],[28.389,3.1875],[25.3579,5.4876],[22.5463,6.1438],[18.4329,7.5754],[15.7359,7.8901],[12.1706,7.5851],[-0.1721,6.8633],[-5.0123,5.6263],[-8.0079,6.379],[-9.9142,5.3813],[-10.7086,3.2823],[-8.2669,1.2556],[-4.4883,1.78],[-3.402,3.4868],[-5.0123,5.6263]],[[-10.7086,3.2823],[-14.0308,3.82]]]}},{"type":"Feature","id":"PsA","properties":{"rank":"2"},"geometry":{"type":"MultiLineString","coordinates":[[[-19.8361,-27.0436],[-15.5873,-29.6222],[-16.0129,-32.5396],[-16.8686,-32.8755],[-22.1236,-32.3461],[-27.9041,-32.9885],[-33.7633,-33.0258],[-33.066,-30.8983],[-27.9041,-32.9885],[-19.8361,-27.0436]]]}},{"type":"Feature","id":"Pup","properties":{"rank":"2"},"geometry":{"type":"MultiLineString","coordinates":[[[99.4403,-43.1959],[109.2857,-37.0975],[113.8454,-28.3693],[114.7078,-26.8038],[117.3236,-24.8598],[119.2147,-22.8801],[121.886,-24.3043],[120.896,-40.0031],[122.3831,-47.3366]],[[117.3236,-24.8598],[117.0215,-25.9372],[115.952,-28.9548],[113.8454,-28.3693]]]}},{"type":"Feature","id":"Pyx","properties":{"rank":"3"},"geometry":{"type":"MultiLineString","coordinates":[[[120.896,-40.0031],[130.0256,-35.3084],[130.8981,-33.1864],[132.633,-27.7098]]]}},{"type":"Feature","id":"Ret","properties":{"rank":"3"},"geometry":{"type":"MultiLineString","coordinates":[[[63.6062,-62.4739],[64.121,-59.3022],[59.6865,-61.4002],[56.0499,-64.8069],[63.6062,-62.4739]]]}},{"type":"Feature","id":"Sge","properties":{"rank":"3"},"geometry":{"type":"MultiLineString","coordinates":[[[-64.9759,18.0139],[-63.1531,18.5343],[-60.3107,19.4921]],[[-64.7378,17.476],[-63.1531,18.5343]]]}},{"type":"Feature","id":"Sgr","properties":{"rank":"1"},"geometry":{"type":"MultiLineString","coordinates":[[[-85.5932,-36.7617],[-83.957,-34.3846],[-84.7515,-29.8281],[-83.0073,-25.4217],[-86.5591,-21.0588]],[[-69.3404,-44.459],[-69.0284,-40.6159],[-74.347,-29.8801],[-78.5859,-26.9908],[-83.0073,-25.4217]],[[-61.1846,-41.8683],[-60.0659,-35.2763],[-61.0402,-26.2995],[-65.8232,-24.8836],[-68.6813,-24.5086],[-71.1149,-25.2567],[-76.1836,-26.2967],[-78.5859,-26.9908],[-84.7515,-29.8281],[-88.548,-30.4241],[-83.957,-34.3846],[-74.347,-29.8801],[-73.265,-27.6704],[-76.1836,-26.2967],[-73.8292,-21.7415],[-72.559,-21.0236],[-70.5913,-18.9529],[-69.5818,-17.8472],[-69.5682,-15.955]],[[-73.8292,-21.7415],[-75.5675,-21.1067],[-76.4576,-22.7448],[-76.1836,-26.2967]]]}},{"type":"Feature","id":"Sco","properties":{"rank":"1"},"geometry":{"type":"MultiLineString","coordinates":[[[-120.287,-26.1141],[-119.9166,-22.6217],[-118.6407,-19.8055]],[[-119.9166,-22.6217],[-114.7028,-25.5928],[-112.6481,-26.432],[-111.0294,-28.216],[-107.4591,-34.2932],[-107.0324,-38.0474],[-106.3541,-42.3613],[-101.9617,-43.2392],[-95.6703,-42.9978],[-93.1038,-40.127],[-94.378,-39.03],[-96.5978,-37.1038]]]}},{"type":"Feature","id":"Scl","properties":{"rank":"3"},"geometry":{"type":"MultiLineString","coordinates":[[[14.6515,-29.3574],[-2.7686,-28.1303],[-10.294,-32.532],[-6.7573,-37.8183]]]}},{"type":"Feature","id":"Sct","properties":{"rank":"3"},"geometry":{"type":"MultiLineString","coordinates":[[[-81.1982,-8.2441],[-78.2064,-4.7479],[-79.4316,-9.0525],[-82.7006,-14.5658],[-81.1982,-8.2441]]]}},{"type":"Feature","id":"Ser","properties":{"rank":"3"},"geometry":{"type":"MultiLineString","coordinates":[[[-123.4531,15.4218],[-124.6123,19.6704],[-122.8151,18.1416],[-120.8867,15.6616],[-123.4531,15.4218],[-126.2994,10.5389],[-123.933,6.4256],[-122.296,4.4777],[-116.4136,-3.6943]]]}},{"type":"Feature","id":"Ser","properties":{"rank":"3"},"geometry":{"type":"MultiLineString","coordinates":[[[-102.4055,-15.7249],[-95.6033,-15.3986],[-90.2434,-9.7736],[-89.2295,-8.1803],[-84.6725,-2.8988],[-75.9451,4.2036]]]}},{"type":"Feature","id":"Sex","properties":{"rank":"3"},"geometry":{"type":"MultiLineString","coordinates":[[[151.9845,-0.3716],[148.1268,-8.105],[157.3696,-2.7391],[157.5728,-0.637]]]}},{"type":"Feature","id":"Tau","properties":{"rank":"1"},"geometry":{"type":"MultiLineString","coordinates":[[[84.4112,21.1425],[68.9802,16.5093],[67.1656,15.8709],[64.9483,15.6276],[65.7337,17.5425],[67.1542,19.1804],[81.573,28.6075]],[[64.9483,15.6276],[60.1701,12.4903],[51.7923,9.7327],[60.7891,5.9893]],[[51.7923,9.7327],[51.2033,9.0289],[54.2183,0.4017]]]}},{"type":"Feature","id":"Tel","properties":{"rank":"3"},"geometry":{"type":"MultiLineString","coordinates":[[[-87.1927,-45.9544],[-83.2566,-45.9685],[-82.7923,-49.0706]]]}},{"type":"Feature","id":"Tri","properties":{"rank":"3"},"geometry":{"type":"MultiLineString","coordinates":[[[28.2704,29.5788],[32.3859,34.9873],[34.3286,33.8472],[28.2704,29.5788]]]}},{"type":"Feature","id":"TrA","properties":{"rank":"2"},"geometry":{"type":"MultiLineString","coordinates":[[[-107.8338,-69.0277],[-121.2143,-63.4307],[-130.2726,-68.6795],[-107.8338,-69.0277]]]}},{"type":"Feature","id":"Tuc","properties":{"rank":"3"},"geometry":{"type":"MultiLineString","coordinates":[[[-25.3746,-60.2596],[-10.6426,-58.2357],[7.8861,-62.9582],[5.0178,-64.8748],[-0.0209,-65.5771],[-23.1668,-64.9664],[-25.3746,-60.2596]]]}},{"type":"Feature","id":"UMa","properties":{"rank":"1"},"geometry":{"type":"MultiLineString","coordinates":[[[-176.1435,57.0326],[165.932,61.751],[165.4603,56.3824],[178.4577,53.6948],[-176.1435,57.0326],[-166.4927,55.9598],[-159.0186,54.9254],[-153.1148,49.3133]],[[178.4577,53.6948],[176.5126,47.7794],[169.6197,33.0943],[169.5468,31.5308]],[[176.5126,47.7794],[167.4159,44.4985],[155.5823,41.4995]],[[167.4159,44.4985],[154.2741,42.9144]],[[165.932,61.751],[142.8821,63.0619],[127.5661,60.7182],[147.7473,59.0387],[165.4603,56.3824]],[[165.4603,56.3824],[148.0265,54.0643],[143.2143,51.6773],[134.8019,48.0418]],[[135.9064,47.1565],[143.2143,51.6773]]]}},{"type":"Feature","id":"UMi","properties":{"rank":"2"},"geometry":{"type":"MultiLineString","coordinates":[[[-123.9853,77.7945],[-115.6238,75.7553],[-129.8179,71.834],[-137.3236,74.1555],[-123.9853,77.7945],[-108.5073,82.0373],[-96.9458,86.5865],[37.9545,89.2641]]]}},{"type":"Feature","id":"Vel","properties":{"rank":"2"},"geometry":{"type":"MultiLineString","coordinates":[[[131.1759,-54.7088],[140.5284,-55.0107],[149.2156,-54.5678],[161.6924,-49.4203],[153.684,-42.1219],[142.675,-40.4668],[136.999,-43.4326],[122.3831,-47.3366]]]}},{"type":"Feature","id":"Vir","properties":{"rank":"1"},"geometry":{"type":"MultiLineString","coordinates":[[[176.4648,6.5294],[177.6738,1.7647],[-175.0235,-0.6668],[-169.5848,-1.4494],[-162.5125,-5.539],[-158.7018,-11.1613],[-145.9964,-6.0005],[-139.2349,-5.6582]],[[-164.4558,10.9592],[-166.0991,3.3975],[-169.5848,-1.4494]],[[-162.5125,-5.539],[-156.3267,-0.5958],[-149.5884,1.5445],[-138.4378,1.8929]]]}},{"type":"Feature","id":"Vol","properties":{"rank":"3"},"geometry":{"type":"MultiLineString","coordinates":[[[135.6116,-66.3961],[126.4341,-66.1369],[121.9825,-68.6171],[109.2076,-67.9572],[107.1869,-70.4989],[121.9825,-68.6171],[135.6116,-66.3961]]]}},{"type":"Feature","id":"Vul","properties":{"rank":"3"},"geometry":{"type":"MultiLineString","coordinates":[[[-70.9457,21.3904],[-67.8236,24.6649],[-61.6346,24.0796],[-59.7248,27.7536],[-56.0578,27.8142]]]}}]} \ No newline at end of file diff --git a/frontend/vendor/celestial/data/mw.json b/frontend/vendor/celestial/data/mw.json new file mode 100644 index 0000000..ce06eaa --- /dev/null +++ b/frontend/vendor/celestial/data/mw.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","id":"ol1","properties":{},"geometry":{"type":"MultiPolygon","coordinates":[[[[97.754,34.659],[97.804,34.571],[97.6,34.925],[97.654,34.837],[97.387,35.059],[97.225,35.105],[97.175,35.193],[97.125,35.282],[96.963,35.327],[96.8,35.372],[96.638,35.417],[96.475,35.462],[96.308,35.507],[96.146,35.551],[95.983,35.596],[95.821,35.64],[95.658,35.684],[95.492,35.728],[95.329,35.772],[95.163,35.816],[95,35.86],[94.833,35.903],[94.779,35.991],[94.725,36.079],[94.563,36.122],[94.396,36.165],[94.342,36.253],[94.288,36.341],[94.121,36.384],[93.954,36.427],[93.896,36.514],[93.842,36.602],[93.788,36.69],[93.729,36.778],[93.675,36.866],[93.621,36.954],[93.563,37.041],[93.508,37.129],[93.338,37.171],[93.171,37.213],[93,37.255],[92.833,37.297],[92.663,37.338],[92.496,37.379],[92.325,37.421],[92.158,37.461],[91.988,37.502],[91.875,37.456],[91.767,37.409],[91.596,37.449],[91.425,37.489],[91.254,37.529],[91.196,37.616],[91.137,37.703],[91.079,37.79],[91.017,37.878],[90.958,37.964],[90.9,38.052],[90.837,38.139],[90.779,38.226],[90.721,38.313],[90.658,38.4],[90.488,38.439],[90.313,38.478],[90.254,38.565],[90.192,38.652],[90.133,38.738],[90.071,38.825],[90.008,38.912],[89.95,38.999],[89.775,39.037],[89.6,39.076],[89.538,39.162],[89.475,39.249],[89.413,39.335],[89.35,39.422],[89.288,39.508],[89.225,39.595],[89.05,39.633],[88.875,39.67],[88.813,39.756],[88.75,39.843],[88.571,39.88],[88.396,39.917],[88.329,40.003],[88.267,40.089],[88.088,40.126],[87.913,40.162],[87.846,40.248],[87.783,40.334],[87.717,40.42],[87.65,40.506],[87.587,40.592],[87.521,40.678],[87.342,40.714],[87.163,40.749],[87.096,40.835],[87.029,40.92],[86.963,41.006],[86.896,41.092],[86.829,41.177],[86.763,41.263],[86.696,41.348],[86.629,41.434],[86.563,41.519],[86.496,41.605],[86.425,41.69],[86.358,41.776],[86.292,41.861],[86.225,41.946],[86.154,42.032],[86.088,42.117],[85.904,42.151],[85.717,42.185],[85.65,42.27],[85.579,42.355],[85.513,42.44],[85.442,42.525],[85.371,42.61],[85.3,42.695],[85.117,42.728],[84.929,42.761],[84.858,42.846],[84.788,42.93],[84.717,43.015],[84.646,43.099],[84.458,43.132],[84.271,43.164],[84.196,43.248],[84.125,43.333],[84.054,43.417],[83.979,43.501],[83.792,43.533],[83.6,43.563],[83.529,43.648],[83.454,43.732],[83.267,43.762],[83.075,43.793],[83,43.876],[82.925,43.96],[82.85,44.044],[82.775,44.128],[82.583,44.157],[82.392,44.186],[82.317,44.27],[82.242,44.353],[82.167,44.437],[82.088,44.52],[82.013,44.604],[81.938,44.687],[81.858,44.77],[81.783,44.853],[81.708,44.936],[81.629,45.019],[81.55,45.103],[81.475,45.186],[81.279,45.213],[81.083,45.241],[81.004,45.324],[80.925,45.406],[80.729,45.433],[80.529,45.46],[80.333,45.486],[80.133,45.513],[79.938,45.538],[79.738,45.564],[79.658,45.646],[79.575,45.728],[79.379,45.753],[79.179,45.777],[78.979,45.801],[78.779,45.825],[78.579,45.849],[78.379,45.872],[78.179,45.895],[77.979,45.918],[77.779,45.941],[77.663,45.882],[77.546,45.823],[77.429,45.764],[77.313,45.705],[77.113,45.726],[76.913,45.747],[76.8,45.688],[76.683,45.628],[76.571,45.569],[76.454,45.509],[76.342,45.449],[76.225,45.389],[76.113,45.328],[76,45.268],[75.887,45.208],[75.775,45.147],[75.575,45.166],[75.375,45.184],[75.263,45.123],[75.15,45.062],[74.954,45.08],[74.754,45.097],[74.642,45.036],[74.533,44.974],[74.333,44.991],[74.133,45.007],[74.025,44.945],[73.913,44.882],[73.717,44.898],[73.517,44.913],[73.317,44.928],[73.121,44.943],[72.921,44.957],[72.721,44.971],[72.521,44.984],[72.325,44.998],[72.125,45.011],[71.925,45.023],[71.725,45.036],[71.525,45.048],[71.325,45.059],[71.233,45.135],[71.142,45.211],[71.05,45.287],[70.958,45.363],[70.758,45.374],[70.558,45.384],[70.354,45.394],[70.154,45.403],[69.954,45.412],[69.754,45.421],[69.55,45.429],[69.35,45.438],[69.15,45.445],[68.946,45.453],[68.85,45.527],[68.754,45.601],[68.554,45.608],[68.354,45.614],[68.15,45.62],[67.95,45.625],[67.746,45.631],[67.546,45.635],[67.446,45.708],[67.35,45.781],[67.146,45.785],[66.942,45.789],[66.846,45.861],[66.746,45.934],[66.646,46.006],[66.546,46.078],[66.446,46.15],[66.346,46.222],[66.142,46.224],[65.938,46.226],[65.838,46.298],[65.733,46.369],[65.633,46.441],[65.529,46.512],[65.429,46.583],[65.325,46.654],[65.225,46.725],[65.121,46.796],[65.017,46.866],[64.912,46.937],[64.808,47.008],[64.708,47.078],[64.6,47.148],[64.6,47.29],[64.6,47.431],[64.6,47.573],[64.596,47.714],[64.596,47.855],[64.7,47.926],[64.808,47.997],[64.912,48.068],[65.017,48.139],[65.125,48.21],[65.229,48.28],[65.337,48.351],[65.446,48.421],[65.55,48.491],[65.658,48.561],[65.663,48.703],[65.663,48.844],[65.771,48.914],[65.879,48.984],[65.883,49.126],[65.883,49.267],[65.996,49.337],[66.104,49.407],[66.108,49.548],[66.108,49.69],[66.221,49.759],[66.333,49.829],[66.446,49.898],[66.558,49.968],[66.563,50.109],[66.567,50.25],[66.571,50.392],[66.575,50.533],[66.579,50.674],[66.471,50.746],[66.358,50.819],[66.25,50.89],[66.138,50.962],[66.029,51.034],[65.917,51.105],[65.808,51.177],[65.696,51.248],[65.583,51.319],[65.358,51.32],[65.129,51.321],[64.904,51.321],[64.679,51.32],[64.45,51.319],[64.225,51.318],[64,51.316],[63.887,51.245],[63.775,51.173],[63.667,51.101],[63.554,51.029],[63.446,50.957],[63.338,50.884],[63.225,50.812],[63.117,50.739],[63.008,50.667],[62.9,50.594],[62.792,50.522],[62.683,50.449],[62.579,50.376],[62.471,50.303],[62.363,50.23],[62.258,50.156],[62.15,50.083],[62.046,50.009],[61.942,49.936],[61.833,49.863],[61.729,49.789],[61.625,49.715],[61.521,49.641],[61.417,49.567],[61.317,49.493],[61.213,49.419],[61.108,49.344],[61.008,49.27],[60.904,49.196],[60.804,49.121],[60.588,49.113],[60.371,49.104],[60.271,49.029],[60.171,48.954],[60.071,48.879],[59.971,48.803],[59.871,48.728],[59.771,48.652],[59.671,48.577],[59.688,48.436],[59.7,48.295],[59.604,48.219],[59.504,48.144],[59.408,48.068],[59.308,47.992],[59.325,47.851],[59.342,47.71],[59.358,47.569],[59.371,47.429],[59.388,47.288],[59.404,47.147],[59.417,47.006],[59.433,46.865],[59.446,46.724],[59.463,46.584],[59.475,46.443],[59.492,46.302],[59.504,46.161],[59.613,46.096],[59.721,46.031],[59.738,45.889],[59.642,45.814],[59.546,45.739],[59.563,45.598],[59.575,45.457],[59.483,45.381],[59.388,45.306],[59.296,45.23],[59.096,45.219],[58.896,45.208],[58.696,45.196],[58.592,45.261],[58.483,45.325],[58.375,45.389],[58.267,45.453],[58.154,45.516],[58.046,45.58],[57.938,45.644],[57.829,45.707],[57.717,45.771],[57.608,45.834],[57.496,45.897],[57.387,45.96],[57.275,46.023],[57.254,46.163],[57.238,46.304],[57.125,46.366],[57.013,46.429],[56.9,46.491],[56.787,46.554],[56.675,46.616],[56.558,46.678],[56.446,46.74],[56.333,46.802],[56.221,46.863],[56.104,46.925],[56.079,47.065],[56.058,47.205],[55.942,47.267],[55.825,47.328],[55.708,47.389],[55.592,47.45],[55.475,47.511],[55.358,47.572],[55.333,47.712],[55.308,47.851],[55.188,47.912],[55.071,47.973],[55.042,48.112],[55.013,48.252],[54.896,48.313],[54.775,48.373],[54.746,48.512],[54.717,48.652],[54.596,48.712],[54.475,48.772],[54.446,48.911],[54.417,49.051],[54.292,49.111],[54.171,49.17],[54.05,49.229],[53.925,49.289],[53.804,49.348],[53.679,49.406],[53.554,49.465],[53.429,49.524],[53.304,49.582],[53.183,49.64],[53.058,49.698],[52.929,49.756],[52.804,49.814],[52.679,49.872],[52.554,49.929],[52.338,49.905],[52.121,49.88],[51.996,49.936],[51.867,49.993],[51.738,50.05],[51.613,50.106],[51.483,50.162],[51.354,50.218],[51.225,50.274],[51.096,50.33],[50.967,50.386],[50.838,50.441],[50.621,50.413],[50.404,50.385],[50.188,50.356],[49.971,50.327],[49.754,50.297],[49.671,50.213],[49.583,50.129],[49.5,50.045],[49.417,49.961],[49.333,49.876],[49.25,49.792],[49.167,49.708],[49.083,49.623],[49,49.539],[48.917,49.454],[48.838,49.37],[48.883,49.232],[48.929,49.094],[48.85,49.01],[48.767,48.925],[48.813,48.788],[48.863,48.65],[48.779,48.566],[48.7,48.481],[48.746,48.344],[48.792,48.206],[48.713,48.122],[48.633,48.037],[48.554,47.952],[48.35,47.92],[48.146,47.887],[47.942,47.854],[47.738,47.82],[47.533,47.786],[47.408,47.837],[47.283,47.888],[47.154,47.939],[47.029,47.99],[46.9,48.041],[46.775,48.091],[46.646,48.141],[46.517,48.191],[46.392,48.241],[46.263,48.291],[46.133,48.341],[46.004,48.39],[45.875,48.439],[45.746,48.488],[45.617,48.537],[45.558,48.673],[45.504,48.809],[45.371,48.857],[45.242,48.906],[45.108,48.954],[44.979,49.002],[44.846,49.05],[44.713,49.098],[44.654,49.233],[44.596,49.368],[44.463,49.416],[44.329,49.463],[44.192,49.51],[44.058,49.557],[43.925,49.604],[43.787,49.65],[43.654,49.696],[43.517,49.743],[43.454,49.877],[43.392,50.012],[43.254,50.058],[43.117,50.103],[43.05,50.238],[42.983,50.372],[42.846,50.417],[42.708,50.462],[42.642,50.596],[42.571,50.731],[42.433,50.775],[42.292,50.82],[42.15,50.864],[42.013,50.908],[41.942,51.042],[41.871,51.176],[41.729,51.219],[41.583,51.263],[41.442,51.306],[41.3,51.349],[41.225,51.483],[41.15,51.616],[41.008,51.659],[40.863,51.701],[40.717,51.744],[40.571,51.786],[40.496,51.918],[40.417,52.051],[40.271,52.093],[40.125,52.134],[40.046,52.267],[39.967,52.399],[39.817,52.44],[39.671,52.481],[39.588,52.613],[39.504,52.745],[39.425,52.877],[39.342,53.009],[39.258,53.141],[39.171,53.272],[39.088,53.404],[39.154,53.496],[39.225,53.587],[39.138,53.719],[39.292,53.678],[39.05,53.85],[39.121,53.942],[39.346,53.993],[39.567,54.044],[39.638,54.135],[39.708,54.226],[39.779,54.317],[39.85,54.408],[40.075,54.458],[40.304,54.507],[40.375,54.598],[40.45,54.689],[40.521,54.779],[40.596,54.87],[40.671,54.961],[40.742,55.051],[40.817,55.142],[40.892,55.232],[40.967,55.323],[41.042,55.413],[41.117,55.503],[41.196,55.594],[41.429,55.641],[41.667,55.688],[41.746,55.777],[41.821,55.867],[41.9,55.957],[41.979,56.047],[42.058,56.137],[42.137,56.226],[42.217,56.316],[42.296,56.406],[42.379,56.495],[42.458,56.584],[42.542,56.674],[42.458,56.808],[42.621,56.763],[42.379,56.942],[42.458,57.032],[42.542,57.121],[42.458,57.255],[42.625,57.21],[42.375,57.389],[42.458,57.479],[42.542,57.568],[42.625,57.658],[42.708,57.747],[42.796,57.836],[43.046,57.88],[43.133,57.969],[43.221,58.058],[43.388,58.012],[43.475,58.101],[43.563,58.19],[43.65,58.279],[43.817,58.232],[43.988,58.186],[44.075,58.274],[44.242,58.227],[44.5,58.268],[44.758,58.308],[44.925,58.261],[45.092,58.213],[45.258,58.164],[45.425,58.116],[45.679,58.154],[45.938,58.192],[46.104,58.143],[46.267,58.093],[46.433,58.044],[46.596,57.994],[46.854,58.03],[47.113,58.066],[47.275,58.015],[47.438,57.964],[47.6,57.913],[47.758,57.861],[48.017,57.895],[48.279,57.928],[48.438,57.876],[48.596,57.823],[48.758,57.771],[48.917,57.718],[49.175,57.749],[49.433,57.78],[49.592,57.726],[49.75,57.673],[50.008,57.702],[50.267,57.731],[50.421,57.677],[50.579,57.622],[50.838,57.65],[51.096,57.677],[51.358,57.705],[51.617,57.731],[51.875,57.757],[51.983,57.84],[52.092,57.922],[52.354,57.947],[52.617,57.972],[52.725,58.053],[52.833,58.135],[52.942,58.216],[53.054,58.298],[53.162,58.379],[53.275,58.461],[53.387,58.542],[53.5,58.623],[53.613,58.704],[53.725,58.785],[53.838,58.866],[53.796,59.005],[53.754,59.145],[53.871,59.226],[53.988,59.306],[53.942,59.446],[53.9,59.586],[53.858,59.725],[53.817,59.865],[53.775,60.004],[53.729,60.144],[53.688,60.284],[53.525,60.342],[53.358,60.401],[53.317,60.54],[53.271,60.68],[53.104,60.738],[52.938,60.796],[52.771,60.854],[52.604,60.911],[52.433,60.969],[52.267,61.026],[52.096,61.083],[51.929,61.139],[51.758,61.196],[51.588,61.253],[51.417,61.309],[51.242,61.365],[51.071,61.421],[50.896,61.476],[50.842,61.614],[50.783,61.753],[50.604,61.808],[50.429,61.863],[50.254,61.918],[50.075,61.973],[50.013,62.111],[49.95,62.249],[49.771,62.303],[49.592,62.357],[49.525,62.495],[49.463,62.633],[49.279,62.687],[49.096,62.74],[48.913,62.793],[48.725,62.846],[48.542,62.899],[48.354,62.951],[48.167,63.003],[47.979,63.055],[47.792,63.107],[47.604,63.159],[47.412,63.21],[47.225,63.261],[47.033,63.312],[46.842,63.362],[46.65,63.413],[46.458,63.463],[46.263,63.512],[46.071,63.562],[45.875,63.611],[45.679,63.66],[45.483,63.709],[45.288,63.758],[45.088,63.806],[44.892,63.854],[44.692,63.901],[44.492,63.949],[44.292,63.996],[44.092,64.043],[43.892,64.09],[43.688,64.136],[43.488,64.183],[43.283,64.228],[43.079,64.274],[42.875,64.319],[42.671,64.364],[42.463,64.409],[42.258,64.454],[42.05,64.498],[41.842,64.542],[41.633,64.586],[41.425,64.629],[41.113,64.582],[40.804,64.534],[40.596,64.577],[40.383,64.619],[40.175,64.661],[39.963,64.702],[39.654,64.652],[39.346,64.601],[39.133,64.641],[38.917,64.681],[38.704,64.721],[38.492,64.761],[38.275,64.8],[38.058,64.838],[37.75,64.785],[37.446,64.73],[37.229,64.768],[37.013,64.805],[36.708,64.749],[36.404,64.693],[36.188,64.729],[35.971,64.765],[35.75,64.8],[35.533,64.836],[35.313,64.871],[35.092,64.905],[34.871,64.939],[34.65,64.974],[34.346,64.913],[34.046,64.852],[33.825,64.885],[33.604,64.917],[33.379,64.949],[33.158,64.981],[32.933,65.013],[32.708,65.044],[32.483,65.075],[32.258,65.105],[32.033,65.136],[31.804,65.165],[31.579,65.195],[31.35,65.224],[31.054,65.157],[30.758,65.09],[30.529,65.118],[30.304,65.146],[30.075,65.173],[29.846,65.2],[29.617,65.227],[29.388,65.253],[29.154,65.279],[28.925,65.304],[28.696,65.33],[28.463,65.355],[28.229,65.379],[28,65.404],[27.767,65.428],[27.533,65.451],[27.3,65.474],[27.063,65.497],[26.829,65.52],[26.596,65.542],[26.358,65.564],[26.125,65.585],[25.888,65.606],[25.65,65.627],[25.412,65.648],[25.175,65.668],[24.937,65.687],[24.7,65.707],[24.463,65.726],[24.225,65.744],[23.988,65.763],[23.746,65.78],[23.467,65.699],[23.183,65.618],[22.946,65.634],[22.708,65.651],[22.467,65.667],[22.229,65.682],[21.988,65.698],[21.75,65.713],[21.508,65.727],[21.267,65.741],[21.029,65.755],[20.787,65.768],[20.546,65.781],[20.304,65.794],[20.063,65.806],[19.821,65.818],[19.579,65.829],[19.338,65.841],[19.092,65.851],[18.85,65.862],[18.608,65.872],[18.367,65.881],[18.1,65.791],[17.838,65.7],[17.596,65.709],[17.35,65.717],[17.108,65.724],[16.867,65.732],[16.625,65.739],[16.383,65.745],[16.142,65.752],[15.896,65.758],[15.654,65.763],[15.412,65.768],[15.158,65.673],[14.904,65.577],[14.663,65.581],[14.421,65.585],[14.175,65.488],[13.925,65.391],[13.683,65.293],[13.437,65.195],[13.196,65.097],[13.192,64.997],[13.192,64.897],[12.95,64.798],[12.717,64.699],[12.713,64.599],[12.713,64.499],[12.713,64.399],[12.708,64.299],[12.708,64.199],[12.704,64.099],[12.704,63.999],[12.929,63.898],[13.154,63.797],[13.15,63.697],[13.146,63.597],[13.146,63.497],[13.142,63.397],[13.362,63.296],[13.579,63.194],[13.575,63.094],[13.35,62.996],[13.125,62.897],[13.125,62.797],[13.121,62.697],[12.9,62.598],[12.683,62.599],[12.467,62.6],[12.25,62.5],[12.033,62.4],[11.817,62.399],[11.6,62.398],[11.383,62.397],[11.167,62.496],[11.163,62.596],[11.158,62.696],[11.154,62.796],[11.15,62.896],[11.146,62.996],[11.142,63.096],[11.138,63.196],[11.133,63.296],[11.133,63.396],[11.129,63.496],[11.125,63.596],[11.121,63.696],[11.117,63.796],[11.112,63.896],[11.108,63.996],[11.104,64.096],[10.871,64.193],[10.633,64.291],[10.396,64.388],[10.158,64.485],[9.921,64.582],[9.675,64.678],[9.433,64.774],[9.2,64.769],[8.967,64.764],[8.729,64.759],[8.496,64.753],[8.25,64.847],[8,64.941],[7.763,64.934],[7.529,64.927],[7.275,65.019],[7.021,65.111],[6.783,65.102],[6.546,65.094],[6.288,65.184],[6.029,65.274],[5.767,65.364],[5.504,65.453],[5.237,65.542],[4.971,65.631],[4.733,65.619],[4.492,65.607],[4.25,65.595],[4.013,65.583],[3.771,65.57],[3.533,65.556],[3.296,65.543],[3.054,65.529],[2.817,65.514],[2.579,65.5],[2.342,65.485],[2.104,65.469],[1.867,65.453],[1.629,65.437],[1.392,65.421],[1.154,65.404],[0.921,65.387],[0.725,65.271],[0.533,65.154],[0.3,65.136],[0.067,65.117],[-0.121,65.001],[-0.304,64.883],[-0.492,64.766],[-0.675,64.648],[-0.854,64.53],[-1.033,64.412],[-1.263,64.391],[-1.488,64.37],[-1.663,64.251],[-1.837,64.132],[-2.012,64.013],[-2.183,63.893],[-2.404,63.871],[-2.625,63.848],[-2.796,63.728],[-2.962,63.608],[-3.179,63.584],[-3.396,63.561],[-3.617,63.536],[-3.833,63.512],[-4.05,63.487],[-4.267,63.462],[-4.483,63.437],[-4.7,63.411],[-4.913,63.385],[-5.129,63.359],[-5.346,63.332],[-5.558,63.305],[-5.771,63.277],[-5.988,63.25],[-6.2,63.222],[-6.413,63.194],[-6.625,63.165],[-6.837,63.136],[-7.046,63.107],[-7.258,63.078],[-7.467,63.048],[-7.679,63.018],[-7.888,62.987],[-8.1,62.957],[-8.308,62.926],[-8.517,62.894],[-8.725,62.863],[-9,62.926],[-9.279,62.988],[-9.488,62.955],[-9.696,62.922],[-9.975,62.983],[-10.258,63.043],[-10.467,63.009],[-10.671,62.974],[-10.954,63.034],[-11.238,63.092],[-11.446,63.056],[-11.65,63.021],[-11.854,62.984],[-12.062,62.948],[-12.267,62.911],[-12.467,62.874],[-12.671,62.837],[-12.875,62.8],[-13.075,62.762],[-13.279,62.724],[-13.479,62.685],[-13.679,62.647],[-13.879,62.608],[-14.079,62.568],[-14.279,62.529],[-14.479,62.489],[-14.675,62.449],[-14.787,62.317],[-14.896,62.185],[-15.092,62.145],[-15.288,62.104],[-15.479,62.063],[-15.675,62.021],[-15.867,61.979],[-16.058,61.938],[-16.163,61.805],[-16.267,61.672],[-16.454,61.629],[-16.646,61.586],[-16.746,61.453],[-16.842,61.32],[-17.029,61.277],[-17.217,61.233],[-17.312,61.099],[-17.408,60.966],[-17.5,60.832],[-17.596,60.698],[-17.687,60.564],[-17.779,60.43],[-17.962,60.386],[-18.142,60.341],[-18.229,60.207],[-18.321,60.072],[-18.5,60.027],[-18.675,59.981],[-18.854,59.936],[-19.029,59.89],[-19.208,59.844],[-19.383,59.797],[-19.467,59.662],[-19.55,59.527],[-19.721,59.48],[-19.896,59.433],[-20.071,59.386],[-20.242,59.338],[-20.413,59.29],[-20.587,59.242],[-20.758,59.194],[-20.929,59.145],[-21.096,59.097],[-21.267,59.048],[-21.437,58.999],[-21.7,59.036],[-21.967,59.073],[-22.133,59.023],[-22.304,58.973],[-22.567,59.009],[-22.833,59.044],[-23.1,59.079],[-23.367,59.113],[-23.637,59.146],[-23.904,59.179],[-24.175,59.212],[-24.442,59.244],[-24.712,59.275],[-24.983,59.306],[-25.254,59.337],[-25.358,59.421],[-25.3,59.559],[-25.242,59.697],[-25.35,59.781],[-25.458,59.865],[-25.396,60.003],[-25.337,60.141],[-25.279,60.28],[-25.108,60.334],[-24.937,60.388],[-24.875,60.525],[-24.812,60.663],[-24.642,60.717],[-24.467,60.77],[-24.404,60.908],[-24.337,61.045],[-24.163,61.098],[-23.988,61.151],[-23.813,61.203],[-23.633,61.255],[-23.567,61.393],[-23.496,61.53],[-23.317,61.582],[-23.137,61.633],[-22.958,61.684],[-22.775,61.736],[-22.596,61.786],[-22.413,61.837],[-22.337,61.974],[-22.262,62.111],[-22.075,62.161],[-21.892,62.211],[-21.812,62.347],[-21.733,62.483],[-21.546,62.533],[-21.358,62.582],[-21.275,62.718],[-21.192,62.854],[-21,62.903],[-20.808,62.952],[-20.725,63.088],[-20.637,63.223],[-20.446,63.271],[-20.25,63.319],[-20.054,63.367],[-19.858,63.414],[-19.663,63.461],[-19.467,63.508],[-19.371,63.643],[-19.279,63.778],[-19.079,63.824],[-18.879,63.87],[-18.779,64.005],[-18.683,64.139],[-18.583,64.274],[-18.483,64.408],[-18.383,64.543],[-18.492,64.632],[-18.596,64.721],[-18.496,64.855],[-18.288,64.901],[-18.396,64.99],[-18.5,65.079],[-18.613,65.168],[-18.721,65.256],[-18.829,65.345],[-18.942,65.434],[-19.054,65.523],[-19.167,65.611],[-19.279,65.7],[-19.392,65.788],[-19.504,65.876],[-19.621,65.965],[-19.954,66.006],[-20.287,66.046],[-20.621,66.086],[-20.954,66.124],[-21.287,66.163],[-21.625,66.2],[-21.962,66.237],[-22.175,66.187],[-22.387,66.137],[-22.725,66.172],[-23.062,66.206],[-23.4,66.241],[-23.742,66.274],[-24.079,66.306],[-24.421,66.338],[-24.767,66.369],[-25.108,66.399],[-25.45,66.429],[-25.796,66.458],[-26.142,66.486],[-26.488,66.514],[-26.833,66.541],[-27.179,66.567],[-27.529,66.592],[-27.675,66.674],[-27.821,66.756],[-28.171,66.78],[-28.525,66.803],[-28.875,66.826],[-29.229,66.848],[-29.583,66.869],[-29.937,66.889],[-30.292,66.909],[-30.646,66.928],[-31,66.946],[-31.196,66.885],[-31.396,66.824],[-31.592,66.763],[-31.783,66.701],[-31.979,66.639],[-32.171,66.577],[-32.363,66.515],[-32.554,66.452],[-32.746,66.39],[-32.775,66.25],[-32.804,66.11],[-32.837,65.97],[-32.867,65.83],[-32.896,65.69],[-32.925,65.55],[-32.954,65.41],[-32.983,65.27],[-33.012,65.13],[-33.042,64.99],[-33.071,64.85],[-33.1,64.71],[-33.129,64.57],[-33.154,64.43],[-33.183,64.289],[-33.212,64.149],[-33.387,64.086],[-33.558,64.022],[-33.733,63.959],[-34.05,63.971],[-34.371,63.983],[-34.542,63.918],[-34.712,63.853],[-35.029,63.863],[-35.35,63.873],[-35.517,63.807],[-35.683,63.741],[-36,63.75],[-36.317,63.758],[-36.637,63.764],[-36.954,63.771],[-37.117,63.704],[-37.279,63.636],[-37.596,63.641],[-37.913,63.646],[-38.071,63.578],[-38.233,63.509],[-38.392,63.441],[-38.55,63.372],[-38.708,63.303],[-38.863,63.234],[-39.021,63.165],[-39.175,63.095],[-39.329,63.026],[-39.329,62.885],[-39.329,62.745],[-39.483,62.675],[-39.633,62.606],[-39.633,62.465],[-39.629,62.324],[-39.779,62.254],[-39.929,62.184],[-39.929,62.044],[-39.925,61.903],[-39.921,61.763],[-39.921,61.622],[-40.067,61.552],[-40.212,61.481],[-40.208,61.341],[-40.204,61.2],[-40.35,61.129],[-40.492,61.059],[-40.488,60.918],[-40.629,60.848],[-40.775,60.777],[-40.913,60.706],[-40.908,60.565],[-41.05,60.494],[-41.187,60.423],[-41.183,60.282],[-41.321,60.211],[-41.312,60.07],[-41.45,59.998],[-41.588,59.927],[-41.725,59.855],[-41.717,59.714],[-41.85,59.643],[-41.842,59.502],[-41.975,59.43],[-42.108,59.358],[-42.242,59.285],[-42.233,59.145],[-42.367,59.073],[-42.354,58.932],[-42.488,58.859],[-42.617,58.787],[-42.604,58.646],[-42.596,58.505],[-42.725,58.433],[-42.854,58.36],[-42.842,58.219],[-42.971,58.146],[-42.958,58.006],[-43.083,57.933],[-43.071,57.792],[-43.062,57.651],[-43.187,57.578],[-43.175,57.437],[-43.037,57.369],[-43.025,57.229],[-43.017,57.088],[-42.879,57.02],[-42.871,56.879],[-42.738,56.811],[-42.729,56.67],[-42.596,56.601],[-42.462,56.533],[-42.329,56.464],[-42.321,56.323],[-42.312,56.182],[-42.308,56.041],[-42.175,55.973],[-42.046,55.904],[-42.042,55.763],[-41.913,55.693],[-41.783,55.624],[-41.658,55.555],[-41.529,55.485],[-41.525,55.344],[-41.521,55.203],[-41.396,55.133],[-41.392,54.992],[-41.387,54.851],[-41.383,54.71],[-41.379,54.569],[-41.258,54.499],[-41.133,54.429],[-41.133,54.288],[-41.008,54.218],[-40.887,54.147],[-40.887,54.006],[-40.883,53.865],[-40.883,53.723],[-40.763,53.653],[-40.763,53.512],[-40.758,53.371],[-40.758,53.229],[-40.758,53.088],[-40.875,53.017],[-40.875,52.876],[-40.992,52.804],[-40.988,52.663],[-40.871,52.593],[-40.871,52.451],[-40.983,52.38],[-40.983,52.239],[-40.983,52.098],[-41.096,52.026],[-41.208,51.955],[-41.325,51.884],[-41.321,51.743],[-41.317,51.601],[-41.317,51.46],[-41.429,51.388],[-41.538,51.317],[-41.65,51.245],[-41.762,51.173],[-41.758,51.032],[-41.754,50.89],[-41.75,50.749],[-41.746,50.608],[-41.854,50.536],[-41.967,50.464],[-41.962,50.323],[-41.958,50.181],[-41.954,50.04],[-41.95,49.898],[-42.054,49.826],[-42.275,49.823],[-42.387,49.892],[-42.5,49.961],[-42.613,50.03],[-42.725,50.099],[-42.842,50.167],[-42.954,50.236],[-43.067,50.304],[-43.183,50.372],[-43.404,50.367],[-43.625,50.362],[-43.742,50.429],[-43.858,50.497],[-43.971,50.564],[-44.087,50.632],[-44.204,50.699],[-44.321,50.766],[-44.442,50.833],[-44.558,50.9],[-44.675,50.967],[-44.796,51.033],[-44.913,51.1],[-45.033,51.166],[-45.15,51.233],[-45.271,51.299],[-45.392,51.365],[-45.408,51.506],[-45.421,51.647],[-45.542,51.713],[-45.667,51.778],[-45.679,51.919],[-45.696,52.06],[-45.712,52.201],[-45.608,52.276],[-45.5,52.351],[-45.517,52.492],[-45.533,52.633],[-45.425,52.708],[-45.317,52.783],[-45.096,52.933],[-44.988,53.008],[-44.875,53.082],[-44.892,53.223],[-44.904,53.364],[-44.921,53.505],[-44.937,53.646],[-44.95,53.787],[-44.967,53.927],[-44.979,54.068],[-44.996,54.209],[-45.012,54.35],[-45.029,54.491],[-45.046,54.632],[-45.058,54.773],[-45.075,54.913],[-45.092,55.054],[-45.108,55.195],[-45.125,55.335],[-45.142,55.476],[-45.275,55.542],[-45.408,55.608],[-45.429,55.748],[-45.446,55.889],[-45.467,56.029],[-45.483,56.17],[-45.504,56.31],[-45.525,56.451],[-45.542,56.591],[-45.562,56.732],[-45.583,56.872],[-45.604,57.013],[-45.742,57.078],[-45.883,57.143],[-45.904,57.283],[-45.925,57.423],[-46.067,57.488],[-46.208,57.552],[-46.354,57.617],[-46.496,57.681],[-46.637,57.745],[-46.783,57.809],[-46.929,57.873],[-47.075,57.937],[-47.221,58],[-47.367,58.063],[-47.512,58.127],[-47.779,58.113],[-48.042,58.098],[-48.192,58.161],[-48.337,58.223],[-48.488,58.285],[-48.637,58.347],[-48.904,58.331],[-49.167,58.314],[-49.433,58.297],[-49.7,58.28],[-49.962,58.262],[-50.075,58.183],[-50.187,58.104],[-50.45,58.086],[-50.712,58.066],[-50.975,58.046],[-51.238,58.026],[-51.5,58.006],[-51.654,58.064],[-51.808,58.123],[-51.962,58.181],[-52.117,58.239],[-52.379,58.216],[-52.642,58.194],[-52.796,58.251],[-52.954,58.308],[-53.217,58.284],[-53.479,58.26],[-53.742,58.235],[-54,58.21],[-54.262,58.184],[-54.367,58.103],[-54.467,58.021],[-54.725,57.994],[-54.988,57.968],[-55.087,57.886],[-55.187,57.804],[-55.287,57.722],[-55.387,57.64],[-55.488,57.558],[-55.583,57.475],[-55.683,57.393],[-55.779,57.311],[-56.033,57.282],[-56.287,57.253],[-56.383,57.171],[-56.479,57.088],[-56.575,57.005],[-56.671,56.922],[-56.767,56.839],[-56.858,56.757],[-56.954,56.674],[-57.046,56.591],[-57.142,56.508],[-57.233,56.424],[-57.325,56.341],[-57.267,56.206],[-57.204,56.07],[-57.146,55.934],[-57.087,55.798],[-57.029,55.662],[-56.971,55.526],[-57.062,55.443],[-57.154,55.36],[-57.096,55.224],[-57.037,55.088],[-57.129,55.004],[-57.221,54.921],[-57.308,54.838],[-57.4,54.755],[-57.488,54.672],[-57.579,54.588],[-57.521,54.452],[-57.462,54.316],[-57.554,54.233],[-57.642,54.15],[-57.729,54.066],[-57.817,53.983],[-57.904,53.899],[-57.992,53.816],[-57.933,53.68],[-57.879,53.544],[-57.967,53.46],[-58.05,53.377],[-58.137,53.293],[-58.225,53.209],[-58.308,53.126],[-58.396,53.042],[-58.337,52.906],[-58.283,52.77],[-58.367,52.686],[-58.45,52.603],[-58.538,52.519],[-58.621,52.435],[-58.704,52.351],[-58.925,52.319],[-59.15,52.286],[-59.233,52.202],[-59.312,52.118],[-59.396,52.034],[-59.479,51.949],[-59.558,51.865],[-59.642,51.781],[-59.863,51.747],[-60.079,51.714],[-60.158,51.629],[-60.242,51.544],[-60.321,51.459],[-60.4,51.375],[-60.617,51.34],[-60.833,51.306],[-60.913,51.221],[-60.988,51.136],[-61.067,51.051],[-61.146,50.965],[-61.221,50.88],[-61.3,50.795],[-61.375,50.71],[-61.45,50.625],[-61.529,50.54],[-61.604,50.454],[-61.679,50.369],[-61.754,50.284],[-61.829,50.198],[-61.904,50.113],[-62.117,50.076],[-62.325,50.04],[-62.4,49.954],[-62.475,49.869],[-62.55,49.783],[-62.621,49.697],[-62.696,49.611],[-62.767,49.526],[-62.975,49.488],[-63.183,49.45],[-63.254,49.364],[-63.329,49.278],[-63.471,49.106],[-63.542,49.02],[-63.613,48.934],[-63.683,48.848],[-63.754,48.762],[-63.825,48.676],[-63.896,48.589],[-63.962,48.503],[-64.033,48.417],[-64.104,48.331],[-64.175,48.244],[-64.242,48.158],[-64.312,48.072],[-64.512,48.033],[-64.712,47.993],[-64.783,47.906],[-64.85,47.82],[-64.917,47.733],[-64.983,47.647],[-65.054,47.56],[-65.121,47.474],[-65.317,47.433],[-65.517,47.393],[-65.583,47.306],[-65.65,47.219],[-65.712,47.132],[-65.779,47.045],[-65.975,47.004],[-66.171,46.963],[-66.238,46.876],[-66.3,46.789],[-66.367,46.702],[-66.429,46.615],[-66.496,46.528],[-66.558,46.441],[-66.625,46.354],[-66.687,46.266],[-66.75,46.179],[-66.817,46.092],[-66.879,46.005],[-66.942,45.918],[-67.004,45.831],[-67.067,45.743],[-67.129,45.656],[-67.192,45.569],[-67.254,45.481],[-67.317,45.394],[-67.379,45.307],[-67.442,45.219],[-67.504,45.132],[-67.567,45.045],[-67.629,44.958],[-67.687,44.87],[-67.75,44.783],[-67.813,44.695],[-67.875,44.608],[-67.808,44.476],[-67.746,44.344],[-67.804,44.256],[-67.867,44.169],[-67.929,44.081],[-67.988,43.994],[-68.05,43.906],[-68.108,43.819],[-68.046,43.687],[-67.983,43.554],[-68.042,43.467],[-68.104,43.379],[-68.163,43.292],[-68.221,43.204],[-68.158,43.072],[-68.096,42.94],[-68.158,42.853],[-68.217,42.765],[-68.275,42.677],[-68.333,42.59],[-68.396,42.502],[-68.454,42.414],[-68.512,42.327],[-68.692,42.284],[-68.871,42.24],[-68.929,42.152],[-68.988,42.065],[-69.046,41.977],[-69.104,41.889],[-69.163,41.802],[-69.221,41.714],[-69.279,41.626],[-69.337,41.538],[-69.396,41.45],[-69.45,41.363],[-69.508,41.275],[-69.567,41.187],[-69.621,41.099],[-69.679,41.011],[-69.738,40.923],[-69.792,40.835],[-69.85,40.747],[-69.908,40.659],[-70.079,40.615],[-70.254,40.571],[-70.312,40.483],[-70.367,40.394],[-70.542,40.35],[-70.717,40.305],[-70.771,40.217],[-70.825,40.129],[-71,40.084],[-71.171,40.038],[-71.225,39.95],[-71.279,39.862],[-71.333,39.774],[-71.387,39.685],[-71.558,39.64],[-71.733,39.594],[-71.783,39.506],[-71.837,39.418],[-72.008,39.371],[-72.179,39.325],[-72.233,39.237],[-72.287,39.149],[-72.337,39.06],[-72.392,38.972],[-72.446,38.883],[-72.496,38.795],[-72.55,38.707],[-72.6,38.618],[-72.654,38.53],[-72.704,38.441],[-72.758,38.353],[-72.808,38.264],[-72.863,38.176],[-72.8,38.046],[-72.738,37.915],[-72.675,37.784],[-72.613,37.654],[-72.55,37.523],[-72.488,37.392],[-72.425,37.261],[-72.363,37.13],[-72.304,36.999],[-72.242,36.868],[-72.296,36.779],[-72.346,36.691],[-72.287,36.56],[-72.225,36.428],[-72.279,36.34],[-72.221,36.209],[-72.158,36.077],[-72.212,35.989],[-72.375,35.943],[-72.538,35.898],[-72.488,35.986],[-72.592,35.81],[-72.754,35.764],[-72.917,35.718],[-73.079,35.673],[-73.242,35.626],[-73.292,35.538],[-73.346,35.449],[-73.504,35.403],[-73.667,35.357],[-73.717,35.268],[-73.771,35.18],[-73.821,35.091],[-73.871,35.003],[-73.921,34.914],[-73.971,34.826],[-74.021,34.737],[-74.071,34.648],[-74.121,34.56],[-74.171,34.471],[-74.221,34.383],[-74.271,34.294],[-74.321,34.205],[-74.367,34.117],[-74.529,34.07],[-74.687,34.023],[-74.738,33.934],[-74.783,33.846],[-74.833,33.757],[-74.883,33.669],[-74.933,33.58],[-74.979,33.491],[-75.029,33.402],[-75.079,33.314],[-75.125,33.225],[-75.175,33.136],[-75.225,33.048],[-75.271,32.959],[-75.321,32.87],[-75.371,32.782],[-75.417,32.693],[-75.467,32.604],[-75.517,32.516],[-75.562,32.427],[-75.613,32.338],[-75.55,32.208],[-75.492,32.077],[-75.542,31.988],[-75.587,31.9],[-75.529,31.769],[-75.471,31.638],[-75.413,31.508],[-75.354,31.377],[-75.296,31.246],[-75.242,31.115],[-75.183,30.984],[-75.125,30.853],[-75.067,30.722],[-75.012,30.591],[-74.954,30.459],[-74.9,30.328],[-74.946,30.239],[-74.996,30.15],[-74.942,30.019],[-74.883,29.888],[-74.829,29.756],[-74.775,29.624],[-74.821,29.536],[-74.871,29.447],[-74.817,29.315],[-74.762,29.183],[-74.808,29.094],[-74.858,29.006],[-74.908,28.917],[-74.954,28.829],[-74.9,28.697],[-74.846,28.565],[-74.896,28.476],[-74.942,28.388],[-74.992,28.299],[-75.142,28.253],[-75.292,28.208],[-75.342,28.119],[-75.388,28.03],[-75.437,27.942],[-75.483,27.853],[-75.533,27.764],[-75.579,27.676],[-75.629,27.587],[-75.675,27.498],[-75.725,27.409],[-75.771,27.321],[-75.817,27.232],[-75.867,27.143],[-75.913,27.054],[-75.962,26.966],[-76.008,26.877],[-76.054,26.788],[-76.204,26.743],[-76.354,26.697],[-76.4,26.608],[-76.446,26.519],[-76.496,26.43],[-76.542,26.341],[-76.587,26.253],[-76.633,26.164],[-76.683,26.075],[-76.729,25.986],[-76.875,25.941],[-77.021,25.894],[-77.071,25.806],[-77.117,25.717],[-77.208,25.539],[-77.254,25.451],[-77.3,25.362],[-77.446,25.316],[-77.596,25.269],[-77.642,25.181],[-77.687,25.092],[-77.833,25.046],[-77.979,24.999],[-78.025,24.91],[-78.071,24.822],[-78.117,24.733],[-78.163,24.644],[-78.208,24.555],[-78.254,24.466],[-78.396,24.42],[-78.542,24.374],[-78.587,24.285],[-78.633,24.196],[-78.679,24.107],[-78.725,24.019],[-78.771,23.93],[-78.817,23.841],[-78.858,23.752],[-78.904,23.663],[-78.95,23.575],[-78.996,23.486],[-79.042,23.397],[-79.088,23.308],[-79.133,23.22],[-79.175,23.131],[-79.221,23.042],[-79.167,22.911],[-79.117,22.78],[-79.158,22.691],[-79.204,22.603],[-79.25,22.514],[-79.296,22.425],[-79.342,22.336],[-79.387,22.248],[-79.429,22.159],[-79.475,22.07],[-79.521,21.981],[-79.567,21.893],[-79.608,21.804],[-79.654,21.715],[-79.7,21.626],[-79.746,21.538],[-79.787,21.449],[-79.833,21.36],[-79.879,21.271],[-79.925,21.183],[-79.967,21.094],[-80.013,21.005],[-80.058,20.916],[-80.104,20.828],[-80.146,20.739],[-80.192,20.65],[-80.238,20.562],[-80.279,20.473],[-80.325,20.384],[-80.371,20.296],[-80.413,20.207],[-80.458,20.118],[-80.504,20.029],[-80.546,19.941],[-80.592,19.852],[-80.637,19.764],[-80.679,19.675],[-80.725,19.586],[-80.771,19.498],[-80.812,19.409],[-80.858,19.32],[-80.904,19.231],[-80.946,19.143],[-80.992,19.054],[-81.038,18.966],[-81.079,18.877],[-81.125,18.788],[-81.167,18.7],[-81.117,18.568],[-81.067,18.437],[-81.017,18.305],[-80.967,18.174],[-80.913,18.042],[-80.863,17.911],[-80.812,17.779],[-80.762,17.647],[-80.712,17.515],[-80.663,17.383],[-80.613,17.251],[-80.562,17.119],[-80.608,17.031],[-80.654,16.942],[-80.604,16.81],[-80.554,16.678],[-80.6,16.589],[-80.642,16.5],[-80.596,16.368],[-80.546,16.236],[-80.496,16.103],[-80.446,15.971],[-80.4,15.839],[-80.35,15.706],[-80.304,15.574],[-80.254,15.441],[-80.3,15.353],[-80.342,15.264],[-80.296,15.131],[-80.246,14.998],[-80.292,14.91],[-80.337,14.821],[-80.383,14.732],[-80.429,14.644],[-80.379,14.511],[-80.333,14.378],[-80.375,14.289],[-80.421,14.201],[-80.375,14.068],[-80.325,13.935],[-80.371,13.846],[-80.417,13.758],[-80.462,13.669],[-80.6,13.624],[-80.738,13.58],[-80.875,13.536],[-80.967,13.58],[-81.058,13.624],[-81.242,13.712],[-81.333,13.756],[-81.429,13.8],[-81.567,13.755],[-81.7,13.711],[-81.837,13.666],[-81.975,13.621],[-82.113,13.576],[-82.25,13.532],[-82.387,13.487],[-82.429,13.398],[-82.475,13.31],[-82.613,13.265],[-82.75,13.221],[-82.792,13.132],[-82.838,13.044],[-82.975,12.999],[-83.108,12.954],[-83.154,12.866],[-83.196,12.778],[-83.333,12.733],[-83.471,12.688],[-83.608,12.644],[-83.7,12.688],[-83.792,12.731],[-83.925,12.686],[-84.062,12.642],[-84.2,12.597],[-84.333,12.553],[-84.471,12.508],[-84.608,12.463],[-84.742,12.419],[-84.879,12.374],[-85.012,12.33],[-85.058,12.242],[-85.1,12.154],[-85.146,12.066],[-85.187,11.978],[-85.325,11.933],[-85.458,11.889],[-85.504,11.801],[-85.546,11.712],[-85.592,11.625],[-85.633,11.537],[-85.679,11.449],[-85.721,11.361],[-85.763,11.273],[-85.808,11.185],[-85.85,11.097],[-85.896,11.009],[-85.937,10.921],[-85.983,10.834],[-86.025,10.746],[-86.071,10.658],[-86.113,10.57],[-86.158,10.482],[-86.2,10.394],[-86.246,10.306],[-86.287,10.219],[-86.333,10.131],[-86.375,10.043],[-86.417,9.955],[-86.462,9.868],[-86.504,9.78],[-86.642,9.736],[-86.775,9.693],[-86.821,9.605],[-86.863,9.517],[-86.908,9.429],[-86.95,9.342],[-87.083,9.298],[-87.221,9.255],[-87.262,9.167],[-87.308,9.08],[-87.35,8.992],[-87.396,8.905],[-87.529,8.861],[-87.663,8.818],[-87.708,8.731],[-87.75,8.643],[-87.796,8.556],[-87.837,8.468],[-87.883,8.381],[-87.925,8.294],[-88.058,8.251],[-88.192,8.208],[-88.238,8.12],[-88.279,8.033],[-88.417,7.99],[-88.55,7.948],[-88.592,7.86],[-88.637,7.773],[-88.679,7.686],[-88.725,7.599],[-88.858,7.556],[-88.992,7.514],[-89.037,7.427],[-89.079,7.339],[-89.125,7.253],[-89.167,7.166],[-89.212,7.078],[-89.254,6.991],[-89.387,6.949],[-89.525,6.907],[-89.567,6.82],[-89.613,6.733],[-89.746,6.691],[-89.879,6.649],[-90.012,6.607],[-90.146,6.565],[-90.192,6.479],[-90.233,6.392],[-90.367,6.35],[-90.5,6.309],[-90.633,6.267],[-90.767,6.226],[-90.812,6.139],[-90.858,6.053],[-90.992,6.011],[-91.125,5.97],[-91.258,5.929],[-91.392,5.887],[-91.433,5.801],[-91.479,5.715],[-91.613,5.674],[-91.746,5.633],[-91.787,5.547],[-91.833,5.461],[-91.967,5.42],[-92.1,5.379],[-92.146,5.293],[-92.187,5.207],[-92.233,5.121],[-92.275,5.035],[-92.321,4.949],[-92.367,4.863],[-92.408,4.778],[-92.454,4.692],[-92.496,4.606],[-92.542,4.52],[-92.587,4.434],[-92.629,4.348],[-92.675,4.263],[-92.717,4.177],[-92.762,4.091],[-92.808,4.005],[-92.85,3.919],[-92.896,3.834],[-92.942,3.748],[-92.983,3.662],[-93.029,3.577],[-93.075,3.491],[-93.121,3.406],[-93.163,3.32],[-93.208,3.234],[-93.254,3.149],[-93.296,3.063],[-93.342,2.978],[-93.387,2.892],[-93.342,2.76],[-93.3,2.628],[-93.346,2.543],[-93.387,2.457],[-93.346,2.325],[-93.304,2.193],[-93.258,2.061],[-93.217,1.929],[-93.171,1.796],[-93.129,1.664],[-93.087,1.532],[-93,1.485],[-92.908,1.438],[-92.867,1.305],[-92.825,1.173],[-92.738,1.126],[-92.646,1.079],[-92.558,1.032],[-92.471,0.985],[-92.429,0.852],[-92.383,0.719],[-92.296,0.672],[-92.208,0.625],[-92.167,0.492],[-92.125,0.359],[-92.083,0.226],[-92.037,0.093],[-91.996,-0.04],[-91.954,-0.173],[-91.867,-0.22],[-91.779,-0.267],[-91.738,-0.401],[-91.696,-0.534],[-91.608,-0.582],[-91.517,-0.629],[-91.429,-0.676],[-91.342,-0.723],[-91.254,-0.771],[-91.167,-0.818],[-91.079,-0.865],[-90.992,-0.912],[-90.9,-0.96],[-90.812,-1.007],[-90.725,-1.054],[-90.592,-1.015],[-90.454,-0.976],[-90.367,-1.022],[-90.279,-1.07],[-90.192,-1.117],[-90.104,-1.164],[-90.017,-1.211],[-89.925,-1.258],[-89.837,-1.306],[-89.75,-1.353],[-89.663,-1.4],[-89.575,-1.447],[-89.488,-1.494],[-89.396,-1.541],[-89.262,-1.502],[-89.129,-1.462],[-89.042,-1.509],[-88.95,-1.556],[-88.817,-1.516],[-88.683,-1.476],[-88.596,-1.523],[-88.504,-1.57],[-88.417,-1.617],[-88.329,-1.664],[-88.242,-1.711],[-88.154,-1.758],[-88.017,-1.717],[-87.883,-1.677],[-87.796,-1.724],[-87.704,-1.771],[-87.571,-1.73],[-87.437,-1.69],[-87.3,-1.649],[-87.167,-1.608],[-87.033,-1.567],[-86.896,-1.527],[-86.808,-1.573],[-86.721,-1.62],[-86.588,-1.579],[-86.45,-1.538],[-86.317,-1.497],[-86.179,-1.456],[-86.046,-1.415],[-85.913,-1.373],[-85.775,-1.332],[-85.642,-1.291],[-85.508,-1.249],[-85.371,-1.208],[-85.238,-1.166],[-85.192,-1.078],[-85.146,-0.991],[-85.1,-0.902],[-85.054,-0.814],[-85.008,-0.726],[-84.958,-0.638],[-84.913,-0.55],[-84.867,-0.462],[-84.821,-0.374],[-84.775,-0.286],[-84.729,-0.198],[-84.771,-0.063],[-84.817,0.071],[-84.771,0.159],[-84.725,0.247],[-84.675,0.335],[-84.629,0.423],[-84.583,0.512],[-84.537,0.6],[-84.492,0.688],[-84.446,0.776],[-84.4,0.864],[-84.267,0.906],[-84.133,0.948],[-84.087,1.037],[-84.042,1.125],[-83.904,1.167],[-83.771,1.209],[-83.637,1.251],[-83.504,1.294],[-83.367,1.336],[-83.233,1.378],[-83.1,1.421],[-82.962,1.463],[-82.829,1.506],[-82.696,1.548],[-82.65,1.637],[-82.604,1.725],[-82.467,1.767],[-82.333,1.81],[-82.2,1.853],[-82.062,1.895],[-81.929,1.938],[-81.842,1.892],[-81.75,1.846],[-81.617,1.889],[-81.483,1.931],[-81.346,1.974],[-81.212,2.017],[-81.125,1.971],[-81.033,1.925],[-80.9,1.968],[-80.767,2.01],[-80.629,2.053],[-80.496,2.096],[-80.408,2.05],[-80.317,2.004],[-80.183,2.047],[-80.05,2.089],[-79.913,2.132],[-79.779,2.175],[-79.646,2.218],[-79.508,2.261],[-79.375,2.304],[-79.329,2.392],[-79.283,2.481],[-79.15,2.524],[-79.013,2.567],[-78.967,2.656],[-78.921,2.744],[-78.875,2.833],[-78.829,2.922],[-78.783,3.011],[-78.738,3.099],[-78.692,3.188],[-78.646,3.277],[-78.6,3.366],[-78.554,3.454],[-78.508,3.543],[-78.462,3.632],[-78.417,3.721],[-78.371,3.809],[-78.325,3.898],[-78.279,3.987],[-78.233,4.076],[-78.275,4.211],[-78.317,4.345],[-78.271,4.434],[-78.225,4.523],[-78.271,4.657],[-78.312,4.792],[-78.267,4.881],[-78.221,4.969],[-78.175,5.058],[-78.129,5.147],[-78.083,5.236],[-78.037,5.325],[-77.992,5.413],[-77.946,5.502],[-77.988,5.637],[-78.033,5.771],[-77.988,5.86],[-77.942,5.949],[-77.983,6.084],[-78.025,6.218],[-77.979,6.307],[-77.933,6.396],[-77.887,6.484],[-77.754,6.528],[-77.617,6.571],[-77.571,6.659],[-77.525,6.748],[-77.392,6.791],[-77.254,6.834],[-77.121,6.877],[-77.029,6.831],[-76.942,6.785],[-76.804,6.828],[-76.667,6.871],[-76.579,6.825],[-76.492,6.779],[-76.354,6.822],[-76.217,6.864],[-76.083,6.907],[-75.946,6.95],[-75.812,6.993],[-75.675,7.035],[-75.537,7.078],[-75.492,7.167],[-75.446,7.255],[-75.308,7.298],[-75.175,7.341],[-75.129,7.429],[-75.083,7.518],[-74.946,7.56],[-74.808,7.603],[-74.762,7.691],[-74.717,7.78],[-74.671,7.869],[-74.621,7.958],[-74.488,8],[-74.35,8.042],[-74.304,8.131],[-74.258,8.219],[-74.121,8.262],[-73.983,8.304],[-73.937,8.393],[-73.892,8.481],[-73.754,8.523],[-73.617,8.565],[-73.571,8.654],[-73.521,8.743],[-73.475,8.831],[-73.429,8.919],[-73.292,8.961],[-73.154,9.003],[-73.108,9.092],[-73.062,9.181],[-72.925,9.222],[-72.787,9.264],[-72.742,9.353],[-72.692,9.441],[-72.554,9.483],[-72.417,9.524],[-72.371,9.613],[-72.325,9.701],[-72.275,9.789],[-72.229,9.878],[-72.183,9.966],[-72.133,10.055],[-72.087,10.143],[-72.037,10.231],[-71.992,10.32],[-71.942,10.408],[-71.896,10.496],[-71.937,10.632],[-71.979,10.767],[-71.933,10.855],[-71.883,10.943],[-71.837,11.032],[-71.787,11.12],[-71.742,11.208],[-71.692,11.297],[-71.646,11.385],[-71.596,11.473],[-71.638,11.608],[-71.683,11.744],[-71.633,11.832],[-71.588,11.92],[-71.629,12.056],[-71.671,12.191],[-71.712,12.326],[-71.754,12.461],[-71.708,12.549],[-71.658,12.638],[-71.7,12.773],[-71.742,12.908],[-71.696,12.997],[-71.646,13.085],[-71.6,13.173],[-71.458,13.214],[-71.321,13.256],[-71.271,13.344],[-71.225,13.432],[-71.175,13.52],[-71.125,13.608],[-70.988,13.649],[-70.85,13.69],[-70.8,13.779],[-70.75,13.867],[-70.613,13.908],[-70.471,13.948],[-70.425,14.036],[-70.375,14.124],[-70.325,14.212],[-70.275,14.3],[-70.229,14.388],[-70.179,14.476],[-70.129,14.564],[-70.079,14.653],[-70.033,14.74],[-69.983,14.828],[-69.933,14.916],[-69.975,15.052],[-70.017,15.187],[-70.058,15.323],[-70.1,15.458],[-70.142,15.594],[-70.183,15.729],[-70.133,15.817],[-70.087,15.905],[-70.129,16.041],[-70.171,16.176],[-70.212,16.312],[-70.254,16.447],[-70.296,16.583],[-70.342,16.718],[-70.383,16.854],[-70.425,16.989],[-70.467,17.124],[-70.508,17.26],[-70.554,17.395],[-70.646,17.442],[-70.738,17.489],[-70.779,17.625],[-70.733,17.713],[-70.683,17.801],[-70.725,17.936],[-70.767,18.071],[-70.717,18.16],[-70.671,18.248],[-70.712,18.383],[-70.754,18.518],[-70.704,18.606],[-70.654,18.694],[-70.7,18.83],[-70.742,18.965],[-70.692,19.053],[-70.642,19.141],[-70.687,19.276],[-70.729,19.412],[-70.679,19.5],[-70.629,19.588],[-70.675,19.723],[-70.717,19.858],[-70.763,19.993],[-70.808,20.128],[-70.758,20.217],[-70.708,20.305],[-70.658,20.393],[-70.512,20.434],[-70.367,20.475],[-70.225,20.516],[-70.129,20.468],[-70.033,20.421],[-69.942,20.374],[-69.846,20.326],[-69.754,20.279],[-69.658,20.231],[-69.517,20.271],[-69.371,20.312],[-69.279,20.264],[-69.183,20.216],[-69.037,20.256],[-68.896,20.296],[-68.75,20.336],[-68.604,20.375],[-68.458,20.415],[-68.317,20.454],[-68.171,20.494],[-68.025,20.533],[-67.879,20.572],[-67.829,20.659],[-67.775,20.747],[-67.629,20.786],[-67.488,20.824],[-67.433,20.912],[-67.383,20.999],[-67.238,21.038],[-67.092,21.076],[-66.946,21.114],[-66.796,21.153],[-66.65,21.191],[-66.504,21.229],[-66.358,21.267],[-66.212,21.304],[-66.158,21.391],[-66.108,21.478],[-65.962,21.516],[-65.812,21.553],[-65.775,21.417],[-65.829,21.33],[-65.879,21.243],[-65.933,21.156],[-65.988,21.069],[-66.133,21.032],[-66.279,20.994],[-66.333,20.907],[-66.383,20.82],[-66.529,20.782],[-66.675,20.744],[-66.729,20.657],[-66.779,20.57],[-66.833,20.483],[-66.883,20.396],[-66.937,20.308],[-66.988,20.221],[-67.042,20.134],[-67.092,20.047],[-67.146,19.959],[-67.196,19.872],[-67.25,19.785],[-67.3,19.698],[-67.354,19.61],[-67.404,19.523],[-67.55,19.484],[-67.692,19.445],[-67.746,19.358],[-67.796,19.271],[-67.942,19.232],[-68.083,19.193],[-68.133,19.105],[-68.187,19.018],[-68.238,18.93],[-68.287,18.842],[-68.337,18.755],[-68.392,18.667],[-68.442,18.579],[-68.492,18.492],[-68.542,18.404],[-68.592,18.317],[-68.646,18.229],[-68.696,18.141],[-68.746,18.054],[-68.796,17.966],[-68.846,17.878],[-68.804,17.743],[-68.763,17.607],[-68.721,17.471],[-68.679,17.335],[-68.637,17.199],[-68.596,17.064],[-68.554,16.928],[-68.512,16.792],[-68.475,16.656],[-68.433,16.52],[-68.483,16.433],[-68.533,16.345],[-68.492,16.209],[-68.45,16.074],[-68.5,15.986],[-68.55,15.898],[-68.6,15.811],[-68.65,15.723],[-68.608,15.587],[-68.567,15.451],[-68.617,15.364],[-68.667,15.276],[-68.717,15.188],[-68.767,15.101],[-68.817,15.013],[-68.867,14.925],[-68.917,14.838],[-68.967,14.75],[-69.017,14.662],[-69.067,14.574],[-69.117,14.487],[-69.167,14.399],[-69.212,14.311],[-69.262,14.223],[-69.312,14.136],[-69.363,14.048],[-69.413,13.96],[-69.462,13.872],[-69.421,13.736],[-69.379,13.601],[-69.429,13.513],[-69.475,13.425],[-69.525,13.337],[-69.575,13.249],[-69.533,13.114],[-69.492,12.978],[-69.542,12.89],[-69.679,12.85],[-69.821,12.81],[-69.867,12.722],[-69.917,12.634],[-69.967,12.546],[-70.012,12.458],[-70.062,12.37],[-70.113,12.282],[-70.158,12.194],[-70.208,12.106],[-70.346,12.065],[-70.483,12.025],[-70.533,11.937],[-70.583,11.849],[-70.629,11.761],[-70.679,11.672],[-70.817,11.631],[-70.954,11.591],[-71.004,11.503],[-71.05,11.414],[-71.1,11.326],[-71.146,11.238],[-71.196,11.15],[-71.242,11.061],[-71.292,10.973],[-71.337,10.885],[-71.387,10.797],[-71.433,10.709],[-71.483,10.62],[-71.529,10.532],[-71.579,10.444],[-71.625,10.356],[-71.675,10.267],[-71.721,10.179],[-71.771,10.091],[-71.817,10.003],[-71.867,9.914],[-71.913,9.826],[-71.958,9.737],[-72.008,9.649],[-72.054,9.561],[-72.104,9.473],[-72.15,9.384],[-72.196,9.296],[-72.246,9.207],[-72.292,9.119],[-72.337,9.031],[-72.387,8.942],[-72.433,8.854],[-72.483,8.765],[-72.529,8.677],[-72.575,8.589],[-72.625,8.5],[-72.671,8.412],[-72.808,8.37],[-72.942,8.328],[-72.992,8.24],[-73.037,8.151],[-73.083,8.063],[-73.133,7.974],[-73.179,7.886],[-73.225,7.797],[-73.271,7.709],[-73.321,7.62],[-73.454,7.578],[-73.592,7.536],[-73.637,7.448],[-73.687,7.359],[-73.733,7.27],[-73.779,7.182],[-73.825,7.093],[-73.875,7.005],[-73.921,6.916],[-73.967,6.828],[-74.012,6.739],[-74.058,6.65],[-74.108,6.562],[-74.154,6.473],[-74.2,6.384],[-74.246,6.296],[-74.292,6.207],[-74.342,6.119],[-74.387,6.03],[-74.433,5.941],[-74.479,5.853],[-74.525,5.764],[-74.571,5.676],[-74.621,5.587],[-74.754,5.544],[-74.892,5.502],[-74.937,5.413],[-74.983,5.325],[-75.029,5.236],[-75.075,5.147],[-75.121,5.059],[-75.167,4.97],[-75.217,4.881],[-75.263,4.792],[-75.308,4.704],[-75.354,4.615],[-75.4,4.526],[-75.446,4.438],[-75.492,4.349],[-75.537,4.26],[-75.583,4.172],[-75.633,4.083],[-75.679,3.994],[-75.725,3.906],[-75.771,3.817],[-75.817,3.728],[-75.863,3.639],[-75.821,3.504],[-75.779,3.369],[-75.825,3.281],[-75.871,3.192],[-75.825,3.057],[-75.783,2.923],[-75.742,2.788],[-75.7,2.653],[-75.746,2.564],[-75.792,2.475],[-75.75,2.34],[-75.704,2.206],[-75.754,2.117],[-75.8,2.028],[-75.846,1.939],[-75.892,1.851],[-75.937,1.762],[-76.071,1.719],[-76.208,1.677],[-76.342,1.634],[-76.475,1.591],[-76.613,1.549],[-76.7,1.594],[-76.787,1.641],[-76.879,1.687],[-76.967,1.733],[-77.054,1.779],[-77.146,1.825],[-77.279,1.782],[-77.413,1.739],[-77.504,1.785],[-77.592,1.831],[-77.679,1.877],[-77.771,1.923],[-77.904,1.881],[-78.037,1.838],[-78.129,1.884],[-78.217,1.93],[-78.35,1.887],[-78.488,1.844],[-78.621,1.801],[-78.667,1.713],[-78.712,1.624],[-78.846,1.581],[-78.983,1.538],[-79.029,1.449],[-79.075,1.361],[-79.121,1.272],[-79.167,1.183],[-79.212,1.094],[-79.258,1.006],[-79.392,0.963],[-79.529,0.92],[-79.575,0.831],[-79.621,0.743],[-79.754,0.7],[-79.887,0.657],[-79.933,0.569],[-79.983,0.48],[-80.117,0.437],[-80.25,0.394],[-80.296,0.306],[-80.342,0.217],[-80.387,0.128],[-80.433,0.04],[-80.479,-0.049],[-80.525,-0.137],[-80.575,-0.226],[-80.621,-0.315],[-80.754,-0.357],[-80.887,-0.4],[-81.025,-0.442],[-81.158,-0.485],[-81.204,-0.574],[-81.25,-0.662],[-81.383,-0.705],[-81.521,-0.747],[-81.567,-0.836],[-81.613,-0.924],[-81.658,-1.013],[-81.704,-1.101],[-81.75,-1.19],[-81.796,-1.279],[-81.933,-1.321],[-82.067,-1.363],[-82.113,-1.452],[-82.158,-1.54],[-82.296,-1.582],[-82.429,-1.625],[-82.475,-1.713],[-82.521,-1.802],[-82.654,-1.844],[-82.792,-1.886],[-82.925,-1.928],[-83.062,-1.97],[-83.108,-2.058],[-83.154,-2.147],[-83.287,-2.189],[-83.425,-2.231],[-83.558,-2.272],[-83.692,-2.314],[-83.742,-2.403],[-83.788,-2.491],[-83.921,-2.533],[-84.058,-2.574],[-84.104,-2.663],[-84.15,-2.751],[-84.283,-2.793],[-84.421,-2.834],[-84.467,-2.922],[-84.512,-3.011],[-84.646,-3.052],[-84.783,-3.094],[-84.917,-3.135],[-85.054,-3.176],[-85.1,-3.264],[-85.146,-3.352],[-85.283,-3.394],[-85.417,-3.435],[-85.462,-3.523],[-85.512,-3.611],[-85.646,-3.652],[-85.779,-3.693],[-85.917,-3.734],[-86.004,-3.687],[-86.092,-3.64],[-86.229,-3.681],[-86.363,-3.721],[-86.454,-3.674],[-86.542,-3.627],[-86.675,-3.668],[-86.629,-3.58],[-86.812,-3.709],[-86.946,-3.749],[-87.083,-3.789],[-87.217,-3.83],[-87.354,-3.87],[-87.488,-3.911],[-87.625,-3.951],[-87.758,-3.991],[-87.804,-4.078],[-87.854,-4.166],[-87.9,-4.253],[-87.946,-4.341],[-87.996,-4.428],[-88.042,-4.515],[-88.087,-4.602],[-88.137,-4.69],[-88.183,-4.777],[-88.233,-4.864],[-88.279,-4.952],[-88.325,-5.039],[-88.375,-5.126],[-88.421,-5.214],[-88.471,-5.301],[-88.429,-5.436],[-88.387,-5.571],[-88.433,-5.658],[-88.483,-5.745],[-88.529,-5.832],[-88.579,-5.92],[-88.625,-6.007],[-88.762,-6.046],[-88.9,-6.085],[-88.946,-6.172],[-88.996,-6.26],[-89.129,-6.299],[-89.267,-6.337],[-89.312,-6.425],[-89.363,-6.512],[-89.5,-6.55],[-89.633,-6.589],[-89.771,-6.628],[-89.908,-6.666],[-90.046,-6.705],[-90.179,-6.743],[-90.229,-6.83],[-90.275,-6.916],[-90.413,-6.954],[-90.55,-6.992],[-90.687,-7.031],[-90.825,-7.069],[-90.871,-7.155],[-90.921,-7.241],[-90.971,-7.328],[-91.017,-7.414],[-91.154,-7.452],[-91.292,-7.489],[-91.342,-7.576],[-91.388,-7.662],[-91.437,-7.748],[-91.488,-7.834],[-91.533,-7.921],[-91.583,-8.007],[-91.633,-8.093],[-91.683,-8.179],[-91.821,-8.216],[-91.958,-8.253],[-92.004,-8.339],[-92.054,-8.425],[-92.192,-8.462],[-92.329,-8.499],[-92.379,-8.584],[-92.429,-8.67],[-92.567,-8.707],[-92.654,-8.657],[-92.742,-8.608],[-92.879,-8.644],[-93.017,-8.68],[-93.154,-8.716],[-93.292,-8.752],[-93.429,-8.787],[-93.567,-8.823],[-93.704,-8.858],[-93.842,-8.894],[-93.979,-8.929],[-94.117,-8.964],[-94.254,-8.999],[-94.304,-9.084],[-94.354,-9.169],[-94.492,-9.204],[-94.629,-9.239],[-94.679,-9.324],[-94.729,-9.408],[-94.779,-9.493],[-94.829,-9.578],[-94.879,-9.663],[-94.929,-9.748],[-94.983,-9.833],[-95.033,-9.917],[-95.083,-10.002],[-95.133,-10.087],[-95.183,-10.172],[-95.233,-10.256],[-95.287,-10.341],[-95.337,-10.426],[-95.387,-10.51],[-95.437,-10.595],[-95.579,-10.628],[-95.717,-10.662],[-95.854,-10.695],[-95.942,-10.644],[-96.029,-10.593],[-96.167,-10.626],[-96.308,-10.658],[-96.446,-10.691],[-96.583,-10.724],[-96.721,-10.756],[-96.863,-10.788],[-97,-10.82],[-97.05,-10.904],[-97.104,-10.988],[-97.242,-11.02],[-97.379,-11.051],[-97.433,-11.135],[-97.483,-11.219],[-97.625,-11.25],[-97.763,-11.281],[-97.904,-11.312],[-98.042,-11.344],[-98.179,-11.374],[-98.321,-11.405],[-98.458,-11.436],[-98.596,-11.466],[-98.738,-11.496],[-98.875,-11.526],[-99.017,-11.556],[-99.154,-11.586],[-99.296,-11.616],[-99.433,-11.645],[-99.571,-11.674],[-99.712,-11.704],[-99.85,-11.733],[-99.992,-11.762],[-100.042,-11.844],[-100.096,-11.926],[-100.238,-11.954],[-100.375,-11.983],[-100.429,-12.065],[-100.483,-12.147],[-100.537,-12.228],[-100.587,-12.31],[-100.642,-12.392],[-100.696,-12.474],[-100.837,-12.502],[-100.975,-12.529],[-101.029,-12.611],[-101.083,-12.692],[-101.137,-12.774],[-101.192,-12.855],[-101.333,-12.882],[-101.471,-12.909],[-101.525,-12.99],[-101.579,-13.072],[-101.638,-13.153],[-101.692,-13.234],[-101.829,-13.26],[-101.971,-13.286],[-102.025,-13.367],[-102.079,-13.448],[-102.133,-13.529],[-102.192,-13.61],[-102.246,-13.691],[-102.3,-13.772],[-102.442,-13.797],[-102.583,-13.822],[-102.638,-13.903],[-102.692,-13.983],[-102.746,-14.064],[-102.804,-14.144],[-102.946,-14.169],[-103.087,-14.194],[-103.142,-14.274],[-103.196,-14.354],[-103.254,-14.434],[-103.308,-14.514],[-103.45,-14.538],[-103.592,-14.562],[-103.65,-14.642],[-103.704,-14.722],[-103.758,-14.802],[-103.817,-14.881],[-103.958,-14.905],[-104.1,-14.928],[-104.158,-15.007],[-104.212,-15.087],[-104.271,-15.166],[-104.329,-15.246],[-104.471,-15.268],[-104.613,-15.291],[-104.667,-15.37],[-104.725,-15.449],[-104.867,-15.471],[-105.008,-15.492],[-105.067,-15.571],[-105.125,-15.65],[-105.267,-15.671],[-105.408,-15.692],[-105.467,-15.771],[-105.525,-15.85],[-105.667,-15.871],[-105.812,-15.891],[-105.867,-15.969],[-105.925,-16.048],[-106.071,-16.068],[-106.212,-16.087],[-106.271,-16.166],[-106.329,-16.244],[-106.471,-16.263],[-106.617,-16.282],[-106.675,-16.36],[-106.733,-16.438],[-106.875,-16.457],[-107.017,-16.475],[-107.079,-16.553],[-107.137,-16.63],[-107.279,-16.648],[-107.421,-16.666],[-107.567,-16.684],[-107.708,-16.702],[-107.854,-16.719],[-107.996,-16.736],[-108.137,-16.753],[-108.283,-16.77],[-108.425,-16.787],[-108.571,-16.803],[-108.712,-16.819],[-108.854,-16.835],[-108.917,-16.911],[-108.975,-16.987],[-109.121,-17.002],[-109.263,-17.018],[-109.404,-17.033],[-109.55,-17.048],[-109.692,-17.062],[-109.837,-17.076],[-109.896,-17.152],[-109.958,-17.227],[-110.1,-17.241],[-110.246,-17.254],[-110.387,-17.268],[-110.533,-17.281],[-110.592,-17.356],[-110.654,-17.43],[-110.796,-17.443],[-110.942,-17.456],[-111.004,-17.53],[-111.063,-17.604],[-111.188,-17.752],[-111.25,-17.827],[-111.312,-17.901],[-111.371,-17.974],[-111.433,-18.048],[-111.496,-18.122],[-111.558,-18.196],[-111.621,-18.27],[-111.683,-18.344],[-111.746,-18.417],[-111.808,-18.491],[-111.871,-18.564],[-111.854,-18.701],[-111.833,-18.837],[-111.896,-18.911],[-111.958,-18.984],[-112.021,-19.057],[-112.087,-19.131],[-112.15,-19.204],[-112.212,-19.277],[-112.275,-19.351],[-112.421,-19.36],[-112.504,-19.296],[-112.587,-19.233],[-112.729,-19.242],[-112.875,-19.251],[-112.958,-19.187],[-113.037,-19.123],[-113.183,-19.131],[-113.121,-19.059],[-113.329,-19.139],[-113.413,-19.075],[-113.492,-19.011],[-113.637,-19.019],[-113.783,-19.026],[-113.925,-19.034],[-114.071,-19.041],[-114.217,-19.047],[-114.363,-19.054],[-114.504,-19.06],[-114.65,-19.066],[-114.796,-19.072],[-114.858,-19.142],[-114.925,-19.213],[-115.071,-19.219],[-115.212,-19.224],[-115.279,-19.294],[-115.346,-19.364],[-115.408,-19.435],[-115.475,-19.505],[-115.542,-19.575],[-115.604,-19.645],[-115.671,-19.716],[-115.737,-19.786],[-115.804,-19.855],[-115.867,-19.925],[-115.933,-19.995],[-116,-20.065],[-116.067,-20.134],[-116.133,-20.204],[-116.2,-20.274],[-116.267,-20.343],[-116.333,-20.413],[-116.4,-20.482],[-116.467,-20.551],[-116.533,-20.621],[-116.6,-20.69],[-116.667,-20.759],[-116.733,-20.828],[-116.8,-20.897],[-116.867,-20.966],[-116.937,-21.035],[-117.004,-21.103],[-117.071,-21.172],[-117.137,-21.241],[-117.208,-21.309],[-117.275,-21.378],[-117.342,-21.446],[-117.413,-21.515],[-117.479,-21.583],[-117.55,-21.651],[-117.617,-21.719],[-117.688,-21.787],[-117.754,-21.856],[-117.825,-21.924],[-117.892,-21.991],[-117.962,-22.059],[-118.029,-22.127],[-118.1,-22.195],[-118.171,-22.262],[-118.242,-22.33],[-118.308,-22.397],[-118.379,-22.465],[-118.371,-22.601],[-118.363,-22.738],[-118.433,-22.806],[-118.504,-22.873],[-118.575,-22.94],[-118.646,-23.007],[-118.717,-23.074],[-118.787,-23.141],[-118.779,-23.278],[-118.775,-23.415],[-118.846,-23.482],[-118.917,-23.549],[-118.988,-23.616],[-119.058,-23.682],[-119.054,-23.819],[-119.046,-23.956],[-119.121,-24.023],[-119.192,-24.089],[-119.262,-24.156],[-119.337,-24.222],[-119.408,-24.289],[-119.483,-24.355],[-119.475,-24.492],[-119.471,-24.629],[-119.546,-24.695],[-119.617,-24.761],[-119.613,-24.899],[-119.613,-25.036],[-119.683,-25.102],[-119.758,-25.168],[-119.754,-25.305],[-119.75,-25.442],[-119.825,-25.508],[-119.9,-25.574],[-119.896,-25.711],[-119.896,-25.849],[-119.892,-25.986],[-119.887,-26.123],[-119.887,-26.261],[-119.883,-26.398],[-119.883,-26.536],[-119.879,-26.674],[-119.879,-26.811],[-119.8,-26.883],[-119.721,-26.955],[-119.721,-27.092],[-119.717,-27.23],[-119.717,-27.368],[-119.717,-27.506],[-119.638,-27.578],[-119.558,-27.65],[-119.558,-27.787],[-119.554,-27.926],[-119.475,-27.998],[-119.396,-28.069],[-119.396,-28.207],[-119.396,-28.346],[-119.317,-28.417],[-119.238,-28.489],[-119.233,-28.627],[-119.233,-28.766],[-119.233,-28.904],[-119.233,-29.042],[-119.154,-29.114],[-119.071,-29.186],[-119.071,-29.324],[-119.071,-29.463],[-119.071,-29.602],[-119.071,-29.74],[-118.992,-29.812],[-118.908,-29.884],[-118.908,-30.023],[-118.908,-30.161],[-118.908,-30.3],[-118.908,-30.439],[-118.908,-30.578],[-118.908,-30.717],[-118.908,-30.856],[-118.908,-30.994],[-118.829,-31.066],[-118.746,-31.139],[-118.746,-31.277],[-118.746,-31.417],[-118.667,-31.489],[-118.583,-31.561],[-118.583,-31.7],[-118.583,-31.839],[-118.504,-31.911],[-118.421,-31.983],[-118.421,-32.122],[-118.421,-32.261],[-118.337,-32.333],[-118.258,-32.405],[-118.175,-32.477],[-118.092,-32.549],[-118.008,-32.621],[-117.925,-32.692],[-117.842,-32.764],[-117.763,-32.835],[-117.758,-32.975],[-117.758,-33.114],[-117.675,-33.186],[-117.592,-33.257],[-117.508,-33.329],[-117.425,-33.401],[-117.342,-33.472],[-117.258,-33.543],[-117.258,-33.683],[-117.254,-33.823],[-117.171,-33.894],[-117.087,-33.965],[-117.004,-34.036],[-116.917,-34.107],[-116.833,-34.178],[-116.746,-34.249],[-116.663,-34.32],[-116.575,-34.391],[-116.492,-34.462],[-116.404,-34.533],[-116.321,-34.603],[-116.233,-34.674],[-116.146,-34.745],[-115.975,-34.746],[-115.804,-34.746],[-115.721,-34.816],[-115.633,-34.886],[-115.462,-34.886],[-115.292,-34.886],[-115.204,-34.956],[-115.117,-35.025],[-114.946,-35.024],[-114.771,-35.023],[-114.6,-35.021],[-114.429,-35.019],[-114.342,-35.089],[-114.254,-35.157],[-114.083,-35.155],[-113.908,-35.152],[-113.821,-35.221],[-113.733,-35.289],[-113.642,-35.358],[-113.554,-35.427],[-113.462,-35.495],[-113.375,-35.563],[-113.283,-35.632],[-113.279,-35.772],[-113.271,-35.913],[-113.179,-35.981],[-113.087,-36.049],[-113.083,-36.19],[-113.075,-36.33],[-113.067,-36.471],[-113.063,-36.611],[-112.971,-36.68],[-112.879,-36.748],[-112.871,-36.888],[-112.863,-37.029],[-112.858,-37.17],[-112.85,-37.311],[-112.842,-37.451],[-112.837,-37.592],[-112.829,-37.733],[-112.821,-37.874],[-112.813,-38.014],[-112.808,-38.155],[-112.8,-38.296],[-112.888,-38.369],[-112.975,-38.441],[-112.967,-38.582],[-112.962,-38.723],[-112.954,-38.864],[-112.946,-39.005],[-112.942,-39.146],[-112.933,-39.287],[-113.021,-39.359],[-113.113,-39.432],[-113.104,-39.573],[-113.1,-39.714],[-113.092,-39.855],[-113.087,-39.996],[-113.175,-40.068],[-113.267,-40.14],[-113.258,-40.281],[-113.254,-40.422],[-113.346,-40.495],[-113.433,-40.567],[-113.429,-40.708],[-113.425,-40.849],[-113.517,-40.921],[-113.608,-40.993],[-113.7,-41.065],[-113.792,-41.137],[-113.883,-41.209],[-113.975,-41.28],[-113.971,-41.421],[-113.967,-41.562],[-114.058,-41.634],[-114.15,-41.706],[-114.246,-41.777],[-114.433,-41.778],[-114.625,-41.779],[-114.717,-41.851],[-114.813,-41.921],[-115,-41.922],[-115.192,-41.922],[-115.283,-41.992],[-115.379,-42.062],[-115.475,-42.133],[-115.571,-42.203],[-115.667,-42.273],[-115.763,-42.343],[-115.858,-42.413],[-115.954,-42.483],[-116.05,-42.552],[-116.146,-42.622],[-116.242,-42.692],[-116.437,-42.831],[-116.537,-42.9],[-116.633,-42.969],[-116.638,-43.11],[-116.642,-43.251],[-116.738,-43.32],[-116.837,-43.389],[-116.842,-43.53],[-116.846,-43.671],[-116.85,-43.812],[-116.854,-43.954],[-116.858,-44.095],[-116.863,-44.236],[-116.867,-44.377],[-116.871,-44.518],[-116.875,-44.659],[-116.879,-44.801],[-116.979,-44.869],[-117.079,-44.938],[-117.087,-45.079],[-117.092,-45.221],[-117.196,-45.289],[-117.296,-45.358],[-117.304,-45.499],[-117.308,-45.64],[-117.413,-45.709],[-117.517,-45.777],[-117.521,-45.918],[-117.529,-46.059],[-117.633,-46.127],[-117.742,-46.196],[-117.746,-46.337],[-117.754,-46.478],[-117.763,-46.619],[-117.767,-46.76],[-117.875,-46.828],[-117.983,-46.896],[-117.992,-47.037],[-118,-47.179],[-118.108,-47.246],[-118.217,-47.314],[-118.225,-47.455],[-118.233,-47.596],[-118.342,-47.664],[-118.45,-47.731],[-118.462,-47.872],[-118.471,-48.014],[-118.579,-48.081],[-118.692,-48.148],[-118.804,-48.215],[-118.913,-48.282],[-118.925,-48.423],[-118.937,-48.564],[-119.05,-48.631],[-119.163,-48.697],[-119.175,-48.839],[-119.187,-48.98],[-119.3,-49.046],[-119.412,-49.113],[-119.425,-49.254],[-119.437,-49.395],[-119.454,-49.536],[-119.467,-49.677],[-119.479,-49.818],[-119.492,-49.959],[-119.504,-50.101],[-119.517,-50.242],[-119.533,-50.383],[-119.546,-50.524],[-119.558,-50.665],[-119.575,-50.806],[-119.587,-50.947],[-119.6,-51.089],[-119.617,-51.23],[-119.629,-51.371],[-119.75,-51.437],[-119.871,-51.503],[-119.887,-51.644],[-119.9,-51.785],[-120.025,-51.851],[-120.146,-51.916],[-120.163,-52.057],[-120.179,-52.199],[-120.3,-52.264],[-120.425,-52.329],[-120.55,-52.394],[-120.675,-52.46],[-120.8,-52.524],[-120.925,-52.589],[-121.05,-52.654],[-121.283,-52.642],[-121.513,-52.63],[-121.642,-52.694],[-121.767,-52.758],[-121.896,-52.821],[-122.021,-52.885],[-122.15,-52.949],[-122.279,-53.012],[-122.408,-53.075],[-122.538,-53.138],[-122.667,-53.201],[-122.796,-53.264],[-122.929,-53.327],[-123.058,-53.389],[-123.187,-53.452],[-123.321,-53.514],[-123.454,-53.576],[-123.583,-53.638],[-123.717,-53.699],[-123.746,-53.84],[-123.775,-53.98],[-123.908,-54.042],[-124.046,-54.103],[-124.075,-54.244],[-124.104,-54.384],[-124.242,-54.445],[-124.375,-54.506],[-124.512,-54.567],[-124.65,-54.628],[-124.683,-54.768],[-124.717,-54.908],[-124.854,-54.969],[-124.996,-55.029],[-125.133,-55.089],[-125.275,-55.149],[-125.412,-55.209],[-125.554,-55.269],[-125.592,-55.409],[-125.625,-55.549],[-125.771,-55.608],[-125.912,-55.667],[-126.054,-55.727],[-126.2,-55.786],[-126.342,-55.844],[-126.488,-55.903],[-126.633,-55.961],[-126.775,-56.02],[-126.921,-56.078],[-127.067,-56.136],[-127.217,-56.194],[-127.362,-56.251],[-127.404,-56.391],[-127.45,-56.53],[-127.6,-56.587],[-127.75,-56.644],[-127.896,-56.701],[-128.046,-56.758],[-128.096,-56.897],[-128.142,-57.036],[-128.292,-57.093],[-128.446,-57.149],[-128.6,-57.205],[-128.75,-57.261],[-128.904,-57.317],[-129.058,-57.372],[-129.212,-57.428],[-129.367,-57.483],[-129.525,-57.538],[-129.679,-57.593],[-129.837,-57.648],[-129.992,-57.702],[-130.15,-57.756],[-130.408,-57.726],[-130.667,-57.696],[-130.825,-57.749],[-130.983,-57.802],[-131.242,-57.771],[-131.5,-57.738],[-131.662,-57.791],[-131.821,-57.843],[-131.983,-57.895],[-132.142,-57.947],[-132.304,-57.998],[-132.467,-58.049],[-132.629,-58.101],[-132.792,-58.152],[-132.954,-58.202],[-133.117,-58.253],[-133.283,-58.303],[-133.446,-58.354],[-133.612,-58.403],[-133.779,-58.453],[-133.946,-58.503],[-134.017,-58.639],[-134.092,-58.775],[-134.258,-58.824],[-134.521,-58.786],[-134.783,-58.747],[-134.95,-58.795],[-135.121,-58.843],[-135.292,-58.891],[-135.462,-58.938],[-135.725,-58.897],[-135.983,-58.856],[-136.246,-58.814],[-136.508,-58.772],[-136.767,-58.729],[-137.025,-58.685],[-137.283,-58.641],[-137.542,-58.597],[-137.8,-58.552],[-137.883,-58.462],[-137.796,-58.328],[-137.712,-58.194],[-137.625,-58.06],[-137.542,-57.926],[-137.458,-57.792],[-137.375,-57.657],[-137.292,-57.523],[-137.208,-57.389],[-137.129,-57.255],[-136.962,-57.209],[-136.8,-57.164],[-136.721,-57.029],[-136.642,-56.894],[-136.479,-56.848],[-136.317,-56.802],[-136.237,-56.667],[-136.163,-56.532],[-136.004,-56.486],[-135.842,-56.439],[-135.683,-56.392],[-135.437,-56.432],[-135.192,-56.473],[-135.033,-56.425],[-134.875,-56.377],[-134.717,-56.329],[-134.562,-56.28],[-134.404,-56.231],[-134.246,-56.182],[-134.092,-56.133],[-133.933,-56.084],[-133.779,-56.034],[-133.625,-55.985],[-133.471,-55.935],[-133.317,-55.885],[-133.162,-55.834],[-133.008,-55.784],[-132.854,-55.733],[-132.7,-55.682],[-132.458,-55.717],[-132.217,-55.751],[-132.062,-55.7],[-131.913,-55.648],[-131.667,-55.681],[-131.425,-55.714],[-131.179,-55.746],[-130.933,-55.778],[-130.783,-55.724],[-130.633,-55.671],[-130.387,-55.702],[-130.146,-55.732],[-129.996,-55.677],[-129.846,-55.623],[-129.6,-55.652],[-129.354,-55.681],[-129.208,-55.625],[-129.058,-55.57],[-128.912,-55.514],[-128.767,-55.459],[-128.621,-55.402],[-128.475,-55.346],[-128.329,-55.29],[-128.183,-55.234],[-128.042,-55.177],[-127.896,-55.12],[-127.754,-55.063],[-127.608,-55.006],[-127.467,-54.949],[-127.325,-54.891],[-127.183,-54.834],[-127.042,-54.776],[-126.9,-54.718],[-126.758,-54.66],[-126.621,-54.601],[-126.479,-54.543],[-126.342,-54.484],[-126.3,-54.344],[-126.263,-54.205],[-126.125,-54.146],[-125.988,-54.087],[-125.85,-54.028],[-125.712,-53.968],[-125.579,-53.909],[-125.442,-53.849],[-125.304,-53.789],[-125.171,-53.729],[-125.037,-53.669],[-124.9,-53.609],[-124.867,-53.469],[-124.837,-53.329],[-124.704,-53.268],[-124.571,-53.207],[-124.437,-53.147],[-124.304,-53.086],[-124.175,-53.024],[-124.042,-52.963],[-123.913,-52.902],[-123.783,-52.84],[-123.754,-52.7],[-123.725,-52.559],[-123.596,-52.498],[-123.467,-52.436],[-123.337,-52.374],[-123.212,-52.311],[-123.183,-52.171],[-123.158,-52.031],[-123.033,-51.968],[-122.904,-51.906],[-122.779,-51.843],[-122.654,-51.78],[-122.529,-51.717],[-122.404,-51.654],[-122.279,-51.591],[-122.154,-51.527],[-122.029,-51.464],[-121.908,-51.4],[-121.887,-51.259],[-121.862,-51.119],[-121.842,-50.978],[-121.821,-50.837],[-121.8,-50.696],[-121.779,-50.556],[-121.762,-50.415],[-121.742,-50.274],[-121.721,-50.133],[-121.7,-49.992],[-121.679,-49.852],[-121.662,-49.711],[-121.642,-49.57],[-121.621,-49.429],[-121.504,-49.366],[-121.387,-49.301],[-121.367,-49.161],[-121.35,-49.02],[-121.333,-48.879],[-121.312,-48.738],[-121.296,-48.597],[-121.279,-48.456],[-121.258,-48.316],[-121.242,-48.175],[-121.225,-48.034],[-121.208,-47.893],[-121.192,-47.752],[-121.287,-47.676],[-121.383,-47.6],[-121.367,-47.459],[-121.346,-47.318],[-121.329,-47.177],[-121.425,-47.101],[-121.408,-46.96],[-121.296,-46.896],[-121.092,-46.908],[-120.996,-46.984],[-120.787,-46.995],[-120.692,-47.071],[-120.596,-47.147],[-120.392,-47.157],[-120.183,-47.167],[-119.975,-47.177],[-119.767,-47.186],[-119.563,-47.195],[-119.354,-47.204],[-119.146,-47.212],[-119.037,-47.145],[-118.929,-47.078],[-118.821,-47.011],[-118.708,-46.944],[-118.604,-46.877],[-118.592,-46.736],[-118.583,-46.595],[-118.475,-46.528],[-118.371,-46.461],[-118.358,-46.319],[-118.35,-46.178],[-118.246,-46.111],[-118.137,-46.043],[-118.133,-45.902],[-118.125,-45.761],[-118.017,-45.693],[-117.913,-45.626],[-117.908,-45.484],[-117.9,-45.343],[-117.796,-45.275],[-117.692,-45.207],[-117.688,-45.066],[-117.679,-44.925],[-117.575,-44.857],[-117.475,-44.789],[-117.467,-44.647],[-117.462,-44.506],[-117.458,-44.365],[-117.45,-44.224],[-117.446,-44.083],[-117.442,-43.942],[-117.433,-43.801],[-117.429,-43.66],[-117.425,-43.519],[-117.521,-43.446],[-117.613,-43.373],[-117.708,-43.3],[-117.8,-43.227],[-117.988,-43.081],[-118.083,-43.008],[-118.275,-43.002],[-118.175,-42.934],[-118.467,-42.996],[-118.558,-42.922],[-118.65,-42.849],[-118.842,-42.842],[-119.037,-42.834],[-119.125,-42.761],[-119.217,-42.686],[-119.408,-42.678],[-119.6,-42.67],[-119.792,-42.662],[-119.892,-42.727],[-119.996,-42.793],[-120.188,-42.784],[-120.379,-42.774],[-120.567,-42.764],[-120.758,-42.754],[-120.95,-42.743],[-121.042,-42.667],[-121.129,-42.591],[-121.321,-42.58],[-121.508,-42.568],[-121.596,-42.491],[-121.683,-42.415],[-121.875,-42.403],[-121.771,-42.339],[-122.063,-42.39],[-122.254,-42.376],[-122.442,-42.363],[-122.633,-42.349],[-122.821,-42.334],[-123.013,-42.319],[-123.2,-42.304],[-123.387,-42.289],[-123.492,-42.351],[-123.596,-42.413],[-123.788,-42.397],[-123.975,-42.38],[-124.079,-42.441],[-124.183,-42.502],[-124.288,-42.564],[-124.396,-42.625],[-124.583,-42.607],[-124.771,-42.589],[-124.879,-42.649],[-124.983,-42.709],[-125.092,-42.77],[-125.196,-42.83],[-125.304,-42.89],[-125.412,-42.95],[-125.517,-43.009],[-125.625,-43.069],[-125.733,-43.128],[-125.842,-43.188],[-125.95,-43.247],[-126.058,-43.306],[-126.167,-43.365],[-126.275,-43.424],[-126.383,-43.483],[-126.412,-43.622],[-126.437,-43.761],[-126.55,-43.819],[-126.658,-43.878],[-126.771,-43.936],[-126.879,-43.994],[-126.992,-44.052],[-127.104,-44.11],[-127.133,-44.249],[-127.162,-44.388],[-127.275,-44.446],[-127.387,-44.503],[-127.5,-44.561],[-127.613,-44.618],[-127.646,-44.757],[-127.675,-44.895],[-127.792,-44.952],[-127.988,-44.927],[-128.179,-44.902],[-128.375,-44.877],[-128.571,-44.851],[-128.767,-44.824],[-128.958,-44.798],[-129.154,-44.771],[-129.233,-44.688],[-129.312,-44.605],[-129.504,-44.577],[-129.392,-44.522],[-129.696,-44.549],[-129.775,-44.466],[-129.854,-44.382],[-130.046,-44.354],[-130.238,-44.324],[-130.429,-44.295],[-130.621,-44.265],[-130.812,-44.234],[-131,-44.204],[-131.192,-44.172],[-131.308,-44.225],[-131.425,-44.278],[-131.612,-44.246],[-131.804,-44.213],[-131.921,-44.266],[-132.037,-44.317],[-132.154,-44.369],[-132.271,-44.421],[-132.388,-44.472],[-132.504,-44.524],[-132.621,-44.575],[-132.737,-44.626],[-132.858,-44.676],[-132.975,-44.727],[-133.092,-44.778],[-133.212,-44.828],[-133.329,-44.879],[-133.45,-44.929],[-133.571,-44.979],[-133.687,-45.028],[-133.808,-45.078],[-133.929,-45.127],[-134.05,-45.177],[-134.171,-45.226],[-134.292,-45.275],[-134.342,-45.411],[-134.392,-45.546],[-134.512,-45.595],[-134.633,-45.644],[-134.754,-45.692],[-134.879,-45.74],[-134.929,-45.876],[-134.983,-46.011],[-135.108,-46.059],[-135.229,-46.107],[-135.283,-46.242],[-135.337,-46.377],[-135.462,-46.424],[-135.587,-46.472],[-135.712,-46.519],[-135.842,-46.566],[-135.967,-46.613],[-136.092,-46.659],[-136.217,-46.706],[-136.346,-46.752],[-136.471,-46.799],[-136.596,-46.844],[-136.725,-46.89],[-136.854,-46.936],[-136.979,-46.981],[-137.108,-47.027],[-137.237,-47.072],[-137.433,-47.028],[-137.625,-46.984],[-137.754,-47.028],[-137.883,-47.073],[-138.013,-47.117],[-138.142,-47.161],[-138.271,-47.204],[-138.4,-47.248],[-138.596,-47.202],[-138.792,-47.155],[-138.921,-47.198],[-139.05,-47.241],[-139.179,-47.283],[-139.313,-47.326],[-139.442,-47.367],[-139.571,-47.41],[-139.704,-47.451],[-139.833,-47.493],[-139.967,-47.535],[-140.1,-47.576],[-140.229,-47.617],[-140.362,-47.658],[-140.496,-47.699],[-140.629,-47.739],[-140.763,-47.78],[-140.896,-47.82],[-141.029,-47.86],[-141.104,-47.991],[-141.175,-48.122],[-141.312,-48.162],[-141.446,-48.201],[-141.579,-48.241],[-141.717,-48.28],[-141.85,-48.319],[-141.987,-48.357],[-142.067,-48.488],[-142.142,-48.618],[-142.279,-48.657],[-142.417,-48.695],[-142.554,-48.732],[-142.692,-48.77],[-142.771,-48.9],[-142.854,-49.03],[-142.992,-49.067],[-143.129,-49.104],[-143.271,-49.141],[-143.408,-49.178],[-143.492,-49.307],[-143.575,-49.437],[-143.717,-49.473],[-143.858,-49.509],[-143.942,-49.638],[-144.029,-49.767],[-144.171,-49.803],[-144.312,-49.838],[-144.4,-49.967],[-144.487,-50.095],[-144.575,-50.224],[-144.667,-50.352],[-144.754,-50.481],[-144.846,-50.609],[-144.933,-50.737],[-145.025,-50.865],[-145.117,-50.993],[-145.212,-51.121],[-145.304,-51.249],[-145.25,-51.343],[-145.196,-51.437],[-145.287,-51.565],[-145.383,-51.692],[-145.329,-51.786],[-145.271,-51.88],[-145.217,-51.974],[-145.158,-52.068],[-145.254,-52.196],[-145.35,-52.324],[-145.296,-52.418],[-145.242,-52.512],[-145.337,-52.64],[-145.433,-52.767],[-145.533,-52.895],[-145.629,-53.023],[-145.729,-53.15],[-145.887,-53.184],[-146.042,-53.217],[-146.146,-53.344],[-146.246,-53.471],[-146.404,-53.503],[-146.562,-53.535],[-146.721,-53.567],[-146.879,-53.599],[-147.037,-53.631],[-147.196,-53.662],[-147.354,-53.693],[-147.567,-53.629],[-147.779,-53.564],[-147.937,-53.594],[-148.096,-53.624],[-148.254,-53.654],[-148.417,-53.684],[-148.625,-53.617],[-148.833,-53.551],[-148.996,-53.579],[-149.154,-53.607],[-149.362,-53.54],[-149.571,-53.472],[-149.729,-53.499],[-149.892,-53.527],[-150.096,-53.457],[-150.3,-53.388],[-150.504,-53.318],[-150.708,-53.248],[-150.912,-53.177],[-151.117,-53.106],[-151.317,-53.035],[-151.517,-52.963],[-151.721,-52.891],[-151.917,-52.818],[-152.117,-52.745],[-152.317,-52.672],[-152.513,-52.598],[-152.708,-52.524],[-152.904,-52.45],[-153.1,-52.375],[-153.296,-52.3],[-153.487,-52.225],[-153.679,-52.149],[-153.875,-52.073],[-154.029,-52.094],[-154.187,-52.115],[-154.379,-52.038],[-154.567,-51.96],[-154.725,-51.981],[-154.879,-52],[-155.037,-52.02],[-155.196,-52.039],[-155.35,-52.059],[-155.508,-52.077],[-155.667,-52.096],[-155.825,-52.115],[-155.983,-52.133],[-156.142,-52.151],[-156.3,-52.169],[-156.454,-52.186],[-156.612,-52.203],[-156.771,-52.221],[-156.933,-52.237],[-157.062,-52.352],[-157.196,-52.467],[-157.329,-52.582],[-157.462,-52.697],[-157.621,-52.713],[-157.783,-52.728],[-157.921,-52.842],[-158.054,-52.956],[-158.192,-53.07],[-158.329,-53.183],[-158.492,-53.198],[-158.658,-53.212],[-158.796,-53.325],[-158.937,-53.437],[-159.1,-53.451],[-159.267,-53.464],[-159.408,-53.576],[-159.554,-53.688],[-159.717,-53.701],[-159.883,-53.713],[-160.05,-53.725],[-160.217,-53.737],[-160.383,-53.748],[-160.55,-53.76],[-160.712,-53.771],[-160.879,-53.781],[-161.029,-53.891],[-161.179,-54.001],[-161.346,-54.011],[-161.512,-54.021],[-161.667,-54.13],[-161.817,-54.239],[-161.987,-54.248],[-162.154,-54.257],[-162.325,-54.265],[-162.492,-54.274],[-162.662,-54.281],[-162.829,-54.289],[-162.987,-54.396],[-163.146,-54.503],[-163.313,-54.511],[-163.483,-54.517],[-163.654,-54.524],[-163.825,-54.53],[-163.996,-54.536],[-164.167,-54.541],[-164.325,-54.647],[-164.487,-54.752],[-164.662,-54.757],[-164.842,-54.661],[-165.017,-54.566],[-165.188,-54.57],[-165.358,-54.574],[-165.538,-54.477],[-165.542,-54.377],[-165.55,-54.278],[-165.725,-54.181],[-165.896,-54.084],[-166.071,-53.987],[-166.242,-53.889],[-166.412,-53.792],[-166.583,-53.694],[-166.754,-53.595],[-166.921,-53.497],[-167.092,-53.398],[-167.254,-53.399],[-167.421,-53.399],[-167.587,-53.3],[-167.75,-53.2],[-167.917,-53.2],[-168.083,-53.199],[-168.412,-53.198],[-168.575,-53.197],[-168.742,-53.195],[-168.904,-53.194],[-169.071,-53.192],[-169.233,-53.189],[-169.404,-53.287],[-169.571,-53.384],[-169.737,-53.381],[-169.904,-53.378],[-170.071,-53.375],[-170.233,-53.371],[-170.408,-53.467],[-170.579,-53.562],[-170.746,-53.558],[-170.912,-53.553],[-171.079,-53.548],[-171.246,-53.543],[-171.421,-53.637],[-171.596,-53.731],[-171.763,-53.725],[-171.929,-53.719],[-172.096,-53.712],[-172.262,-53.706],[-172.429,-53.698],[-172.596,-53.691],[-172.762,-53.683],[-172.929,-53.676],[-173.096,-53.667],[-173.246,-53.559],[-173.396,-53.451],[-173.563,-53.442],[-173.729,-53.433],[-173.875,-53.324],[-174.025,-53.215],[-174.171,-53.106],[-174.317,-52.996],[-174.479,-52.986],[-174.646,-52.976],[-174.787,-52.865],[-174.933,-52.755],[-175.075,-52.644],[-175.217,-52.534],[-175.358,-52.423],[-175.5,-52.312],[-175.658,-52.299],[-175.817,-52.287],[-175.958,-52.175],[-176.096,-52.063],[-176.254,-52.051],[-176.413,-52.037],[-176.546,-51.925],[-176.683,-51.812],[-176.842,-51.798],[-177,-51.784],[-177.133,-51.671],[-177.263,-51.557],[-177.421,-51.542],[-177.575,-51.527],[-177.708,-51.413],[-177.837,-51.299],[-177.992,-51.283],[-178.146,-51.267],[-178.304,-51.251],[-178.458,-51.235],[-178.612,-51.218],[-178.767,-51.202],[-178.921,-51.184],[-179.075,-51.167],[-179.2,-51.051],[-179.325,-50.935],[-179.45,-50.819],[-179.421,-50.721],[-179.392,-50.622],[-179.512,-50.506],[-179.637,-50.389],[-179.758,-50.273],[-179.879,-50.156],[180,-50.039],[179.883,-49.922],[179.763,-49.805],[179.617,-49.786],[179.467,-49.766],[179.35,-49.649],[179.233,-49.531],[179.088,-49.511],[178.937,-49.49],[178.792,-49.47],[178.646,-49.449],[178.5,-49.428],[178.35,-49.407],[178.204,-49.385],[178.058,-49.364],[177.913,-49.342],[177.767,-49.32],[177.621,-49.297],[177.475,-49.275],[177.329,-49.252],[177.183,-49.229],[177.038,-49.206],[176.892,-49.183],[176.746,-49.159],[176.604,-49.135],[176.458,-49.111],[176.313,-49.087],[176.171,-49.062],[176.025,-49.038],[175.879,-49.013],[175.737,-48.988],[175.592,-48.962],[175.45,-48.937],[175.304,-48.911],[175.163,-48.885],[175.021,-48.859],[174.875,-48.832],[174.733,-48.806],[174.55,-48.875],[174.363,-48.944],[174.221,-48.917],[174.079,-48.889],[173.933,-48.861],[173.792,-48.833],[173.65,-48.805],[173.508,-48.777],[173.367,-48.748],[173.225,-48.719],[173.083,-48.69],[172.942,-48.661],[172.754,-48.727],[172.567,-48.792],[172.425,-48.762],[172.283,-48.732],[172.146,-48.702],[172.004,-48.671],[171.862,-48.64],[171.721,-48.609],[171.533,-48.673],[171.346,-48.736],[171.204,-48.704],[171.063,-48.672],[170.925,-48.64],[170.783,-48.607],[170.592,-48.669],[170.404,-48.731],[170.263,-48.697],[170.125,-48.664],[169.933,-48.724],[169.742,-48.784],[169.546,-48.844],[169.354,-48.903],[169.213,-48.869],[169.075,-48.834],[168.879,-48.892],[168.687,-48.95],[168.546,-48.914],[168.408,-48.879],[168.271,-48.843],[168.129,-48.807],[167.992,-48.77],[167.854,-48.734],[167.717,-48.697],[167.579,-48.66],[167.442,-48.623],[167.304,-48.585],[167.167,-48.548],[167.029,-48.51],[166.892,-48.472],[166.754,-48.434],[166.621,-48.396],[166.483,-48.357],[166.346,-48.319],[166.212,-48.28],[166.075,-48.241],[165.942,-48.201],[165.808,-48.162],[165.671,-48.122],[165.538,-48.082],[165.404,-48.042],[165.271,-48.002],[165.133,-47.962],[165,-47.921],[164.867,-47.881],[164.733,-47.84],[164.604,-47.799],[164.471,-47.757],[164.337,-47.716],[164.142,-47.765],[163.946,-47.813],[163.813,-47.771],[163.683,-47.729],[163.55,-47.686],[163.421,-47.643],[163.221,-47.691],[163.025,-47.737],[162.896,-47.694],[162.763,-47.65],[162.633,-47.606],[162.504,-47.562],[162.304,-47.607],[162.108,-47.652],[161.979,-47.607],[161.85,-47.563],[161.65,-47.607],[161.454,-47.65],[161.325,-47.604],[161.196,-47.559],[161.067,-47.513],[160.938,-47.467],[160.808,-47.421],[160.679,-47.374],[160.483,-47.416],[160.283,-47.457],[160.154,-47.41],[160.029,-47.363],[159.9,-47.315],[159.771,-47.267],[159.575,-47.307],[159.375,-47.346],[159.25,-47.298],[159.121,-47.25],[158.921,-47.288],[158.725,-47.326],[158.596,-47.277],[158.471,-47.227],[158.346,-47.178],[158.221,-47.129],[158.021,-47.165],[157.821,-47.201],[157.696,-47.151],[157.571,-47.1],[157.446,-47.05],[157.321,-46.999],[157.121,-47.034],[156.921,-47.068],[156.8,-47.017],[156.675,-46.965],[156.554,-46.913],[156.429,-46.861],[156.229,-46.894],[156.029,-46.927],[155.908,-46.874],[155.783,-46.822],[155.583,-46.853],[155.383,-46.884],[155.263,-46.831],[155.142,-46.777],[154.9,-46.67],[154.779,-46.616],[154.658,-46.562],[154.458,-46.591],[154.258,-46.62],[154.138,-46.566],[154.017,-46.511],[153.896,-46.456],[153.779,-46.401],[153.658,-46.345],[153.542,-46.29],[153.342,-46.317],[153.142,-46.344],[153.021,-46.287],[152.904,-46.231],[152.788,-46.175],[152.671,-46.118],[152.554,-46.062],[152.438,-46.005],[152.321,-45.948],[152.204,-45.891],[152.088,-45.834],[151.971,-45.776],[151.771,-45.8],[151.575,-45.824],[151.458,-45.766],[151.342,-45.708],[151.229,-45.65],[151.113,-45.591],[151,-45.533],[150.888,-45.474],[150.688,-45.496],[150.492,-45.517],[150.375,-45.458],[150.263,-45.399],[150.15,-45.339],[150.038,-45.28],[149.925,-45.22],[149.812,-45.16],[149.617,-45.18],[149.417,-45.199],[149.308,-45.138],[149.196,-45.078],[149.083,-45.017],[148.975,-44.956],[148.862,-44.896],[148.754,-44.834],[148.554,-44.852],[148.358,-44.869],[148.25,-44.807],[148.142,-44.746],[148.029,-44.684],[147.921,-44.622],[147.813,-44.56],[147.704,-44.497],[147.596,-44.435],[147.487,-44.373],[147.383,-44.31],[147.275,-44.247],[147.079,-44.262],[146.883,-44.276],[146.775,-44.213],[146.671,-44.149],[146.563,-44.086],[146.458,-44.022],[146.35,-43.959],[146.246,-43.895],[146.142,-43.831],[146.037,-43.767],[145.933,-43.703],[145.825,-43.639],[145.721,-43.574],[145.617,-43.51],[145.517,-43.445],[145.5,-43.305],[145.488,-43.164],[145.383,-43.099],[145.283,-43.034],[145.179,-42.97],[145.075,-42.904],[144.975,-42.839],[144.875,-42.774],[144.771,-42.709],[144.671,-42.643],[144.571,-42.578],[144.467,-42.512],[144.367,-42.446],[144.267,-42.38],[144.167,-42.314],[144.067,-42.248],[143.967,-42.182],[143.867,-42.116],[143.771,-42.049],[143.671,-41.983],[143.571,-41.916],[143.471,-41.849],[143.375,-41.782],[143.275,-41.716],[143.179,-41.649],[142.992,-41.655],[142.8,-41.661],[142.704,-41.594],[142.608,-41.526],[142.513,-41.458],[142.413,-41.39],[142.317,-41.323],[142.221,-41.254],[142.125,-41.186],[142.029,-41.118],[141.842,-41.122],[141.654,-41.126],[141.563,-41.057],[141.558,-40.917],[141.554,-40.776],[141.458,-40.707],[141.367,-40.638],[141.271,-40.569],[141.179,-40.5],[141.083,-40.431],[140.992,-40.362],[140.992,-40.221],[140.987,-40.08],[140.896,-40.011],[140.804,-39.942],[140.713,-39.872],[140.617,-39.803],[140.525,-39.733],[140.433,-39.663],[140.433,-39.522],[140.433,-39.382],[140.346,-39.312],[140.254,-39.242],[140.163,-39.172],[140.071,-39.102],[139.983,-39.032],[139.892,-38.961],[139.892,-38.821],[139.896,-38.68],[139.804,-38.609],[139.717,-38.539],[139.629,-38.469],[139.538,-38.398],[139.45,-38.327],[139.363,-38.257],[139.275,-38.186],[139.188,-38.115],[139.1,-38.044],[139.013,-37.973],[138.925,-37.902],[138.838,-37.83],[138.75,-37.759],[138.663,-37.687],[138.575,-37.616],[138.488,-37.544],[138.404,-37.473],[138.317,-37.401],[138.229,-37.329],[138.146,-37.257],[138.058,-37.186],[137.883,-37.182],[137.704,-37.178],[137.621,-37.106],[137.538,-37.034],[137.45,-36.961],[137.367,-36.888],[137.283,-36.816],[137.2,-36.743],[137.025,-36.738],[136.846,-36.733],[136.763,-36.659],[136.679,-36.586],[136.596,-36.513],[136.517,-36.44],[136.342,-36.434],[136.167,-36.427],[136.083,-36.353],[136,-36.279],[135.917,-36.206],[135.838,-36.132],[135.663,-36.124],[135.488,-36.116],[135.404,-36.042],[135.325,-35.968],[135.246,-35.893],[135.163,-35.819],[134.987,-35.81],[134.817,-35.801],[134.738,-35.726],[134.654,-35.652],[134.575,-35.577],[134.496,-35.502],[134.321,-35.492],[134.15,-35.482],[134.071,-35.406],[133.992,-35.331],[133.913,-35.255],[133.833,-35.18],[133.754,-35.104],[133.771,-34.964],[133.783,-34.823],[133.704,-34.747],[133.629,-34.672],[133.55,-34.596],[133.471,-34.52],[133.396,-34.444],[133.317,-34.368],[133.333,-34.227],[133.346,-34.087],[133.271,-34.011],[133.196,-33.935],[133.208,-33.795],[133.225,-33.655],[133.15,-33.578],[133.071,-33.502],[133.088,-33.362],[133.104,-33.222],[133.029,-33.146],[132.954,-33.069],[132.971,-32.929],[132.987,-32.789],[132.913,-32.713],[132.838,-32.636],[132.854,-32.496],[132.871,-32.356],[132.796,-32.28],[132.721,-32.203],[132.738,-32.063],[132.754,-31.923],[132.679,-31.847],[132.604,-31.77],[132.625,-31.63],[132.642,-31.49],[132.567,-31.414],[132.492,-31.337],[132.513,-31.197],[132.529,-31.057],[132.454,-30.98],[132.383,-30.904],[132.4,-30.764],[132.417,-30.624],[132.346,-30.547],[132.275,-30.47],[132.292,-30.331],[132.308,-30.191],[132.329,-30.051],[132.346,-29.911],[132.275,-29.835],[132.204,-29.758],[132.221,-29.618],[132.242,-29.478],[132.171,-29.402],[132.096,-29.324],[132.117,-29.185],[132.133,-29.046],[132.067,-28.968],[131.996,-28.891],[132.013,-28.752],[132.033,-28.612],[131.962,-28.535],[131.892,-28.458],[131.913,-28.319],[131.929,-28.179],[131.863,-28.102],[131.792,-28.025],[131.721,-27.948],[131.654,-27.871],[131.675,-27.731],[131.692,-27.592],[131.625,-27.515],[131.554,-27.437],[131.488,-27.36],[131.417,-27.282],[131.438,-27.143],[131.458,-27.004],[131.392,-26.926],[131.325,-26.849],[131.254,-26.771],[131.187,-26.694],[131.121,-26.616],[131.054,-26.538],[130.983,-26.46],[130.917,-26.382],[130.85,-26.304],[130.783,-26.226],[130.804,-26.087],[130.825,-25.949],[130.758,-25.871],[130.692,-25.792],[130.629,-25.714],[130.563,-25.636],[130.496,-25.558],[130.429,-25.48],[130.363,-25.402],[130.296,-25.323],[130.233,-25.245],[130.167,-25.166],[130.1,-25.088],[130.033,-25.009],[129.971,-24.931],[129.904,-24.852],[129.838,-24.774],[129.775,-24.695],[129.708,-24.616],[129.646,-24.537],[129.579,-24.459],[129.517,-24.38],[129.45,-24.301],[129.388,-24.222],[129.321,-24.143],[129.258,-24.064],[129.196,-23.984],[129.129,-23.905],[129.067,-23.826],[129.004,-23.747],[128.942,-23.667],[128.875,-23.588],[128.813,-23.509],[128.75,-23.429],[128.688,-23.35],[128.625,-23.271],[128.563,-23.191],[128.5,-23.111],[128.433,-23.032],[128.371,-22.952],[128.308,-22.872],[128.158,-22.851],[128.008,-22.829],[127.946,-22.749],[127.883,-22.669],[127.821,-22.589],[127.763,-22.509],[127.7,-22.429],[127.638,-22.349],[127.575,-22.269],[127.512,-22.188],[127.454,-22.108],[127.392,-22.028],[127.329,-21.947],[127.271,-21.867],[127.208,-21.786],[127.146,-21.706],[127.088,-21.625],[127.025,-21.545],[126.967,-21.464],[126.904,-21.383],[126.754,-21.36],[126.608,-21.336],[126.546,-21.255],[126.487,-21.174],[126.425,-21.093],[126.367,-21.012],[126.308,-20.931],[126.246,-20.85],[126.1,-20.826],[125.95,-20.801],[125.892,-20.72],[125.833,-20.638],[125.771,-20.557],[125.713,-20.476],[125.654,-20.394],[125.596,-20.313],[125.538,-20.231],[125.479,-20.149],[125.417,-20.068],[125.358,-19.986],[125.3,-19.905],[125.242,-19.823],[125.096,-19.797],[124.95,-19.771],[124.892,-19.689],[124.833,-19.607],[124.688,-19.581],[124.542,-19.554],[124.483,-19.472],[124.425,-19.389],[124.308,-19.225],[124.25,-19.143],[124.192,-19.06],[124.05,-19.033],[123.904,-19.006],[123.846,-18.923],[123.788,-18.84],[123.729,-18.758],[123.675,-18.675],[123.529,-18.647],[123.383,-18.619],[123.325,-18.536],[123.271,-18.453],[123.125,-18.425],[122.979,-18.396],[122.833,-18.367],[122.687,-18.338],[122.633,-18.255],[122.575,-18.171],[122.433,-18.142],[122.288,-18.112],[122.142,-18.083],[122,-18.053],[121.942,-17.969],[121.888,-17.886],[121.742,-17.856],[121.6,-17.825],[121.542,-17.741],[121.488,-17.658],[121.342,-17.627],[121.2,-17.596],[121.146,-17.512],[121.087,-17.428],[120.946,-17.397],[120.8,-17.366],[120.746,-17.282],[120.692,-17.197],[120.55,-17.166],[120.404,-17.134],[120.35,-17.05],[120.296,-16.965],[120.242,-16.881],[120.187,-16.796],[120.042,-16.764],[119.9,-16.732],[119.846,-16.647],[119.792,-16.563],[119.738,-16.478],[119.683,-16.393],[119.629,-16.309],[119.575,-16.224],[119.525,-16.139],[119.471,-16.054],[119.325,-16.021],[119.183,-15.988],[119.129,-15.903],[119.079,-15.818],[119.025,-15.733],[118.971,-15.648],[118.829,-15.615],[118.688,-15.581],[118.633,-15.496],[118.579,-15.411],[118.529,-15.326],[118.475,-15.241],[118.333,-15.206],[118.192,-15.172],[118.138,-15.087],[118.088,-15.001],[118.033,-14.916],[117.983,-14.831],[117.842,-14.796],[117.7,-14.761],[117.646,-14.676],[117.596,-14.59],[117.454,-14.555],[117.313,-14.52],[117.263,-14.434],[117.208,-14.349],[117.067,-14.314],[116.925,-14.278],[116.875,-14.192],[116.825,-14.106],[116.771,-14.02],[116.721,-13.934],[116.671,-13.848],[116.617,-13.762],[116.479,-13.727],[116.338,-13.691],[116.288,-13.604],[116.233,-13.518],[116.183,-13.432],[116.133,-13.346],[116.079,-13.26],[116.029,-13.174],[115.979,-13.087],[115.929,-13.001],[115.879,-12.915],[115.917,-12.779],[115.954,-12.643],[115.904,-12.556],[115.854,-12.47],[115.8,-12.384],[115.75,-12.297],[115.7,-12.211],[115.65,-12.125],[115.688,-11.989],[115.725,-11.853],[115.675,-11.767],[115.625,-11.68],[115.575,-11.594],[115.525,-11.507],[115.475,-11.421],[115.425,-11.335],[115.463,-11.199],[115.504,-11.063],[115.454,-10.977],[115.404,-10.89],[115.354,-10.804],[115.304,-10.717],[115.254,-10.631],[115.204,-10.544],[115.242,-10.409],[115.283,-10.273],[115.233,-10.186],[115.183,-10.1],[115.133,-10.013],[115.083,-9.927],[115.033,-9.84],[114.983,-9.754],[114.933,-9.667],[114.888,-9.58],[114.925,-9.445],[114.963,-9.309],[114.913,-9.223],[114.867,-9.136],[114.817,-9.049],[114.767,-8.963],[114.717,-8.876],[114.671,-8.789],[114.621,-8.703],[114.571,-8.616],[114.521,-8.529],[114.475,-8.442],[114.425,-8.356],[114.375,-8.269],[114.417,-8.134],[114.454,-7.998],[114.408,-7.911],[114.358,-7.825],[114.308,-7.738],[114.263,-7.651],[114.213,-7.564],[114.163,-7.477],[114.117,-7.39],[114.067,-7.303],[114.021,-7.217],[113.971,-7.13],[113.921,-7.043],[113.875,-6.956],[113.825,-6.869],[113.779,-6.782],[113.729,-6.695],[113.683,-6.608],[113.633,-6.521],[113.587,-6.434],[113.538,-6.347],[113.442,-6.172],[113.396,-6.085],[113.346,-5.998],[113.208,-5.959],[113.075,-5.92],[113.025,-5.832],[112.979,-5.745],[112.929,-5.658],[112.883,-5.571],[112.838,-5.484],[112.788,-5.396],[112.742,-5.309],[112.692,-5.222],[112.646,-5.134],[112.6,-5.047],[112.55,-4.96],[112.504,-4.872],[112.454,-4.785],[112.408,-4.698],[112.363,-4.61],[112.313,-4.523],[112.267,-4.435],[112.221,-4.348],[112.171,-4.261],[112.213,-4.126],[112.254,-3.991],[112.208,-3.903],[112.163,-3.816],[112.113,-3.729],[112.067,-3.641],[112.021,-3.554],[111.971,-3.466],[112.013,-3.331],[112.054,-3.197],[112.008,-3.109],[111.963,-3.022],[111.917,-2.934],[111.867,-2.847],[111.821,-2.759],[111.775,-2.672],[111.729,-2.584],[111.683,-2.496],[111.633,-2.409],[111.588,-2.321],[111.629,-2.187],[111.671,-2.052],[111.625,-1.965],[111.579,-1.877],[111.533,-1.789],[111.488,-1.702],[111.438,-1.614],[111.392,-1.527],[111.433,-1.392],[111.479,-1.258],[111.429,-1.17],[111.383,-1.082],[111.338,-0.995],[111.292,-0.907],[111.246,-0.819],[111.2,-0.732],[111.154,-0.644],[111.108,-0.556],[111.063,-0.469],[111.017,-0.381],[110.971,-0.293],[110.921,-0.205],[110.875,-0.118],[110.829,-0.03],[110.783,0.058],[110.738,0.146],[110.783,0.28],[110.825,0.414],[110.779,0.502],[110.733,0.589],[110.642,0.765],[110.596,0.853],[110.55,0.941],[110.592,1.075],[110.633,1.209],[110.587,1.297],[110.542,1.384],[110.496,1.473],[110.45,1.56],[110.496,1.694],[110.538,1.828],[110.492,1.916],[110.446,2.004],[110.492,2.138],[110.533,2.272],[110.488,2.359],[110.442,2.448],[110.488,2.581],[110.529,2.715],[110.483,2.803],[110.438,2.891],[110.483,3.024],[110.525,3.158],[110.479,3.246],[110.438,3.334],[110.479,3.467],[110.525,3.601],[110.479,3.689],[110.433,3.777],[110.387,3.864],[110.342,3.953],[110.387,4.086],[110.429,4.219],[110.387,4.307],[110.342,4.395],[110.296,4.483],[110.25,4.571],[110.204,4.659],[110.158,4.747],[110.117,4.835],[110.071,4.923],[110.025,5.011],[109.979,5.099],[109.938,5.187],[109.892,5.274],[109.846,5.363],[109.8,5.451],[109.754,5.539],[109.713,5.627],[109.667,5.715],[109.621,5.803],[109.575,5.891],[109.442,5.934],[109.308,5.976],[109.263,6.065],[109.217,6.153],[109.171,6.241],[109.129,6.329],[109.083,6.417],[109.038,6.505],[108.992,6.594],[108.95,6.682],[108.813,6.725],[108.679,6.768],[108.633,6.856],[108.588,6.944],[108.546,7.033],[108.5,7.121],[108.367,7.164],[108.229,7.208],[108.183,7.296],[108.142,7.384],[108.096,7.473],[108.05,7.561],[108.004,7.649],[107.963,7.738],[107.825,7.781],[107.692,7.824],[107.646,7.913],[107.6,8.001],[107.558,8.089],[107.513,8.178],[107.467,8.266],[107.421,8.355],[107.379,8.443],[107.333,8.531],[107.288,8.62],[107.242,8.708],[107.196,8.797],[107.154,8.885],[107.108,8.974],[107.063,9.062],[107.017,9.151],[106.975,9.239],[106.837,9.283],[106.704,9.327],[106.658,9.415],[106.613,9.504],[106.567,9.592],[106.525,9.681],[106.479,9.769],[106.433,9.858],[106.296,9.902],[106.163,9.946],[106.117,10.034],[106.071,10.123],[106.025,10.211],[105.983,10.3],[105.938,10.389],[105.892,10.477],[105.846,10.566],[105.804,10.654],[105.667,10.698],[105.529,10.742],[105.483,10.831],[105.529,10.964],[105.579,11.098],[105.533,11.186],[105.488,11.275],[105.533,11.408],[105.579,11.541],[105.533,11.63],[105.492,11.718],[105.538,11.851],[105.583,11.984],[105.629,12.118],[105.675,12.251],[105.633,12.339],[105.588,12.428],[105.633,12.561],[105.679,12.694],[105.729,12.826],[105.775,12.959],[105.821,13.092],[105.871,13.225],[105.825,13.313],[105.779,13.402],[105.829,13.535],[105.875,13.667],[105.925,13.8],[105.971,13.932],[105.925,14.021],[105.883,14.109],[105.929,14.242],[105.979,14.374],[105.933,14.463],[105.892,14.552],[105.938,14.684],[105.988,14.816],[105.942,14.905],[105.896,14.993],[105.946,15.126],[105.996,15.258],[105.95,15.346],[105.904,15.435],[105.954,15.567],[106.004,15.699],[105.958,15.788],[105.917,15.876],[105.967,16.008],[106.013,16.14],[105.971,16.229],[105.925,16.317],[105.975,16.449],[106.025,16.581],[105.979,16.67],[105.938,16.758],[105.988,16.89],[106.038,17.022],[106.087,17.153],[106.137,17.285],[106.092,17.374],[106.05,17.462],[106.1,17.594],[106.15,17.725],[106.2,17.856],[106.25,17.988],[106.304,18.119],[106.354,18.25],[106.404,18.381],[106.458,18.513],[106.508,18.644],[106.562,18.774],[106.613,18.905],[106.667,19.036],[106.717,19.167],[106.771,19.298],[106.821,19.428],[106.917,19.47],[107.017,19.512],[107.067,19.643],[107.121,19.773],[107.175,19.903],[107.229,20.033],[107.279,20.164],[107.333,20.294],[107.388,20.424],[107.442,20.554],[107.496,20.683],[107.55,20.813],[107.604,20.943],[107.663,21.072],[107.717,21.202],[107.771,21.331],[107.825,21.461],[107.883,21.59],[107.938,21.719],[107.992,21.848],[108.05,21.977],[108.104,22.106],[108.163,22.235],[108.217,22.364],[108.275,22.493],[108.333,22.621],[108.388,22.75],[108.446,22.878],[108.504,23.006],[108.563,23.135],[108.621,23.263],[108.579,23.351],[108.538,23.439],[108.596,23.568],[108.654,23.696],[108.613,23.784],[108.571,23.872],[108.629,24],[108.688,24.128],[108.646,24.216],[108.604,24.304],[108.563,24.392],[108.521,24.481],[108.479,24.569],[108.438,24.657],[108.396,24.745],[108.354,24.834],[108.313,24.922],[108.171,24.971],[108.025,25.02],[107.983,25.108],[107.942,25.196],[107.9,25.285],[107.858,25.373],[107.717,25.422],[107.571,25.471],[107.529,25.559],[107.488,25.648],[107.342,25.697],[107.2,25.746],[107.054,25.794],[106.913,25.843],[106.867,25.932],[106.825,26.02],[106.679,26.069],[106.538,26.118],[106.492,26.206],[106.45,26.295],[106.304,26.344],[106.158,26.392],[106.117,26.481],[106.075,26.569],[105.929,26.618],[105.783,26.667],[105.738,26.755],[105.696,26.844],[105.654,26.933],[105.608,27.021],[105.463,27.07],[105.317,27.118],[105.271,27.207],[105.229,27.296],[105.183,27.384],[105.142,27.473],[105.096,27.562],[105.054,27.651],[104.908,27.699],[104.758,27.748],[104.717,27.836],[104.671,27.925],[104.629,28.014],[104.583,28.103],[104.538,28.191],[104.496,28.28],[104.45,28.369],[104.408,28.457],[104.363,28.546],[104.317,28.635],[104.275,28.723],[104.229,28.812],[104.183,28.901],[104.142,28.99],[104.096,29.078],[104.05,29.167],[104.008,29.256],[103.963,29.344],[103.917,29.433],[103.875,29.522],[103.829,29.611],[103.783,29.699],[103.742,29.788],[103.696,29.877],[103.65,29.966],[103.604,30.054],[103.563,30.143],[103.517,30.232],[103.471,30.321],[103.425,30.41],[103.383,30.498],[103.337,30.587],[103.292,30.676],[103.246,30.765],[103.2,30.853],[103.154,30.942],[103.113,31.031],[103.067,31.12],[103.021,31.209],[102.975,31.297],[102.821,31.346],[102.671,31.395],[102.625,31.484],[102.579,31.572],[102.533,31.661],[102.488,31.75],[102.442,31.839],[102.396,31.928],[102.35,32.016],[102.304,32.105],[102.15,32.154],[101.996,32.202],[101.95,32.291],[101.9,32.379],[101.854,32.468],[101.808,32.557],[101.763,32.646],[101.717,32.735],[101.563,32.783],[101.404,32.831],[101.358,32.92],[101.313,33.009],[101.154,33.057],[101,33.105],[100.95,33.194],[100.904,33.283],[100.746,33.331],[100.592,33.378],[100.542,33.467],[100.496,33.556],[100.338,33.604],[100.179,33.651],[100.021,33.699],[99.867,33.746],[99.817,33.835],[99.767,33.924],[99.608,33.971],[99.45,34.018],[99.292,34.065],[99.133,34.112],[98.975,34.159],[98.817,34.205],[98.654,34.252],[98.546,34.209],[98.387,34.256],[98.225,34.302],[98.067,34.348],[97.904,34.394],[97.854,34.483],[97.754,34.659]],[[81.083,26.455],[81.146,26.372],[80.963,26.621],[80.9,26.703],[80.742,26.73],[80.587,26.757],[80.525,26.839],[80.463,26.922],[80.4,27.004],[80.337,27.086],[80.275,27.169],[80.213,27.251],[80.146,27.333],[80.083,27.416],[80.021,27.498],[79.958,27.58],[79.892,27.662],[79.829,27.744],[79.767,27.826],[79.7,27.908],[79.637,27.99],[79.575,28.072],[79.508,28.154],[79.446,28.236],[79.379,28.318],[79.317,28.4],[79.25,28.481],[79.188,28.563],[79.121,28.645],[79.054,28.726],[78.992,28.808],[79.021,28.947],[79.046,29.086],[78.983,29.168],[78.917,29.249],[78.85,29.331],[78.783,29.412],[78.717,29.493],[78.65,29.575],[78.588,29.656],[78.521,29.738],[78.546,29.877],[78.575,30.016],[78.508,30.097],[78.442,30.178],[78.467,30.318],[78.496,30.457],[78.429,30.538],[78.363,30.619],[78.388,30.758],[78.417,30.898],[78.35,30.979],[78.279,31.06],[78.213,31.141],[78.146,31.222],[78.171,31.362],[78.2,31.501],[78.129,31.582],[78.063,31.663],[77.996,31.744],[77.925,31.825],[77.858,31.906],[77.788,31.987],[77.721,32.067],[77.65,32.148],[77.579,32.229],[77.513,32.309],[77.538,32.449],[77.563,32.589],[77.492,32.669],[77.425,32.75],[77.354,32.83],[77.283,32.911],[77.213,32.991],[77.142,33.072],[77.071,33.152],[77,33.233],[76.929,33.313],[76.858,33.393],[76.788,33.473],[76.717,33.553],[76.646,33.633],[76.575,33.713],[76.5,33.793],[76.429,33.873],[76.358,33.953],[76.288,34.033],[76.308,34.173],[76.333,34.313],[76.263,34.393],[76.188,34.472],[76.117,34.552],[76.042,34.632],[75.971,34.711],[75.896,34.791],[75.825,34.871],[75.75,34.95],[75.675,35.029],[75.6,35.109],[75.529,35.188],[75.454,35.268],[75.379,35.347],[75.304,35.426],[75.229,35.505],[75.154,35.584],[75.079,35.663],[75.004,35.742],[74.929,35.821],[74.854,35.9],[74.779,35.979],[74.704,36.057],[74.625,36.136],[74.55,36.214],[74.475,36.293],[74.396,36.372],[74.321,36.45],[74.246,36.529],[74.167,36.607],[74.092,36.685],[74.108,36.826],[74.129,36.966],[74.054,37.044],[73.975,37.123],[73.996,37.263],[74.017,37.403],[73.938,37.481],[73.858,37.559],[73.879,37.7],[73.9,37.84],[73.821,37.918],[73.742,37.996],[73.663,38.074],[73.483,38.09],[73.304,38.105],[73.225,38.183],[73.146,38.26],[72.967,38.274],[72.788,38.289],[72.708,38.366],[72.625,38.443],[72.446,38.457],[72.267,38.47],[72.188,38.547],[72.104,38.624],[71.925,38.636],[71.746,38.649],[71.663,38.725],[71.579,38.802],[71.496,38.878],[71.417,38.954],[71.233,38.966],[71.054,38.977],[70.971,39.053],[70.888,39.129],[70.8,39.205],[70.717,39.28],[70.538,39.291],[70.354,39.301],[70.271,39.376],[70.183,39.451],[70.004,39.461],[69.821,39.47],[69.733,39.545],[69.65,39.62],[69.467,39.628],[69.283,39.636],[69.196,39.711],[69.108,39.785],[69.025,39.859],[68.938,39.934],[68.754,39.941],[68.571,39.948],[68.483,40.022],[68.396,40.096],[68.308,40.169],[68.217,40.243],[68.129,40.316],[68.042,40.39],[67.954,40.463],[67.867,40.536],[67.679,40.542],[67.492,40.547],[67.404,40.62],[67.313,40.692],[67.129,40.697],[66.942,40.701],[66.754,40.704],[66.571,40.708],[66.383,40.711],[66.196,40.714],[66.013,40.716],[65.825,40.718],[65.637,40.719],[65.454,40.721],[65.267,40.722],[65.079,40.723],[64.896,40.723],[64.8,40.652],[64.708,40.582],[64.521,40.581],[64.338,40.581],[64.15,40.58],[63.967,40.578],[63.779,40.577],[63.596,40.574],[63.408,40.572],[63.225,40.569],[63.038,40.566],[62.854,40.563],[62.763,40.491],[62.671,40.418],[62.488,40.414],[62.3,40.41],[62.213,40.337],[62.121,40.264],[61.938,40.259],[61.754,40.254],[61.571,40.248],[61.383,40.242],[61.2,40.236],[61.017,40.229],[60.833,40.221],[60.65,40.214],[60.467,40.206],[60.283,40.198],[60.096,40.189],[60,40.255],[59.904,40.321],[59.721,40.312],[59.538,40.302],[59.442,40.367],[59.342,40.432],[59.246,40.497],[59.146,40.562],[59.05,40.627],[58.95,40.691],[58.85,40.756],[58.754,40.821],[58.654,40.885],[58.554,40.949],[58.454,41.013],[58.442,41.153],[58.429,41.294],[58.329,41.358],[58.229,41.421],[58.129,41.485],[58.029,41.549],[58.013,41.689],[57.996,41.829],[57.896,41.893],[57.796,41.956],[57.692,42.019],[57.588,42.083],[57.488,42.146],[57.383,42.209],[57.283,42.272],[57.179,42.334],[57.075,42.397],[56.971,42.459],[56.867,42.522],[56.763,42.584],[56.658,42.646],[56.471,42.631],[56.279,42.614],[56.175,42.676],[56.071,42.738],[55.879,42.721],[55.692,42.703],[55.5,42.686],[55.313,42.668],[55.121,42.649],[54.933,42.63],[54.742,42.611],[54.554,42.591],[54.446,42.651],[54.342,42.711],[54.154,42.691],[53.963,42.67],[53.775,42.649],[53.588,42.627],[53.4,42.605],[53.208,42.583],[53.021,42.561],[52.833,42.538],[52.725,42.595],[52.617,42.653],[52.429,42.629],[52.242,42.605],[52.133,42.662],[52.025,42.719],[51.917,42.776],[51.808,42.832],[51.696,42.889],[51.588,42.945],[51.475,43.001],[51.367,43.057],[51.179,43.031],[50.992,43.004],[50.879,43.06],[50.767,43.115],[50.658,43.17],[50.546,43.225],[50.358,43.198],[50.171,43.169],[50.058,43.224],[49.946,43.278],[49.758,43.249],[49.571,43.219],[49.458,43.273],[49.346,43.327],[49.233,43.38],[49.117,43.433],[49.004,43.487],[48.892,43.54],[48.779,43.593],[48.663,43.645],[48.55,43.698],[48.433,43.751],[48.321,43.803],[48.204,43.855],[48.092,43.907],[47.975,43.959],[47.858,44.011],[47.742,44.063],[47.625,44.114],[47.513,44.165],[47.396,44.216],[47.279,44.268],[47.158,44.318],[47.042,44.369],[46.925,44.42],[46.808,44.47],[46.692,44.52],[46.571,44.571],[46.454,44.621],[46.333,44.67],[46.217,44.72],[46.096,44.769],[45.979,44.819],[45.858,44.868],[45.738,44.917],[45.617,44.966],[45.5,45.015],[45.379,45.064],[45.258,45.112],[45.138,45.16],[44.946,45.121],[44.754,45.082],[44.633,45.129],[44.513,45.177],[44.392,45.224],[44.271,45.271],[44.146,45.318],[44.025,45.365],[43.904,45.412],[43.779,45.458],[43.658,45.505],[43.533,45.551],[43.408,45.597],[43.288,45.643],[43.163,45.688],[43.038,45.734],[42.913,45.779],[42.788,45.824],[42.663,45.869],[42.538,45.914],[42.412,45.959],[42.287,46.004],[42.162,46.048],[42.037,46.092],[41.908,46.136],[41.783,46.18],[41.658,46.224],[41.529,46.267],[41.404,46.311],[41.275,46.354],[41.15,46.397],[41.021,46.44],[40.892,46.482],[40.767,46.525],[40.638,46.567],[40.508,46.609],[40.379,46.651],[40.25,46.693],[40.121,46.734],[39.992,46.776],[39.863,46.817],[39.792,46.949],[39.725,47.081],[39.592,47.122],[39.463,47.163],[39.392,47.294],[39.321,47.426],[39.188,47.466],[39.054,47.506],[38.983,47.637],[38.913,47.769],[38.838,47.9],[38.763,48.031],[38.629,48.07],[38.496,48.11],[38.421,48.241],[38.342,48.371],[38.208,48.411],[38.071,48.449],[37.933,48.488],[37.8,48.526],[37.663,48.564],[37.525,48.603],[37.388,48.64],[37.25,48.678],[37.113,48.715],[36.975,48.753],[36.838,48.789],[36.642,48.734],[36.446,48.677],[36.308,48.714],[36.171,48.75],[36.033,48.786],[35.892,48.821],[35.754,48.857],[35.617,48.892],[35.475,48.927],[35.333,48.962],[35.142,48.903],[34.95,48.844],[34.808,48.878],[34.671,48.912],[34.529,48.946],[34.388,48.979],[34.196,48.919],[34.004,48.858],[33.863,48.891],[33.725,48.923],[33.583,48.956],[33.442,48.988],[33.3,49.02],[33.158,49.051],[33.017,49.083],[32.875,49.114],[32.733,49.146],[32.592,49.177],[32.4,49.112],[32.208,49.048],[32.067,49.078],[31.925,49.108],[31.783,49.138],[31.642,49.167],[31.496,49.197],[31.354,49.226],[31.213,49.255],[31.067,49.284],[30.925,49.312],[30.779,49.34],[30.633,49.369],[30.492,49.396],[30.346,49.424],[30.2,49.452],[30.058,49.479],[29.913,49.506],[29.767,49.533],[29.621,49.559],[29.475,49.586],[29.329,49.612],[29.142,49.541],[28.958,49.471],[28.812,49.496],[28.667,49.521],[28.521,49.546],[28.375,49.571],[28.229,49.596],[28.083,49.62],[27.938,49.644],[27.788,49.668],[27.642,49.691],[27.496,49.715],[27.346,49.738],[27.2,49.761],[27.054,49.784],[26.904,49.807],[26.758,49.829],[26.608,49.851],[26.463,49.873],[26.313,49.895],[26.167,49.916],[26.05,50.035],[25.933,50.154],[25.783,50.175],[25.638,50.195],[25.488,50.216],[25.338,50.236],[25.217,50.354],[25.1,50.472],[24.946,50.491],[24.796,50.511],[24.675,50.628],[24.554,50.745],[24.404,50.764],[24.25,50.783],[24.129,50.899],[24.004,51.016],[23.85,51.034],[23.696,51.051],[23.542,51.069],[23.388,51.086],[23.233,51.103],[23.079,51.12],[22.954,51.235],[22.825,51.35],[22.671,51.366],[22.513,51.382],[22.358,51.398],[22.204,51.413],[22.071,51.527],[21.942,51.641],[21.783,51.656],[21.629,51.671],[21.496,51.784],[21.358,51.897],[21.2,51.911],[21.042,51.925],[20.908,52.037],[20.771,52.149],[20.613,52.163],[20.454,52.175],[20.292,52.188],[20.133,52.2],[19.996,52.312],[19.854,52.423],[19.692,52.434],[19.533,52.446],[19.392,52.556],[19.246,52.666],[19.104,52.777],[18.958,52.887],[18.813,52.996],[18.667,53.106],[18.521,53.215],[18.371,53.324],[18.208,53.334],[18.042,53.343],[17.892,53.451],[17.742,53.559],[17.575,53.568],[17.412,53.576],[17.258,53.683],[17.104,53.791],[16.938,53.798],[16.771,53.805],[16.617,53.912],[16.458,54.018],[16.292,54.025],[16.121,54.031],[15.963,54.136],[15.804,54.242],[15.638,54.247],[15.467,54.253],[15.3,54.257],[15.129,54.262],[14.958,54.266],[14.792,54.27],[14.621,54.274],[14.45,54.278],[14.283,54.281],[14.112,54.284],[13.942,54.287],[13.775,54.289],[13.604,54.291],[13.433,54.293],[13.267,54.395],[13.1,54.497],[12.933,54.598],[12.763,54.699],[12.592,54.699],[12.421,54.7],[12.25,54.8],[12.075,54.9],[11.904,54.899],[11.729,54.899],[11.558,54.898],[11.388,54.896],[11.212,54.895],[11.042,54.893],[10.871,54.891],[10.7,54.789],[10.533,54.687],[10.367,54.584],[10.375,54.484],[10.379,54.384],[10.212,54.281],[10.05,54.178],[10.054,54.078],[10.063,53.978],[10.067,53.878],[10.075,53.778],[9.913,53.674],[9.754,53.571],[9.592,53.467],[9.433,53.363],[9.279,53.258],[9.121,53.154],[8.967,53.049],[8.813,52.944],[8.658,52.839],[8.504,52.733],[8.35,52.628],[8.188,52.621],[8.029,52.615],[7.875,52.508],[7.725,52.402],[7.579,52.295],[7.592,52.195],[7.6,52.096],[7.454,51.988],[7.308,51.881],[7.163,51.774],[7.017,51.666],[6.875,51.558],[6.729,51.45],[6.588,51.342],[6.429,51.333],[6.275,51.324],[6.133,51.215],[5.992,51.106],[5.838,51.096],[5.683,51.086],[5.529,51.076],[5.371,51.065],[5.217,51.054],[5.062,51.044],[4.925,50.933],[4.792,50.822],[4.637,50.811],[4.483,50.799],[4.346,50.688],[4.212,50.576],[4.063,50.563],[3.908,50.551],[3.775,50.439],[3.646,50.326],[3.517,50.214],[3.388,50.101],[3.238,50.088],[3.083,50.073],[2.958,49.96],[2.829,49.847],[2.704,49.733],[2.579,49.62],[2.454,49.506],[2.329,49.392],[2.179,49.377],[2.033,49.361],[1.908,49.246],[1.788,49.132],[1.667,49.017],[1.546,48.902],[1.425,48.787],[1.308,48.672],[1.163,48.655],[1.017,48.638],[0.9,48.522],[0.783,48.406],[0.667,48.29],[0.55,48.174],[0.433,48.057],[0.321,47.941],[0.179,47.922],[0.038,47.904],[-0.075,47.787],[-0.187,47.669],[-0.329,47.65],[-0.471,47.631],[-0.583,47.513],[-0.692,47.396],[-0.833,47.376],[-0.971,47.355],[-1.113,47.335],[-1.25,47.314],[-1.358,47.196],[-1.467,47.077],[-1.604,47.056],[-1.746,47.035],[-1.883,47.013],[-2.021,46.991],[-2.125,46.872],[-2.229,46.753],[-2.367,46.73],[-2.504,46.708],[-2.642,46.685],[-2.779,46.662],[-2.917,46.639],[-3.05,46.616],[-3.154,46.495],[-3.254,46.375],[-3.387,46.351],[-3.525,46.327],[-3.658,46.302],[-3.796,46.278],[-3.929,46.253],[-4.067,46.229],[-4.2,46.204],[-4.333,46.178],[-4.471,46.153],[-4.604,46.127],[-4.738,46.101],[-4.871,46.075],[-5.008,46.049],[-5.179,46.119],[-5.354,46.188],[-5.488,46.161],[-5.621,46.134],[-5.796,46.203],[-5.971,46.271],[-6.108,46.243],[-6.242,46.215],[-6.417,46.282],[-6.596,46.349],[-6.729,46.321],[-6.863,46.292],[-7.038,46.358],[-7.217,46.424],[-7.396,46.489],[-7.575,46.554],[-7.754,46.619],[-7.933,46.683],[-8.067,46.653],[-8.204,46.622],[-8.383,46.685],[-8.567,46.749],[-8.746,46.811],[-8.929,46.874],[-9.113,46.936],[-9.296,46.998],[-9.429,46.965],[-9.562,46.933],[-9.75,46.993],[-9.933,47.054],[-10.067,47.02],[-10.2,46.986],[-10.387,47.046],[-10.571,47.106],[-10.704,47.071],[-10.842,47.036],[-10.975,47.001],[-11.108,46.966],[-11.292,47.024],[-11.479,47.082],[-11.613,47.046],[-11.746,47.01],[-11.933,47.066],[-12.121,47.123],[-12.254,47.086],[-12.387,47.049],[-12.575,47.104],[-12.767,47.159],[-12.9,47.122],[-13.029,47.084],[-13.221,47.138],[-13.408,47.192],[-13.542,47.153],[-13.675,47.114],[-13.808,47.076],[-13.937,47.036],[-14.071,46.997],[-14.2,46.958],[-14.333,46.918],[-14.462,46.878],[-14.592,46.838],[-14.725,46.798],[-14.854,46.758],[-14.983,46.717],[-15.175,46.767],[-15.367,46.817],[-15.496,46.776],[-15.625,46.734],[-15.754,46.693],[-15.883,46.651],[-16.012,46.609],[-16.142,46.567],[-16.333,46.615],[-16.525,46.662],[-16.654,46.619],[-16.779,46.576],[-16.971,46.623],[-17.167,46.669],[-17.292,46.626],[-17.421,46.582],[-17.55,46.538],[-17.675,46.493],[-17.867,46.538],[-18.062,46.583],[-18.187,46.538],[-18.317,46.493],[-18.442,46.447],[-18.567,46.402],[-18.692,46.356],[-18.821,46.311],[-19.013,46.353],[-19.208,46.395],[-19.333,46.349],[-19.458,46.302],[-19.583,46.255],[-19.708,46.208],[-19.9,46.249],[-20.096,46.289],[-20.221,46.242],[-20.342,46.194],[-20.467,46.146],[-20.592,46.098],[-20.712,46.05],[-20.837,46.001],[-20.962,45.953],[-21.083,45.904],[-21.279,45.942],[-21.471,45.979],[-21.667,46.016],[-21.863,46.053],[-22.058,46.089],[-22.254,46.125],[-22.45,46.161],[-22.646,46.196],[-22.842,46.231],[-23.037,46.265],[-23.233,46.299],[-23.433,46.332],[-23.554,46.281],[-23.675,46.229],[-23.875,46.261],[-24.071,46.293],[-24.192,46.241],[-24.312,46.188],[-24.433,46.135],[-24.554,46.082],[-24.671,46.029],[-24.792,45.975],[-24.913,45.922],[-25.029,45.868],[-25.15,45.814],[-25.267,45.76],[-25.383,45.706],[-25.504,45.652],[-25.621,45.597],[-25.738,45.543],[-25.854,45.488],[-25.892,45.35],[-25.929,45.212],[-26.046,45.157],[-26.163,45.102],[-26.279,45.047],[-26.396,44.991],[-26.508,44.936],[-26.625,44.88],[-26.658,44.742],[-26.696,44.604],[-26.808,44.548],[-26.921,44.492],[-26.954,44.354],[-26.988,44.215],[-27.1,44.159],[-27.212,44.103],[-27.246,43.964],[-27.279,43.826],[-27.312,43.688],[-27.342,43.549],[-27.375,43.411],[-27.404,43.272],[-27.517,43.216],[-27.625,43.159],[-27.658,43.02],[-27.687,42.882],[-27.796,42.825],[-27.904,42.768],[-28.012,42.71],[-28.121,42.653],[-28.15,42.514],[-28.179,42.376],[-28.287,42.318],[-28.396,42.26],[-28.421,42.122],[-28.45,41.983],[-28.554,41.925],[-28.663,41.867],[-28.687,41.728],[-28.712,41.589],[-28.821,41.531],[-28.925,41.473],[-29.029,41.414],[-29.133,41.356],[-29.158,41.217],[-29.183,41.078],[-29.287,41.019],[-29.392,40.961],[-29.417,40.822],[-29.437,40.683],[-29.542,40.624],[-29.646,40.564],[-29.667,40.426],[-29.692,40.287],[-29.792,40.227],[-29.896,40.168],[-29.996,40.108],[-30.096,40.048],[-30.196,39.989],[-30.3,39.929],[-30.321,39.79],[-30.342,39.651],[-30.442,39.591],[-30.542,39.53],[-30.637,39.47],[-30.738,39.409],[-30.758,39.27],[-30.775,39.131],[-30.875,39.071],[-30.975,39.01],[-30.992,38.871],[-31.012,38.732],[-31.108,38.671],[-31.204,38.61],[-31.225,38.471],[-31.242,38.332],[-31.338,38.271],[-31.433,38.209],[-31.529,38.148],[-31.625,38.086],[-31.721,38.025],[-31.821,37.963],[-31.913,37.901],[-32.008,37.839],[-32.104,37.777],[-32.2,37.715],[-32.296,37.653],[-32.392,37.591],[-32.483,37.528],[-32.579,37.466],[-32.675,37.403],[-32.767,37.341],[-32.863,37.277],[-32.954,37.215],[-33.05,37.152],[-33.221,37.165],[-33.396,37.177],[-33.492,37.114],[-33.583,37.05],[-33.675,36.986],[-33.767,36.923],[-33.863,36.859],[-33.954,36.794],[-34.046,36.731],[-34.138,36.666],[-34.308,36.677],[-34.483,36.688],[-34.575,36.623],[-34.667,36.558],[-34.758,36.493],[-34.846,36.428],[-34.937,36.363],[-35.029,36.298],[-35.117,36.233],[-35.208,36.167],[-35.383,36.176],[-35.554,36.184],[-35.646,36.119],[-35.733,36.053],[-35.821,35.987],[-35.913,35.921],[-36,35.854],[-36.087,35.788],[-36.179,35.722],[-36.267,35.655],[-36.354,35.589],[-36.442,35.522],[-36.529,35.455],[-36.617,35.389],[-36.704,35.322],[-36.792,35.254],[-36.879,35.188],[-36.967,35.12],[-37.054,35.053],[-37.137,34.986],[-37.225,34.918],[-37.312,34.851],[-37.396,34.783],[-37.483,34.716],[-37.571,34.648],[-37.654,34.58],[-37.742,34.512],[-37.825,34.444],[-37.913,34.376],[-37.996,34.308],[-38.079,34.239],[-38.163,34.171],[-38.25,34.102],[-38.333,34.034],[-38.417,33.965],[-38.5,33.896],[-38.583,33.828],[-38.667,33.759],[-38.75,33.69],[-38.833,33.621],[-38.917,33.552],[-39,33.483],[-39.083,33.413],[-39.167,33.344],[-39.25,33.274],[-39.329,33.205],[-39.413,33.135],[-39.496,33.066],[-39.575,32.996],[-39.571,32.856],[-39.571,32.716],[-39.65,32.646],[-39.729,32.576],[-39.729,32.437],[-39.725,32.297],[-39.804,32.227],[-39.883,32.157],[-39.879,32.017],[-39.875,31.878],[-39.954,31.808],[-40.033,31.737],[-40.113,31.667],[-40.192,31.597],[-40.187,31.457],[-40.183,31.318],[-40.262,31.247],[-40.342,31.177],[-40.417,31.106],[-40.496,31.036],[-40.575,30.965],[-40.654,30.894],[-40.733,30.823],[-40.808,30.752],[-40.887,30.681],[-40.962,30.61],[-41.042,30.539],[-41.121,30.468],[-41.196,30.397],[-41.358,30.393],[-41.521,30.39],[-41.596,30.318],[-41.675,30.246],[-41.75,30.174],[-41.825,30.103],[-41.988,30.098],[-42.15,30.094],[-42.225,30.021],[-42.3,29.949],[-42.375,29.877],[-42.367,29.737],[-42.354,29.598],[-42.429,29.525],[-42.504,29.453],[-42.579,29.38],[-42.654,29.308],[-42.729,29.235],[-42.804,29.162],[-42.879,29.089],[-42.954,29.017],[-43.029,28.944],[-43.1,28.871],[-43.175,28.798],[-43.25,28.724],[-43.321,28.651],[-43.396,28.578],[-43.383,28.439],[-43.371,28.299],[-43.446,28.226],[-43.517,28.153],[-43.587,28.079],[-43.663,28.006],[-43.733,27.933],[-43.808,27.859],[-43.879,27.785],[-43.95,27.711],[-44.021,27.638],[-44.096,27.564],[-44.167,27.49],[-44.238,27.416],[-44.308,27.342],[-44.379,27.268],[-44.45,27.193],[-44.521,27.119],[-44.592,27.045],[-44.663,26.971],[-44.733,26.896],[-44.804,26.822],[-44.875,26.747],[-44.946,26.673],[-45.017,26.598],[-45.087,26.523],[-45.154,26.448],[-45.225,26.374],[-45.296,26.299],[-45.367,26.224],[-45.433,26.149],[-45.504,26.074],[-45.571,25.999],[-45.642,25.923],[-45.712,25.848],[-45.779,25.773],[-45.85,25.698],[-45.917,25.622],[-45.983,25.547],[-46.054,25.471],[-46.121,25.396],[-46.187,25.32],[-46.258,25.244],[-46.325,25.169],[-46.392,25.093],[-46.462,25.017],[-46.529,24.941],[-46.596,24.865],[-46.575,24.726],[-46.558,24.588],[-46.625,24.512],[-46.692,24.436],[-46.758,24.36],[-46.825,24.284],[-46.892,24.208],[-46.958,24.131],[-47.025,24.055],[-47.092,23.979],[-47.158,23.902],[-47.225,23.826],[-47.288,23.749],[-47.354,23.673],[-47.421,23.596],[-47.488,23.519],[-47.467,23.381],[-47.446,23.243],[-47.508,23.166],[-47.575,23.089],[-47.642,23.013],[-47.704,22.936],[-47.771,22.859],[-47.833,22.782],[-47.9,22.705],[-47.962,22.628],[-47.942,22.49],[-47.921,22.352],[-47.983,22.275],[-48.05,22.198],[-48.113,22.121],[-48.175,22.043],[-48.242,21.966],[-48.304,21.889],[-48.367,21.812],[-48.429,21.734],[-48.496,21.657],[-48.558,21.579],[-48.621,21.502],[-48.683,21.424],[-48.746,21.347],[-48.808,21.269],[-48.787,21.131],[-48.762,20.993],[-48.825,20.916],[-48.887,20.838],[-48.95,20.76],[-49.013,20.682],[-49.075,20.604],[-49.138,20.526],[-49.2,20.449],[-49.258,20.371],[-49.321,20.293],[-49.383,20.214],[-49.446,20.136],[-49.508,20.058],[-49.567,19.98],[-49.629,19.902],[-49.604,19.764],[-49.579,19.627],[-49.642,19.548],[-49.7,19.47],[-49.762,19.392],[-49.825,19.313],[-49.883,19.235],[-49.946,19.156],[-50.004,19.078],[-50.067,18.999],[-50.125,18.921],[-50.183,18.842],[-50.246,18.763],[-50.304,18.684],[-50.367,18.606],[-50.425,18.527],[-50.483,18.448],[-50.542,18.369],[-50.604,18.29],[-50.663,18.211],[-50.721,18.132],[-50.867,18.111],[-51.013,18.089],[-51.071,18.01],[-51.129,17.931],[-51.275,17.909],[-51.421,17.887],[-51.479,17.807],[-51.537,17.728],[-51.679,17.705],[-51.825,17.683],[-51.883,17.603],[-51.942,17.523],[-52,17.443],[-52.058,17.363],[-52.204,17.34],[-52.346,17.316],[-52.404,17.236],[-52.375,17.099],[-52.346,16.962],[-52.404,16.882],[-52.462,16.802],[-52.521,16.722],[-52.579,16.641],[-52.633,16.561],[-52.692,16.481],[-52.663,16.344],[-52.633,16.207],[-52.692,16.127],[-52.746,16.046],[-52.804,15.966],[-52.863,15.885],[-52.917,15.805],[-52.975,15.724],[-52.946,15.588],[-52.917,15.451],[-52.971,15.371],[-53.029,15.29],[-53.083,15.209],[-53.137,15.129],[-53.108,14.992],[-53.079,14.856],[-53.133,14.775],[-53.192,14.694],[-53.3,14.533],[-53.358,14.452],[-53.413,14.371],[-53.383,14.235],[-53.35,14.099],[-53.408,14.018],[-53.462,13.937],[-53.517,13.856],[-53.571,13.775],[-53.625,13.694],[-53.683,13.613],[-53.738,13.532],[-53.792,13.451],[-53.846,13.37],[-53.9,13.289],[-53.954,13.208],[-54.008,13.126],[-54.062,13.045],[-54.117,12.964],[-54.171,12.882],[-54.225,12.801],[-54.279,12.719],[-54.333,12.638],[-54.387,12.556],[-54.529,12.529],[-54.667,12.502],[-54.721,12.42],[-54.775,12.338],[-54.829,12.256],[-54.883,12.175],[-55.021,12.147],[-55.163,12.118],[-55.217,12.036],[-55.267,11.954],[-55.408,11.926],[-55.546,11.897],[-55.6,11.815],[-55.654,11.733],[-55.792,11.704],[-55.933,11.674],[-55.983,11.592],[-56.037,11.51],[-56.092,11.427],[-56.142,11.344],[-56.196,11.262],[-56.246,11.179],[-56.3,11.097],[-56.354,11.014],[-56.404,10.931],[-56.458,10.849],[-56.508,10.766],[-56.563,10.683],[-56.613,10.601],[-56.667,10.518],[-56.717,10.435],[-56.771,10.352],[-56.821,10.269],[-56.871,10.186],[-56.925,10.103],[-56.975,10.02],[-57.029,9.937],[-57.079,9.854],[-57.129,9.771],[-57.183,9.688],[-57.321,9.657],[-57.458,9.625],[-57.508,9.542],[-57.558,9.459],[-57.613,9.376],[-57.663,9.292],[-57.8,9.26],[-57.937,9.228],[-57.988,9.145],[-58.037,9.061],[-58.175,9.029],[-58.312,8.997],[-58.45,8.964],[-58.587,8.932],[-58.642,8.848],[-58.692,8.764],[-58.829,8.731],[-58.967,8.698],[-59.017,8.614],[-59.067,8.53],[-59.117,8.446],[-59.167,8.362],[-59.304,8.328],[-59.442,8.295],[-59.492,8.211],[-59.542,8.126],[-59.592,8.042],[-59.642,7.958],[-59.692,7.873],[-59.742,7.789],[-59.792,7.704],[-59.842,7.62],[-59.892,7.535],[-59.937,7.451],[-59.988,7.366],[-60.037,7.282],[-60.175,7.247],[-60.313,7.213],[-60.45,7.178],[-60.583,7.143],[-60.721,7.108],[-60.858,7.073],[-60.996,7.038],[-61.133,7.003],[-61.267,6.967],[-61.404,6.932],[-61.454,6.847],[-61.504,6.761],[-61.637,6.726],[-61.775,6.69],[-61.825,6.604],[-61.871,6.519],[-61.921,6.434],[-61.971,6.348],[-62.021,6.263],[-62.067,6.177],[-62.117,6.092],[-62.167,6.006],[-62.212,5.921],[-62.263,5.835],[-62.308,5.75],[-62.358,5.664],[-62.496,5.628],[-62.629,5.591],[-62.679,5.505],[-62.725,5.419],[-62.775,5.333],[-62.825,5.248],[-62.871,5.162],[-62.921,5.076],[-63.054,5.039],[-63.192,5.002],[-63.238,4.916],[-63.288,4.83],[-63.333,4.744],[-63.383,4.658],[-63.429,4.572],[-63.479,4.486],[-63.525,4.4],[-63.575,4.314],[-63.708,4.276],[-63.846,4.238],[-63.892,4.152],[-63.937,4.066],[-63.988,3.979],[-64.033,3.893],[-64.083,3.807],[-64.129,3.721],[-64.175,3.634],[-64.225,3.548],[-64.271,3.462],[-64.317,3.375],[-64.454,3.337],[-64.587,3.298],[-64.637,3.212],[-64.683,3.125],[-64.729,3.039],[-64.779,2.952],[-64.825,2.866],[-64.871,2.779],[-64.917,2.693],[-64.967,2.606],[-65.013,2.519],[-65.058,2.433],[-65.196,2.394],[-65.329,2.355],[-65.375,2.268],[-65.421,2.181],[-65.471,2.094],[-65.517,2.008],[-65.562,1.921],[-65.608,1.834],[-65.654,1.747],[-65.704,1.661],[-65.75,1.574],[-65.796,1.487],[-65.842,1.4],[-65.887,1.313],[-65.933,1.226],[-65.979,1.139],[-66.029,1.052],[-66.075,0.966],[-66.121,0.878],[-66.167,0.791],[-66.212,0.704],[-66.258,0.618],[-66.304,0.531],[-66.35,0.444],[-66.396,0.356],[-66.442,0.269],[-66.488,0.182],[-66.537,0.095],[-66.583,0.008],[-66.537,-0.125],[-66.496,-0.259],[-66.542,-0.346],[-66.587,-0.433],[-66.633,-0.52],[-66.679,-0.607],[-66.725,-0.695],[-66.771,-0.782],[-66.817,-0.869],[-66.863,-0.956],[-66.821,-1.09],[-66.779,-1.223],[-66.825,-1.311],[-66.871,-1.398],[-66.913,-1.485],[-66.958,-1.572],[-67.004,-1.659],[-67.05,-1.746],[-67.096,-1.834],[-67.142,-1.921],[-67.187,-2.008],[-67.233,-2.096],[-67.279,-2.183],[-67.325,-2.27],[-67.371,-2.357],[-67.413,-2.445],[-67.458,-2.532],[-67.596,-2.574],[-67.729,-2.615],[-67.863,-2.656],[-67.996,-2.698],[-68.042,-2.786],[-68.087,-2.873],[-68.221,-2.915],[-68.354,-2.956],[-68.492,-2.998],[-68.625,-3.04],[-68.758,-3.082],[-68.892,-3.124],[-68.937,-3.211],[-68.983,-3.299],[-69.117,-3.341],[-69.25,-3.383],[-69.296,-3.471],[-69.342,-3.559],[-69.387,-3.647],[-69.342,-3.78],[-69.3,-3.914],[-69.346,-4.001],[-69.392,-4.089],[-69.346,-4.222],[-69.3,-4.356],[-69.346,-4.444],[-69.392,-4.532],[-69.346,-4.665],[-69.304,-4.798],[-69.346,-4.886],[-69.392,-4.974],[-69.35,-5.107],[-69.304,-5.24],[-69.258,-5.373],[-69.212,-5.506],[-69.258,-5.594],[-69.304,-5.682],[-69.258,-5.815],[-69.212,-5.948],[-69.258,-6.036],[-69.304,-6.124],[-69.258,-6.256],[-69.212,-6.389],[-69.167,-6.522],[-69.121,-6.655],[-69.167,-6.742],[-69.208,-6.83],[-69.163,-6.963],[-69.121,-7.096],[-69.075,-7.228],[-69.029,-7.361],[-69.071,-7.449],[-69.117,-7.536],[-69.071,-7.669],[-69.025,-7.801],[-69.067,-7.889],[-69.113,-7.977],[-69.067,-8.109],[-69.021,-8.241],[-69.062,-8.329],[-69.108,-8.417],[-69.062,-8.549],[-69.012,-8.681],[-69.058,-8.769],[-69.104,-8.857],[-69.054,-8.989],[-69.008,-9.121],[-69.054,-9.209],[-69.096,-9.296],[-69.05,-9.428],[-69,-9.56],[-69.046,-9.648],[-69.087,-9.736],[-69.042,-9.867],[-68.996,-9.999],[-68.946,-10.131],[-68.9,-10.263],[-68.942,-10.35],[-68.988,-10.438],[-68.937,-10.57],[-68.892,-10.701],[-68.933,-10.789],[-68.975,-10.877],[-68.929,-11.008],[-68.879,-11.139],[-68.833,-11.271],[-68.783,-11.402],[-68.825,-11.49],[-68.871,-11.577],[-68.821,-11.709],[-68.771,-11.84],[-68.817,-11.927],[-68.858,-12.015],[-68.808,-12.146],[-68.758,-12.277],[-68.804,-12.365],[-68.846,-12.452],[-68.888,-12.54],[-68.933,-12.628],[-68.975,-12.716],[-69.017,-12.803],[-68.967,-12.934],[-68.917,-13.065],[-68.962,-13.152],[-69.004,-13.24],[-68.954,-13.371],[-68.904,-13.501],[-68.946,-13.589],[-68.988,-13.677],[-69.033,-13.765],[-69.075,-13.852],[-69.025,-13.983],[-68.975,-14.113],[-69.017,-14.201],[-69.058,-14.289],[-69.1,-14.377],[-69.146,-14.464],[-69.187,-14.552],[-69.229,-14.64],[-69.271,-14.728],[-69.317,-14.816],[-69.262,-14.946],[-69.212,-15.076],[-69.254,-15.164],[-69.296,-15.252],[-69.246,-15.382],[-69.196,-15.512],[-69.238,-15.599],[-69.279,-15.687],[-69.321,-15.775],[-69.363,-15.863],[-69.312,-15.993],[-69.258,-16.122],[-69.3,-16.21],[-69.342,-16.298],[-69.292,-16.428],[-69.238,-16.557],[-69.187,-16.687],[-69.133,-16.816],[-69.079,-16.946],[-69.025,-17.075],[-68.975,-17.204],[-68.921,-17.333],[-68.867,-17.462],[-68.813,-17.591],[-68.854,-17.679],[-68.896,-17.767],[-68.842,-17.896],[-68.788,-18.025],[-68.829,-18.112],[-68.871,-18.2],[-68.817,-18.329],[-68.763,-18.457],[-68.804,-18.545],[-68.842,-18.633],[-68.788,-18.761],[-68.733,-18.889],[-68.775,-18.977],[-68.817,-19.065],[-68.858,-19.153],[-68.9,-19.24],[-68.842,-19.369],[-68.788,-19.497],[-68.829,-19.584],[-68.871,-19.672],[-68.908,-19.76],[-68.95,-19.848],[-68.992,-19.935],[-69.033,-20.023],[-69.075,-20.111],[-69.117,-20.199],[-69.158,-20.286],[-69.2,-20.374],[-69.238,-20.462],[-69.279,-20.55],[-69.321,-20.638],[-69.363,-20.726],[-69.404,-20.813],[-69.446,-20.901],[-69.488,-20.989],[-69.525,-21.077],[-69.567,-21.165],[-69.608,-21.253],[-69.65,-21.341],[-69.692,-21.428],[-69.733,-21.516],[-69.775,-21.604],[-69.717,-21.732],[-69.658,-21.86],[-69.7,-21.947],[-69.742,-22.036],[-69.783,-22.123],[-69.821,-22.211],[-69.863,-22.299],[-69.904,-22.387],[-69.846,-22.515],[-69.788,-22.642],[-69.829,-22.73],[-69.871,-22.818],[-69.808,-22.945],[-69.75,-23.072],[-69.792,-23.161],[-69.833,-23.248],[-69.775,-23.376],[-69.712,-23.502],[-69.754,-23.59],[-69.796,-23.678],[-69.733,-23.805],[-69.675,-23.932],[-69.717,-24.02],[-69.754,-24.108],[-69.696,-24.234],[-69.633,-24.361],[-69.675,-24.449],[-69.717,-24.537],[-69.654,-24.663],[-69.592,-24.789],[-69.633,-24.877],[-69.671,-24.965],[-69.613,-25.091],[-69.55,-25.217],[-69.587,-25.305],[-69.629,-25.393],[-69.671,-25.481],[-69.708,-25.569],[-69.75,-25.657],[-69.788,-25.745],[-69.829,-25.833],[-69.871,-25.921],[-69.908,-26.009],[-69.95,-26.096],[-69.992,-26.184],[-70.133,-26.234],[-70.275,-26.284],[-70.317,-26.372],[-70.358,-26.461],[-70.396,-26.549],[-70.437,-26.637],[-70.479,-26.725],[-70.517,-26.813],[-70.558,-26.901],[-70.6,-26.989],[-70.742,-27.039],[-70.887,-27.089],[-70.929,-27.178],[-70.971,-27.266],[-71.008,-27.354],[-71.05,-27.442],[-71.196,-27.492],[-71.342,-27.543],[-71.383,-27.631],[-71.421,-27.719],[-71.567,-27.769],[-71.712,-27.82],[-71.754,-27.908],[-71.796,-27.996],[-71.837,-28.085],[-71.879,-28.173],[-71.921,-28.261],[-71.958,-28.349],[-72,-28.438],[-72.042,-28.526],[-72.083,-28.615],[-72.125,-28.703],[-72.167,-28.791],[-72.208,-28.88],[-72.25,-28.968],[-72.292,-29.056],[-72.333,-29.145],[-72.375,-29.233],[-72.413,-29.322],[-72.454,-29.41],[-72.496,-29.498],[-72.538,-29.587],[-72.579,-29.675],[-72.517,-29.801],[-72.45,-29.927],[-72.492,-30.016],[-72.533,-30.104],[-72.467,-30.23],[-72.4,-30.356],[-72.333,-30.481],[-72.267,-30.607],[-72.308,-30.695],[-72.35,-30.784],[-72.283,-30.909],[-72.212,-31.034],[-72.146,-31.159],[-72.079,-31.284],[-72.117,-31.373],[-72.158,-31.461],[-72.092,-31.586],[-72.021,-31.711],[-72.062,-31.799],[-72.104,-31.887],[-72.142,-31.976],[-72.183,-32.064],[-72.117,-32.189],[-72.046,-32.313],[-72.087,-32.402],[-72.125,-32.49],[-72.167,-32.578],[-72.208,-32.667],[-72.246,-32.755],[-72.287,-32.843],[-72.217,-32.968],[-72.146,-33.092],[-72.187,-33.18],[-72.229,-33.269],[-72.267,-33.357],[-72.308,-33.445],[-72.35,-33.534],[-72.387,-33.622],[-72.317,-33.746],[-72.246,-33.87],[-72.283,-33.958],[-72.325,-34.047],[-72.367,-34.135],[-72.408,-34.224],[-72.446,-34.312],[-72.488,-34.4],[-72.413,-34.524],[-72.342,-34.647],[-72.379,-34.736],[-72.421,-34.824],[-72.462,-34.913],[-72.5,-35.001],[-72.542,-35.089],[-72.583,-35.178],[-72.625,-35.266],[-72.663,-35.355],[-72.704,-35.443],[-72.746,-35.532],[-72.783,-35.62],[-72.825,-35.709],[-72.867,-35.797],[-72.908,-35.886],[-72.946,-35.974],[-72.988,-36.062],[-73.029,-36.151],[-73.071,-36.239],[-73.108,-36.328],[-73.15,-36.416],[-73.192,-36.505],[-73.233,-36.593],[-73.275,-36.682],[-73.312,-36.77],[-73.354,-36.859],[-73.396,-36.947],[-73.437,-37.036],[-73.596,-37.09],[-73.754,-37.144],[-73.796,-37.232],[-73.837,-37.321],[-73.879,-37.409],[-73.921,-37.498],[-74.079,-37.551],[-74.238,-37.605],[-74.279,-37.694],[-74.325,-37.782],[-74.483,-37.836],[-74.646,-37.889],[-74.687,-37.978],[-74.729,-38.067],[-74.892,-38.12],[-75.05,-38.173],[-75.096,-38.262],[-75.137,-38.351],[-75.3,-38.404],[-75.462,-38.457],[-75.504,-38.546],[-75.55,-38.635],[-75.712,-38.688],[-75.875,-38.741],[-75.917,-38.829],[-75.962,-38.918],[-76.004,-39.007],[-76.05,-39.096],[-76.212,-39.148],[-76.379,-39.201],[-76.425,-39.29],[-76.467,-39.379],[-76.512,-39.467],[-76.558,-39.556],[-76.721,-39.609],[-76.887,-39.661],[-76.933,-39.75],[-76.979,-39.839],[-77.146,-39.891],[-77.312,-39.944],[-77.358,-40.032],[-77.4,-40.121],[-77.446,-40.21],[-77.492,-40.299],[-77.663,-40.351],[-77.829,-40.403],[-77.875,-40.492],[-77.921,-40.581],[-77.967,-40.669],[-78.012,-40.758],[-78.062,-40.847],[-78.108,-40.936],[-78.275,-40.988],[-78.446,-41.039],[-78.492,-41.128],[-78.542,-41.217],[-78.587,-41.306],[-78.633,-41.394],[-78.683,-41.483],[-78.729,-41.572],[-78.9,-41.624],[-79.075,-41.675],[-79.121,-41.764],[-79.171,-41.853],[-79.217,-41.941],[-79.267,-42.03],[-79.312,-42.119],[-79.363,-42.208],[-79.408,-42.296],[-79.458,-42.385],[-79.508,-42.474],[-79.554,-42.563],[-79.604,-42.651],[-79.654,-42.74],[-79.829,-42.791],[-80.004,-42.842],[-80.054,-42.931],[-80.1,-43.02],[-80.15,-43.109],[-80.2,-43.197],[-80.25,-43.286],[-80.3,-43.375],[-80.479,-43.426],[-80.654,-43.476],[-80.704,-43.565],[-80.754,-43.654],[-80.933,-43.704],[-81.113,-43.754],[-81.163,-43.843],[-81.217,-43.932],[-81.396,-43.982],[-81.575,-44.032],[-81.625,-44.12],[-81.679,-44.209],[-81.858,-44.259],[-82.042,-44.308],[-82.092,-44.397],[-82.146,-44.485],[-82.325,-44.534],[-82.508,-44.584],[-82.562,-44.672],[-82.617,-44.761],[-82.671,-44.849],[-82.725,-44.937],[-82.908,-44.986],[-83.092,-45.035],[-83.146,-45.124],[-83.2,-45.212],[-83.383,-45.26],[-83.571,-45.309],[-83.754,-45.357],[-83.942,-45.404],[-84.125,-45.452],[-84.312,-45.499],[-84.371,-45.588],[-84.425,-45.676],[-84.613,-45.723],[-84.8,-45.77],[-84.858,-45.858],[-84.917,-45.946],[-85.104,-45.993],[-85.292,-46.039],[-85.35,-46.127],[-85.408,-46.215],[-85.467,-46.303],[-85.525,-46.391],[-85.717,-46.437],[-85.908,-46.483],[-85.967,-46.571],[-86.025,-46.659],[-86.087,-46.747],[-86.146,-46.835],[-86.204,-46.922],[-86.267,-47.01],[-86.325,-47.098],[-86.387,-47.186],[-86.579,-47.231],[-86.775,-47.276],[-86.837,-47.364],[-86.896,-47.452],[-86.958,-47.539],[-87.021,-47.627],[-87.217,-47.671],[-87.413,-47.716],[-87.475,-47.803],[-87.538,-47.891],[-87.6,-47.978],[-87.663,-48.066],[-87.863,-48.11],[-88.058,-48.153],[-88.125,-48.241],[-88.187,-48.328],[-88.25,-48.416],[-88.317,-48.503],[-88.379,-48.59],[-88.446,-48.677],[-88.508,-48.764],[-88.575,-48.852],[-88.642,-48.939],[-88.704,-49.026],[-88.771,-49.113],[-88.837,-49.2],[-89.042,-49.243],[-89.242,-49.286],[-89.308,-49.372],[-89.379,-49.459],[-89.446,-49.546],[-89.513,-49.633],[-89.579,-49.72],[-89.646,-49.807],[-89.712,-49.894],[-89.783,-49.981],[-89.988,-50.022],[-90.196,-50.064],[-90.267,-50.151],[-90.333,-50.237],[-90.542,-50.278],[-90.754,-50.319],[-90.821,-50.406],[-90.892,-50.492],[-91.104,-50.532],[-91.313,-50.572],[-91.383,-50.659],[-91.458,-50.745],[-91.671,-50.784],[-91.879,-50.824],[-91.954,-50.91],[-92.025,-50.996],[-92.1,-51.082],[-92.175,-51.168],[-92.246,-51.254],[-92.321,-51.34],[-92.537,-51.378],[-92.75,-51.416],[-92.825,-51.502],[-92.9,-51.588],[-93.117,-51.625],[-93.333,-51.662],[-93.413,-51.748],[-93.488,-51.834],[-93.708,-51.87],[-93.925,-51.907],[-94.004,-51.992],[-94.079,-52.077],[-94.3,-52.113],[-94.521,-52.149],[-94.742,-52.184],[-94.962,-52.219],[-95.183,-52.254],[-95.404,-52.288],[-95.629,-52.322],[-95.85,-52.356],[-96.075,-52.389],[-96.296,-52.422],[-96.521,-52.454],[-96.746,-52.487],[-96.967,-52.519],[-97.192,-52.55],[-97.417,-52.581],[-97.642,-52.612],[-97.867,-52.643],[-98.096,-52.673],[-98.179,-52.756],[-98.267,-52.839],[-98.496,-52.869],[-98.721,-52.898],[-98.95,-52.927],[-99.179,-52.955],[-99.408,-52.983],[-99.637,-53.011],[-99.867,-53.038],[-100.096,-53.065],[-100.325,-53.092],[-100.554,-53.118],[-100.783,-53.144],[-101.012,-53.169],[-101.108,-53.25],[-101.2,-53.332],[-101.433,-53.357],[-101.663,-53.381],[-101.758,-53.462],[-101.854,-53.543],[-102.087,-53.567],[-102.321,-53.59],[-102.417,-53.671],[-102.513,-53.751],[-102.608,-53.832],[-102.708,-53.912],[-102.804,-53.993],[-102.904,-54.073],[-103,-54.154],[-102.962,-54.292],[-102.921,-54.431],[-102.879,-54.569],[-102.837,-54.708],[-102.796,-54.846],[-102.754,-54.985],[-102.854,-55.065],[-102.954,-55.146],[-102.913,-55.284],[-102.867,-55.422],[-102.825,-55.561],[-102.783,-55.699],[-102.738,-55.837],[-102.692,-55.975],[-102.65,-56.113],[-102.604,-56.251],[-102.558,-56.389],[-102.513,-56.527],[-102.467,-56.665],[-102.417,-56.803],[-102.371,-56.941],[-102.321,-57.079],[-102.275,-57.216],[-102.225,-57.354],[-102.175,-57.492],[-102.125,-57.629],[-102.229,-57.71],[-102.333,-57.791],[-102.283,-57.928],[-102.233,-58.066],[-102.337,-58.147],[-102.446,-58.227],[-102.396,-58.365],[-102.342,-58.502],[-102.45,-58.583],[-102.558,-58.664],[-102.663,-58.744],[-102.771,-58.824],[-102.721,-58.962],[-102.671,-59.099],[-102.779,-59.18],[-102.887,-59.261],[-102.996,-59.341],[-103.108,-59.421],[-103.058,-59.559],[-103.004,-59.696],[-103.117,-59.776],[-103.229,-59.856],[-103.175,-59.994],[-103.125,-60.131],[-103.071,-60.269],[-103.017,-60.406],[-103.129,-60.486],[-103.246,-60.566],[-103.471,-60.727],[-103.587,-60.807],[-103.704,-60.886],[-103.821,-60.966],[-103.937,-61.046],[-104.054,-61.126],[-104.171,-61.205],[-104.287,-61.284],[-104.408,-61.364],[-104.358,-61.502],[-104.304,-61.639],[-104.425,-61.719],[-104.546,-61.798],[-104.667,-61.877],[-104.787,-61.956],[-104.908,-62.035],[-105.033,-62.114],[-104.983,-62.252],[-104.933,-62.39],[-105.054,-62.469],[-105.179,-62.547],[-105.304,-62.626],[-105.429,-62.705],[-105.379,-62.843],[-105.329,-62.981],[-105.458,-63.059],[-105.583,-63.138],[-105.533,-63.275],[-105.483,-63.413],[-105.613,-63.492],[-105.742,-63.57],[-106,-63.727],[-106.133,-63.805],[-106.267,-63.883],[-106.217,-64.021],[-106.167,-64.159],[-106.3,-64.237],[-106.433,-64.314],[-106.567,-64.392],[-106.704,-64.47],[-106.837,-64.548],[-106.975,-64.625],[-106.929,-64.763],[-106.879,-64.901],[-107.017,-64.979],[-107.158,-65.056],[-107.296,-65.133],[-107.438,-65.211],[-107.579,-65.287],[-107.721,-65.364],[-107.863,-65.441],[-108.008,-65.518],[-108.154,-65.595],[-108.3,-65.671],[-108.446,-65.748],[-108.592,-65.824],[-108.738,-65.9],[-108.887,-65.976],[-109.037,-66.052],[-109.188,-66.128],[-109.337,-66.204],[-109.492,-66.279],[-109.642,-66.355],[-109.796,-66.43],[-109.95,-66.505],[-110.108,-66.58],[-110.067,-66.719],[-110.029,-66.857],[-110.188,-66.932],[-110.346,-67.007],[-110.504,-67.082],[-110.663,-67.157],[-110.825,-67.231],[-110.987,-67.305],[-111.15,-67.38],[-111.312,-67.454],[-111.479,-67.527],[-111.642,-67.601],[-111.808,-67.675],[-111.979,-67.748],[-112.146,-67.822],[-112.317,-67.895],[-112.488,-67.968],[-112.658,-68.041],[-112.829,-68.114],[-113.004,-68.186],[-113.179,-68.259],[-113.354,-68.331],[-113.529,-68.403],[-113.708,-68.475],[-113.888,-68.547],[-114.267,-68.551],[-114.65,-68.554],[-114.833,-68.624],[-115.017,-68.695],[-115.2,-68.766],[-115.383,-68.836],[-115.571,-68.906],[-115.758,-68.976],[-115.95,-69.046],[-116.137,-69.116],[-116.529,-69.115],[-116.921,-69.114],[-117.113,-69.183],[-117.308,-69.251],[-117.704,-69.248],[-118.096,-69.244],[-118.296,-69.312],[-118.496,-69.379],[-118.892,-69.374],[-119.287,-69.367],[-119.487,-69.434],[-119.692,-69.5],[-120.092,-69.492],[-120.488,-69.483],[-120.887,-69.474],[-121.283,-69.463],[-121.679,-69.452],[-122.079,-69.44],[-122.475,-69.427],[-122.871,-69.413],[-123.267,-69.399],[-123.662,-69.384],[-123.875,-69.445],[-124.096,-69.507],[-124.492,-69.489],[-124.888,-69.472],[-125.283,-69.453],[-125.675,-69.433],[-126.071,-69.413],[-126.462,-69.392],[-126.858,-69.37],[-127.25,-69.347],[-127.642,-69.323],[-128.029,-69.299],[-128.421,-69.273],[-128.808,-69.247],[-129.038,-69.303],[-129.267,-69.358],[-129.658,-69.331],[-130.046,-69.302],[-130.279,-69.356],[-130.513,-69.41],[-130.9,-69.379],[-131.292,-69.348],[-131.525,-69.401],[-131.763,-69.453],[-132,-69.505],[-132.242,-69.557],[-132.479,-69.608],[-132.721,-69.659],[-132.967,-69.71],[-133.208,-69.761],[-133.454,-69.811],[-133.7,-69.861],[-134.092,-69.824],[-134.483,-69.786],[-134.733,-69.834],[-134.983,-69.883],[-135.233,-69.931],[-135.483,-69.978],[-135.737,-70.026],[-135.992,-70.072],[-136.246,-70.119],[-136.5,-70.165],[-136.758,-70.211],[-137.017,-70.257],[-137.275,-70.302],[-137.533,-70.347],[-137.929,-70.302],[-138.325,-70.256],[-138.587,-70.3],[-138.85,-70.343],[-139.112,-70.386],[-139.379,-70.428],[-139.771,-70.379],[-140.162,-70.33],[-140.429,-70.371],[-140.696,-70.411],[-140.967,-70.452],[-141.233,-70.491],[-141.625,-70.439],[-142.012,-70.386],[-142.283,-70.424],[-142.554,-70.462],[-142.829,-70.5],[-143.1,-70.537],[-143.375,-70.574],[-143.654,-70.611],[-143.929,-70.646],[-144.208,-70.682],[-144.592,-70.624],[-144.975,-70.565],[-145.254,-70.599],[-145.533,-70.633],[-145.812,-70.666],[-146.096,-70.699],[-146.379,-70.732],[-146.662,-70.764],[-146.946,-70.796],[-147.229,-70.827],[-147.517,-70.858],[-147.8,-70.888],[-148.087,-70.919],[-148.375,-70.948],[-148.667,-70.977],[-148.954,-71.006],[-149.246,-71.035],[-149.537,-71.062],[-149.829,-71.09],[-150.121,-71.117],[-150.417,-71.144],[-150.712,-71.17],[-151.008,-71.196],[-151.304,-71.221],[-151.6,-71.246],[-151.896,-71.271],[-152.196,-71.295],[-152.421,-71.416],[-152.646,-71.536],[-152.95,-71.559],[-153.254,-71.581],[-153.487,-71.701],[-153.725,-71.82],[-153.967,-71.939],[-154.208,-72.058],[-154.454,-72.176],[-154.383,-72.274],[-154.317,-72.372],[-154.567,-72.49],[-154.821,-72.608],[-155.075,-72.726],[-155.333,-72.843],[-155.596,-72.96],[-155.862,-73.077],[-156.133,-73.193],[-156.404,-73.309],[-156.683,-73.425],[-156.962,-73.54],[-156.9,-73.639],[-156.842,-73.737],[-157.125,-73.852],[-157.417,-73.967],[-157.708,-74.082],[-158.063,-74.097],[-158.412,-74.111],[-158.717,-74.225],[-159.021,-74.337],[-159.333,-74.45],[-159.646,-74.562],[-159.962,-74.673],[-160.287,-74.784],[-160.658,-74.795],[-161.029,-74.806],[-161.4,-74.816],[-161.771,-74.826],[-162.142,-74.835],[-162.512,-74.843],[-162.887,-74.851],[-163.258,-74.858],[-163.633,-74.865],[-164.004,-74.871],[-164.379,-74.876],[-164.754,-74.881],[-165.129,-74.886],[-165.504,-74.889],[-165.879,-74.893],[-166.254,-74.895],[-166.625,-74.897],[-167,-74.899],[-167.375,-74.899],[-167.75,-74.9],[-168.129,-74.899],[-168.504,-74.899],[-168.879,-74.897],[-169.25,-74.895],[-169.625,-74.893],[-170,-74.889],[-170.375,-74.886],[-170.733,-74.781],[-171.083,-74.677],[-171.454,-74.671],[-171.821,-74.665],[-172.167,-74.559],[-172.504,-74.452],[-172.867,-74.444],[-173.229,-74.436],[-173.558,-74.328],[-173.883,-74.219],[-174.204,-74.11],[-174.521,-74],[-174.833,-73.89],[-175.142,-73.779],[-175.492,-73.768],[-175.837,-73.756],[-176.187,-73.743],[-176.533,-73.729],[-176.879,-73.716],[-177.279,-73.8],[-177.683,-73.884],[-178.029,-73.869],[-178.379,-73.852],[-178.788,-73.934],[-179.2,-74.015],[-179.55,-73.997],[-179.9,-73.979],[179.754,-73.96],[179.404,-73.941],[178.983,-74.018],[178.558,-74.096],[178.213,-74.074],[177.863,-74.052],[177.517,-74.03],[177.171,-74.007],[176.825,-73.984],[176.483,-73.96],[176.142,-73.936],[175.8,-73.911],[175.458,-73.886],[175.117,-73.859],[174.779,-73.833],[174.442,-73.806],[174.104,-73.779],[173.771,-73.751],[173.329,-73.818],[172.888,-73.884],[172.554,-73.855],[172.217,-73.825],[171.771,-73.889],[171.321,-73.952],[170.987,-73.92],[170.654,-73.888],[170.325,-73.855],[169.996,-73.821],[169.542,-73.881],[169.083,-73.94],[168.754,-73.905],[168.425,-73.869],[168.1,-73.833],[167.775,-73.797],[167.313,-73.852],[166.85,-73.907],[166.529,-73.868],[166.204,-73.83],[165.888,-73.79],[165.567,-73.751],[165.25,-73.711],[164.933,-73.67],[164.467,-73.72],[164,-73.769],[163.688,-73.726],[163.375,-73.684],[162.904,-73.73],[162.433,-73.776],[162.125,-73.731],[161.817,-73.686],[161.342,-73.73],[160.867,-73.772],[160.563,-73.726],[160.258,-73.679],[159.954,-73.631],[159.654,-73.584],[159.354,-73.536],[159.058,-73.487],[158.763,-73.439],[158.467,-73.389],[158.175,-73.34],[157.883,-73.29],[157.596,-73.24],[157.308,-73.189],[157.021,-73.138],[156.917,-73.002],[156.817,-72.865],[156.533,-72.814],[156.258,-72.762],[155.704,-72.657],[155.433,-72.604],[155.158,-72.55],[155.071,-72.413],[154.983,-72.276],[154.721,-72.222],[154.454,-72.168],[154.192,-72.113],[153.929,-72.058],[153.667,-72.003],[153.408,-71.947],[153.154,-71.892],[152.896,-71.836],[152.825,-71.698],[152.758,-71.56],[152.508,-71.503],[152.258,-71.446],[152.192,-71.308],[152.129,-71.17],[151.883,-71.112],[151.642,-71.055],[151.4,-70.997],[151.158,-70.939],[150.921,-70.88],[150.683,-70.821],[150.629,-70.683],[150.575,-70.544],[150.346,-70.485],[150.113,-70.426],[150.063,-70.287],[150.013,-70.148],[149.967,-70.009],[149.917,-69.87],[149.696,-69.81],[149.471,-69.75],[149.425,-69.611],[149.383,-69.472],[149.163,-69.411],[148.946,-69.35],[148.904,-69.211],[148.862,-69.072],[148.65,-69.011],[148.437,-68.949],[148.225,-68.888],[148.013,-68.826],[147.979,-68.687],[147.942,-68.547],[147.738,-68.485],[147.529,-68.422],[147.325,-68.36],[147.121,-68.297],[146.917,-68.234],[146.717,-68.171],[146.517,-68.107],[146.317,-68.044],[146.292,-67.904],[146.267,-67.764],[146.071,-67.7],[145.875,-67.636],[145.85,-67.496],[145.829,-67.356],[145.638,-67.292],[145.446,-67.227],[145.254,-67.163],[145.067,-67.097],[144.879,-67.032],[144.692,-66.967],[144.504,-66.901],[144.317,-66.836],[144.304,-66.696],[144.288,-66.555],[144.104,-66.489],[143.925,-66.423],[143.913,-66.283],[143.9,-66.143],[143.721,-66.076],[143.542,-66.01],[143.533,-65.87],[143.521,-65.729],[143.346,-65.663],[143.171,-65.596],[142.996,-65.529],[142.825,-65.461],[142.65,-65.394],[142.479,-65.326],[142.308,-65.258],[142.142,-65.19],[141.971,-65.122],[141.804,-65.053],[141.638,-64.985],[141.471,-64.916],[141.304,-64.847],[141.142,-64.778],[140.975,-64.709],[140.813,-64.64],[140.65,-64.57],[140.487,-64.501],[140.329,-64.431],[140.167,-64.361],[140.171,-64.221],[140.175,-64.08],[140.021,-64.01],[139.863,-63.94],[139.704,-63.869],[139.55,-63.799],[139.396,-63.728],[139.242,-63.657],[139.088,-63.586],[138.933,-63.515],[138.942,-63.375],[138.954,-63.235],[138.8,-63.164],[138.65,-63.092],[138.504,-63.021],[138.354,-62.949],[138.204,-62.877],[138.058,-62.805],[137.913,-62.733],[137.767,-62.661],[137.475,-62.516],[137.329,-62.444],[137.187,-62.371],[137.204,-62.231],[137.217,-62.091],[137.075,-62.018],[136.938,-61.945],[136.796,-61.872],[136.654,-61.799],[136.517,-61.725],[136.379,-61.652],[136.237,-61.578],[136.1,-61.504],[135.967,-61.431],[135.829,-61.357],[135.85,-61.217],[135.871,-61.077],[135.733,-61.003],[135.6,-60.929],[135.467,-60.854],[135.333,-60.78],[135.354,-60.64],[135.379,-60.5],[135.246,-60.426],[135.117,-60.351],[134.983,-60.276],[134.854,-60.202],[134.879,-60.061],[134.9,-59.921],[134.771,-59.847],[134.642,-59.772],[134.517,-59.697],[134.388,-59.622],[134.413,-59.482],[134.437,-59.341],[134.313,-59.266],[134.188,-59.191],[134.063,-59.116],[133.937,-59.04],[133.813,-58.964],[133.692,-58.889],[133.567,-58.813],[133.446,-58.737],[133.325,-58.661],[133.204,-58.585],[133.083,-58.509],[132.962,-58.432],[132.842,-58.356],[132.725,-58.28],[132.754,-58.14],[132.779,-58],[132.663,-57.924],[132.546,-57.847],[132.429,-57.77],[132.313,-57.694],[132.196,-57.617],[132.079,-57.54],[131.967,-57.463],[131.85,-57.386],[131.738,-57.308],[131.621,-57.231],[131.508,-57.154],[131.396,-57.076],[131.283,-56.998],[131.171,-56.921],[131.058,-56.843],[130.946,-56.765],[130.838,-56.687],[130.725,-56.609],[130.617,-56.531],[130.508,-56.453],[130.396,-56.375],[130.288,-56.296],[130.179,-56.218],[130.071,-56.14],[129.963,-56.061],[129.858,-55.982],[129.75,-55.904],[129.646,-55.825],[129.538,-55.746],[129.433,-55.667],[129.467,-55.528],[129.504,-55.389],[129.4,-55.31],[129.296,-55.231],[129.192,-55.152],[129.088,-55.073],[129.125,-54.933],[129.158,-54.794],[129.058,-54.715],[128.954,-54.636],[128.992,-54.497],[129.025,-54.357],[128.925,-54.278],[128.825,-54.199],[128.721,-54.119],[128.621,-54.04],[128.521,-53.96],[128.421,-53.881],[128.321,-53.801],[128.225,-53.721],[128.262,-53.582],[128.296,-53.443],[128.2,-53.363],[128.1,-53.284],[128.004,-53.204],[127.904,-53.124],[127.808,-53.044],[127.712,-52.963],[127.617,-52.883],[127.521,-52.803],[127.425,-52.723],[127.329,-52.642],[127.367,-52.503],[127.404,-52.364],[127.308,-52.284],[127.217,-52.204],[127.121,-52.123],[127.025,-52.042],[126.933,-51.962],[126.842,-51.881],[126.746,-51.801],[126.654,-51.72],[126.563,-51.639],[126.471,-51.558],[126.379,-51.477],[126.287,-51.396],[126.196,-51.315],[126.104,-51.234],[126.012,-51.152],[125.925,-51.071],[125.833,-50.99],[125.746,-50.908],[125.654,-50.827],[125.567,-50.745],[125.475,-50.664],[125.388,-50.582],[125.3,-50.501],[125.213,-50.419],[125.125,-50.337],[125.038,-50.255],[124.95,-50.173],[124.863,-50.091],[124.775,-50.009],[124.688,-49.927],[124.604,-49.845],[124.517,-49.763],[124.429,-49.681],[124.346,-49.599],[124.262,-49.516],[124.175,-49.434],[123.962,-49.407],[123.921,-49.545],[123.792,-49.6],[123.663,-49.656],[123.533,-49.711],[123.404,-49.765],[123.275,-49.82],[123.146,-49.874],[123.012,-49.929],[122.883,-49.983],[122.754,-50.037],[122.621,-50.091],[122.492,-50.145],[122.275,-50.115],[122.062,-50.085],[121.929,-50.138],[121.796,-50.192],[121.583,-50.161],[121.371,-50.129],[121.154,-50.098],[120.942,-50.066],[120.729,-50.034],[120.517,-50.002],[120.304,-49.969],[120.092,-49.936],[119.883,-49.902],[119.671,-49.869],[119.538,-49.919],[119.404,-49.97],[119.192,-49.936],[118.979,-49.901],[118.771,-49.866],[118.558,-49.83],[118.35,-49.794],[118.142,-49.758],[117.929,-49.722],[117.721,-49.686],[117.513,-49.649],[117.438,-49.563],[117.367,-49.477],[117.292,-49.392],[117.221,-49.306],[117.15,-49.22],[117.075,-49.134],[117.004,-49.048],[116.933,-48.963],[116.858,-48.877],[116.788,-48.791],[116.717,-48.705],[116.779,-48.571],[116.838,-48.437],[116.767,-48.351],[116.696,-48.265],[116.625,-48.179],[116.554,-48.093],[116.483,-48.007],[116.417,-47.921],[116.346,-47.834],[116.275,-47.748],[116.204,-47.662],[116.137,-47.576],[116.067,-47.49],[116,-47.404],[115.929,-47.317],[115.863,-47.231],[115.792,-47.145],[115.725,-47.059],[115.654,-46.972],[115.588,-46.886],[115.521,-46.799],[115.45,-46.713],[115.513,-46.579],[115.575,-46.446],[115.504,-46.359],[115.438,-46.273],[115.5,-46.139],[115.558,-46.005],[115.492,-45.919],[115.425,-45.832],[115.483,-45.698],[115.542,-45.564],[115.6,-45.43],[115.658,-45.296],[115.592,-45.21],[115.525,-45.123],[115.583,-44.989],[115.642,-44.855],[115.575,-44.769],[115.508,-44.682],[115.567,-44.548],[115.621,-44.414],[115.558,-44.327],[115.492,-44.241],[115.546,-44.106],[115.604,-43.972],[115.658,-43.838],[115.717,-43.703],[115.771,-43.568],[115.825,-43.434],[115.879,-43.299],[115.933,-43.164],[115.988,-43.029],[116.042,-42.894],[116.096,-42.759],[116.146,-42.624],[116.2,-42.489],[116.254,-42.354],[116.188,-42.268],[116.121,-42.182],[116.175,-42.046],[116.225,-41.911],[116.163,-41.825],[116.096,-41.739],[116.029,-41.652],[115.967,-41.566],[116.017,-41.431],[116.071,-41.296],[116.004,-41.21],[115.942,-41.123],[115.875,-41.037],[115.813,-40.951],[115.75,-40.864],[115.683,-40.778],[115.621,-40.692],[115.558,-40.606],[115.492,-40.519],[115.429,-40.432],[115.367,-40.346],[115.304,-40.26],[115.242,-40.173],[115.179,-40.087],[115.117,-40],[115.054,-39.914],[114.992,-39.827],[114.929,-39.74],[114.867,-39.654],[114.692,-39.615],[114.517,-39.577],[114.454,-39.49],[114.392,-39.403],[114.329,-39.316],[114.271,-39.229],[114.208,-39.143],[114.146,-39.056],[114.087,-38.969],[114.025,-38.882],[113.967,-38.795],[113.904,-38.708],[113.846,-38.621],[113.783,-38.534],[113.725,-38.447],[113.663,-38.36],[113.604,-38.273],[113.658,-38.139],[113.708,-38.004],[113.758,-37.869],[113.812,-37.735],[113.863,-37.6],[113.913,-37.465],[113.963,-37.33],[114.017,-37.195],[114.067,-37.06],[114.175,-37.012],[114.283,-36.964],[114.396,-36.916],[114.504,-36.867],[114.613,-36.819],[114.721,-36.77],[114.771,-36.634],[114.879,-36.586],[114.817,-36.499],[114.758,-36.412],[114.7,-36.326],[114.637,-36.239],[114.579,-36.152],[114.517,-36.066],[114.35,-36.027],[114.292,-35.94],[114.233,-35.854],[114.171,-35.767],[114.004,-35.728],[113.946,-35.641],[113.887,-35.554],[113.829,-35.467],[113.771,-35.38],[113.713,-35.293],[113.546,-35.254],[113.488,-35.167],[113.321,-35.128],[113.263,-35.041],[113.1,-35.001],[113.042,-34.914],[112.875,-34.875],[112.821,-34.787],[112.763,-34.7],[112.596,-34.66],[112.542,-34.573],[112.483,-34.486],[112.425,-34.398],[112.371,-34.311],[112.313,-34.223],[112.258,-34.136],[112.2,-34.048],[112.146,-33.961],[112.088,-33.874],[112.033,-33.786],[111.871,-33.746],[111.813,-33.658],[111.758,-33.57],[111.596,-33.53],[111.433,-33.489],[111.275,-33.447],[111.113,-33.406],[110.95,-33.365],[110.792,-33.323],[110.733,-33.236],[110.575,-33.194],[110.521,-33.106],[110.358,-33.064],[110.304,-32.976],[110.25,-32.888],[110.092,-32.846],[110.038,-32.758],[109.983,-32.67],[109.825,-32.628],[109.771,-32.54],[109.613,-32.497],[109.454,-32.455],[109.4,-32.367],[109.35,-32.279],[109.192,-32.236],[109.137,-32.147],[109.083,-32.059],[109.033,-31.971],[108.979,-31.883],[108.925,-31.795],[108.875,-31.707],[108.821,-31.618],[108.771,-31.53],[108.821,-31.397],[108.771,-31.309],[108.821,-31.176],[108.771,-31.087],[108.717,-30.999],[108.667,-30.911],[108.717,-30.777],[108.667,-30.689],[108.613,-30.601],[108.563,-30.513],[108.613,-30.379],[108.563,-30.291],[108.613,-30.158],[108.563,-30.069],[108.513,-29.981],[108.458,-29.893],[108.508,-29.759],[108.458,-29.671],[108.408,-29.583],[108.458,-29.449],[108.408,-29.361],[108.354,-29.273],[108.304,-29.185],[108.254,-29.096],[108.2,-29.008],[108.15,-28.92],[108.1,-28.831],[108.05,-28.743],[107.996,-28.655],[107.946,-28.566],[107.996,-28.433],[107.946,-28.345],[107.896,-28.256],[107.846,-28.168],[107.796,-28.08],[107.846,-27.946],[107.896,-27.812],[107.846,-27.724],[107.796,-27.636],[107.746,-27.548],[107.692,-27.459],[107.642,-27.371],[107.592,-27.282],[107.542,-27.194],[107.492,-27.106],[107.442,-27.017],[107.392,-26.929],[107.342,-26.84],[107.292,-26.752],[107.192,-26.797],[107.042,-26.753],[106.892,-26.71],[106.742,-26.666],[106.692,-26.577],[106.546,-26.534],[106.496,-26.445],[106.346,-26.401],[106.196,-26.357],[106.146,-26.268],[106,-26.224],[105.95,-26.136],[105.8,-26.091],[105.654,-26.047],[105.504,-26.002],[105.454,-25.914],[105.308,-25.869],[105.258,-25.781],[105.113,-25.736],[105.013,-25.78],[104.863,-25.735],[104.717,-25.69],[104.567,-25.645],[104.421,-25.6],[104.275,-25.555],[104.125,-25.509],[103.979,-25.464],[103.933,-25.376],[103.783,-25.33],[103.638,-25.284],[103.492,-25.239],[103.346,-25.193],[103.2,-25.147],[103.15,-25.059],[103.104,-24.97],[102.958,-24.924],[102.913,-24.836],[102.867,-24.747],[102.821,-24.658],[102.771,-24.569],[102.725,-24.48],[102.679,-24.392],[102.633,-24.303],[102.587,-24.214],[102.542,-24.125],[102.496,-24.036],[102.45,-23.948],[102.404,-23.859],[102.454,-23.727],[102.408,-23.638],[102.363,-23.549],[102.317,-23.461],[102.271,-23.372],[102.325,-23.24],[102.275,-23.151],[102.329,-23.019],[102.283,-22.931],[102.333,-22.799],[102.387,-22.667],[102.438,-22.535],[102.488,-22.403],[102.442,-22.314],[102.496,-22.182],[102.592,-22.138],[102.642,-22.006],[102.596,-21.917],[102.55,-21.829],[102.6,-21.696],[102.65,-21.564],[102.604,-21.475],[102.654,-21.343],[102.608,-21.254],[102.658,-21.121],[102.708,-20.989],[102.758,-20.856],[102.713,-20.767],[102.763,-20.635],[102.812,-20.502],[102.863,-20.37],[102.817,-20.281],[102.867,-20.148],[102.821,-20.059],[102.771,-19.971],[102.821,-19.838],[102.871,-19.705],[102.921,-19.572],[102.967,-19.439],[102.921,-19.35],[102.971,-19.217],[102.925,-19.128],[102.971,-18.995],[103.021,-18.862],[102.975,-18.773],[103.021,-18.64],[102.975,-18.551],[103.025,-18.418],[102.979,-18.329],[103.025,-18.196],[103.075,-18.063],[103.029,-17.974],[103.075,-17.841],[103.029,-17.752],[103.075,-17.619],[103.125,-17.485],[103.075,-17.397],[103.125,-17.263],[103.079,-17.174],[103.125,-17.041],[103.079,-16.952],[103.125,-16.819],[103.171,-16.685],[103.125,-16.596],[103.175,-16.462],[103.221,-16.329],[103.175,-16.24],[103.125,-16.151],[103.175,-16.018],[103.125,-15.929],[103.175,-15.795],[103.125,-15.707],[103.175,-15.573],[103.125,-15.484],[103.079,-15.395],[103.125,-15.261],[103.079,-15.173],[103.125,-15.039],[103.079,-14.95],[103.033,-14.861],[102.988,-14.772],[102.942,-14.684],[102.896,-14.595],[102.85,-14.506],[102.804,-14.417],[102.754,-14.329],[102.708,-14.24],[102.663,-14.151],[102.617,-14.062],[102.571,-13.974],[102.525,-13.885],[102.479,-13.796],[102.433,-13.707],[102.387,-13.618],[102.342,-13.53],[102.296,-13.441],[102.25,-13.352],[102.204,-13.263],[102.158,-13.174],[102.204,-13.041],[102.25,-12.907],[102.2,-12.818],[102.154,-12.729],[102.108,-12.641],[102.063,-12.552],[102.017,-12.463],[101.971,-12.374],[101.925,-12.285],[101.879,-12.197],[101.833,-12.108],[101.788,-12.019],[101.742,-11.93],[101.696,-11.841],[101.65,-11.753],[101.604,-11.664],[101.558,-11.575],[101.421,-11.531],[101.288,-11.488],[101.242,-11.399],[101.196,-11.31],[101.15,-11.221],[101.104,-11.133],[101.058,-11.044],[101.013,-10.955],[100.967,-10.866],[100.921,-10.778],[100.875,-10.689],[100.829,-10.6],[100.692,-10.556],[100.558,-10.513],[100.513,-10.424],[100.467,-10.335],[100.421,-10.247],[100.375,-10.158],[100.329,-10.069],[100.283,-9.98],[100.146,-9.937],[100.013,-9.893],[99.967,-9.804],[99.921,-9.716],[99.875,-9.627],[99.829,-9.538],[99.783,-9.449],[99.737,-9.361],[99.692,-9.272],[99.65,-9.183],[99.512,-9.14],[99.375,-9.096],[99.329,-9.007],[99.288,-8.919],[99.15,-8.875],[99.017,-8.832],[98.971,-8.743],[98.925,-8.654],[98.788,-8.611],[98.654,-8.567],[98.517,-8.524],[98.383,-8.48],[98.246,-8.436],[98.113,-8.393],[98.067,-8.304],[98.021,-8.216],[97.887,-8.172],[97.75,-8.129],[97.704,-8.04],[97.663,-7.952],[97.525,-7.908],[97.392,-7.865],[97.346,-7.776],[97.3,-7.688],[97.254,-7.599],[97.208,-7.511],[97.075,-7.467],[96.942,-7.424],[96.896,-7.336],[96.85,-7.248],[96.717,-7.204],[96.579,-7.161],[96.538,-7.072],[96.492,-6.984],[96.446,-6.896],[96.4,-6.807],[96.267,-6.764],[96.133,-6.721],[96.088,-6.633],[96.042,-6.544],[95.908,-6.501],[95.771,-6.458],[95.637,-6.415],[95.504,-6.372],[95.367,-6.329],[95.233,-6.286],[95.188,-6.198],[95.142,-6.11],[95.008,-6.067],[94.875,-6.024],[94.829,-5.936],[94.783,-5.848],[94.65,-5.805],[94.517,-5.762],[94.471,-5.674],[94.425,-5.586],[94.292,-5.544],[94.158,-5.501],[94.113,-5.413],[94.067,-5.325],[93.933,-5.283],[93.8,-5.24],[93.754,-5.152],[93.708,-5.064],[93.663,-4.977],[93.621,-4.889],[93.483,-4.847],[93.35,-4.804],[93.304,-4.717],[93.263,-4.629],[93.129,-4.587],[92.992,-4.544],[92.95,-4.457],[92.904,-4.369],[92.858,-4.282],[92.813,-4.194],[92.767,-4.106],[92.725,-4.019],[92.679,-3.931],[92.633,-3.844],[92.588,-3.756],[92.633,-3.623],[92.675,-3.49],[92.629,-3.402],[92.588,-3.315],[92.629,-3.181],[92.675,-3.048],[92.717,-2.915],[92.763,-2.781],[92.717,-2.694],[92.671,-2.606],[92.713,-2.472],[92.758,-2.339],[92.8,-2.205],[92.846,-2.072],[92.888,-1.938],[92.929,-1.804],[92.975,-1.671],[93.017,-1.537],[93.058,-1.403],[93.104,-1.269],[93.146,-1.135],[93.188,-1.001],[93.233,-0.867],[93.321,-0.821],[93.408,-0.775],[93.45,-0.641],[93.496,-0.507],[93.583,-0.46],[93.671,-0.414],[93.758,-0.367],[93.85,-0.321],[93.892,-0.187],[93.933,-0.053],[94.021,-0.006],[94.113,0.04],[94.2,0.086],[94.288,0.133],[94.329,0.267],[94.375,0.401],[94.463,0.448],[94.55,0.494],[94.592,0.629],[94.637,0.763],[94.679,0.898],[94.721,1.032],[94.763,1.166],[94.717,1.254],[94.671,1.343],[94.713,1.477],[94.754,1.612],[94.708,1.7],[94.663,1.788],[94.617,1.876],[94.571,1.964],[94.521,2.052],[94.387,2.093],[94.254,2.134],[94.204,2.222],[94.158,2.31],[94.113,2.398],[94.067,2.486],[94.021,2.574],[93.975,2.661],[93.925,2.749],[93.879,2.837],[93.833,2.925],[93.788,3.013],[93.742,3.101],[93.692,3.188],[93.646,3.276],[93.6,3.364],[93.554,3.452],[93.504,3.539],[93.458,3.627],[93.413,3.715],[93.367,3.803],[93.317,3.891],[93.183,3.931],[93.046,3.971],[93,4.059],[92.954,4.147],[92.908,4.234],[92.858,4.322],[92.813,4.409],[92.767,4.497],[92.629,4.538],[92.496,4.578],[92.446,4.665],[92.4,4.753],[92.354,4.84],[92.304,4.928],[92.171,4.967],[92.033,5.007],[91.988,5.095],[91.938,5.182],[91.842,5.357],[91.796,5.444],[91.75,5.531],[91.613,5.571],[91.475,5.61],[91.429,5.698],[91.383,5.785],[91.333,5.872],[91.288,5.959],[91.15,5.998],[91.013,6.038],[90.967,6.124],[90.917,6.212],[90.783,6.251],[90.646,6.289],[90.596,6.376],[90.55,6.463],[90.5,6.55],[90.454,6.637],[90.404,6.724],[90.358,6.811],[90.221,6.85],[90.083,6.888],[90.038,6.975],[89.988,7.062],[89.938,7.148],[89.892,7.235],[89.754,7.273],[89.617,7.311],[89.571,7.398],[89.521,7.485],[89.471,7.571],[89.425,7.658],[89.375,7.744],[89.325,7.831],[89.188,7.869],[89.05,7.906],[89.004,7.993],[88.954,8.079],[88.904,8.166],[88.854,8.252],[88.721,8.289],[88.583,8.327],[88.533,8.413],[88.483,8.499],[88.346,8.536],[88.208,8.573],[88.158,8.659],[88.113,8.745],[87.975,8.782],[87.837,8.819],[87.788,8.905],[87.738,8.991],[87.6,9.027],[87.463,9.063],[87.413,9.149],[87.363,9.235],[87.313,9.321],[87.263,9.407],[87.125,9.443],[86.988,9.478],[86.938,9.564],[86.887,9.65],[86.838,9.735],[86.788,9.821],[86.738,9.906],[86.688,9.992],[86.637,10.078],[86.588,10.163],[86.446,10.198],[86.308,10.233],[86.258,10.319],[86.208,10.404],[86.158,10.489],[86.108,10.575],[86.058,10.66],[86.004,10.745],[85.867,10.78],[85.729,10.814],[85.679,10.9],[85.629,10.985],[85.488,11.019],[85.35,11.053],[85.3,11.138],[85.246,11.223],[85.196,11.308],[85.146,11.393],[85.004,11.427],[84.867,11.46],[84.817,11.545],[84.763,11.63],[84.713,11.714],[84.663,11.799],[84.608,11.884],[84.558,11.968],[84.504,12.053],[84.454,12.138],[84.313,12.171],[84.175,12.203],[84.121,12.288],[84.071,12.372],[84.017,12.456],[83.967,12.541],[83.825,12.573],[83.688,12.606],[83.633,12.69],[83.583,12.774],[83.529,12.858],[83.475,12.942],[83.425,13.026],[83.371,13.11],[83.317,13.194],[83.267,13.278],[83.125,13.31],[82.983,13.341],[82.933,13.425],[82.879,13.509],[82.825,13.593],[82.771,13.676],[82.721,13.76],[82.667,13.844],[82.525,13.874],[82.383,13.905],[82.329,13.989],[82.275,14.072],[82.138,14.103],[81.996,14.133],[81.942,14.216],[81.888,14.299],[81.833,14.383],[81.779,14.466],[81.638,14.496],[81.496,14.526],[81.442,14.609],[81.388,14.691],[81.333,14.774],[81.279,14.858],[81.225,14.94],[81.171,15.023],[81.029,15.052],[80.888,15.081],[80.829,15.164],[80.775,15.246],[80.721,15.329],[80.667,15.412],[80.613,15.494],[80.554,15.577],[80.5,15.659],[80.446,15.742],[80.392,15.824],[80.333,15.906],[80.279,15.989],[80.225,16.071],[80.167,16.153],[80.113,16.236],[80.058,16.318],[80,16.4],[79.946,16.482],[79.975,16.619],[80.008,16.756],[80.038,16.893],[80.071,17.03],[80.1,17.167],[80.133,17.304],[80.163,17.441],[80.196,17.578],[80.225,17.715],[80.258,17.852],[80.288,17.989],[80.375,18.044],[80.463,18.099],[80.496,18.236],[80.525,18.374],[80.613,18.428],[80.704,18.483],[80.733,18.62],[80.767,18.758],[80.854,18.813],[80.942,18.867],[81.029,18.922],[81.121,18.976],[81.15,19.114],[81.183,19.251],[81.271,19.306],[81.358,19.36],[81.45,19.415],[81.538,19.469],[81.625,19.524],[81.717,19.578],[81.804,19.632],[81.896,19.686],[81.983,19.741],[82.071,19.795],[82.104,19.932],[82.138,20.07],[82.225,20.124],[82.317,20.178],[82.35,20.316],[82.383,20.453],[82.471,20.507],[82.563,20.561],[82.596,20.699],[82.625,20.836],[82.717,20.89],[82.808,20.944],[82.842,21.082],[82.871,21.219],[82.963,21.273],[83.054,21.327],[83.146,21.381],[83.233,21.434],[83.325,21.488],[83.417,21.542],[83.45,21.679],[83.483,21.817],[83.575,21.871],[83.667,21.924],[83.7,22.062],[83.733,22.199],[83.767,22.337],[83.708,22.421],[83.742,22.559],[83.775,22.697],[83.717,22.781],[83.571,22.811],[83.421,22.842],[83.363,22.926],[83.304,23.01],[83.246,23.094],[83.188,23.178],[83.129,23.261],[83.071,23.345],[83.013,23.429],[82.95,23.513],[82.892,23.597],[82.833,23.681],[82.775,23.764],[82.717,23.848],[82.658,23.932],[82.596,24.015],[82.538,24.099],[82.479,24.183],[82.421,24.266],[82.358,24.349],[82.3,24.433],[82.242,24.516],[82.179,24.6],[82.121,24.683],[82.058,24.766],[82,24.85],[81.938,24.933],[81.879,25.016],[81.817,25.099],[81.758,25.183],[81.696,25.266],[81.638,25.349],[81.575,25.432],[81.517,25.515],[81.454,25.598],[81.392,25.681],[81.329,25.764],[81.271,25.847],[81.3,25.985],[81.333,26.124],[81.271,26.207],[81.208,26.289],[81.083,26.455]],[[-60.1,27.889],[-60.158,27.804],[-60.221,27.72],[-60.279,27.635],[-60.342,27.551],[-60.4,27.466],[-60.458,27.381],[-60.521,27.296],[-60.579,27.211],[-60.637,27.127],[-60.696,27.042],[-60.758,26.957],[-60.817,26.872],[-60.875,26.787],[-61.029,26.755],[-61.183,26.722],[-61.338,26.689],[-61.492,26.657],[-61.55,26.571],[-61.608,26.486],[-61.762,26.453],[-61.917,26.42],[-62.067,26.386],[-62.221,26.353],[-62.279,26.267],[-62.337,26.181],[-62.396,26.096],[-62.454,26.01],[-62.604,25.976],[-62.758,25.942],[-62.817,25.856],[-62.871,25.77],[-63.025,25.736],[-63.175,25.701],[-63.233,25.615],[-63.292,25.529],[-63.442,25.494],[-63.592,25.459],[-63.65,25.373],[-63.704,25.287],[-63.762,25.201],[-63.725,25.064],[-63.683,24.927],[-63.742,24.841],[-63.796,24.754],[-63.85,24.668],[-63.908,24.582],[-63.962,24.496],[-64.021,24.41],[-64.075,24.324],[-64.129,24.237],[-64.183,24.151],[-64.242,24.065],[-64.296,23.978],[-64.35,23.892],[-64.404,23.806],[-64.462,23.719],[-64.517,23.633],[-64.571,23.546],[-64.625,23.46],[-64.679,23.373],[-64.733,23.287],[-64.792,23.2],[-64.846,23.114],[-64.9,23.027],[-64.954,22.941],[-65.008,22.854],[-65.063,22.768],[-65.117,22.681],[-65.171,22.594],[-65.225,22.508],[-65.279,22.421],[-65.333,22.334],[-65.387,22.248],[-65.437,22.161],[-65.492,22.074],[-65.546,21.987],[-65.6,21.901],[-65.558,21.764],[-65.413,21.801],[-65.267,21.838],[-65.212,21.925],[-65.158,22.011],[-65.104,22.098],[-65.05,22.184],[-64.996,22.271],[-64.942,22.358],[-64.887,22.444],[-64.833,22.531],[-64.779,22.617],[-64.725,22.704],[-64.671,22.79],[-64.617,22.877],[-64.562,22.963],[-64.508,23.05],[-64.454,23.136],[-64.4,23.222],[-64.25,23.258],[-64.1,23.294],[-64.046,23.381],[-63.992,23.467],[-63.933,23.553],[-63.879,23.639],[-63.825,23.725],[-63.771,23.811],[-63.712,23.898],[-63.658,23.984],[-63.6,24.07],[-63.546,24.156],[-63.492,24.242],[-63.433,24.328],[-63.379,24.414],[-63.321,24.5],[-63.267,24.586],[-63.208,24.672],[-63.058,24.707],[-62.908,24.741],[-62.85,24.827],[-62.796,24.913],[-62.646,24.947],[-62.492,24.981],[-62.437,25.067],[-62.379,25.153],[-62.225,25.186],[-62.075,25.22],[-62.017,25.306],[-61.958,25.391],[-61.904,25.476],[-61.846,25.562],[-61.692,25.595],[-61.542,25.628],[-61.388,25.661],[-61.233,25.694],[-61.083,25.726],[-60.929,25.759],[-60.775,25.791],[-60.625,25.823],[-60.471,25.855],[-60.317,25.887],[-60.163,25.918],[-60.071,25.865],[-59.975,25.812],[-59.825,25.843],[-59.762,25.928],[-59.613,25.959],[-59.704,26.012],[-59.458,25.989],[-59.396,26.074],[-59.433,26.212],[-59.525,26.265],[-59.467,26.349],[-59.404,26.434],[-59.346,26.518],[-59.287,26.602],[-59.225,26.686],[-59.167,26.771],[-59.2,26.909],[-59.233,27.047],[-59.175,27.131],[-59.113,27.215],[-59.146,27.353],[-59.179,27.491],[-59.217,27.629],[-59.25,27.767],[-59.283,27.905],[-59.317,28.043],[-59.258,28.128],[-59.196,28.212],[-59.133,28.296],[-59.075,28.38],[-59.012,28.464],[-58.95,28.548],[-58.887,28.632],[-58.829,28.716],[-58.863,28.854],[-58.896,28.993],[-58.833,29.077],[-58.771,29.161],[-58.708,29.245],[-58.646,29.329],[-58.583,29.412],[-58.521,29.496],[-58.458,29.58],[-58.396,29.664],[-58.333,29.748],[-58.271,29.831],[-58.208,29.915],[-58.146,29.999],[-58.083,30.082],[-58.017,30.166],[-57.954,30.249],[-57.892,30.333],[-57.829,30.416],[-57.762,30.5],[-57.7,30.583],[-57.638,30.667],[-57.571,30.75],[-57.508,30.833],[-57.442,30.917],[-57.379,31],[-57.312,31.083],[-57.25,31.166],[-57.183,31.249],[-57.121,31.333],[-57.054,31.416],[-56.988,31.499],[-56.925,31.582],[-56.858,31.664],[-56.792,31.748],[-56.725,31.83],[-56.658,31.913],[-56.596,31.996],[-56.529,32.079],[-56.462,32.161],[-56.396,32.244],[-56.329,32.327],[-56.262,32.409],[-56.196,32.492],[-56.129,32.575],[-56.062,32.657],[-55.996,32.74],[-55.929,32.822],[-55.858,32.904],[-55.792,32.987],[-55.725,33.069],[-55.658,33.151],[-55.587,33.234],[-55.521,33.316],[-55.454,33.398],[-55.383,33.48],[-55.317,33.562],[-55.25,33.644],[-55.179,33.726],[-55.113,33.808],[-55.042,33.89],[-54.971,33.972],[-55,34.111],[-55.033,34.251],[-54.962,34.333],[-54.892,34.414],[-54.921,34.554],[-54.95,34.693],[-54.883,34.775],[-54.812,34.856],[-54.742,34.938],[-54.671,35.02],[-54.6,35.101],[-54.529,35.183],[-54.558,35.323],[-54.587,35.462],[-54.517,35.544],[-54.446,35.625],[-54.475,35.764],[-54.504,35.904],[-54.679,35.88],[-54.75,35.798],[-54.821,35.717],[-54.892,35.635],[-54.962,35.553],[-55.033,35.471],[-55.1,35.389],[-55.071,35.25],[-55.042,35.111],[-55.113,35.029],[-55.183,34.947],[-55.25,34.865],[-55.321,34.783],[-55.392,34.701],[-55.458,34.619],[-55.429,34.479],[-55.4,34.34],[-55.467,34.258],[-55.537,34.176],[-55.504,34.037],[-55.475,33.898],[-55.546,33.816],[-55.613,33.733],[-55.679,33.651],[-55.75,33.569],[-55.817,33.486],[-55.883,33.404],[-55.954,33.322],[-56.021,33.239],[-56.087,33.157],[-56.154,33.074],[-56.221,32.991],[-56.292,32.909],[-56.358,32.826],[-56.425,32.744],[-56.492,32.661],[-56.558,32.578],[-56.625,32.495],[-56.787,32.468],[-56.954,32.441],[-57.017,32.358],[-57.083,32.275],[-57.15,32.192],[-57.217,32.109],[-57.279,32.026],[-57.346,31.943],[-57.413,31.859],[-57.475,31.776],[-57.542,31.693],[-57.508,31.554],[-57.475,31.416],[-57.542,31.332],[-57.604,31.249],[-57.671,31.166],[-57.733,31.082],[-57.8,30.999],[-57.863,30.915],[-57.925,30.832],[-57.992,30.748],[-58.054,30.665],[-58.117,30.581],[-58.183,30.498],[-58.246,30.414],[-58.308,30.33],[-58.371,30.246],[-58.433,30.162],[-58.5,30.079],[-58.562,29.995],[-58.625,29.911],[-58.687,29.827],[-58.75,29.743],[-58.812,29.659],[-58.875,29.575],[-58.937,29.491],[-59,29.407],[-59.062,29.323],[-59.121,29.239],[-59.183,29.155],[-59.342,29.125],[-59.5,29.094],[-59.562,29.01],[-59.625,28.926],[-59.683,28.841],[-59.746,28.757],[-59.808,28.672],[-59.771,28.534],[-59.738,28.396],[-59.796,28.312],[-59.858,28.228],[-59.917,28.143],[-59.979,28.058],[-60.037,27.974],[-60.1,27.889]],[[-83.863,-9.685],[-83.908,-9.773],[-83.867,-9.909],[-83.825,-10.044],[-83.783,-10.179],[-83.742,-10.314],[-83.65,-10.361],[-83.608,-10.496],[-83.567,-10.632],[-83.475,-10.678],[-83.387,-10.725],[-83.296,-10.772],[-83.208,-10.819],[-83.117,-10.866],[-83.025,-10.912],[-82.937,-10.959],[-82.846,-11.006],[-82.708,-10.964],[-82.571,-10.922],[-82.433,-10.88],[-82.296,-10.838],[-82.158,-10.796],[-82.021,-10.754],[-81.975,-10.666],[-81.925,-10.577],[-81.787,-10.535],[-81.654,-10.493],[-81.604,-10.404],[-81.558,-10.316],[-81.512,-10.227],[-81.554,-10.092],[-81.596,-9.957],[-81.55,-9.869],[-81.592,-9.734],[-81.683,-9.687],[-81.771,-9.641],[-81.863,-9.594],[-81.95,-9.548],[-82.042,-9.502],[-82.133,-9.455],[-82.221,-9.409],[-82.312,-9.362],[-82.446,-9.404],[-82.583,-9.446],[-82.675,-9.399],[-82.763,-9.352],[-82.854,-9.306],[-82.942,-9.259],[-83.079,-9.301],[-83.217,-9.343],[-83.354,-9.384],[-83.492,-9.426],[-83.629,-9.467],[-83.767,-9.508],[-83.813,-9.597],[-83.863,-9.685]],[[-98.187,-24.38],[-98.246,-24.464],[-98.217,-24.602],[-98.183,-24.74],[-98.154,-24.878],[-98.121,-25.016],[-98.183,-25.099],[-98.242,-25.183],[-98.208,-25.321],[-98.179,-25.459],[-98.238,-25.542],[-98.3,-25.626],[-98.363,-25.709],[-98.421,-25.792],[-98.483,-25.875],[-98.546,-25.958],[-98.608,-26.041],[-98.667,-26.124],[-98.637,-26.262],[-98.604,-26.401],[-98.667,-26.483],[-98.637,-26.622],[-98.542,-26.677],[-98.45,-26.733],[-98.358,-26.788],[-98.2,-26.76],[-98.142,-26.677],[-97.983,-26.649],[-97.829,-26.621],[-97.771,-26.537],[-97.708,-26.454],[-97.646,-26.37],[-97.587,-26.287],[-97.433,-26.258],[-97.279,-26.229],[-97.217,-26.145],[-97.158,-26.061],[-97.004,-26.032],[-96.85,-26.002],[-96.787,-25.918],[-96.729,-25.834],[-96.575,-25.804],[-96.421,-25.774],[-96.363,-25.69],[-96.396,-25.552],[-96.429,-25.414],[-96.462,-25.276],[-96.496,-25.138],[-96.529,-25],[-96.562,-24.862],[-96.658,-24.808],[-96.75,-24.754],[-96.842,-24.7],[-96.933,-24.646],[-97.029,-24.592],[-97.121,-24.538],[-97.212,-24.484],[-97.304,-24.429],[-97.396,-24.375],[-97.488,-24.32],[-97.579,-24.266],[-97.733,-24.295],[-97.883,-24.324],[-98.037,-24.352],[-98.187,-24.38]],[[-95.988,-29.815],[-96.05,-29.899],[-96.013,-30.037],[-95.979,-30.176],[-96.042,-30.26],[-96.104,-30.344],[-96.067,-30.482],[-96.033,-30.62],[-96.096,-30.705],[-96.158,-30.789],[-96.121,-30.927],[-96.087,-31.065],[-96.05,-31.203],[-96.017,-31.341],[-95.979,-31.479],[-95.879,-31.533],[-95.779,-31.587],[-95.683,-31.64],[-95.583,-31.694],[-95.483,-31.747],[-95.383,-31.801],[-95.283,-31.854],[-95.121,-31.822],[-95.158,-31.684],[-95.258,-31.631],[-95.196,-31.546],[-95.133,-31.462],[-95.171,-31.324],[-95.271,-31.271],[-95.371,-31.217],[-95.404,-31.08],[-95.442,-30.942],[-95.479,-30.804],[-95.417,-30.719],[-95.354,-30.635],[-95.392,-30.497],[-95.425,-30.359],[-95.462,-30.221],[-95.5,-30.083],[-95.437,-29.998],[-95.375,-29.914],[-95.312,-29.829],[-95.254,-29.744],[-95.287,-29.607],[-95.387,-29.553],[-95.546,-29.584],[-95.704,-29.616],[-95.863,-29.646],[-95.925,-29.731],[-95.988,-29.815]],[[-100.504,-34.111],[-100.571,-34.193],[-100.642,-34.275],[-100.712,-34.357],[-100.779,-34.438],[-100.85,-34.52],[-100.921,-34.602],[-100.992,-34.683],[-101.062,-34.765],[-101.133,-34.846],[-101.2,-34.928],[-101.271,-35.009],[-101.342,-35.091],[-101.417,-35.172],[-101.583,-35.195],[-101.754,-35.218],[-101.829,-35.299],[-101.9,-35.38],[-102.071,-35.402],[-102.242,-35.424],[-102.413,-35.446],[-102.583,-35.468],[-102.658,-35.548],[-102.633,-35.688],[-102.533,-35.747],[-102.433,-35.806],[-102.333,-35.865],[-102.233,-35.924],[-102.133,-35.983],[-102.033,-36.042],[-101.933,-36.101],[-101.762,-36.078],[-101.588,-36.055],[-101.687,-35.997],[-101.488,-36.113],[-101.387,-36.172],[-101.212,-36.148],[-101.042,-36.125],[-100.867,-36.101],[-100.696,-36.077],[-100.525,-36.053],[-100.35,-36.028],[-100.179,-36.003],[-100.008,-35.978],[-99.837,-35.953],[-99.767,-35.871],[-99.696,-35.788],[-99.625,-35.706],[-99.554,-35.624],[-99.488,-35.541],[-99.417,-35.459],[-99.346,-35.376],[-99.279,-35.294],[-99.208,-35.211],[-99.142,-35.128],[-98.971,-35.102],[-98.8,-35.075],[-98.733,-34.992],[-98.663,-34.909],[-98.596,-34.826],[-98.529,-34.743],[-98.462,-34.66],[-98.392,-34.577],[-98.325,-34.494],[-98.358,-34.355],[-98.458,-34.3],[-98.558,-34.244],[-98.592,-34.105],[-98.625,-33.966],[-98.658,-33.827],[-98.692,-33.689],[-98.725,-33.55],[-98.754,-33.411],[-98.788,-33.272],[-98.821,-33.133],[-98.85,-32.995],[-98.883,-32.856],[-98.917,-32.717],[-98.946,-32.578],[-99.046,-32.522],[-99.142,-32.466],[-99.175,-32.327],[-99.337,-32.353],[-99.404,-32.436],[-99.475,-32.518],[-99.542,-32.601],[-99.608,-32.683],[-99.575,-32.822],[-99.546,-32.961],[-99.613,-33.044],[-99.679,-33.126],[-99.75,-33.208],[-99.817,-33.291],[-99.883,-33.373],[-99.954,-33.455],[-100.021,-33.537],[-100.087,-33.619],[-100.158,-33.701],[-100.225,-33.783],[-100.296,-33.866],[-100.363,-33.947],[-100.433,-34.029],[-100.504,-34.111]],[[-110.254,-35.586],[-110.333,-35.661],[-110.413,-35.736],[-110.492,-35.81],[-110.575,-35.885],[-110.562,-36.026],[-110.55,-36.166],[-110.633,-36.241],[-110.621,-36.381],[-110.525,-36.447],[-110.433,-36.513],[-110.342,-36.579],[-110.246,-36.645],[-110.071,-36.636],[-109.896,-36.626],[-109.721,-36.616],[-109.546,-36.606],[-109.371,-36.596],[-109.196,-36.585],[-109.113,-36.509],[-109.033,-36.433],[-108.954,-36.357],[-108.875,-36.282],[-108.796,-36.206],[-108.717,-36.129],[-108.637,-36.053],[-108.558,-35.977],[-108.383,-35.965],[-108.208,-35.952],[-108.129,-35.876],[-108.054,-35.799],[-107.975,-35.723],[-107.992,-35.582],[-108.008,-35.442],[-108.025,-35.301],[-108.042,-35.161],[-108.133,-35.097],[-108.229,-35.033],[-108.325,-34.969],[-108.496,-34.982],[-108.667,-34.994],[-108.837,-35.006],[-109.008,-35.017],[-109.179,-35.028],[-109.354,-35.039],[-109.429,-35.115],[-109.508,-35.19],[-109.587,-35.266],[-109.667,-35.341],[-109.842,-35.351],[-110.013,-35.361],[-110.092,-35.436],[-110.171,-35.511],[-110.254,-35.586]],[[-104.163,-39.148],[-104.137,-39.289],[-104.113,-39.429],[-104.087,-39.569],[-104.062,-39.709],[-104.037,-39.849],[-104.012,-39.989],[-104.092,-40.069],[-104.171,-40.148],[-104.254,-40.228],[-104.333,-40.307],[-104.412,-40.387],[-104.492,-40.466],[-104.467,-40.606],[-104.442,-40.746],[-104.525,-40.826],[-104.604,-40.905],[-104.683,-40.984],[-104.767,-41.063],[-104.742,-41.204],[-104.717,-41.344],[-104.8,-41.423],[-104.883,-41.502],[-104.858,-41.642],[-104.833,-41.782],[-104.808,-41.923],[-104.704,-41.984],[-104.596,-42.045],[-104.571,-42.185],[-104.55,-42.326],[-104.442,-42.386],[-104.333,-42.447],[-104.225,-42.508],[-104.117,-42.569],[-104.008,-42.629],[-103.9,-42.69],[-103.875,-42.83],[-103.85,-42.97],[-103.821,-43.11],[-103.904,-43.189],[-103.988,-43.269],[-104.071,-43.349],[-104.154,-43.428],[-104.238,-43.508],[-104.321,-43.587],[-104.296,-43.727],[-104.267,-43.867],[-104.354,-43.947],[-104.437,-44.026],[-104.521,-44.106],[-104.608,-44.185],[-104.692,-44.264],[-104.779,-44.343],[-104.863,-44.422],[-105.058,-44.44],[-105.254,-44.457],[-105.454,-44.474],[-105.65,-44.491],[-105.738,-44.569],[-105.712,-44.71],[-105.604,-44.772],[-105.492,-44.834],[-105.379,-44.895],[-105.183,-44.878],[-104.983,-44.861],[-104.787,-44.843],[-104.587,-44.825],[-104.392,-44.806],[-104.308,-44.727],[-104.221,-44.647],[-104.025,-44.628],[-103.829,-44.609],[-103.742,-44.529],[-103.658,-44.449],[-103.575,-44.37],[-103.492,-44.29],[-103.296,-44.269],[-103.1,-44.249],[-103.017,-44.169],[-102.933,-44.088],[-102.854,-44.008],[-102.883,-43.868],[-102.913,-43.729],[-102.829,-43.648],[-102.746,-43.568],[-102.775,-43.428],[-102.804,-43.288],[-102.725,-43.208],[-102.642,-43.127],[-102.563,-43.047],[-102.483,-42.966],[-102.4,-42.885],[-102.321,-42.805],[-102.242,-42.724],[-102.163,-42.643],[-102.083,-42.562],[-102,-42.481],[-101.921,-42.4],[-101.842,-42.319],[-101.762,-42.238],[-101.687,-42.157],[-101.608,-42.076],[-101.529,-41.995],[-101.45,-41.913],[-101.371,-41.832],[-101.296,-41.751],[-101.217,-41.669],[-101.25,-41.53],[-101.279,-41.391],[-101.204,-41.309],[-101.125,-41.228],[-101.158,-41.088],[-101.187,-40.949],[-101.221,-40.809],[-101.329,-40.751],[-101.433,-40.693],[-101.467,-40.554],[-101.496,-40.414],[-101.604,-40.356],[-101.708,-40.298],[-101.738,-40.158],[-101.767,-40.019],[-101.875,-39.96],[-101.979,-39.901],[-102.008,-39.762],[-102.037,-39.622],[-102.142,-39.563],[-102.246,-39.504],[-102.354,-39.446],[-102.533,-39.467],[-102.717,-39.488],[-102.821,-39.429],[-102.921,-39.369],[-103.025,-39.31],[-103.129,-39.25],[-103.233,-39.19],[-103.337,-39.131],[-103.442,-39.071],[-103.542,-39.011],[-103.646,-38.951],[-103.75,-38.89],[-103.929,-38.91],[-104.008,-38.989],[-104.083,-39.069],[-104.163,-39.148]],[[-168.162,-60.999],[-168.371,-60.998],[-168.575,-60.997],[-168.783,-60.996],[-168.987,-60.994],[-169.196,-60.992],[-169.4,-60.99],[-169.608,-60.987],[-169.813,-60.984],[-170.021,-60.981],[-170.233,-61.077],[-170.242,-61.177],[-170.25,-61.277],[-170.467,-61.372],[-170.683,-61.468],[-170.904,-61.563],[-170.912,-61.663],[-170.925,-61.763],[-171.146,-61.858],[-171.371,-61.952],[-171.596,-62.046],[-171.608,-62.146],[-171.833,-62.24],[-171.846,-62.339],[-171.862,-62.439],[-171.875,-62.539],[-171.887,-62.639],[-171.904,-62.739],[-172.137,-62.832],[-172.15,-62.932],[-172.167,-63.031],[-172.179,-63.131],[-172.196,-63.231],[-172.212,-63.331],[-172.225,-63.431],[-172.242,-63.53],[-172.258,-63.63],[-172.275,-63.73],[-172.287,-63.829],[-172.304,-63.929],[-172.321,-64.029],[-172.337,-64.129],[-172.354,-64.229],[-172.371,-64.328],[-172.387,-64.428],[-172.404,-64.528],[-172.421,-64.627],[-172.437,-64.727],[-172.454,-64.827],[-172.471,-64.927],[-172.254,-65.034],[-172.237,-64.934],[-172.017,-65.04],[-172.033,-65.14],[-171.796,-65.147],[-171.571,-65.252],[-171.558,-65.153],[-171.333,-65.258],[-171.096,-65.264],[-170.858,-65.269],[-170.617,-65.273],[-170.608,-65.173],[-170.371,-65.178],[-170.362,-65.077],[-170.35,-64.978],[-170.117,-64.982],[-170.108,-64.882],[-169.871,-64.885],[-169.862,-64.785],[-169.621,-64.688],[-169.617,-64.588],[-169.383,-64.591],[-169.375,-64.491],[-169.142,-64.393],[-168.904,-64.295],[-168.675,-64.297],[-168.671,-64.197],[-168.442,-64.198],[-168.212,-64.199],[-167.983,-64.2],[-167.75,-64.2],[-167.525,-64.1],[-167.296,-64.099],[-167.296,-63.999],[-167.067,-63.998],[-166.842,-63.997],[-166.612,-63.996],[-166.383,-63.994],[-166.387,-63.894],[-166.163,-63.891],[-165.942,-63.789],[-165.717,-63.786],[-165.487,-63.782],[-165.262,-63.779],[-165.271,-63.679],[-165.046,-63.675],[-165.054,-63.575],[-164.829,-63.571],[-164.608,-63.566],[-164.617,-63.466],[-164.396,-63.461],[-164.171,-63.456],[-163.946,-63.45],[-163.958,-63.35],[-163.737,-63.344],[-163.517,-63.338],[-163.529,-63.238],[-163.546,-63.138],[-163.558,-63.038],[-163.337,-63.031],[-163.354,-62.932],[-163.133,-62.925],[-163.15,-62.825],[-162.933,-62.818],[-162.95,-62.718],[-162.962,-62.618],[-162.979,-62.519],[-162.996,-62.419],[-163.012,-62.319],[-163.029,-62.219],[-163.042,-62.119],[-163.058,-62.02],[-163.075,-61.92],[-163.092,-61.82],[-163.104,-61.721],[-163.329,-61.628],[-163.346,-61.528],[-163.358,-61.428],[-163.567,-61.435],[-163.788,-61.341],[-163.8,-61.242],[-164.021,-61.148],[-164.033,-61.048],[-164.25,-60.954],[-164.467,-60.859],[-164.671,-60.864],[-164.887,-60.769],[-165.1,-60.673],[-165.304,-60.677],[-165.508,-60.681],[-165.712,-60.684],[-165.912,-60.687],[-166.112,-60.79],[-166.312,-60.892],[-166.521,-60.894],[-166.725,-60.896],[-166.929,-60.897],[-167.137,-60.898],[-167.342,-60.999],[-167.546,-61],[-167.75,-61],[-167.958,-61],[-168.162,-60.999]]]]}},{"type":"Feature","id":"ol2","properties":{},"geometry":{"type":"MultiPolygon","coordinates":[[[[86.713,31.959],[86.875,31.926],[86.938,31.84],[86.996,31.754],[86.958,31.617],[86.858,31.566],[86.696,31.599],[86.633,31.685],[86.575,31.771],[86.613,31.908],[86.713,31.959]],[[84.213,33.834],[84.279,33.749],[84.342,33.665],[84.304,33.527],[84.204,33.473],[84.038,33.504],[83.871,33.534],[83.808,33.619],[83.742,33.703],[83.779,33.841],[83.879,33.895],[83.983,33.949],[84.15,33.918],[84.213,33.834]],[[81.442,34.244],[81.508,34.161],[81.475,34.022],[81.542,33.939],[81.608,33.856],[81.575,33.717],[81.475,33.662],[81.442,33.523],[81.413,33.384],[81.379,33.245],[81.346,33.106],[81.313,32.968],[81.283,32.829],[81.183,32.773],[81.017,32.8],[80.921,32.744],[80.754,32.77],[80.688,32.853],[80.521,32.879],[80.454,32.961],[80.387,33.044],[80.221,33.069],[80.154,33.151],[80.183,33.291],[80.117,33.373],[80.146,33.512],[80.175,33.651],[80.275,33.708],[80.308,33.847],[80.337,33.986],[80.438,34.043],[80.604,34.017],[80.637,34.156],[80.738,34.212],[80.838,34.268],[80.938,34.324],[81.038,34.381],[81.204,34.354],[81.371,34.327],[81.442,34.244]],[[82.421,35.38],[82.488,35.297],[82.454,35.158],[82.35,35.103],[82.183,35.132],[82.013,35.16],[81.946,35.243],[81.979,35.382],[82.083,35.437],[82.183,35.492],[82.354,35.464],[82.421,35.38]],[[79.213,33.579],[79.283,33.497],[79.254,33.358],[79.225,33.218],[79.125,33.161],[79.029,33.103],[78.929,33.045],[78.833,32.988],[78.738,32.929],[78.571,32.953],[78.5,33.034],[78.433,33.115],[78.363,33.197],[78.392,33.336],[78.321,33.417],[78.35,33.557],[78.446,33.615],[78.542,33.673],[78.642,33.731],[78.738,33.789],[78.908,33.766],[78.975,33.684],[79.142,33.66],[79.213,33.579]],[[77.392,41.908],[77.475,41.827],[77.554,41.746],[77.525,41.606],[77.604,41.526],[77.575,41.386],[77.467,41.327],[77.438,41.187],[77.517,41.107],[77.596,41.026],[77.671,40.945],[77.75,40.864],[77.829,40.784],[77.904,40.703],[77.983,40.622],[78.058,40.541],[78.029,40.401],[78,40.262],[77.896,40.203],[77.792,40.144],[77.608,40.166],[77.425,40.187],[77.317,40.128],[77.138,40.149],[77.058,40.229],[76.875,40.25],[76.692,40.271],[76.508,40.291],[76.429,40.371],[76.325,40.31],[76.142,40.33],[76.038,40.269],[75.933,40.209],[75.829,40.148],[75.725,40.088],[75.621,40.027],[75.438,40.045],[75.333,39.984],[75.15,40.002],[75.046,39.941],[74.863,39.958],[74.679,39.976],[74.496,39.993],[74.417,40.071],[74.233,40.088],[74.15,40.166],[74.071,40.244],[73.988,40.322],[73.908,40.401],[73.929,40.541],[73.95,40.681],[73.971,40.822],[73.888,40.9],[73.908,41.041],[74.013,41.103],[74.033,41.244],[73.95,41.322],[73.867,41.4],[73.783,41.478],[73.7,41.556],[73.617,41.634],[73.533,41.712],[73.346,41.727],[73.258,41.804],[73.175,41.882],[73.092,41.96],[73.004,42.037],[72.921,42.115],[72.938,42.255],[72.958,42.396],[72.979,42.537],[72.892,42.614],[72.804,42.691],[72.721,42.769],[72.633,42.846],[72.546,42.923],[72.458,43],[72.267,43.013],[72.179,43.09],[72.092,43.167],[71.896,43.179],[71.808,43.256],[71.721,43.333],[71.525,43.344],[71.438,43.421],[71.35,43.497],[71.258,43.573],[71.171,43.649],[71.183,43.79],[71.292,43.855],[71.308,43.996],[71.413,44.061],[71.608,44.049],[71.804,44.037],[72,44.025],[72.196,44.012],[72.392,43.999],[72.5,44.063],[72.696,44.049],[72.783,43.972],[72.871,43.895],[72.958,43.817],[73.154,43.803],[73.242,43.725],[73.329,43.648],[73.525,43.633],[73.608,43.555],[73.804,43.539],[73.996,43.524],[74.104,43.586],[74.3,43.57],[74.492,43.553],[74.579,43.474],[74.663,43.396],[74.75,43.317],[74.725,43.177],[74.808,43.098],[74.892,43.019],[74.979,42.94],[75.063,42.861],[75.146,42.783],[75.229,42.703],[75.313,42.624],[75.396,42.545],[75.475,42.466],[75.558,42.386],[75.642,42.307],[75.725,42.228],[75.804,42.148],[75.887,42.069],[75.967,41.989],[76.158,41.97],[76.346,41.95],[76.454,42.011],[76.642,41.991],[76.75,42.05],[76.938,42.03],[77.125,42.009],[77.313,41.988],[77.392,41.908]],[[76.533,41.431],[76.613,41.351],[76.692,41.271],[76.771,41.19],[76.667,41.131],[76.558,41.071],[76.533,40.931],[76.429,40.871],[76.321,40.81],[76.217,40.75],[76.113,40.69],[76.033,40.769],[75.95,40.849],[75.871,40.929],[75.792,41.008],[75.713,41.088],[75.629,41.167],[75.55,41.246],[75.467,41.326],[75.575,41.387],[75.6,41.527],[75.517,41.606],[75.625,41.667],[75.704,41.588],[75.892,41.569],[76,41.629],[76.188,41.61],[76.158,41.47],[76.346,41.451],[76.454,41.511],[76.533,41.431]],[[35.313,57.404],[35.483,57.369],[35.658,57.334],[35.829,57.299],[35.938,57.169],[36.042,57.04],[36.146,56.911],[36.25,56.782],[36.188,56.689],[36.121,56.595],[36.054,56.502],[35.821,56.444],[35.758,56.351],[35.525,56.293],[35.358,56.328],[35.125,56.268],[34.958,56.303],[34.725,56.243],[34.558,56.277],[34.329,56.216],[34.158,56.249],[33.992,56.283],[33.821,56.315],[33.592,56.253],[33.421,56.285],[33.25,56.317],[33.138,56.444],[33.025,56.57],[32.908,56.696],[32.967,56.791],[32.85,56.918],[32.908,57.013],[32.967,57.108],[33.2,57.171],[33.258,57.266],[33.492,57.328],[33.729,57.391],[33.963,57.453],[34.2,57.514],[34.375,57.481],[34.613,57.541],[34.787,57.507],[34.963,57.473],[35.138,57.439],[35.313,57.404]],[[23.783,60.798],[24.021,60.879],[24.225,60.861],[24.388,60.744],[24.55,60.627],[24.508,60.529],[24.471,60.43],[24.433,60.332],[24.2,60.253],[23.963,60.172],[23.767,60.19],[23.567,60.208],[23.371,60.225],[23.204,60.341],[23.242,60.439],[23.275,60.538],[23.308,60.636],[23.546,60.718],[23.783,60.798]],[[13.875,60.59],[14.079,60.587],[14.283,60.584],[14.488,60.581],[14.683,60.477],[14.675,60.377],[14.667,60.277],[14.458,60.181],[14.258,60.184],[14.05,60.087],[13.846,59.99],[13.646,59.992],[13.45,60.094],[13.454,60.194],[13.458,60.294],[13.462,60.394],[13.667,60.492],[13.875,60.59]],[[6.921,63.201],[7.121,63.309],[7.346,63.316],[7.567,63.324],[7.788,63.331],[8.025,63.238],[8.263,63.144],[8.275,63.044],[8.288,62.945],[8.3,62.845],[8.317,62.745],[8.329,62.645],[8.342,62.545],[8.354,62.446],[8.154,62.339],[8.167,62.24],[8.179,62.14],[7.979,62.034],[7.783,61.927],[7.588,61.82],[7.392,61.713],[7.196,61.606],[7.004,61.498],[6.813,61.39],[6.625,61.282],[6.417,61.273],[6.208,61.264],[6,61.255],[5.775,61.344],[5.546,61.434],[5.525,61.533],[5.5,61.633],[5.271,61.721],[5.246,61.821],[5.433,61.931],[5.413,62.03],[5.179,62.119],[5.154,62.218],[5.129,62.318],[5.108,62.417],[5.296,62.527],[5.275,62.627],[5.467,62.737],[5.663,62.847],[5.858,62.956],[6.079,62.966],[6.275,63.075],[6.496,63.084],[6.7,63.192],[6.921,63.201]],[[1.629,64.221],[1.854,64.237],[2.083,64.253],[2.308,64.268],[2.571,64.184],[2.833,64.1],[3.092,64.016],[3.346,63.931],[3.379,63.832],[3.633,63.746],[3.887,63.66],[3.917,63.561],[4.167,63.474],[4.196,63.375],[4.442,63.288],[4.471,63.189],[4.496,63.089],[4.521,62.99],[4.55,62.891],[4.575,62.792],[4.383,62.68],[4.413,62.581],[4.221,62.469],[4.008,62.457],[3.792,62.444],[3.579,62.431],[3.367,62.418],[3.183,62.304],[2.967,62.29],[2.754,62.276],[2.575,62.162],[2.363,62.147],[2.154,62.132],[1.942,62.116],[1.763,62.001],[1.554,61.985],[1.379,61.87],[1.171,61.853],[1,61.737],[0.829,61.621],[0.867,61.523],[0.9,61.424],[0.938,61.326],[0.975,61.227],[0.808,61.111],[0.842,61.013],[0.675,60.897],[0.513,60.781],[0.346,60.664],[0.146,60.646],[-0.012,60.529],[-0.254,60.608],[-0.454,60.588],[-0.692,60.667],[-0.933,60.745],[-1.175,60.822],[-1.217,60.92],[-1.462,60.997],[-1.508,61.095],[-1.55,61.192],[-1.596,61.29],[-1.842,61.366],[-2.092,61.442],[-2.296,61.42],[-2.5,61.398],[-2.75,61.472],[-2.954,61.449],[-3.208,61.523],[-3.413,61.499],[-3.667,61.572],[-3.921,61.644],[-4.179,61.716],[-4.383,61.691],[-4.642,61.762],[-4.696,61.859],[-4.75,61.955],[-4.804,62.052],[-4.863,62.148],[-4.708,62.271],[-4.5,62.297],[-4.35,62.419],[-4.138,62.444],[-3.983,62.566],[-3.771,62.59],[-3.562,62.615],[-3.404,62.736],[-3.192,62.76],[-3.029,62.88],[-2.817,62.904],[-2.654,63.024],[-2.704,63.121],[-2.537,63.241],[-2.321,63.264],[-2.154,63.384],[-2.204,63.481],[-2.033,63.601],[-1.812,63.623],[-1.642,63.741],[-1.471,63.86],[-1.246,63.881],[-1.025,63.902],[-0.804,63.922],[-0.579,63.942],[-0.358,63.961],[-0.133,63.981],[0.092,63.999],[0.317,64.018],[0.538,64.036],[0.763,64.054],[0.95,64.17],[1.175,64.187],[1.4,64.204],[1.629,64.221]],[[-9.446,61.374],[-9.246,61.407],[-9.05,61.439],[-8.783,61.376],[-8.587,61.408],[-8.321,61.344],[-8.125,61.376],[-7.863,61.311],[-7.796,61.216],[-7.537,61.151],[-7.475,61.056],[-7.413,60.96],[-7.55,60.835],[-7.683,60.709],[-7.813,60.584],[-8.008,60.553],[-8.2,60.522],[-8.396,60.491],[-8.587,60.459],[-8.717,60.333],[-8.904,60.301],[-9.096,60.269],[-9.287,60.236],[-9.479,60.204],[-9.6,60.076],[-9.725,59.949],[-9.846,59.821],[-10.033,59.788],[-10.154,59.66],[-10.337,59.626],[-10.525,59.592],[-10.708,59.557],[-10.896,59.522],[-11.15,59.581],[-11.404,59.639],[-11.658,59.697],[-11.917,59.754],[-11.988,59.847],[-12.062,59.94],[-12.133,60.033],[-12.208,60.126],[-12.283,60.219],[-12.167,60.349],[-12.054,60.478],[-11.937,60.608],[-11.75,60.644],[-11.558,60.68],[-11.367,60.716],[-11.175,60.751],[-10.983,60.786],[-10.863,60.915],[-10.671,60.95],[-10.479,60.984],[-10.283,61.018],[-10.158,61.146],[-9.962,61.18],[-9.767,61.214],[-9.642,61.341],[-9.446,61.374]],[[-30.342,57.729],[-30.192,57.789],[-30.042,57.849],[-29.892,57.908],[-29.742,57.968],[-29.587,58.027],[-29.325,58.006],[-29.171,58.064],[-29.021,58.123],[-28.754,58.1],[-28.6,58.159],[-28.337,58.135],[-28.075,58.111],[-27.808,58.086],[-27.546,58.061],[-27.437,57.979],[-27.333,57.896],[-27.071,57.87],[-26.967,57.788],[-26.863,57.705],[-26.6,57.677],[-26.496,57.594],[-26.392,57.511],[-26.292,57.428],[-26.187,57.345],[-26.087,57.261],[-25.829,57.233],[-25.575,57.203],[-25.421,57.258],[-25.262,57.312],[-25.208,57.45],[-25.15,57.588],[-25.096,57.726],[-25.037,57.864],[-24.879,57.918],[-24.821,58.056],[-24.663,58.109],[-24.6,58.248],[-24.442,58.301],[-24.179,58.269],[-24.017,58.321],[-23.854,58.374],[-23.692,58.426],[-23.429,58.392],[-23.267,58.444],[-23.104,58.496],[-22.842,58.461],[-22.675,58.512],[-22.413,58.476],[-22.25,58.527],[-21.988,58.49],[-21.821,58.54],[-21.654,58.59],[-21.392,58.552],[-21.225,58.601],[-20.962,58.563],[-20.704,58.524],[-20.537,58.572],[-20.275,58.532],[-20.108,58.579],[-19.846,58.539],[-19.679,58.586],[-19.421,58.544],[-19.163,58.502],[-18.992,58.548],[-18.733,58.505],[-18.562,58.551],[-18.392,58.596],[-18.221,58.641],[-17.962,58.597],[-17.792,58.641],[-17.617,58.686],[-17.529,58.819],[-17.358,58.864],[-17.1,58.817],[-16.925,58.861],[-16.75,58.904],[-16.575,58.947],[-16.4,58.989],[-16.304,59.123],[-16.129,59.165],[-16.033,59.298],[-15.937,59.43],[-15.842,59.563],[-15.663,59.605],[-15.567,59.737],[-15.467,59.869],[-15.283,59.911],[-15.104,59.952],[-14.921,59.992],[-14.738,60.033],[-14.554,60.073],[-14.292,60.021],[-14.025,59.969],[-13.767,59.916],[-13.687,59.824],[-13.613,59.731],[-13.533,59.639],[-13.458,59.547],[-13.2,59.493],[-13.125,59.401],[-13.05,59.308],[-12.975,59.215],[-12.904,59.123],[-12.829,59.03],[-12.758,58.938],[-12.683,58.845],[-12.792,58.715],[-12.717,58.622],[-12.825,58.492],[-13,58.454],[-13.104,58.324],[-13.279,58.285],[-13.454,58.247],[-13.558,58.116],[-13.733,58.077],[-13.904,58.038],[-14.004,57.907],[-14.179,57.868],[-14.275,57.736],[-14.45,57.697],[-14.621,57.657],[-14.717,57.525],[-14.808,57.393],[-14.733,57.301],[-14.829,57.17],[-14.925,57.038],[-14.85,56.946],[-14.942,56.814],[-14.867,56.723],[-14.958,56.591],[-15.05,56.459],[-14.979,56.368],[-14.904,56.276],[-14.833,56.185],[-14.596,56.134],[-14.358,56.082],[-14.196,56.122],[-14.1,56.253],[-13.937,56.292],[-13.771,56.331],[-13.675,56.462],[-13.508,56.501],[-13.413,56.632],[-13.312,56.763],[-13.146,56.801],[-12.975,56.839],[-12.808,56.876],[-12.638,56.914],[-12.4,56.858],[-12.163,56.802],[-11.925,56.746],[-11.858,56.652],[-11.792,56.559],[-11.729,56.466],[-11.663,56.373],[-11.429,56.315],[-11.2,56.257],[-10.967,56.199],[-10.904,56.105],[-10.675,56.046],[-10.613,55.953],[-10.383,55.893],[-10.321,55.799],[-10.262,55.705],[-10.367,55.577],[-10.308,55.483],[-10.413,55.355],[-10.517,55.227],[-10.617,55.098],[-10.779,55.064],[-10.946,55.029],[-10.883,54.935],[-10.983,54.807],[-10.925,54.713],[-10.863,54.619],[-10.642,54.56],[-10.421,54.501],[-10.258,54.535],[-10.158,54.663],[-10.054,54.791],[-9.95,54.919],[-10.008,55.013],[-9.904,55.14],[-9.738,55.174],[-9.633,55.301],[-9.467,55.334],[-9.304,55.367],[-9.137,55.399],[-8.971,55.432],[-8.804,55.464],[-8.583,55.401],[-8.417,55.432],[-8.196,55.368],[-8.137,55.273],[-7.921,55.209],[-7.867,55.114],[-7.646,55.049],[-7.592,54.954],[-7.375,54.888],[-7.325,54.793],[-7.271,54.697],[-7.221,54.602],[-7.171,54.506],[-7.117,54.411],[-7.229,54.286],[-7.342,54.161],[-7.504,54.131],[-7.663,54.101],[-7.879,54.166],[-8.037,54.135],[-8.254,54.199],[-8.471,54.263],[-8.629,54.231],[-8.846,54.294],[-9.062,54.357],[-9.225,54.324],[-9.383,54.292],[-9.546,54.259],[-9.708,54.226],[-9.867,54.192],[-9.971,54.065],[-10.129,54.031],[-10.287,53.997],[-10.387,53.869],[-10.604,53.929],[-10.763,53.894],[-10.863,53.766],[-11.017,53.731],[-11.175,53.696],[-11.333,53.66],[-11.488,53.624],[-11.646,53.589],[-11.8,53.552],[-11.958,53.516],[-12.05,53.387],[-12.204,53.35],[-12.358,53.313],[-12.513,53.276],[-12.667,53.239],[-12.821,53.201],[-12.975,53.164],[-13.129,53.126],[-13.279,53.088],[-13.496,53.141],[-13.65,53.103],[-13.804,53.064],[-13.954,53.025],[-14.171,53.077],[-14.325,53.038],[-14.475,52.998],[-14.625,52.958],[-14.846,53.009],[-14.996,52.968],[-15.146,52.927],[-15.296,52.887],[-15.379,52.754],[-15.458,52.622],[-15.608,52.581],[-15.687,52.449],[-15.833,52.407],[-15.983,52.365],[-16.129,52.323],[-16.208,52.19],[-16.283,52.057],[-16.429,52.015],[-16.575,51.972],[-16.721,51.929],[-16.867,51.886],[-16.942,51.753],[-17.012,51.619],[-17.158,51.576],[-17.087,51.486],[-17.158,51.353],[-17.3,51.309],[-17.446,51.265],[-17.587,51.221],[-17.729,51.177],[-17.871,51.132],[-18.083,51.177],[-18.15,51.043],[-18.292,50.998],[-18.504,51.042],[-18.646,50.996],[-18.712,50.862],[-18.85,50.816],[-18.917,50.681],[-18.983,50.547],[-19.121,50.501],[-19.183,50.366],[-19.25,50.231],[-19.312,50.096],[-19.45,50.05],[-19.583,50.003],[-19.646,49.868],[-19.783,49.821],[-19.992,49.862],[-20.067,49.95],[-20.275,49.99],[-20.35,50.078],[-20.425,50.165],[-20.5,50.253],[-20.792,50.379],[-20.712,50.292],[-20.925,50.331],[-21.137,50.369],[-21.196,50.233],[-21.121,50.146],[-21.179,50.01],[-21.233,49.874],[-21.158,49.787],[-21.083,49.7],[-21.137,49.564],[-21.271,49.515],[-21.329,49.379],[-21.462,49.33],[-21.592,49.281],[-21.725,49.231],[-21.854,49.182],[-21.988,49.132],[-22.042,48.996],[-22.092,48.859],[-22.225,48.809],[-22.275,48.673],[-22.329,48.536],[-22.454,48.486],[-22.583,48.435],[-22.712,48.384],[-22.917,48.419],[-23.125,48.453],[-23.25,48.402],[-23.458,48.435],[-23.583,48.383],[-23.712,48.331],[-23.838,48.279],[-23.758,48.194],[-23.679,48.109],[-23.6,48.024],[-23.525,47.939],[-23.446,47.854],[-23.492,47.717],[-23.542,47.58],[-23.587,47.443],[-23.712,47.391],[-23.833,47.338],[-23.958,47.286],[-24.083,47.234],[-24.204,47.181],[-24.329,47.128],[-24.529,47.159],[-24.608,47.244],[-24.812,47.274],[-24.892,47.359],[-24.846,47.496],[-24.804,47.634],[-24.763,47.772],[-24.717,47.909],[-24.671,48.047],[-24.629,48.184],[-24.583,48.322],[-24.663,48.406],[-24.871,48.437],[-24.954,48.521],[-25.033,48.606],[-25.117,48.689],[-25.325,48.719],[-25.408,48.803],[-25.617,48.833],[-25.742,48.778],[-25.867,48.723],[-25.996,48.668],[-26.037,48.53],[-26.075,48.392],[-26.117,48.254],[-26.033,48.17],[-26.075,48.032],[-26.117,47.894],[-26.154,47.756],[-26.071,47.673],[-26.113,47.534],[-26.233,47.479],[-26.358,47.424],[-26.479,47.368],[-26.6,47.313],[-26.887,47.422],[-26.804,47.339],[-26.925,47.283],[-27.046,47.227],[-27.333,47.336],[-27.246,47.253],[-27.45,47.279],[-27.367,47.197],[-27.283,47.114],[-27.321,46.976],[-27.238,46.894],[-27.271,46.755],[-27.475,46.781],[-27.592,46.724],[-27.629,46.585],[-27.663,46.446],[-27.779,46.389],[-27.896,46.332],[-28.012,46.275],[-28.212,46.299],[-28.329,46.241],[-28.446,46.183],[-28.562,46.125],[-28.679,46.067],[-28.879,46.09],[-28.996,46.031],[-29.108,45.973],[-29.308,45.994],[-29.508,46.016],[-29.596,46.096],[-29.796,46.117],[-30,46.137],[-30.2,46.157],[-30.313,46.097],[-30.429,46.037],[-30.542,45.977],[-30.654,45.916],[-30.767,45.856],[-30.879,45.795],[-31.079,45.814],[-31.192,45.753],[-31.304,45.691],[-31.504,45.709],[-31.617,45.648],[-31.817,45.664],[-31.729,45.586],[-31.642,45.507],[-31.55,45.429],[-31.462,45.35],[-31.488,45.21],[-31.596,45.149],[-31.708,45.087],[-31.817,45.026],[-31.925,44.964],[-32.125,44.98],[-32.233,44.918],[-32.342,44.856],[-32.542,44.871],[-32.65,44.808],[-32.758,44.746],[-32.867,44.683],[-33.062,44.697],[-33.171,44.634],[-33.279,44.571],[-33.475,44.584],[-33.583,44.52],[-33.687,44.457],[-33.796,44.393],[-33.9,44.329],[-34.008,44.265],[-34.204,44.277],[-34.217,44.136],[-34.413,44.148],[-34.521,44.083],[-34.717,44.094],[-34.913,44.105],[-35.108,44.115],[-35.2,44.19],[-35.396,44.2],[-35.488,44.275],[-35.683,44.284],[-35.879,44.293],[-35.983,44.227],[-36.179,44.235],[-36.283,44.169],[-36.387,44.102],[-36.583,44.11],[-36.683,44.043],[-36.787,43.976],[-36.796,43.835],[-36.896,43.768],[-37,43.701],[-37.1,43.633],[-37.108,43.492],[-37.208,43.425],[-37.308,43.357],[-37.317,43.216],[-37.417,43.149],[-37.517,43.081],[-37.521,42.94],[-37.621,42.872],[-37.721,42.804],[-37.725,42.663],[-37.825,42.595],[-37.921,42.527],[-38.021,42.459],[-38.117,42.391],[-38.217,42.322],[-38.408,42.326],[-38.504,42.257],[-38.696,42.261],[-38.788,42.333],[-38.979,42.336],[-39.075,42.407],[-39.167,42.479],[-39.358,42.481],[-39.454,42.552],[-39.55,42.624],[-39.646,42.695],[-39.742,42.766],[-39.837,42.838],[-39.933,42.909],[-39.933,43.05],[-40.029,43.121],[-40.125,43.192],[-40.221,43.263],[-40.417,43.263],[-40.512,43.192],[-40.704,43.192],[-40.8,43.121],[-40.896,43.05],[-40.992,42.979],[-41.087,42.908],[-41.183,42.836],[-41.279,42.765],[-41.375,42.694],[-41.467,42.622],[-41.658,42.62],[-41.754,42.548],[-41.946,42.546],[-42.037,42.474],[-42.229,42.471],[-42.421,42.467],[-42.517,42.394],[-42.704,42.391],[-42.804,42.459],[-42.904,42.527],[-43.096,42.523],[-43.196,42.591],[-43.296,42.659],[-43.396,42.727],[-43.496,42.795],[-43.596,42.863],[-43.696,42.93],[-43.704,43.071],[-43.804,43.139],[-43.904,43.206],[-43.913,43.348],[-43.921,43.489],[-43.933,43.63],[-43.837,43.704],[-43.846,43.845],[-43.754,43.919],[-43.658,43.992],[-43.567,44.066],[-43.471,44.139],[-43.375,44.213],[-43.383,44.354],[-43.496,44.563],[-43.392,44.495],[-43.587,44.489],[-43.683,44.416],[-43.779,44.343],[-43.875,44.269],[-43.967,44.195],[-44.062,44.121],[-44.154,44.047],[-44.25,43.973],[-44.342,43.899],[-44.433,43.825],[-44.529,43.751],[-44.721,43.743],[-44.817,43.669],[-44.908,43.594],[-45.1,43.586],[-45.296,43.578],[-45.492,43.569],[-45.596,43.635],[-45.792,43.625],[-45.896,43.691],[-46,43.757],[-46.196,43.746],[-46.3,43.812],[-46.404,43.877],[-46.508,43.942],[-46.617,44.007],[-46.721,44.072],[-46.825,44.137],[-46.842,44.278],[-46.95,44.343],[-47.054,44.407],[-47.163,44.472],[-47.179,44.613],[-47.288,44.677],[-47.396,44.742],[-47.504,44.806],[-47.613,44.87],[-47.721,44.934],[-47.917,44.921],[-48.025,44.984],[-48.225,44.971],[-48.333,45.034],[-48.533,45.02],[-48.646,45.083],[-48.954,45.132],[-48.842,45.069],[-49.042,45.054],[-49.242,45.039],[-49.329,44.961],[-49.417,44.882],[-49.504,44.804],[-49.592,44.726],[-49.792,44.71],[-49.879,44.631],[-50.075,44.614],[-50.271,44.598],[-50.471,44.58],[-50.579,44.641],[-50.779,44.624],[-50.975,44.605],[-51.087,44.666],[-51.283,44.648],[-51.396,44.708],[-51.592,44.689],[-51.704,44.749],[-51.817,44.809],[-52.013,44.789],[-52.212,44.769],[-52.408,44.749],[-52.492,44.668],[-52.687,44.647],[-52.771,44.567],[-53.079,44.604],[-52.967,44.545],[-53.163,44.524],[-53.358,44.501],[-53.471,44.56],[-53.667,44.538],[-53.783,44.596],[-53.896,44.654],[-54.012,44.712],[-54.125,44.77],[-54.158,44.909],[-54.192,45.048],[-54.229,45.188],[-54.342,45.245],[-54.458,45.303],[-54.575,45.36],[-54.775,45.336],[-54.892,45.393],[-55.008,45.45],[-55.204,45.425],[-55.321,45.482],[-55.442,45.538],[-55.558,45.595],[-55.758,45.569],[-55.875,45.625],[-55.992,45.681],[-56.192,45.654],[-56.271,45.572],[-56.35,45.489],[-56.429,45.406],[-56.508,45.324],[-56.588,45.241],[-56.783,45.213],[-56.858,45.131],[-57.054,45.103],[-57.25,45.074],[-57.446,45.046],[-57.567,45.101],[-57.608,45.238],[-57.729,45.293],[-57.771,45.431],[-57.812,45.568],[-57.858,45.706],[-57.779,45.789],[-57.821,45.927],[-57.746,46.01],[-57.787,46.148],[-57.712,46.231],[-57.633,46.315],[-57.679,46.453],[-57.721,46.59],[-57.642,46.673],[-57.442,46.702],[-57.242,46.731],[-57.037,46.759],[-56.917,46.704],[-56.796,46.65],[-56.675,46.594],[-56.475,46.622],[-56.392,46.705],[-56.192,46.732],[-55.988,46.759],[-55.908,46.841],[-55.704,46.867],[-55.504,46.893],[-55.3,46.919],[-55.096,46.944],[-54.892,46.969],[-54.687,46.994],[-54.571,46.937],[-54.45,46.88],[-54.329,46.822],[-54.208,46.765],[-54.008,46.788],[-53.804,46.812],[-53.721,46.893],[-53.754,47.032],[-53.875,47.09],[-53.908,47.229],[-54.029,47.287],[-54.15,47.344],[-54.271,47.402],[-54.308,47.541],[-54.342,47.68],[-54.379,47.819],[-54.296,47.9],[-54.208,47.981],[-54.125,48.063],[-54.037,48.144],[-53.954,48.225],[-53.867,48.307],[-53.904,48.446],[-53.817,48.527],[-53.854,48.666],[-53.767,48.747],[-53.679,48.828],[-53.592,48.909],[-53.504,48.99],[-53.417,49.071],[-53.325,49.152],[-53.113,49.174],[-52.9,49.196],[-52.687,49.218],[-52.475,49.239],[-52.35,49.18],[-52.229,49.121],[-52.104,49.062],[-51.892,49.082],[-51.771,49.022],[-51.738,48.883],[-51.617,48.823],[-51.496,48.763],[-51.375,48.703],[-51.342,48.563],[-51.225,48.503],[-51.104,48.442],[-50.892,48.461],[-50.8,48.54],[-50.587,48.558],[-50.471,48.497],[-50.35,48.436],[-50.229,48.374],[-50.113,48.313],[-50.088,48.173],[-49.967,48.111],[-49.85,48.049],[-49.733,47.988],[-49.525,48.004],[-49.312,48.02],[-49.221,48.098],[-49.125,48.176],[-48.917,48.191],[-48.821,48.269],[-48.729,48.346],[-48.633,48.424],[-48.537,48.501],[-48.325,48.516],[-48.229,48.593],[-48.017,48.607],[-47.804,48.62],[-47.592,48.633],[-47.475,48.569],[-47.263,48.581],[-47.146,48.517],[-47.033,48.453],[-46.821,48.464],[-46.704,48.399],[-46.592,48.334],[-46.379,48.345],[-46.267,48.28],[-46.15,48.215],[-45.937,48.225],[-45.825,48.159],[-45.712,48.093],[-45.6,48.027],[-45.488,47.962],[-45.375,47.896],[-45.267,47.829],[-45.054,47.838],[-44.954,47.913],[-44.854,47.987],[-44.754,48.061],[-44.654,48.136],[-44.667,48.277],[-44.679,48.418],[-44.692,48.559],[-44.804,48.626],[-44.817,48.768],[-44.712,48.842],[-44.725,48.983],[-44.625,49.058],[-44.637,49.199],[-44.533,49.273],[-44.317,49.28],[-44.212,49.354],[-44.108,49.428],[-43.892,49.434],[-43.675,49.441],[-43.458,49.446],[-43.242,49.451],[-43.129,49.383],[-43.017,49.315],[-42.904,49.246],[-42.687,49.251],[-42.579,49.182],[-42.467,49.113],[-42.354,49.044],[-42.246,48.975],[-42.029,48.978],[-41.921,48.909],[-41.704,48.911],[-41.492,48.913],[-41.383,48.843],[-41.167,48.844],[-40.95,48.845],[-40.738,48.846],[-40.521,48.846],[-40.413,48.917],[-40.308,48.987],[-40.2,49.058],[-40.087,49.128],[-39.875,49.127],[-39.763,49.197],[-39.654,49.267],[-39.654,49.408],[-39.542,49.478],[-39.537,49.619],[-39.646,49.691],[-39.754,49.763],[-39.975,49.764],[-40.083,49.835],[-40.304,49.836],[-40.413,49.907],[-40.521,49.978],[-40.742,49.977],[-40.85,50.048],[-40.854,50.189],[-40.962,50.259],[-40.967,50.401],[-41.075,50.471],[-41.187,50.541],[-41.192,50.683],[-41.192,50.824],[-41.196,50.966],[-41.196,51.107],[-41.083,51.178],[-41.087,51.319],[-41.087,51.461],[-40.975,51.532],[-40.863,51.603],[-40.75,51.674],[-40.633,51.745],[-40.521,51.816],[-40.408,51.886],[-40.179,51.886],[-40.062,51.815],[-39.833,51.814],[-39.608,51.812],[-39.492,51.741],[-39.379,51.669],[-39.271,51.597],[-39.271,51.456],[-39.163,51.384],[-39.167,51.242],[-39.171,51.101],[-39.175,50.959],[-39.179,50.818],[-39.183,50.677],[-39.187,50.535],[-39.192,50.394],[-39.196,50.253],[-39.2,50.111],[-39.2,49.97],[-38.983,49.967],[-38.871,50.036],[-38.65,50.033],[-38.537,50.102],[-38.425,50.17],[-38.308,50.239],[-38.196,50.308],[-38.187,50.449],[-38.183,50.59],[-38.175,50.731],[-38.283,50.804],[-38.392,50.877],[-38.383,51.018],[-38.271,51.087],[-38.262,51.228],[-38.254,51.37],[-38.137,51.438],[-38.133,51.579],[-38.012,51.648],[-37.896,51.716],[-37.779,51.784],[-37.771,51.926],[-37.65,51.993],[-37.642,52.135],[-37.75,52.208],[-37.742,52.349],[-37.854,52.423],[-37.967,52.496],[-37.958,52.637],[-37.95,52.779],[-38.062,52.852],[-38.054,52.993],[-37.933,53.061],[-37.925,53.203],[-37.804,53.271],[-37.796,53.412],[-37.671,53.48],[-37.55,53.548],[-37.425,53.616],[-37.3,53.683],[-37.175,53.751],[-37.05,53.818],[-36.925,53.885],[-36.8,53.952],[-36.675,54.019],[-36.546,54.086],[-36.308,54.078],[-36.067,54.07],[-35.937,54.136],[-35.925,54.277],[-35.796,54.344],[-35.667,54.409],[-35.65,54.551],[-35.762,54.626],[-36.008,54.634],[-36.25,54.643],[-36.367,54.718],[-36.483,54.792],[-36.6,54.866],[-36.717,54.941],[-36.704,55.082],[-36.692,55.223],[-36.679,55.364],[-36.546,55.431],[-36.417,55.498],[-36.283,55.564],[-36.154,55.631],[-36.021,55.697],[-35.887,55.763],[-35.754,55.829],[-35.621,55.895],[-35.367,55.886],[-35.117,55.876],[-34.983,55.941],[-34.729,55.93],[-34.617,55.854],[-34.363,55.842],[-34.25,55.766],[-34.133,55.689],[-34.021,55.613],[-33.908,55.536],[-33.796,55.459],[-33.683,55.382],[-33.571,55.305],[-33.321,55.292],[-33.212,55.214],[-33.1,55.137],[-32.992,55.059],[-33.017,54.918],[-32.904,54.841],[-32.796,54.763],[-32.687,54.685],[-32.446,54.67],[-32.308,54.732],[-32.283,54.873],[-32.146,54.935],[-32.117,55.075],[-31.979,55.137],[-31.95,55.278],[-31.921,55.418],[-31.892,55.559],[-31.863,55.699],[-31.725,55.761],[-31.692,55.901],[-31.554,55.963],[-31.413,56.024],[-31.379,56.164],[-31.238,56.226],[-31.096,56.286],[-30.95,56.348],[-30.808,56.408],[-30.775,56.548],[-30.883,56.628],[-30.85,56.768],[-30.962,56.847],[-30.929,56.988],[-30.892,57.128],[-30.858,57.268],[-30.825,57.408],[-30.675,57.468],[-30.642,57.608],[-30.492,57.669],[-30.342,57.729]],[[-11.721,52.068],[-11.663,51.975],[-11.754,51.846],[-11.904,51.809],[-12.05,51.773],[-12.258,51.829],[-12.321,51.922],[-12.233,52.052],[-12.083,52.088],[-11.933,52.125],[-11.721,52.068]],[[-13.571,55.294],[-13.408,55.332],[-13.312,55.463],[-13.15,55.501],[-12.921,55.446],[-12.758,55.484],[-12.692,55.391],[-12.625,55.299],[-12.721,55.169],[-12.817,55.039],[-12.913,54.908],[-13.071,54.87],[-13.233,54.832],[-13.392,54.794],[-13.617,54.848],[-13.687,54.94],[-13.754,55.032],[-13.821,55.124],[-13.729,55.255],[-13.571,55.294]],[[-35.183,47.515],[-35.071,47.58],[-34.958,47.645],[-34.846,47.71],[-34.637,47.699],[-34.525,47.764],[-34.312,47.753],[-34.104,47.74],[-33.896,47.728],[-33.687,47.715],[-33.479,47.702],[-33.267,47.688],[-33.175,47.611],[-33.079,47.534],[-32.988,47.456],[-32.892,47.379],[-32.8,47.301],[-32.708,47.223],[-32.613,47.146],[-32.637,47.005],[-32.75,46.942],[-32.842,47.02],[-33.046,47.035],[-33.163,46.972],[-33.254,47.049],[-33.458,47.063],[-33.571,46.999],[-33.779,47.012],[-33.983,47.024],[-34.096,46.96],[-34.304,46.973],[-34.413,46.908],[-34.621,46.919],[-34.729,46.854],[-34.937,46.865],[-35.046,46.8],[-35.254,46.81],[-35.35,46.886],[-35.446,46.961],[-35.433,47.102],[-35.321,47.168],[-35.308,47.308],[-35.196,47.374],[-35.183,47.515]],[[-30.096,63.203],[-29.921,63.262],[-29.742,63.322],[-29.562,63.381],[-29.387,63.44],[-29.075,63.418],[-28.762,63.396],[-28.454,63.373],[-28.325,63.291],[-28.196,63.21],[-28.067,63.128],[-27.937,63.047],[-27.812,62.965],[-27.867,62.826],[-27.917,62.687],[-27.971,62.548],[-28.146,62.49],[-28.196,62.351],[-28.371,62.294],[-28.546,62.236],[-28.717,62.177],[-28.892,62.119],[-29.062,62.061],[-29.233,62.002],[-29.108,61.921],[-28.983,61.841],[-28.858,61.759],[-28.567,61.736],[-28.271,61.713],[-27.979,61.689],[-27.683,61.664],[-27.392,61.639],[-27.275,61.556],[-27.154,61.474],[-27.037,61.391],[-27.092,61.253],[-27.146,61.114],[-27.312,61.057],[-27.483,61.001],[-27.654,60.944],[-27.937,60.969],[-28.225,60.993],[-28.513,61.017],[-28.633,61.098],[-28.921,61.121],[-29.087,61.062],[-29.379,61.084],[-29.667,61.106],[-29.954,61.126],[-30.246,61.146],[-30.371,61.226],[-30.496,61.306],[-30.454,61.446],[-30.417,61.586],[-30.375,61.725],[-30.504,61.805],[-30.467,61.945],[-30.425,62.085],[-30.554,62.164],[-30.517,62.304],[-30.475,62.444],[-30.433,62.584],[-30.567,62.663],[-30.525,62.803],[-30.354,62.863],[-30.313,63.003],[-30.137,63.063],[-30.096,63.203]],[[-29.363,59.725],[-29.087,59.703],[-28.971,59.622],[-29.012,59.483],[-29.175,59.424],[-29.446,59.446],[-29.562,59.526],[-29.521,59.666],[-29.363,59.725]],[[-34.833,61.951],[-34.675,62.016],[-34.512,62.081],[-34.212,62.069],[-34.05,62.134],[-33.75,62.121],[-33.45,62.108],[-33.288,62.172],[-32.988,62.158],[-32.687,62.143],[-32.554,62.066],[-32.254,62.05],[-32.121,61.972],[-31.988,61.894],[-31.854,61.816],[-31.725,61.738],[-31.592,61.659],[-31.629,61.519],[-31.663,61.379],[-31.696,61.238],[-31.858,61.177],[-32.021,61.115],[-32.179,61.053],[-32.471,61.068],[-32.629,61.006],[-32.921,61.021],[-33.05,61.098],[-33.342,61.112],[-33.475,61.189],[-33.608,61.266],[-33.742,61.343],[-33.875,61.419],[-34.008,61.496],[-34.304,61.508],[-34.442,61.584],[-34.738,61.594],[-34.717,61.735],[-34.854,61.811],[-34.833,61.951]],[[-33.1,59.398],[-32.821,59.384],[-32.671,59.446],[-32.396,59.431],[-32.271,59.353],[-31.996,59.337],[-31.875,59.258],[-31.754,59.18],[-31.787,59.039],[-31.817,58.899],[-31.971,58.838],[-32.121,58.776],[-32.271,58.713],[-32.421,58.651],[-32.571,58.588],[-32.721,58.526],[-32.988,58.541],[-33.137,58.478],[-33.404,58.491],[-33.675,58.505],[-33.796,58.582],[-33.921,58.658],[-34.042,58.735],[-34.167,58.811],[-34.146,58.952],[-33.996,59.016],[-33.975,59.157],[-33.825,59.221],[-33.675,59.285],[-33.525,59.349],[-33.25,59.335],[-33.1,59.398]],[[-29,56.403],[-28.812,56.601],[-28.667,56.659],[-28.413,56.636],[-28.308,56.554],[-28.454,56.496],[-28.6,56.438],[-28.854,56.461],[-28.958,56.543],[-29.108,56.484],[-29,56.403]],[[-36.471,57.622],[-36.329,57.689],[-36.192,57.755],[-36.05,57.821],[-35.787,57.813],[-35.646,57.879],[-35.383,57.869],[-35.117,57.859],[-34.85,57.849],[-34.729,57.773],[-34.608,57.697],[-34.346,57.685],[-34.367,57.544],[-34.246,57.468],[-34.267,57.327],[-34.408,57.263],[-34.287,57.186],[-34.312,57.046],[-34.45,56.981],[-34.471,56.84],[-34.492,56.699],[-34.629,56.634],[-34.65,56.494],[-34.787,56.429],[-34.808,56.288],[-34.946,56.223],[-35.2,56.233],[-35.317,56.309],[-35.571,56.318],[-35.687,56.394],[-35.946,56.402],[-36.062,56.478],[-36.183,56.552],[-36.442,56.56],[-36.562,56.634],[-36.683,56.709],[-36.808,56.783],[-36.929,56.857],[-36.917,56.998],[-37.042,57.072],[-37.029,57.213],[-36.896,57.28],[-36.883,57.421],[-36.746,57.488],[-36.608,57.555],[-36.471,57.622]],[[-39.621,60.073],[-39.621,60.213],[-39.479,60.283],[-39.333,60.353],[-39.192,60.422],[-39.046,60.492],[-38.763,60.489],[-38.621,60.417],[-38.479,60.345],[-38.342,60.273],[-38.346,60.132],[-38.35,59.991],[-38.496,59.923],[-38.637,59.854],[-38.779,59.785],[-39.058,59.787],[-39.342,59.789],[-39.479,59.861],[-39.621,59.932],[-39.621,60.073]],[[-42.279,57.805],[-42.287,57.946],[-42.158,58.018],[-42.029,58.091],[-41.762,58.093],[-41.496,58.096],[-41.363,58.027],[-41.354,57.886],[-41.35,57.745],[-41.479,57.673],[-41.742,57.671],[-41.871,57.599],[-42.133,57.596],[-42.271,57.664],[-42.279,57.805]],[[-41.154,47.854],[-41.154,47.996],[-41.05,48.067],[-40.946,48.138],[-40.842,48.209],[-40.733,48.28],[-40.629,48.21],[-40.417,48.209],[-40.308,48.139],[-40.1,48.138],[-39.992,48.067],[-39.887,47.996],[-39.783,47.924],[-39.679,47.853],[-39.575,47.781],[-39.579,47.64],[-39.579,47.499],[-39.583,47.357],[-39.583,47.216],[-39.587,47.074],[-39.692,47.004],[-39.696,46.863],[-39.696,46.722],[-39.7,46.581],[-39.7,46.439],[-39.804,46.369],[-39.804,46.228],[-39.808,46.086],[-39.808,45.945],[-39.913,45.875],[-40.012,45.805],[-40.117,45.735],[-40.317,45.735],[-40.421,45.806],[-40.521,45.877],[-40.621,45.947],[-40.725,46.018],[-40.725,46.159],[-40.829,46.23],[-40.829,46.371],[-40.725,46.442],[-40.729,46.583],[-40.729,46.725],[-40.729,46.866],[-40.729,47.008],[-40.729,47.149],[-40.833,47.219],[-40.937,47.29],[-40.942,47.431],[-41.046,47.501],[-41.15,47.572],[-41.154,47.713],[-41.258,47.783],[-41.154,47.854]],[[-39.329,44.458],[-39.229,44.527],[-39.225,44.668],[-39.029,44.666],[-38.929,44.594],[-38.833,44.521],[-38.738,44.449],[-38.742,44.308],[-38.842,44.239],[-38.942,44.17],[-39.137,44.173],[-39.233,44.244],[-39.333,44.316],[-39.329,44.458]],[[-55.096,53.888],[-55,53.969],[-54.908,54.051],[-54.812,54.133],[-54.721,54.215],[-54.625,54.297],[-54.387,54.322],[-54.154,54.347],[-53.917,54.372],[-53.775,54.315],[-53.633,54.258],[-53.492,54.201],[-53.354,54.143],[-53.212,54.086],[-53.171,53.948],[-53.033,53.89],[-52.992,53.751],[-53.087,53.671],[-52.95,53.613],[-52.908,53.474],[-52.771,53.416],[-52.733,53.277],[-52.596,53.219],[-52.462,53.161],[-52.325,53.102],[-52.192,53.044],[-52.058,52.985],[-51.825,53.005],[-51.596,53.026],[-51.496,53.106],[-51.262,53.125],[-51.129,53.066],[-50.996,53.006],[-50.867,52.945],[-50.733,52.885],[-50.6,52.824],[-50.471,52.764],[-50.337,52.703],[-50.208,52.642],[-50.175,52.503],[-50.046,52.441],[-49.917,52.38],[-49.787,52.319],[-49.658,52.257],[-49.529,52.196],[-49.404,52.134],[-49.275,52.072],[-49.146,52.01],[-49.121,51.87],[-49.092,51.729],[-49.192,51.652],[-49.421,51.636],[-49.517,51.558],[-49.617,51.479],[-49.842,51.463],[-50.067,51.445],[-50.292,51.428],[-50.517,51.41],[-50.742,51.391],[-50.837,51.312],[-50.933,51.233],[-51.029,51.154],[-50.9,51.093],[-50.871,50.954],[-50.742,50.893],[-50.617,50.833],[-50.492,50.772],[-50.367,50.711],[-50.337,50.571],[-50.433,50.492],[-50.529,50.413],[-50.875,50.456],[-50.75,50.395],[-50.967,50.376],[-51.187,50.357],[-51.404,50.338],[-51.529,50.398],[-51.658,50.458],[-51.875,50.438],[-51.971,50.358],[-52.187,50.337],[-52.279,50.257],[-52.496,50.236],[-52.587,50.155],[-52.804,50.134],[-52.933,50.192],[-53.15,50.17],[-53.279,50.228],[-53.496,50.205],[-53.712,50.182],[-53.838,50.239],[-53.967,50.297],[-54.183,50.273],[-54.312,50.33],[-54.442,50.387],[-54.571,50.444],[-54.7,50.501],[-54.829,50.557],[-54.958,50.614],[-55.092,50.67],[-55.221,50.726],[-55.267,50.864],[-55.396,50.92],[-55.529,50.976],[-55.658,51.031],[-55.792,51.086],[-55.837,51.224],[-55.971,51.279],[-56.104,51.334],[-56.238,51.389],[-56.458,51.361],[-56.546,51.279],[-56.496,51.141],[-56.45,51.004],[-56.671,50.976],[-56.538,50.921],[-56.488,50.784],[-56.442,50.646],[-56.529,50.564],[-56.479,50.426],[-56.433,50.289],[-56.521,50.206],[-56.475,50.068],[-56.558,49.986],[-56.642,49.903],[-56.725,49.82],[-56.808,49.737],[-57.021,49.709],[-57.154,49.763],[-57.283,49.817],[-57.329,49.954],[-57.246,50.037],[-57.296,50.174],[-57.346,50.312],[-57.392,50.449],[-57.525,50.502],[-57.658,50.556],[-57.792,50.609],[-57.925,50.663],[-58.058,50.716],[-58.108,50.852],[-58.029,50.936],[-57.946,51.019],[-57.863,51.103],[-57.779,51.186],[-57.692,51.27],[-57.608,51.353],[-57.525,51.437],[-57.442,51.52],[-57.354,51.603],[-57.271,51.686],[-57.183,51.769],[-57.238,51.906],[-57.012,51.936],[-56.925,52.019],[-56.704,52.048],[-56.617,52.13],[-56.529,52.213],[-56.442,52.296],[-56.354,52.378],[-56.267,52.461],[-56.175,52.544],[-56.087,52.626],[-56,52.709],[-55.771,52.736],[-55.683,52.818],[-55.729,52.956],[-55.5,52.983],[-55.408,53.065],[-55.321,53.147],[-55.229,53.229],[-55.137,53.311],[-55.183,53.449],[-55.092,53.531],[-55,53.613],[-55.046,53.75],[-55.096,53.888]],[[-51.946,54.773],[-51.846,54.853],[-51.742,54.933],[-51.642,55.013],[-51.4,55.033],[-51.296,55.113],[-51.192,55.192],[-50.95,55.212],[-50.704,55.231],[-50.458,55.25],[-50.217,55.268],[-50.075,55.207],[-49.937,55.146],[-49.8,55.086],[-49.658,55.024],[-49.629,54.885],[-49.596,54.745],[-49.567,54.606],[-49.533,54.466],[-49.504,54.326],[-49.608,54.248],[-49.712,54.17],[-49.95,54.152],[-50.054,54.074],[-50.292,54.056],[-50.396,53.977],[-50.629,53.959],[-50.767,54.019],[-51.004,54],[-51.242,53.98],[-51.479,53.96],[-51.617,54.02],[-51.85,53.999],[-51.988,54.058],[-52.029,54.197],[-52.067,54.336],[-52.204,54.394],[-52.246,54.533],[-52.146,54.613],[-52.046,54.693],[-51.946,54.773]],[[-53.633,46.116],[-53.55,46.197],[-53.467,46.277],[-53.379,46.359],[-53.296,46.439],[-53.096,46.461],[-52.975,46.403],[-52.775,46.424],[-52.571,46.446],[-52.454,46.386],[-52.337,46.327],[-52.221,46.267],[-52.308,46.187],[-52.392,46.107],[-52.479,46.027],[-52.562,45.946],[-52.767,45.925],[-52.85,45.845],[-52.933,45.764],[-53.133,45.742],[-53.217,45.662],[-53.417,45.639],[-53.617,45.617],[-53.533,45.698],[-53.567,45.837],[-53.6,45.976],[-53.633,46.116]],[[-49.629,36.326],[-49.554,36.404],[-49.475,36.483],[-49.4,36.561],[-49.421,36.701],[-49.342,36.779],[-49.262,36.858],[-49.187,36.936],[-49.008,36.951],[-48.933,37.029],[-48.754,37.044],[-48.679,37.121],[-48.6,37.199],[-48.521,37.276],[-48.442,37.354],[-48.363,37.431],[-48.283,37.509],[-48.3,37.649],[-48.221,37.726],[-48.042,37.74],[-47.962,37.817],[-47.883,37.894],[-47.704,37.908],[-47.621,37.984],[-47.446,37.997],[-47.267,38.01],[-47.167,37.945],[-46.992,37.958],[-46.892,37.893],[-46.796,37.829],[-46.7,37.764],[-46.683,37.623],[-46.587,37.559],[-46.492,37.494],[-46.396,37.429],[-46.3,37.364],[-46.125,37.375],[-45.946,37.385],[-45.867,37.461],[-45.687,37.47],[-45.604,37.546],[-45.521,37.621],[-45.442,37.696],[-45.454,37.836],[-45.467,37.977],[-45.383,38.052],[-45.396,38.193],[-45.408,38.334],[-45.421,38.475],[-45.517,38.541],[-45.529,38.681],[-45.625,38.747],[-45.637,38.888],[-45.554,38.963],[-45.371,38.972],[-45.192,38.981],[-45.008,38.99],[-44.913,38.924],[-44.733,38.932],[-44.646,39.006],[-44.467,39.014],[-44.371,38.947],[-44.275,38.88],[-44.092,38.887],[-43.996,38.82],[-43.904,38.753],[-43.892,38.612],[-43.8,38.545],[-43.792,38.404],[-43.875,38.331],[-43.958,38.257],[-44.046,38.183],[-44.129,38.109],[-44.212,38.035],[-44.3,37.961],[-44.383,37.887],[-44.467,37.813],[-44.55,37.739],[-44.633,37.664],[-44.717,37.59],[-44.704,37.449],[-44.787,37.374],[-44.696,37.308],[-44.6,37.242],[-44.508,37.176],[-44.413,37.109],[-44.238,37.116],[-44.058,37.124],[-43.883,37.13],[-43.708,37.137],[-43.529,37.143],[-43.354,37.149],[-43.175,37.155],[-43.092,37.228],[-43.008,37.301],[-43.017,37.442],[-43.025,37.582],[-42.937,37.655],[-42.854,37.728],[-42.863,37.869],[-42.867,38.01],[-42.783,38.083],[-42.696,38.155],[-42.704,38.296],[-42.617,38.369],[-42.529,38.441],[-42.446,38.514],[-42.358,38.586],[-42.175,38.59],[-41.996,38.593],[-41.817,38.596],[-41.638,38.599],[-41.542,38.53],[-41.363,38.532],[-41.271,38.463],[-41.179,38.393],[-41.087,38.324],[-40.996,38.254],[-40.992,38.113],[-40.988,37.973],[-40.9,37.903],[-40.896,37.762],[-40.983,37.691],[-41.071,37.62],[-41.067,37.479],[-41.15,37.408],[-41.329,37.406],[-41.417,37.335],[-41.5,37.263],[-41.679,37.261],[-41.762,37.189],[-41.85,37.117],[-42.117,37.182],[-42.025,37.114],[-42.204,37.11],[-42.287,37.038],[-42.462,37.034],[-42.642,37.029],[-42.725,36.956],[-42.808,36.884],[-42.892,36.811],[-42.883,36.67],[-42.875,36.529],[-42.962,36.457],[-43.046,36.384],[-43.129,36.311],[-43.208,36.238],[-43.292,36.164],[-43.375,36.091],[-43.55,36.085],[-43.633,36.012],[-43.804,36.005],[-43.979,35.998],[-44.154,35.991],[-44.329,35.984],[-44.408,35.909],[-44.583,35.902],[-44.675,35.968],[-44.85,35.959],[-44.942,36.026],[-45.033,36.091],[-45.208,36.083],[-45.383,36.073],[-45.558,36.064],[-45.729,36.054],[-45.904,36.044],[-45.983,35.968],[-46.062,35.893],[-46.146,35.817],[-46.225,35.742],[-46.304,35.666],[-46.383,35.59],[-46.554,35.579],[-46.633,35.503],[-46.712,35.427],[-46.883,35.415],[-46.962,35.339],[-47.042,35.263],[-47.212,35.25],[-47.292,35.174],[-47.371,35.097],[-47.354,34.957],[-47.337,34.816],[-47.242,34.753],[-47.225,34.612],[-47.208,34.472],[-47.117,34.408],[-47.025,34.344],[-46.929,34.28],[-46.837,34.216],[-46.746,34.152],[-46.654,34.087],[-46.637,33.947],[-46.712,33.871],[-46.792,33.795],[-46.958,33.783],[-46.942,33.643],[-47.021,33.566],[-47.096,33.49],[-47.171,33.413],[-47.246,33.337],[-47.229,33.197],[-47.304,33.12],[-47.379,33.044],[-47.458,32.967],[-47.533,32.89],[-47.7,32.877],[-47.775,32.8],[-47.846,32.723],[-47.921,32.646],[-47.996,32.569],[-48.163,32.555],[-48.329,32.54],[-48.496,32.526],[-48.663,32.511],[-48.754,32.573],[-48.846,32.635],[-49.013,32.62],[-49.104,32.682],[-49.125,32.822],[-49.221,32.884],[-49.312,32.946],[-49.408,33.008],[-49.5,33.07],[-49.596,33.132],[-49.687,33.193],[-49.783,33.255],[-49.875,33.316],[-49.896,33.456],[-49.917,33.596],[-49.942,33.737],[-49.867,33.815],[-49.792,33.894],[-49.717,33.972],[-49.642,34.05],[-49.571,34.129],[-49.592,34.269],[-49.608,34.409],[-49.704,34.471],[-49.725,34.611],[-49.746,34.751],[-49.842,34.813],[-49.863,34.953],[-49.958,35.014],[-49.979,35.154],[-50.079,35.216],[-50.1,35.356],[-50.196,35.418],[-50.217,35.558],[-50.238,35.698],[-50.163,35.777],[-50.183,35.917],[-50.013,35.934],[-49.937,36.013],[-49.858,36.091],[-49.783,36.17],[-49.708,36.248],[-49.629,36.326]],[[-59.721,45.704],[-59.646,45.788],[-59.45,45.82],[-59.325,45.767],[-59.279,45.63],[-59.354,45.546],[-59.55,45.514],[-59.671,45.567],[-59.721,45.704]],[[-62.742,42.844],[-62.675,42.929],[-62.608,43.015],[-62.542,43.101],[-62.471,43.186],[-62.404,43.272],[-62.337,43.358],[-62.267,43.443],[-62.2,43.529],[-62.129,43.614],[-62.062,43.7],[-61.992,43.785],[-61.925,43.871],[-61.854,43.956],[-61.783,44.041],[-61.712,44.127],[-61.646,44.212],[-61.575,44.298],[-61.504,44.383],[-61.554,44.519],[-61.483,44.604],[-61.413,44.689],[-61.342,44.774],[-61.271,44.859],[-61.2,44.944],[-61.129,45.03],[-60.937,45.064],[-60.742,45.097],[-60.671,45.182],[-60.475,45.215],[-60.354,45.164],[-60.233,45.112],[-60.037,45.144],[-59.846,45.177],[-59.65,45.209],[-59.454,45.241],[-59.262,45.272],[-59.142,45.219],[-59.021,45.166],[-58.9,45.113],[-58.779,45.06],[-58.738,44.923],[-58.617,44.869],[-58.571,44.732],[-58.529,44.594],[-58.483,44.457],[-58.558,44.373],[-58.442,44.319],[-58.4,44.181],[-58.475,44.098],[-58.429,43.96],[-58.504,43.876],[-58.579,43.793],[-58.654,43.709],[-58.842,43.678],[-59.033,43.648],[-59.15,43.701],[-59.267,43.754],[-59.458,43.723],[-59.692,43.828],[-59.575,43.776],[-59.767,43.744],[-59.837,43.659],[-59.908,43.575],[-59.979,43.49],[-60.054,43.406],[-59.937,43.353],[-59.817,43.301],[-59.775,43.164],[-59.658,43.111],[-59.471,43.143],[-59.354,43.089],[-59.238,43.036],[-59.121,42.983],[-59.004,42.93],[-58.892,42.876],[-58.775,42.823],[-58.658,42.769],[-58.546,42.715],[-58.504,42.577],[-58.387,42.523],[-58.275,42.469],[-58.163,42.415],[-58.046,42.361],[-57.933,42.306],[-57.821,42.252],[-57.708,42.197],[-57.596,42.142],[-57.483,42.087],[-57.371,42.032],[-57.258,41.977],[-57.146,41.922],[-57.108,41.784],[-56.996,41.728],[-56.883,41.673],[-56.846,41.534],[-56.738,41.479],[-56.7,41.34],[-56.592,41.284],[-56.554,41.146],[-56.517,41.007],[-56.483,40.868],[-56.446,40.729],[-56.413,40.591],[-56.483,40.508],[-56.45,40.369],[-56.413,40.231],[-56.304,40.174],[-56.196,40.118],[-56.087,40.062],[-55.983,40.006],[-55.875,39.949],[-55.767,39.892],[-55.583,39.918],[-55.479,39.861],[-55.371,39.804],[-55.192,39.829],[-55.083,39.772],[-54.975,39.714],[-54.871,39.657],[-54.763,39.599],[-54.658,39.542],[-54.55,39.484],[-54.521,39.345],[-54.417,39.287],[-54.383,39.147],[-54.279,39.089],[-54.25,38.95],[-54.325,38.869],[-54.296,38.729],[-54.262,38.589],[-54.337,38.508],[-54.413,38.427],[-54.488,38.345],[-54.558,38.264],[-54.633,38.182],[-54.812,38.158],[-54.883,38.076],[-55.062,38.052],[-55.133,37.97],[-55.208,37.888],[-55.279,37.806],[-55.35,37.724],[-55.425,37.641],[-55.496,37.559],[-55.462,37.42],[-55.533,37.338],[-55.504,37.199],[-55.575,37.117],[-55.646,37.034],[-55.613,36.895],[-55.687,36.813],[-55.758,36.731],[-55.829,36.648],[-55.896,36.566],[-55.967,36.484],[-56.037,36.401],[-56.108,36.319],[-56.179,36.236],[-56.25,36.154],[-56.317,36.071],[-56.387,35.988],[-56.354,35.849],[-56.425,35.767],[-56.496,35.684],[-56.462,35.545],[-56.529,35.462],[-56.496,35.323],[-56.567,35.241],[-56.533,35.102],[-56.604,35.019],[-56.671,34.936],[-56.738,34.853],[-56.808,34.77],[-56.875,34.688],[-56.942,34.604],[-57.012,34.521],[-57.079,34.438],[-57.146,34.355],[-57.046,34.3],[-57.012,34.161],[-56.913,34.105],[-56.879,33.966],[-56.779,33.911],[-56.746,33.772],[-56.812,33.689],[-56.779,33.55],[-56.85,33.467],[-56.917,33.384],[-56.983,33.301],[-57.146,33.274],[-57.212,33.191],[-57.379,33.163],[-57.646,33.19],[-57.546,33.135],[-57.712,33.107],[-57.875,33.079],[-58.042,33.05],[-58.108,32.966],[-58.271,32.938],[-58.337,32.854],[-58.404,32.77],[-58.467,32.686],[-58.533,32.603],[-58.696,32.573],[-58.762,32.489],[-58.825,32.405],[-58.988,32.375],[-59.054,32.291],[-59.117,32.207],[-59.079,32.069],[-59.146,31.985],[-59.108,31.847],[-59.175,31.763],[-59.137,31.624],[-59.2,31.54],[-59.167,31.402],[-59.229,31.318],[-59.292,31.234],[-59.354,31.149],[-59.417,31.065],[-59.479,30.981],[-59.446,30.843],[-59.508,30.758],[-59.571,30.674],[-59.633,30.59],[-59.596,30.452],[-59.658,30.367],[-59.625,30.229],[-59.587,30.091],[-59.65,30.007],[-59.712,29.923],[-59.675,29.784],[-59.738,29.7],[-59.8,29.616],[-59.863,29.531],[-59.925,29.447],[-59.983,29.362],[-60.142,29.331],[-60.204,29.246],[-60.363,29.215],[-60.421,29.13],[-60.579,29.098],[-60.738,29.066],[-60.896,29.034],[-60.992,29.087],[-61.15,29.054],[-61.246,29.107],[-61.404,29.074],[-61.467,28.989],[-61.525,28.904],[-61.488,28.766],[-61.546,28.681],[-61.604,28.596],[-61.567,28.458],[-61.629,28.373],[-61.687,28.288],[-61.842,28.254],[-61.904,28.169],[-61.962,28.083],[-62.021,27.998],[-62.079,27.912],[-62.137,27.827],[-62.196,27.742],[-62.254,27.656],[-62.312,27.571],[-62.467,27.536],[-62.525,27.451],[-62.583,27.365],[-62.738,27.331],[-62.796,27.245],[-62.95,27.211],[-63.046,27.262],[-63.2,27.227],[-63.3,27.278],[-63.454,27.243],[-63.55,27.294],[-63.704,27.259],[-63.8,27.31],[-63.954,27.274],[-64.108,27.239],[-64.262,27.203],[-64.417,27.167],[-64.512,27.217],[-64.667,27.181],[-64.821,27.144],[-64.875,27.058],[-64.933,26.971],[-64.988,26.885],[-64.946,26.748],[-65.004,26.662],[-65.058,26.575],[-65.017,26.438],[-65.075,26.352],[-65.129,26.265],[-65.183,26.179],[-65.337,26.142],[-65.392,26.055],[-65.446,25.968],[-65.6,25.931],[-65.75,25.894],[-65.904,25.856],[-66.054,25.819],[-66.204,25.781],[-66.358,25.743],[-66.508,25.705],[-66.658,25.667],[-66.808,25.629],[-66.904,25.678],[-67.058,25.639],[-67.304,25.649],[-67.208,25.601],[-67.358,25.562],[-67.508,25.523],[-67.562,25.436],[-67.617,25.348],[-67.671,25.261],[-67.625,25.125],[-67.679,25.038],[-67.583,24.989],[-67.542,24.853],[-67.592,24.766],[-67.55,24.63],[-67.604,24.543],[-67.804,24.416],[-67.654,24.456],[-67.613,24.32],[-67.462,24.359],[-67.317,24.397],[-67.167,24.436],[-67.071,24.387],[-66.921,24.426],[-66.825,24.377],[-66.675,24.415],[-66.579,24.366],[-66.483,24.317],[-66.387,24.268],[-66.346,24.132],[-66.25,24.083],[-66.208,23.946],[-66.262,23.859],[-66.317,23.772],[-66.371,23.685],[-66.425,23.598],[-66.479,23.511],[-66.533,23.424],[-66.679,23.386],[-66.829,23.348],[-66.883,23.261],[-67.029,23.222],[-67.125,23.271],[-67.275,23.232],[-67.367,23.281],[-67.517,23.242],[-67.613,23.291],[-67.708,23.339],[-67.75,23.475],[-67.846,23.524],[-67.888,23.659],[-67.929,23.795],[-67.879,23.883],[-67.825,23.97],[-67.771,24.058],[-67.721,24.145],[-67.763,24.281],[-67.858,24.329],[-68.008,24.29],[-68.154,24.25],[-68.304,24.211],[-68.454,24.171],[-68.55,24.219],[-68.7,24.179],[-68.796,24.227],[-68.892,24.275],[-69.042,24.235],[-69.187,24.194],[-69.283,24.242],[-69.433,24.201],[-69.583,24.161],[-69.729,24.12],[-69.825,24.168],[-69.925,24.214],[-69.967,24.35],[-70.067,24.397],[-70.113,24.532],[-70.158,24.666],[-70.254,24.713],[-70.3,24.848],[-70.396,24.895],[-70.496,24.942],[-70.592,24.988],[-70.637,25.123],[-70.738,25.169],[-70.833,25.216],[-70.883,25.35],[-70.979,25.397],[-71.079,25.443],[-71.125,25.578],[-71.171,25.712],[-71.121,25.8],[-71.171,25.934],[-71.117,26.022],[-70.967,26.064],[-70.917,26.153],[-70.767,26.194],[-70.617,26.236],[-70.517,26.19],[-70.421,26.143],[-70.321,26.097],[-70.221,26.05],[-70.125,26.003],[-69.975,26.044],[-69.875,25.998],[-69.779,25.951],[-69.629,25.992],[-69.529,25.944],[-69.379,25.985],[-69.279,25.938],[-69.129,25.979],[-68.979,26.019],[-68.929,26.107],[-68.775,26.147],[-68.625,26.187],[-68.671,26.322],[-68.767,26.37],[-68.867,26.417],[-68.967,26.465],[-69.012,26.6],[-69.058,26.735],[-69.154,26.782],[-69.2,26.917],[-69.3,26.964],[-69.4,27.011],[-69.5,27.059],[-69.65,27.018],[-69.75,27.064],[-69.85,27.111],[-70,27.07],[-70.1,27.117],[-70.2,27.163],[-70.3,27.21],[-70.346,27.344],[-70.446,27.391],[-70.546,27.437],[-70.596,27.571],[-70.642,27.706],[-70.742,27.752],[-70.842,27.798],[-70.892,27.932],[-70.942,28.066],[-71.042,28.112],[-71.142,28.158],[-71.242,28.203],[-71.346,28.249],[-71.446,28.294],[-71.546,28.34],[-71.646,28.386],[-71.75,28.431],[-71.8,28.564],[-71.85,28.698],[-71.9,28.831],[-71.85,28.92],[-71.696,28.963],[-71.646,29.051],[-71.492,29.094],[-71.392,29.049],[-71.238,29.091],[-71.083,29.134],[-71.029,29.222],[-70.875,29.265],[-70.825,29.353],[-70.775,29.441],[-70.721,29.529],[-70.667,29.617],[-70.717,29.751],[-70.667,29.839],[-70.613,29.927],[-70.562,30.015],[-70.508,30.104],[-70.458,30.192],[-70.404,30.28],[-70.35,30.368],[-70.3,30.456],[-70.142,30.498],[-69.988,30.54],[-69.883,30.494],[-69.729,30.535],[-69.625,30.489],[-69.467,30.53],[-69.517,30.664],[-69.462,30.753],[-69.512,30.887],[-69.458,30.974],[-69.404,31.063],[-69.354,31.15],[-69.3,31.238],[-69.142,31.279],[-69.087,31.367],[-69.033,31.455],[-68.875,31.496],[-68.821,31.584],[-68.767,31.671],[-68.712,31.759],[-68.758,31.894],[-68.704,31.981],[-68.65,32.069],[-68.596,32.156],[-68.542,32.244],[-68.488,32.332],[-68.325,32.373],[-68.271,32.46],[-68.217,32.548],[-68.054,32.588],[-67.896,32.628],[-67.838,32.716],[-67.783,32.803],[-67.729,32.891],[-67.671,32.978],[-67.617,33.065],[-67.558,33.153],[-67.504,33.24],[-67.55,33.375],[-67.496,33.462],[-67.437,33.55],[-67.488,33.684],[-67.433,33.772],[-67.479,33.907],[-67.587,33.954],[-67.637,34.089],[-67.742,34.136],[-67.85,34.183],[-67.958,34.23],[-68.062,34.277],[-68.113,34.411],[-68.167,34.546],[-68.217,34.68],[-68.267,34.814],[-68.212,34.902],[-68.262,35.036],[-68.208,35.123],[-68.042,35.164],[-67.988,35.252],[-67.821,35.293],[-67.763,35.38],[-67.6,35.42],[-67.542,35.508],[-67.483,35.595],[-67.533,35.729],[-67.371,35.77],[-67.421,35.904],[-67.363,35.991],[-67.304,36.079],[-67.246,36.166],[-67.3,36.301],[-67.242,36.388],[-67.183,36.475],[-67.125,36.563],[-67.067,36.65],[-67.008,36.737],[-66.95,36.824],[-66.892,36.911],[-66.833,36.999],[-66.775,37.086],[-66.717,37.173],[-66.767,37.307],[-66.708,37.394],[-66.65,37.482],[-66.587,37.569],[-66.642,37.703],[-66.583,37.79],[-66.521,37.878],[-66.462,37.964],[-66.404,38.052],[-66.342,38.139],[-66.283,38.226],[-66.225,38.313],[-66.163,38.4],[-66.104,38.487],[-66.042,38.574],[-65.983,38.661],[-65.921,38.747],[-65.975,38.882],[-66.025,39.017],[-65.967,39.104],[-65.904,39.191],[-65.958,39.325],[-66.013,39.459],[-65.95,39.546],[-65.887,39.633],[-65.829,39.72],[-65.767,39.807],[-65.592,39.846],[-65.529,39.933],[-65.354,39.972],[-65.175,40.01],[-65.063,39.962],[-64.946,39.914],[-64.896,39.779],[-64.783,39.73],[-64.667,39.681],[-64.554,39.633],[-64.379,39.67],[-64.204,39.707],[-64.138,39.794],[-63.962,39.831],[-63.783,39.868],[-63.721,39.954],[-63.546,39.99],[-63.367,40.026],[-63.3,40.112],[-63.238,40.198],[-63.288,40.334],[-63.333,40.47],[-63.383,40.606],[-63.5,40.655],[-63.613,40.705],[-63.663,40.84],[-63.712,40.976],[-63.762,41.111],[-63.7,41.198],[-63.633,41.284],[-63.571,41.37],[-63.504,41.456],[-63.437,41.542],[-63.371,41.628],[-63.308,41.714],[-63.242,41.8],[-63.292,41.935],[-63.225,42.021],[-63.158,42.107],[-63.092,42.193],[-63.025,42.279],[-62.958,42.365],[-62.892,42.451],[-62.946,42.586],[-62.879,42.672],[-62.808,42.758],[-62.742,42.844]],[[-60.875,35.138],[-60.808,35.223],[-60.642,35.255],[-60.537,35.202],[-60.433,35.149],[-60.267,35.181],[-60.163,35.128],[-60.225,35.043],[-60.292,34.959],[-60.354,34.874],[-60.525,34.842],[-60.629,34.895],[-60.729,34.948],[-60.833,35],[-60.937,35.053],[-60.875,35.138]],[[-69.279,29.77],[-69.325,29.905],[-69.375,30.039],[-69.275,29.993],[-69.171,29.946],[-69.121,29.811],[-69.075,29.676],[-69.129,29.589],[-69.183,29.501],[-69.283,29.548],[-69.333,29.682],[-69.279,29.77]],[[-63.167,22.786],[-63.204,22.923],[-63.146,23.009],[-63,23.044],[-62.85,23.078],[-62.754,23.027],[-62.717,22.89],[-62.775,22.804],[-62.829,22.718],[-62.979,22.684],[-63.071,22.735],[-63.167,22.786]],[[-60.142,22.372],[-60.175,22.509],[-60.117,22.594],[-60.062,22.678],[-59.913,22.71],[-59.821,22.657],[-59.729,22.604],[-59.696,22.466],[-59.75,22.382],[-59.808,22.297],[-59.958,22.266],[-60.05,22.319],[-60.142,22.372]],[[-68.533,12.81],[-68.483,12.898],[-68.433,12.986],[-68.387,13.073],[-68.337,13.161],[-68.287,13.248],[-68.238,13.336],[-68.187,13.424],[-68.05,13.463],[-68,13.55],[-67.95,13.638],[-67.808,13.677],[-67.671,13.716],[-67.621,13.803],[-67.479,13.842],[-67.342,13.881],[-67.292,13.968],[-67.242,14.056],[-67.1,14.094],[-67.137,14.23],[-67.087,14.317],[-66.95,14.356],[-66.9,14.443],[-66.85,14.53],[-66.708,14.569],[-66.658,14.656],[-66.517,14.694],[-66.375,14.732],[-66.325,14.819],[-66.183,14.857],[-66.225,14.993],[-66.175,15.08],[-66.212,15.216],[-66.304,15.265],[-66.392,15.314],[-66.433,15.451],[-66.525,15.499],[-66.562,15.636],[-66.654,15.684],[-66.692,15.821],[-66.783,15.869],[-66.825,16.006],[-66.863,16.142],[-66.954,16.191],[-67.046,16.239],[-67.083,16.376],[-67.125,16.512],[-67.075,16.599],[-67.117,16.735],[-67.154,16.871],[-67.104,16.958],[-66.962,16.997],[-66.908,17.084],[-66.767,17.122],[-66.625,17.16],[-66.483,17.198],[-66.342,17.236],[-66.196,17.274],[-66.054,17.311],[-66.004,17.398],[-65.95,17.485],[-65.9,17.572],[-65.937,17.709],[-66.029,17.758],[-66.071,17.894],[-66.163,17.944],[-66.2,18.08],[-66.292,18.129],[-66.333,18.265],[-66.371,18.401],[-66.321,18.489],[-66.363,18.625],[-66.308,18.712],[-66.258,18.799],[-66.113,18.836],[-66.058,18.923],[-65.917,18.961],[-65.863,19.048],[-65.721,19.085],[-65.629,19.036],[-65.483,19.073],[-65.337,19.11],[-65.246,19.06],[-65.154,19.01],[-65.063,18.96],[-64.921,18.997],[-64.775,19.033],[-64.721,19.12],[-64.671,19.206],[-64.617,19.293],[-64.562,19.379],[-64.508,19.466],[-64.458,19.552],[-64.496,19.689],[-64.442,19.775],[-64.387,19.862],[-64.333,19.948],[-64.283,20.034],[-64.229,20.121],[-64.175,20.207],[-64.121,20.293],[-64.067,20.379],[-64.013,20.466],[-63.958,20.552],[-63.996,20.689],[-63.942,20.775],[-63.887,20.861],[-63.833,20.948],[-63.779,21.034],[-63.817,21.171],[-63.762,21.257],[-63.708,21.343],[-63.654,21.429],[-63.6,21.515],[-63.454,21.55],[-63.4,21.636],[-63.25,21.671],[-63.104,21.706],[-62.958,21.741],[-62.863,21.69],[-62.717,21.724],[-62.571,21.758],[-62.475,21.707],[-62.329,21.741],[-62.179,21.775],[-62.125,21.861],[-61.979,21.894],[-61.829,21.928],[-61.683,21.961],[-61.533,21.995],[-61.479,22.08],[-61.329,22.113],[-61.275,22.198],[-61.125,22.231],[-61.033,22.179],[-60.883,22.211],[-60.792,22.159],[-60.7,22.106],[-60.608,22.054],[-60.517,22.001],[-60.483,21.863],[-60.446,21.726],[-60.504,21.641],[-60.413,21.589],[-60.263,21.621],[-60.117,21.653],[-60.025,21.599],[-59.933,21.547],[-59.842,21.494],[-59.75,21.441],[-59.717,21.303],[-59.775,21.219],[-59.683,21.166],[-59.65,21.028],[-59.613,20.891],[-59.671,20.806],[-59.579,20.753],[-59.546,20.616],[-59.513,20.478],[-59.367,20.509],[-59.275,20.456],[-59.242,20.319],[-59.15,20.266],[-59.062,20.212],[-58.971,20.159],[-58.937,20.021],[-58.904,19.884],[-58.871,19.747],[-58.925,19.663],[-58.892,19.525],[-58.95,19.441],[-59.096,19.411],[-59.15,19.326],[-59.296,19.295],[-59.442,19.264],[-59.587,19.232],[-59.825,19.254],[-59.733,19.201],[-59.879,19.169],[-60.113,19.19],[-60.025,19.138],[-60.171,19.106],[-60.225,19.021],[-60.371,18.989],[-60.425,18.904],[-60.479,18.819],[-60.446,18.682],[-60.5,18.597],[-60.554,18.513],[-60.521,18.375],[-60.575,18.291],[-60.537,18.154],[-60.504,18.017],[-60.471,17.879],[-60.433,17.743],[-60.4,17.606],[-60.363,17.469],[-60.329,17.332],[-60.383,17.247],[-60.35,17.11],[-60.404,17.025],[-60.367,16.889],[-60.333,16.752],[-60.388,16.667],[-60.35,16.53],[-60.404,16.446],[-60.458,16.361],[-60.512,16.276],[-60.475,16.139],[-60.442,16.003],[-60.496,15.918],[-60.458,15.781],[-60.425,15.644],[-60.388,15.508],[-60.442,15.423],[-60.496,15.338],[-60.55,15.253],[-60.6,15.169],[-60.654,15.084],[-60.708,14.999],[-60.762,14.914],[-60.812,14.829],[-60.779,14.693],[-60.742,14.556],[-60.708,14.42],[-60.758,14.335],[-60.812,14.25],[-60.863,14.165],[-60.917,14.08],[-60.971,13.995],[-61.021,13.91],[-61.163,13.876],[-61.304,13.842],[-61.392,13.893],[-61.479,13.944],[-61.571,13.996],[-61.746,14.098],[-61.658,14.047],[-61.8,14.012],[-61.937,13.978],[-61.992,13.893],[-62.133,13.858],[-62.183,13.772],[-62.238,13.687],[-62.375,13.652],[-62.429,13.566],[-62.479,13.481],[-62.442,13.344],[-62.496,13.259],[-62.458,13.123],[-62.367,13.072],[-62.329,12.936],[-62.242,12.885],[-62.204,12.749],[-62.117,12.699],[-62.029,12.648],[-61.942,12.598],[-61.904,12.461],[-61.817,12.411],[-61.779,12.275],[-61.742,12.139],[-61.792,12.053],[-61.754,11.917],[-61.808,11.832],[-61.858,11.747],[-61.908,11.661],[-62.05,11.626],[-62.1,11.541],[-62.238,11.506],[-62.379,11.47],[-62.429,11.385],[-62.567,11.349],[-62.704,11.314],[-62.846,11.278],[-62.983,11.242],[-63.071,11.292],[-63.212,11.256],[-63.3,11.306],[-63.437,11.27],[-63.525,11.32],[-63.617,11.369],[-63.754,11.333],[-63.892,11.297],[-64.029,11.26],[-64.171,11.223],[-64.308,11.186],[-64.446,11.149],[-64.587,11.112],[-64.725,11.075],[-64.863,11.038],[-65,11.001],[-65.05,10.914],[-65.192,10.877],[-65.238,10.79],[-65.379,10.752],[-65.429,10.666],[-65.479,10.579],[-65.525,10.492],[-65.667,10.454],[-65.712,10.367],[-65.725,10.145],[-65.863,10.107],[-65.9,10.243],[-65.762,10.281],[-65.675,10.232],[-65.537,10.269],[-65.4,10.308],[-65.262,10.345],[-65.212,10.432],[-65.075,10.469],[-64.983,10.42],[-64.846,10.458],[-64.758,10.409],[-64.621,10.446],[-64.529,10.397],[-64.442,10.347],[-64.354,10.298],[-64.267,10.249],[-64.225,10.113],[-64.138,10.064],[-64.05,10.014],[-64.013,9.879],[-64.063,9.793],[-63.975,9.743],[-63.933,9.608],[-63.846,9.558],[-63.708,9.595],[-63.658,9.681],[-63.521,9.718],[-63.471,9.804],[-63.333,9.84],[-63.246,9.791],[-63.108,9.827],[-63.021,9.777],[-62.929,9.728],[-62.842,9.678],[-62.754,9.628],[-62.667,9.578],[-62.629,9.443],[-62.592,9.307],[-62.504,9.257],[-62.467,9.122],[-62.425,8.986],[-62.387,8.851],[-62.437,8.766],[-62.4,8.63],[-62.45,8.544],[-62.413,8.409],[-62.462,8.324],[-62.512,8.238],[-62.646,8.202],[-62.738,8.251],[-62.871,8.215],[-62.962,8.264],[-63.05,8.314],[-63.187,8.278],[-63.275,8.327],[-63.363,8.376],[-63.45,8.425],[-63.537,8.475],[-63.625,8.524],[-63.712,8.573],[-63.8,8.622],[-63.887,8.672],[-63.979,8.721],[-64.017,8.856],[-64.104,8.905],[-64.142,9.041],[-64.233,9.09],[-64.458,9.102],[-64.371,9.053],[-64.508,9.015],[-64.646,8.978],[-64.692,8.891],[-64.742,8.805],[-64.879,8.768],[-64.929,8.681],[-64.979,8.594],[-65.025,8.508],[-65.075,8.421],[-65.125,8.334],[-65.175,8.248],[-65.221,8.161],[-65.271,8.074],[-65.321,7.988],[-65.367,7.901],[-65.329,7.766],[-65.287,7.631],[-65.25,7.495],[-65.296,7.409],[-65.258,7.273],[-65.308,7.187],[-65.354,7.1],[-65.404,7.013],[-65.45,6.926],[-65.5,6.84],[-65.55,6.753],[-65.596,6.666],[-65.646,6.579],[-65.604,6.444],[-65.567,6.309],[-65.525,6.174],[-65.571,6.087],[-65.533,5.953],[-65.579,5.866],[-65.629,5.779],[-65.675,5.692],[-65.725,5.605],[-65.683,5.471],[-65.733,5.384],[-65.867,5.345],[-66.004,5.306],[-66.05,5.219],[-66.187,5.18],[-66.321,5.141],[-66.371,5.054],[-66.417,4.967],[-66.554,4.927],[-66.6,4.84],[-66.65,4.753],[-66.696,4.666],[-66.742,4.579],[-66.792,4.492],[-66.837,4.404],[-66.883,4.318],[-66.933,4.23],[-66.979,4.143],[-67.025,4.056],[-66.988,3.921],[-67.033,3.834],[-66.992,3.699],[-66.95,3.564],[-66.996,3.477],[-66.958,3.343],[-67.004,3.256],[-66.917,3.208],[-66.875,3.074],[-66.921,2.986],[-66.967,2.899],[-67.104,2.859],[-67.238,2.819],[-67.283,2.732],[-67.508,2.739],[-67.421,2.692],[-67.554,2.651],[-67.6,2.564],[-67.738,2.524],[-67.783,2.436],[-67.829,2.349],[-67.875,2.261],[-67.925,2.174],[-68.058,2.134],[-68.104,2.046],[-68.242,2.005],[-68.375,1.965],[-68.508,1.924],[-68.554,1.836],[-68.692,1.796],[-68.738,1.708],[-68.871,1.667],[-69.008,1.626],[-69.054,1.538],[-69.187,1.497],[-69.233,1.409],[-69.371,1.368],[-69.417,1.28],[-69.55,1.239],[-69.596,1.151],[-69.733,1.11],[-69.779,1.022],[-69.738,0.888],[-69.783,0.799],[-69.829,0.712],[-69.788,0.577],[-69.833,0.489],[-69.742,0.443],[-69.7,0.308],[-69.658,0.174],[-69.571,0.128],[-69.479,0.081],[-69.346,0.123],[-69.258,0.076],[-69.171,0.03],[-69.079,-0.016],[-68.992,-0.063],[-68.904,-0.109],[-68.817,-0.156],[-68.725,-0.202],[-68.637,-0.249],[-68.55,-0.295],[-68.508,-0.429],[-68.462,-0.563],[-68.421,-0.697],[-68.554,-0.738],[-68.6,-0.826],[-68.646,-0.914],[-68.692,-1.001],[-68.738,-1.089],[-68.696,-1.223],[-68.742,-1.311],[-68.788,-1.398],[-68.833,-1.486],[-68.792,-1.62],[-68.746,-1.754],[-68.792,-1.841],[-68.925,-1.883],[-68.971,-1.971],[-69.017,-2.058],[-69.154,-2.1],[-69.287,-2.142],[-69.375,-2.096],[-69.462,-2.05],[-69.554,-2.004],[-69.687,-2.046],[-69.775,-2],[-69.913,-2.042],[-70,-1.996],[-70.087,-1.95],[-70.179,-1.904],[-70.267,-1.858],[-70.354,-1.812],[-70.446,-1.766],[-70.533,-1.72],[-70.667,-1.762],[-70.8,-1.804],[-70.937,-1.846],[-71.025,-1.8],[-71.158,-1.842],[-71.204,-1.93],[-71.342,-1.973],[-71.383,-2.061],[-71.429,-2.149],[-71.567,-2.191],[-71.613,-2.28],[-71.746,-2.322],[-71.792,-2.41],[-71.837,-2.499],[-72.062,-2.495],[-71.971,-2.541],[-72.104,-2.584],[-72.329,-2.58],[-72.242,-2.626],[-72.375,-2.669],[-72.508,-2.711],[-72.6,-2.666],[-72.733,-2.708],[-72.779,-2.796],[-72.913,-2.839],[-73.137,-2.836],[-73.05,-2.882],[-73.183,-2.924],[-73.317,-2.967],[-73.454,-3.01],[-73.542,-2.964],[-73.675,-3.007],[-73.767,-2.961],[-73.9,-3.004],[-74.033,-3.047],[-74.125,-3.001],[-74.212,-2.955],[-74.437,-2.952],[-74.346,-2.998],[-74.483,-3.041],[-74.529,-3.129],[-74.575,-3.218],[-74.621,-3.306],[-74.667,-3.395],[-74.712,-3.484],[-74.846,-3.527],[-74.892,-3.615],[-75.025,-3.658],[-75.071,-3.747],[-75.117,-3.836],[-75.163,-3.924],[-75.121,-4.059],[-75.075,-4.193],[-75.033,-4.327],[-75.079,-4.416],[-74.992,-4.462],[-74.9,-4.508],[-74.812,-4.553],[-74.675,-4.51],[-74.587,-4.556],[-74.5,-4.602],[-74.408,-4.647],[-74.321,-4.693],[-74.229,-4.739],[-74.142,-4.784],[-74.096,-4.918],[-74.054,-5.052],[-73.962,-5.098],[-73.921,-5.232],[-73.967,-5.321],[-73.921,-5.455],[-73.879,-5.589],[-73.833,-5.723],[-73.879,-5.811],[-73.833,-5.946],[-73.879,-6.034],[-73.837,-6.168],[-73.792,-6.302],[-73.837,-6.391],[-73.792,-6.524],[-73.837,-6.613],[-73.883,-6.702],[-73.837,-6.836],[-73.75,-6.881],[-73.704,-7.014],[-73.658,-7.148],[-73.571,-7.193],[-73.479,-7.239],[-73.392,-7.284],[-73.346,-7.417],[-73.3,-7.551],[-73.254,-7.685],[-73.208,-7.818],[-73.167,-7.952],[-73.208,-8.04],[-73.254,-8.129],[-73.3,-8.217],[-73.254,-8.351],[-73.3,-8.439],[-73.346,-8.528],[-73.392,-8.616],[-73.433,-8.705],[-73.479,-8.793],[-73.525,-8.882],[-73.571,-8.97],[-73.617,-9.059],[-73.75,-9.102],[-73.796,-9.191],[-73.842,-9.28],[-73.883,-9.368],[-73.929,-9.457],[-73.975,-9.546],[-74.021,-9.634],[-74.067,-9.723],[-74.113,-9.811],[-74.154,-9.9],[-74.2,-9.989],[-74.337,-10.032],[-74.383,-10.121],[-74.517,-10.165],[-74.654,-10.209],[-74.787,-10.252],[-74.925,-10.296],[-75.017,-10.251],[-75.154,-10.295],[-75.196,-10.384],[-75.242,-10.473],[-75.288,-10.561],[-75.333,-10.65],[-75.379,-10.739],[-75.425,-10.827],[-75.379,-10.961],[-75.425,-11.05],[-75.471,-11.138],[-75.604,-11.182],[-75.65,-11.271],[-75.787,-11.315],[-75.879,-11.27],[-76.017,-11.314],[-76.108,-11.269],[-76.242,-11.313],[-76.333,-11.268],[-76.425,-11.223],[-76.517,-11.178],[-76.654,-11.221],[-76.787,-11.265],[-76.925,-11.309],[-76.971,-11.397],[-77.017,-11.486],[-77.062,-11.575],[-77.108,-11.664],[-77.246,-11.707],[-77.292,-11.796],[-77.246,-11.93],[-77.292,-12.019],[-77.246,-12.153],[-77.154,-12.198],[-77.067,-12.243],[-77.021,-12.377],[-77.067,-12.466],[-76.975,-12.511],[-76.929,-12.644],[-76.975,-12.733],[-76.929,-12.867],[-76.975,-12.956],[-76.929,-13.089],[-76.971,-13.178],[-76.925,-13.311],[-76.833,-13.356],[-76.787,-13.49],[-76.833,-13.579],[-76.787,-13.712],[-76.833,-13.801],[-76.787,-13.934],[-76.833,-14.023],[-76.879,-14.112],[-76.925,-14.201],[-77.062,-14.245],[-77.108,-14.333],[-77.246,-14.378],[-77.383,-14.422],[-77.521,-14.466],[-77.617,-14.421],[-77.708,-14.376],[-77.8,-14.331],[-77.892,-14.286],[-77.983,-14.241],[-78.029,-14.107],[-78.121,-14.062],[-78.167,-13.929],[-78.212,-13.795],[-78.258,-13.661],[-78.304,-13.527],[-78.35,-13.393],[-78.396,-13.259],[-78.35,-13.17],[-78.396,-13.036],[-78.35,-12.947],[-78.392,-12.813],[-78.437,-12.679],[-78.392,-12.591],[-78.346,-12.502],[-78.208,-12.458],[-78.163,-12.369],[-78.117,-12.281],[-78.163,-12.147],[-78.254,-12.101],[-78.342,-12.056],[-78.433,-12.011],[-78.525,-11.965],[-78.617,-11.92],[-78.708,-11.874],[-78.8,-11.829],[-78.892,-11.783],[-78.979,-11.737],[-79.071,-11.692],[-79.208,-11.735],[-79.3,-11.689],[-79.437,-11.732],[-79.529,-11.687],[-79.667,-11.73],[-79.804,-11.773],[-79.896,-11.727],[-80.033,-11.77],[-80.121,-11.724],[-80.212,-11.678],[-80.304,-11.632],[-80.396,-11.586],[-80.483,-11.54],[-80.575,-11.494],[-80.667,-11.448],[-80.708,-11.313],[-80.754,-11.179],[-80.796,-11.044],[-80.887,-10.998],[-80.929,-10.863],[-80.975,-10.728],[-81.062,-10.682],[-81.108,-10.547],[-81.15,-10.412],[-81.104,-10.324],[-81.146,-10.189],[-81.1,-10.1],[-81.142,-9.965],[-81.096,-9.877],[-81.05,-9.788],[-80.913,-9.746],[-80.867,-9.657],[-80.817,-9.568],[-80.863,-9.434],[-80.95,-9.387],[-81.042,-9.341],[-81.129,-9.295],[-81.175,-9.16],[-81.262,-9.114],[-81.308,-8.979],[-81.258,-8.89],[-81.304,-8.755],[-81.254,-8.666],[-81.3,-8.532],[-81.25,-8.443],[-81.204,-8.354],[-81.158,-8.266],[-81.113,-8.177],[-81.067,-8.088],[-81.108,-7.954],[-81.062,-7.865],[-81.013,-7.776],[-81.058,-7.641],[-81.008,-7.553],[-81.054,-7.418],[-81.096,-7.283],[-81.05,-7.194],[-81.092,-7.059],[-81.046,-6.971],[-81.087,-6.836],[-81.042,-6.747],[-80.996,-6.658],[-80.946,-6.57],[-80.992,-6.435],[-80.942,-6.346],[-80.896,-6.257],[-80.942,-6.122],[-80.983,-5.988],[-81.025,-5.853],[-81.113,-5.806],[-81.158,-5.672],[-81.246,-5.625],[-81.287,-5.49],[-81.375,-5.444],[-81.467,-5.398],[-81.554,-5.351],[-81.646,-5.305],[-81.733,-5.258],[-81.821,-5.212],[-81.863,-5.077],[-81.908,-4.942],[-81.95,-4.807],[-81.904,-4.719],[-81.767,-4.676],[-81.721,-4.588],[-81.675,-4.499],[-81.629,-4.411],[-81.492,-4.368],[-81.446,-4.28],[-81.4,-4.191],[-81.354,-4.103],[-81.217,-4.06],[-81.171,-3.972],[-81.125,-3.883],[-80.988,-3.841],[-80.942,-3.752],[-80.808,-3.71],[-80.762,-3.621],[-80.625,-3.579],[-80.579,-3.49],[-80.446,-3.448],[-80.308,-3.405],[-80.221,-3.451],[-80.133,-3.497],[-80.042,-3.543],[-79.954,-3.59],[-79.867,-3.636],[-79.775,-3.682],[-79.733,-3.817],[-79.779,-3.906],[-79.692,-3.952],[-79.65,-4.086],[-79.558,-4.132],[-79.425,-4.09],[-79.287,-4.047],[-79.2,-4.093],[-79.067,-4.051],[-78.929,-4.008],[-78.842,-4.054],[-78.75,-4.1],[-78.663,-4.146],[-78.575,-4.192],[-78.529,-4.327],[-78.442,-4.373],[-78.4,-4.507],[-78.308,-4.553],[-78.221,-4.599],[-78.087,-4.557],[-78.037,-4.468],[-77.904,-4.425],[-77.771,-4.382],[-77.725,-4.293],[-77.679,-4.204],[-77.629,-4.116],[-77.583,-4.027],[-77.629,-3.892],[-77.583,-3.803],[-77.537,-3.715],[-77.492,-3.626],[-77.446,-3.537],[-77.4,-3.448],[-77.354,-3.359],[-77.304,-3.271],[-77.171,-3.228],[-77.125,-3.139],[-76.992,-3.096],[-76.946,-3.007],[-76.9,-2.919],[-76.762,-2.876],[-76.717,-2.787],[-76.583,-2.744],[-76.446,-2.701],[-76.4,-2.613],[-76.267,-2.57],[-76.221,-2.481],[-76.087,-2.438],[-76.042,-2.349],[-76.083,-2.215],[-76.171,-2.169],[-76.263,-2.123],[-76.304,-1.988],[-76.392,-1.942],[-76.483,-1.896],[-76.571,-1.85],[-76.658,-1.804],[-76.75,-1.758],[-76.837,-1.712],[-76.925,-1.666],[-77.062,-1.709],[-77.15,-1.663],[-77.283,-1.706],[-77.375,-1.66],[-77.508,-1.703],[-77.596,-1.657],[-77.687,-1.611],[-77.775,-1.565],[-77.863,-1.519],[-77.954,-1.473],[-78.042,-1.427],[-78.083,-1.292],[-78.171,-1.246],[-78.217,-1.111],[-78.171,-1.022],[-78.212,-0.888],[-78.167,-0.799],[-78.121,-0.71],[-78.075,-0.621],[-78.029,-0.533],[-77.983,-0.444],[-77.937,-0.355],[-77.892,-0.266],[-77.846,-0.177],[-77.8,-0.089],[-77.75,0],[-77.617,0.042],[-77.571,0.131],[-77.437,0.174],[-77.392,0.263],[-77.254,0.306],[-77.167,0.26],[-77.033,0.303],[-76.896,0.345],[-76.762,0.388],[-76.675,0.342],[-76.537,0.385],[-76.45,0.339],[-76.317,0.381],[-76.225,0.335],[-76.092,0.378],[-75.958,0.421],[-75.867,0.374],[-75.779,0.329],[-75.646,0.371],[-75.508,0.414],[-75.375,0.456],[-75.242,0.499],[-75.196,0.588],[-75.058,0.63],[-74.925,0.673],[-74.837,0.627],[-74.7,0.669],[-74.567,0.712],[-74.479,0.666],[-74.342,0.708],[-74.208,0.751],[-74.163,0.839],[-74.025,0.882],[-73.979,0.971],[-74.025,1.105],[-73.979,1.194],[-74.021,1.329],[-73.975,1.417],[-74.017,1.552],[-74.058,1.687],[-74.146,1.733],[-74.192,1.868],[-74.233,2.003],[-74.321,2.049],[-74.408,2.095],[-74.5,2.141],[-74.542,2.276],[-74.629,2.322],[-74.717,2.369],[-74.762,2.503],[-74.85,2.549],[-74.892,2.684],[-74.933,2.819],[-74.979,2.954],[-75.021,3.089],[-74.975,3.178],[-75.017,3.313],[-74.971,3.401],[-74.925,3.49],[-74.879,3.579],[-74.833,3.667],[-74.783,3.756],[-74.738,3.845],[-74.692,3.933],[-74.646,4.022],[-74.513,4.064],[-74.462,4.153],[-74.417,4.242],[-74.283,4.284],[-74.238,4.373],[-74.1,4.415],[-73.967,4.457],[-73.829,4.499],[-73.742,4.453],[-73.604,4.495],[-73.517,4.449],[-73.429,4.402],[-73.337,4.356],[-73.25,4.309],[-73.163,4.263],[-73.075,4.216],[-72.983,4.17],[-72.85,4.212],[-72.758,4.166],[-72.625,4.208],[-72.538,4.161],[-72.4,4.203],[-72.354,4.291],[-72.217,4.333],[-72.262,4.468],[-72.212,4.556],[-72.254,4.691],[-72.346,4.738],[-72.387,4.873],[-72.429,5.008],[-72.471,5.143],[-72.425,5.231],[-72.467,5.366],[-72.508,5.501],[-72.462,5.59],[-72.504,5.725],[-72.546,5.86],[-72.5,5.948],[-72.542,6.083],[-72.496,6.172],[-72.538,6.307],[-72.488,6.395],[-72.354,6.437],[-72.308,6.525],[-72.171,6.567],[-72.033,6.609],[-71.9,6.65],[-71.808,6.603],[-71.721,6.556],[-71.633,6.51],[-71.542,6.463],[-71.454,6.416],[-71.367,6.369],[-71.325,6.234],[-71.283,6.099],[-71.238,5.964],[-71.196,5.829],[-71.246,5.741],[-71.204,5.605],[-71.163,5.47],[-71.121,5.335],[-71.079,5.2],[-71.037,5.065],[-70.996,4.93],[-70.954,4.795],[-70.863,4.748],[-70.821,4.613],[-70.779,4.478],[-70.692,4.431],[-70.604,4.385],[-70.517,4.338],[-70.471,4.203],[-70.383,4.156],[-70.296,4.109],[-70.208,4.062],[-70.071,4.103],[-70.025,4.191],[-69.979,4.279],[-69.929,4.367],[-69.971,4.502],[-69.925,4.59],[-69.967,4.725],[-69.921,4.813],[-69.962,4.948],[-69.917,5.036],[-69.954,5.171],[-69.908,5.259],[-69.863,5.347],[-69.817,5.435],[-69.767,5.523],[-69.721,5.611],[-69.675,5.699],[-69.625,5.786],[-69.579,5.874],[-69.529,5.962],[-69.483,6.05],[-69.437,6.138],[-69.479,6.273],[-69.567,6.32],[-69.704,6.28],[-69.792,6.327],[-69.879,6.374],[-69.921,6.509],[-69.962,6.644],[-70.05,6.692],[-70.092,6.827],[-70.133,6.962],[-70.221,7.009],[-70.262,7.144],[-70.354,7.192],[-70.396,7.327],[-70.437,7.462],[-70.479,7.597],[-70.517,7.733],[-70.558,7.868],[-70.512,7.956],[-70.554,8.091],[-70.508,8.179],[-70.546,8.314],[-70.5,8.403],[-70.454,8.491],[-70.404,8.579],[-70.358,8.667],[-70.308,8.755],[-70.262,8.843],[-70.212,8.931],[-70.167,9.019],[-70.029,9.059],[-69.979,9.147],[-69.933,9.235],[-69.796,9.276],[-69.746,9.364],[-69.608,9.404],[-69.475,9.444],[-69.337,9.485],[-69.246,9.437],[-69.158,9.389],[-69.067,9.342],[-69.029,9.206],[-68.937,9.159],[-68.85,9.111],[-68.758,9.063],[-68.671,9.016],[-68.533,9.056],[-68.396,9.095],[-68.258,9.135],[-68.212,9.223],[-68.075,9.262],[-68.025,9.35],[-68.067,9.485],[-68.104,9.621],[-68.196,9.669],[-68.238,9.804],[-68.325,9.852],[-68.413,9.9],[-68.504,9.948],[-68.542,10.083],[-68.633,10.131],[-68.721,10.179],[-68.763,10.315],[-68.804,10.45],[-68.846,10.586],[-68.796,10.673],[-68.838,10.809],[-68.788,10.897],[-68.738,10.984],[-68.779,11.12],[-68.729,11.208],[-68.771,11.343],[-68.813,11.479],[-68.854,11.614],[-68.804,11.702],[-68.846,11.838],[-68.796,11.925],[-68.746,12.013],[-68.788,12.149],[-68.738,12.236],[-68.692,12.324],[-68.729,12.46],[-68.683,12.548],[-68.633,12.635],[-68.583,12.723],[-68.533,12.81]],[[-71.579,15.767],[-71.529,15.855],[-71.479,15.943],[-71.433,16.031],[-71.292,16.073],[-71.15,16.114],[-71.058,16.067],[-70.967,16.02],[-70.875,15.973],[-70.833,15.837],[-70.742,15.79],[-70.7,15.655],[-70.608,15.607],[-70.562,15.472],[-70.521,15.336],[-70.479,15.201],[-70.437,15.066],[-70.396,14.93],[-70.354,14.795],[-70.404,14.707],[-70.45,14.619],[-70.592,14.578],[-70.642,14.49],[-70.779,14.449],[-70.871,14.496],[-71.012,14.455],[-71.1,14.503],[-71.192,14.549],[-71.238,14.685],[-71.325,14.732],[-71.371,14.867],[-71.413,15.003],[-71.454,15.138],[-71.496,15.273],[-71.542,15.408],[-71.492,15.496],[-71.533,15.632],[-71.579,15.767]],[[-78.679,15.577],[-78.633,15.666],[-78.587,15.755],[-78.45,15.799],[-78.358,15.755],[-78.263,15.71],[-78.171,15.666],[-78.079,15.621],[-77.988,15.577],[-77.937,15.443],[-77.846,15.399],[-77.8,15.265],[-77.708,15.221],[-77.658,15.087],[-77.567,15.042],[-77.521,14.909],[-77.567,14.82],[-77.475,14.775],[-77.429,14.641],[-77.475,14.553],[-77.521,14.464],[-77.567,14.375],[-77.613,14.286],[-77.75,14.242],[-77.842,14.287],[-77.983,14.243],[-78.075,14.288],[-78.167,14.333],[-78.212,14.466],[-78.258,14.6],[-78.304,14.733],[-78.354,14.867],[-78.446,14.911],[-78.537,14.956],[-78.583,15.089],[-78.633,15.222],[-78.679,15.356],[-78.725,15.489],[-78.679,15.577]],[[-83.708,10.172],[-83.663,10.261],[-83.525,10.305],[-83.392,10.349],[-83.254,10.393],[-83.121,10.437],[-82.983,10.481],[-82.85,10.525],[-82.758,10.48],[-82.621,10.524],[-82.529,10.48],[-82.396,10.524],[-82.304,10.479],[-82.212,10.435],[-82.121,10.391],[-82.075,10.258],[-81.983,10.213],[-81.892,10.168],[-81.804,10.124],[-81.712,10.079],[-81.575,10.123],[-81.621,10.256],[-81.579,10.344],[-81.533,10.433],[-81.488,10.522],[-81.442,10.61],[-81.396,10.699],[-81.354,10.788],[-81.308,10.876],[-81.171,10.92],[-81.125,11.009],[-81.083,11.098],[-81.038,11.186],[-80.992,11.275],[-80.946,11.363],[-80.9,11.452],[-80.854,11.541],[-80.812,11.629],[-80.767,11.718],[-80.629,11.762],[-80.537,11.718],[-80.4,11.761],[-80.308,11.717],[-80.175,11.761],[-80.038,11.805],[-79.992,11.894],[-79.946,11.983],[-79.808,12.026],[-79.762,12.115],[-79.721,12.204],[-79.675,12.293],[-79.629,12.381],[-79.583,12.47],[-79.446,12.514],[-79.4,12.603],[-79.354,12.692],[-79.308,12.78],[-79.262,12.869],[-79.217,12.958],[-79.171,13.047],[-79.129,13.135],[-78.992,13.179],[-78.808,13.312],[-78.762,13.401],[-78.625,13.445],[-78.488,13.489],[-78.35,13.533],[-78.258,13.488],[-78.163,13.443],[-78.071,13.398],[-77.979,13.353],[-77.887,13.308],[-77.842,13.174],[-77.75,13.129],[-77.658,13.084],[-77.521,13.128],[-77.429,13.083],[-77.292,13.127],[-77.154,13.17],[-77.062,13.125],[-76.925,13.168],[-76.787,13.212],[-76.65,13.255],[-76.512,13.299],[-76.467,13.388],[-76.329,13.431],[-76.279,13.519],[-76.233,13.608],[-76.096,13.651],[-76.05,13.74],[-75.913,13.784],[-75.863,13.872],[-75.817,13.961],[-75.771,14.05],[-75.725,14.138],[-75.675,14.227],[-75.629,14.316],[-75.583,14.404],[-75.537,14.493],[-75.396,14.536],[-75.258,14.579],[-75.212,14.668],[-75.071,14.711],[-74.979,14.666],[-74.887,14.62],[-74.75,14.663],[-74.608,14.705],[-74.562,14.794],[-74.608,14.929],[-74.654,15.063],[-74.696,15.198],[-74.742,15.332],[-74.696,15.421],[-74.738,15.555],[-74.692,15.644],[-74.646,15.732],[-74.692,15.867],[-74.642,15.955],[-74.687,16.09],[-74.779,16.135],[-74.921,16.092],[-75.012,16.138],[-75.104,16.183],[-75.2,16.229],[-75.246,16.363],[-75.338,16.409],[-75.383,16.543],[-75.338,16.631],[-75.383,16.765],[-75.333,16.854],[-75.288,16.943],[-75.146,16.986],[-75.1,17.075],[-75.05,17.163],[-74.913,17.207],[-74.771,17.25],[-74.629,17.293],[-74.675,17.427],[-74.721,17.561],[-74.767,17.696],[-74.863,17.741],[-74.908,17.875],[-75,17.92],[-75.046,18.054],[-75.096,18.188],[-75.142,18.322],[-75.187,18.456],[-75.142,18.545],[-75.092,18.633],[-75.046,18.722],[-74.996,18.811],[-74.95,18.899],[-74.808,18.943],[-74.667,18.986],[-74.617,19.075],[-74.475,19.118],[-74.333,19.161],[-74.242,19.116],[-74.096,19.159],[-74.004,19.114],[-73.908,19.068],[-73.863,18.934],[-73.817,18.799],[-73.725,18.754],[-73.679,18.619],[-73.725,18.531],[-73.679,18.396],[-73.633,18.262],[-73.683,18.173],[-73.637,18.039],[-73.687,17.951],[-73.642,17.816],[-73.687,17.728],[-73.738,17.639],[-73.783,17.55],[-73.975,17.419],[-74.113,17.376],[-74.163,17.288],[-74.071,17.242],[-73.975,17.196],[-73.883,17.15],[-73.742,17.193],[-73.65,17.147],[-73.604,17.012],[-73.513,16.966],[-73.467,16.832],[-73.517,16.743],[-73.421,16.697],[-73.379,16.563],[-73.425,16.474],[-73.379,16.339],[-73.337,16.204],[-73.383,16.116],[-73.292,16.07],[-73.25,15.935],[-73.204,15.8],[-73.158,15.666],[-73.117,15.531],[-73.163,15.442],[-73.121,15.307],[-73.075,15.173],[-73.033,15.038],[-73.171,14.996],[-73.129,14.861],[-73.083,14.726],[-73.042,14.591],[-72.996,14.456],[-72.904,14.409],[-72.863,14.274],[-72.821,14.14],[-72.775,14.005],[-72.733,13.87],[-72.687,13.735],[-72.738,13.646],[-72.696,13.511],[-72.65,13.376],[-72.608,13.241],[-72.567,13.106],[-72.521,12.971],[-72.571,12.883],[-72.525,12.747],[-72.483,12.612],[-72.533,12.524],[-72.488,12.389],[-72.538,12.3],[-72.496,12.165],[-72.542,12.077],[-72.592,11.988],[-72.729,11.947],[-72.867,11.905],[-72.958,11.951],[-73.046,11.998],[-73.137,12.044],[-73.229,12.091],[-73.317,12.138],[-73.408,12.184],[-73.454,12.319],[-73.542,12.365],[-73.633,12.412],[-73.679,12.546],[-73.767,12.593],[-73.812,12.728],[-73.904,12.774],[-73.946,12.909],[-73.988,13.044],[-74.033,13.178],[-74.075,13.313],[-74.167,13.359],[-74.258,13.405],[-74.304,13.54],[-74.396,13.586],[-74.533,13.543],[-74.625,13.589],[-74.854,13.593],[-74.762,13.547],[-74.9,13.504],[-75.133,13.507],[-75.042,13.461],[-75.179,13.418],[-75.317,13.375],[-75.363,13.287],[-75.413,13.198],[-75.55,13.155],[-75.687,13.112],[-75.733,13.023],[-75.871,12.98],[-75.917,12.891],[-75.967,12.803],[-76.012,12.714],[-76.058,12.625],[-76.104,12.536],[-76.058,12.402],[-76.017,12.268],[-75.971,12.133],[-75.879,12.088],[-75.787,12.042],[-75.7,11.996],[-75.562,12.039],[-75.471,11.993],[-75.379,11.947],[-75.242,11.99],[-75.104,12.033],[-75.012,11.987],[-74.971,11.852],[-74.879,11.806],[-74.787,11.76],[-74.746,11.626],[-74.792,11.537],[-74.746,11.402],[-74.796,11.313],[-74.842,11.225],[-74.887,11.136],[-74.933,11.048],[-74.983,10.959],[-75.029,10.87],[-75.075,10.781],[-75.212,10.739],[-75.35,10.696],[-75.442,10.742],[-75.529,10.788],[-75.621,10.834],[-75.667,10.968],[-75.754,11.014],[-75.846,11.06],[-75.983,11.017],[-76.029,10.928],[-76.075,10.84],[-76.125,10.751],[-76.171,10.662],[-76.217,10.573],[-76.171,10.439],[-76.217,10.35],[-76.267,10.261],[-76.313,10.173],[-76.358,10.084],[-76.404,9.995],[-76.45,9.906],[-76.496,9.817],[-76.542,9.729],[-76.587,9.64],[-76.637,9.551],[-76.771,9.508],[-76.908,9.465],[-77,9.511],[-77.133,9.468],[-77.271,9.425],[-77.363,9.47],[-77.5,9.427],[-77.633,9.384],[-77.725,9.429],[-77.863,9.386],[-77.996,9.343],[-78.133,9.299],[-78.271,9.256],[-78.404,9.213],[-78.542,9.169],[-78.679,9.126],[-78.812,9.083],[-78.904,9.128],[-79.042,9.085],[-79.221,9.175],[-79.129,9.13],[-79.267,9.087],[-79.404,9.043],[-79.446,8.954],[-79.492,8.866],[-79.629,8.822],[-79.675,8.733],[-79.721,8.645],[-79.767,8.556],[-79.812,8.467],[-79.767,8.333],[-79.812,8.244],[-79.858,8.156],[-79.904,8.067],[-79.95,7.978],[-79.996,7.889],[-80.042,7.801],[-80.088,7.712],[-80.133,7.623],[-80.175,7.535],[-80.221,7.446],[-80.179,7.312],[-80.133,7.178],[-80.088,7.044],[-80.046,6.91],[-80,6.776],[-79.958,6.641],[-80.004,6.553],[-79.958,6.418],[-80.004,6.33],[-80.05,6.241],[-80.096,6.152],[-80.142,6.064],[-80.05,6.018],[-80.008,5.884],[-80.054,5.795],[-80.008,5.661],[-79.967,5.526],[-79.921,5.392],[-79.879,5.258],[-79.833,5.123],[-79.792,4.989],[-79.837,4.9],[-79.796,4.766],[-79.842,4.677],[-79.883,4.588],[-79.842,4.454],[-79.887,4.365],[-80.021,4.322],[-80.113,4.368],[-80.2,4.414],[-80.292,4.459],[-80.379,4.505],[-80.425,4.639],[-80.512,4.685],[-80.6,4.731],[-80.692,4.776],[-80.779,4.822],[-80.871,4.868],[-81.004,4.824],[-81.092,4.87],[-81.229,4.827],[-81.317,4.873],[-81.408,4.918],[-81.496,4.964],[-81.542,5.098],[-81.629,5.144],[-81.675,5.278],[-81.717,5.412],[-81.671,5.5],[-81.717,5.634],[-81.671,5.723],[-81.625,5.811],[-81.579,5.9],[-81.533,5.989],[-81.488,6.077],[-81.446,6.166],[-81.4,6.254],[-81.354,6.343],[-81.396,6.477],[-81.488,6.522],[-81.575,6.568],[-81.712,6.524],[-81.8,6.57],[-81.892,6.615],[-81.979,6.66],[-82.025,6.794],[-82.117,6.839],[-82.158,6.973],[-82.25,7.018],[-82.296,7.152],[-82.337,7.286],[-82.475,7.242],[-82.562,7.287],[-82.654,7.333],[-82.788,7.289],[-82.925,7.246],[-82.971,7.157],[-83.104,7.114],[-83.15,7.026],[-83.196,6.937],[-83.329,6.894],[-83.375,6.806],[-83.421,6.717],[-83.554,6.674],[-83.646,6.719],[-83.779,6.676],[-83.867,6.721],[-83.958,6.766],[-84.004,6.899],[-84.05,7.033],[-84.096,7.166],[-83.958,7.209],[-84.004,7.342],[-83.958,7.431],[-83.917,7.519],[-83.958,7.652],[-83.917,7.74],[-83.871,7.829],[-83.917,7.962],[-83.871,8.05],[-83.825,8.138],[-83.871,8.271],[-83.829,8.36],[-83.692,8.403],[-83.558,8.447],[-83.421,8.49],[-83.287,8.534],[-83.154,8.578],[-83.108,8.666],[-83.062,8.754],[-83.017,8.843],[-82.975,8.931],[-82.838,8.975],[-82.883,9.108],[-82.929,9.241],[-83.021,9.286],[-83.067,9.419],[-83.158,9.463],[-83.25,9.508],[-83.337,9.553],[-83.383,9.685],[-83.475,9.73],[-83.567,9.774],[-83.613,9.907],[-83.658,10.04],[-83.708,10.172]],[[-87.5,4.905],[-87.454,4.992],[-87.408,5.08],[-87.363,5.167],[-87.321,5.255],[-87.187,5.297],[-87.142,5.385],[-87.096,5.472],[-86.962,5.515],[-86.917,5.602],[-86.783,5.645],[-86.738,5.733],[-86.696,5.82],[-86.65,5.908],[-86.517,5.95],[-86.558,6.083],[-86.425,6.126],[-86.292,6.169],[-86.2,6.124],[-86.067,6.166],[-85.979,6.121],[-85.887,6.076],[-85.8,6.031],[-85.708,5.986],[-85.617,5.941],[-85.575,5.808],[-85.483,5.762],[-85.396,5.717],[-85.35,5.584],[-85.304,5.451],[-85.35,5.363],[-85.396,5.274],[-85.442,5.187],[-85.483,5.099],[-85.529,5.011],[-85.575,4.923],[-85.708,4.88],[-85.842,4.837],[-85.887,4.75],[-86.021,4.707],[-86.067,4.619],[-86.113,4.532],[-86.158,4.444],[-86.204,4.356],[-86.246,4.268],[-86.204,4.135],[-86.25,4.047],[-86.292,3.959],[-86.337,3.871],[-86.383,3.784],[-86.429,3.696],[-86.475,3.608],[-86.521,3.52],[-86.567,3.432],[-86.7,3.391],[-86.833,3.349],[-86.967,3.307],[-87.1,3.265],[-87.238,3.223],[-87.325,3.269],[-87.413,3.315],[-87.504,3.361],[-87.592,3.406],[-87.679,3.452],[-87.725,3.585],[-87.679,3.673],[-87.633,3.76],[-87.679,3.893],[-87.633,3.981],[-87.588,4.068],[-87.633,4.201],[-87.679,4.334],[-87.633,4.422],[-87.588,4.509],[-87.542,4.597],[-87.5,4.684],[-87.542,4.817],[-87.5,4.905]],[[-65.413,5.548],[-65.363,5.634],[-65.317,5.721],[-65.267,5.808],[-65.133,5.846],[-65.083,5.933],[-64.95,5.971],[-64.9,6.058],[-64.762,6.096],[-64.675,6.048],[-64.542,6.086],[-64.404,6.123],[-64.363,5.989],[-64.275,5.94],[-64.238,5.805],[-64.196,5.67],[-64.246,5.584],[-64.292,5.498],[-64.342,5.411],[-64.387,5.325],[-64.437,5.239],[-64.483,5.152],[-64.621,5.114],[-64.754,5.076],[-64.892,5.038],[-64.979,5.086],[-65.117,5.047],[-65.204,5.095],[-65.337,5.057],[-65.429,5.105],[-65.467,5.239],[-65.421,5.326],[-65.458,5.461],[-65.413,5.548]],[[-70.792,1.891],[-70.742,1.979],[-70.696,2.067],[-70.562,2.109],[-70.475,2.062],[-70.383,2.016],[-70.296,1.969],[-70.254,1.834],[-70.3,1.746],[-70.258,1.612],[-70.217,1.477],[-70.262,1.389],[-70.396,1.348],[-70.533,1.306],[-70.621,1.353],[-70.754,1.311],[-70.8,1.446],[-70.842,1.58],[-70.796,1.668],[-70.746,1.756],[-70.792,1.891]],[[-81.238,-2.584],[-81.279,-2.449],[-81.233,-2.361],[-81.187,-2.272],[-81.142,-2.184],[-81.004,-2.141],[-80.958,-2.053],[-80.825,-2.01],[-80.779,-1.921],[-80.642,-1.879],[-80.596,-1.79],[-80.462,-1.748],[-80.329,-1.705],[-80.279,-1.617],[-80.146,-1.574],[-80.058,-1.62],[-79.971,-1.666],[-79.879,-1.712],[-79.792,-1.758],[-79.704,-1.804],[-79.613,-1.851],[-79.571,-1.986],[-79.617,-2.074],[-79.575,-2.209],[-79.621,-2.298],[-79.667,-2.386],[-79.712,-2.475],[-79.758,-2.564],[-79.804,-2.653],[-79.942,-2.695],[-79.988,-2.784],[-80.033,-2.873],[-80.167,-2.915],[-80.212,-3.004],[-80.258,-3.093],[-80.396,-3.135],[-80.529,-3.178],[-80.621,-3.131],[-80.708,-3.085],[-80.842,-3.128],[-80.933,-3.081],[-81.021,-3.035],[-81.062,-2.9],[-81.15,-2.854],[-81.196,-2.719],[-81.238,-2.584]],[[-88.804,2.152],[-88.85,2.285],[-88.804,2.372],[-88.758,2.459],[-88.712,2.547],[-88.579,2.588],[-88.446,2.629],[-88.354,2.583],[-88.221,2.624],[-88.133,2.578],[-88.046,2.532],[-87.954,2.486],[-87.913,2.353],[-87.867,2.219],[-87.825,2.086],[-87.871,1.998],[-87.917,1.911],[-87.962,1.824],[-88.008,1.736],[-88.142,1.695],[-88.229,1.741],[-88.321,1.787],[-88.454,1.746],[-88.542,1.793],[-88.629,1.839],[-88.675,1.973],[-88.762,2.019],[-88.804,2.152]],[[-87.167,-5.212],[-87.117,-5.124],[-87.071,-5.037],[-86.933,-4.997],[-86.8,-4.956],[-86.712,-5.004],[-86.621,-5.051],[-86.579,-5.186],[-86.538,-5.321],[-86.588,-5.409],[-86.721,-5.449],[-86.771,-5.537],[-86.904,-5.577],[-86.996,-5.529],[-87.083,-5.482],[-87.125,-5.347],[-87.167,-5.212]],[[-83.146,-6.213],[-83.1,-6.125],[-82.962,-6.083],[-82.917,-5.995],[-82.779,-5.953],[-82.692,-6],[-82.554,-5.958],[-82.467,-6.004],[-82.379,-6.051],[-82.287,-6.097],[-82.246,-6.232],[-82.292,-6.321],[-82.342,-6.409],[-82.387,-6.498],[-82.433,-6.586],[-82.479,-6.675],[-82.617,-6.717],[-82.754,-6.759],[-82.842,-6.712],[-82.979,-6.754],[-83.021,-6.619],[-83.108,-6.572],[-83.15,-6.437],[-83.192,-6.302],[-83.146,-6.213]],[[-86.529,-12.021],[-86.479,-11.933],[-86.429,-11.846],[-86.383,-11.758],[-86.242,-11.718],[-86.196,-11.63],[-86.058,-11.59],[-85.917,-11.55],[-85.871,-11.462],[-85.729,-11.422],[-85.592,-11.381],[-85.546,-11.293],[-85.408,-11.253],[-85.267,-11.212],[-85.221,-11.124],[-85.083,-11.083],[-84.992,-11.131],[-84.854,-11.09],[-84.763,-11.137],[-84.675,-11.184],[-84.583,-11.232],[-84.542,-11.367],[-84.454,-11.414],[-84.413,-11.549],[-84.458,-11.638],[-84.508,-11.726],[-84.467,-11.861],[-84.512,-11.949],[-84.654,-11.99],[-84.7,-12.079],[-84.837,-12.119],[-84.887,-12.207],[-84.937,-12.296],[-85.075,-12.336],[-85.121,-12.424],[-85.171,-12.512],[-85.308,-12.553],[-85.358,-12.641],[-85.496,-12.681],[-85.637,-12.722],[-85.775,-12.762],[-85.913,-12.802],[-86.004,-12.755],[-86.096,-12.707],[-86.183,-12.659],[-86.275,-12.611],[-86.367,-12.564],[-86.404,-12.428],[-86.446,-12.292],[-86.488,-12.157],[-86.529,-12.021]],[[-91.45,-10.816],[-91.4,-10.73],[-91.35,-10.643],[-91.3,-10.557],[-91.25,-10.471],[-91.113,-10.434],[-90.975,-10.397],[-90.833,-10.359],[-90.746,-10.409],[-90.608,-10.371],[-90.521,-10.42],[-90.429,-10.469],[-90.342,-10.518],[-90.304,-10.654],[-90.267,-10.79],[-90.225,-10.926],[-90.187,-11.061],[-90.146,-11.197],[-90.196,-11.284],[-90.158,-11.42],[-90.208,-11.506],[-90.258,-11.593],[-90.396,-11.631],[-90.446,-11.717],[-90.587,-11.754],[-90.675,-11.705],[-90.812,-11.742],[-90.904,-11.693],[-90.992,-11.643],[-91.079,-11.594],[-91.117,-11.458],[-91.208,-11.409],[-91.296,-11.359],[-91.383,-11.309],[-91.421,-11.174],[-91.462,-11.038],[-91.413,-10.952],[-91.45,-10.816]],[[-92.738,-9.407],[-92.687,-9.321],[-92.637,-9.235],[-92.587,-9.149],[-92.625,-9.014],[-92.712,-8.964],[-92.804,-8.914],[-92.942,-8.951],[-92.988,-9.036],[-93.037,-9.122],[-93.087,-9.207],[-93.05,-9.343],[-92.962,-9.393],[-92.875,-9.442],[-92.738,-9.407]],[[-80.592,-12.611],[-80.454,-12.568],[-80.363,-12.614],[-80.317,-12.749],[-80.275,-12.883],[-80.321,-12.972],[-80.458,-13.015],[-80.55,-12.969],[-80.596,-12.834],[-80.637,-12.699],[-80.592,-12.611]],[[-75.913,-14.024],[-75.958,-13.891],[-75.913,-13.802],[-75.871,-13.714],[-75.825,-13.625],[-75.779,-13.536],[-75.642,-13.492],[-75.504,-13.447],[-75.413,-13.492],[-75.321,-13.536],[-75.225,-13.581],[-75.133,-13.625],[-75.042,-13.669],[-74.996,-13.802],[-75.042,-13.891],[-74.992,-14.023],[-75.037,-14.112],[-75.083,-14.201],[-75.221,-14.245],[-75.267,-14.334],[-75.404,-14.379],[-75.542,-14.423],[-75.633,-14.379],[-75.725,-14.335],[-75.817,-14.29],[-75.913,-14.246],[-75.958,-14.113],[-75.913,-14.024]],[[-75.267,-17.077],[-75.225,-16.989],[-75.179,-16.9],[-75.133,-16.811],[-74.996,-16.766],[-74.9,-16.81],[-74.808,-16.853],[-74.712,-16.896],[-74.617,-16.94],[-74.567,-17.072],[-74.613,-17.16],[-74.658,-17.249],[-74.7,-17.338],[-74.746,-17.426],[-74.792,-17.515],[-74.929,-17.561],[-75.025,-17.517],[-75.121,-17.474],[-75.171,-17.342],[-75.263,-17.298],[-75.313,-17.166],[-75.267,-17.077]],[[-74.554,-20.55],[-74.513,-20.462],[-74.467,-20.373],[-74.521,-20.242],[-74.617,-20.199],[-74.712,-20.157],[-74.854,-20.203],[-74.896,-20.292],[-74.992,-20.249],[-75.092,-20.207],[-75.229,-20.253],[-75.275,-20.342],[-75.321,-20.43],[-75.367,-20.519],[-75.408,-20.608],[-75.358,-20.739],[-75.304,-20.87],[-75.208,-20.913],[-75.067,-20.866],[-74.971,-20.909],[-74.829,-20.862],[-74.687,-20.816],[-74.642,-20.727],[-74.6,-20.639],[-74.554,-20.55]],[[-105.812,-19.823],[-105.837,-19.686],[-105.863,-19.548],[-105.804,-19.47],[-105.742,-19.392],[-105.596,-19.372],[-105.533,-19.294],[-105.475,-19.215],[-105.329,-19.195],[-105.267,-19.116],[-105.121,-19.096],[-105.062,-19.017],[-105,-18.938],[-104.854,-18.918],[-104.708,-18.897],[-104.65,-18.817],[-104.504,-18.796],[-104.358,-18.775],[-104.387,-18.638],[-104.325,-18.558],[-104.267,-18.479],[-104.296,-18.342],[-104.233,-18.262],[-104.175,-18.183],[-104.117,-18.103],[-104.058,-18.024],[-103.913,-18.002],[-103.854,-17.922],[-103.708,-17.899],[-103.65,-17.819],[-103.508,-17.797],[-103.45,-17.717],[-103.304,-17.694],[-103.246,-17.614],[-103.1,-17.59],[-103.042,-17.51],[-102.9,-17.486],[-102.842,-17.406],[-102.783,-17.326],[-102.725,-17.245],[-102.667,-17.165],[-102.696,-17.028],[-102.725,-16.891],[-102.754,-16.754],[-102.696,-16.674],[-102.725,-16.537],[-102.671,-16.456],[-102.613,-16.376],[-102.554,-16.295],[-102.413,-16.271],[-102.271,-16.246],[-102.125,-16.221],[-102.071,-16.14],[-101.925,-16.115],[-101.783,-16.089],[-101.725,-16.008],[-101.583,-15.982],[-101.529,-15.901],[-101.383,-15.876],[-101.242,-15.849],[-101.1,-15.823],[-101.042,-15.741],[-100.9,-15.715],[-100.846,-15.633],[-100.788,-15.552],[-100.646,-15.525],[-100.592,-15.443],[-100.537,-15.361],[-100.479,-15.279],[-100.425,-15.197],[-100.371,-15.115],[-100.312,-15.033],[-100.258,-14.951],[-100.117,-14.924],[-100.062,-14.842],[-100.008,-14.759],[-99.954,-14.677],[-99.9,-14.595],[-99.842,-14.513],[-99.788,-14.431],[-99.733,-14.348],[-99.679,-14.266],[-99.625,-14.184],[-99.483,-14.155],[-99.429,-14.072],[-99.375,-13.99],[-99.233,-13.961],[-99.092,-13.932],[-98.954,-13.903],[-98.813,-13.873],[-98.725,-13.927],[-98.583,-13.897],[-98.442,-13.867],[-98.354,-13.921],[-98.212,-13.891],[-98.075,-13.86],[-97.988,-13.913],[-97.846,-13.883],[-97.792,-13.8],[-97.738,-13.716],[-97.683,-13.633],[-97.629,-13.549],[-97.579,-13.466],[-97.613,-13.33],[-97.558,-13.246],[-97.592,-13.11],[-97.542,-13.026],[-97.488,-12.943],[-97.433,-12.859],[-97.467,-12.723],[-97.329,-12.692],[-97.187,-12.661],[-97.05,-12.629],[-96.996,-12.545],[-96.854,-12.514],[-96.717,-12.482],[-96.575,-12.45],[-96.525,-12.366],[-96.471,-12.282],[-96.421,-12.197],[-96.279,-12.165],[-96.229,-12.081],[-96.262,-11.945],[-96.212,-11.861],[-96.158,-11.777],[-96.108,-11.692],[-96.142,-11.557],[-96.092,-11.472],[-95.954,-11.44],[-95.9,-11.355],[-95.85,-11.271],[-95.712,-11.238],[-95.621,-11.289],[-95.533,-11.34],[-95.446,-11.392],[-95.358,-11.443],[-95.271,-11.494],[-95.183,-11.545],[-95.096,-11.596],[-95.008,-11.647],[-94.921,-11.698],[-94.783,-11.665],[-94.642,-11.631],[-94.504,-11.597],[-94.367,-11.562],[-94.225,-11.528],[-94.138,-11.579],[-94,-11.544],[-93.913,-11.595],[-93.771,-11.56],[-93.683,-11.611],[-93.596,-11.661],[-93.508,-11.712],[-93.421,-11.762],[-93.329,-11.812],[-93.242,-11.863],[-93.154,-11.913],[-93.117,-12.049],[-93.079,-12.185],[-92.992,-12.236],[-92.954,-12.372],[-92.867,-12.422],[-92.775,-12.472],[-92.637,-12.437],[-92.496,-12.401],[-92.446,-12.315],[-92.308,-12.279],[-92.167,-12.244],[-92.029,-12.207],[-91.887,-12.171],[-91.8,-12.221],[-91.712,-12.271],[-91.571,-12.235],[-91.483,-12.284],[-91.446,-12.421],[-91.358,-12.47],[-91.267,-12.52],[-91.179,-12.57],[-91.142,-12.706],[-91.05,-12.755],[-90.962,-12.805],[-90.875,-12.854],[-90.833,-12.991],[-90.746,-13.04],[-90.708,-13.176],[-90.758,-13.262],[-90.721,-13.399],[-90.679,-13.535],[-90.642,-13.671],[-90.604,-13.807],[-90.512,-13.857],[-90.475,-13.993],[-90.388,-14.042],[-90.296,-14.092],[-90.208,-14.141],[-90.167,-14.277],[-90.079,-14.327],[-89.988,-14.376],[-89.95,-14.512],[-89.858,-14.562],[-89.821,-14.698],[-89.729,-14.747],[-89.692,-14.883],[-89.6,-14.932],[-89.562,-15.069],[-89.525,-15.205],[-89.433,-15.254],[-89.342,-15.303],[-89.304,-15.439],[-89.262,-15.575],[-89.225,-15.711],[-89.183,-15.848],[-89.238,-15.935],[-89.287,-16.022],[-89.246,-16.158],[-89.3,-16.245],[-89.35,-16.332],[-89.4,-16.419],[-89.454,-16.506],[-89.504,-16.592],[-89.554,-16.679],[-89.608,-16.766],[-89.567,-16.903],[-89.529,-17.039],[-89.579,-17.126],[-89.633,-17.213],[-89.592,-17.349],[-89.642,-17.436],[-89.604,-17.572],[-89.654,-17.659],[-89.708,-17.746],[-89.85,-17.783],[-89.904,-17.87],[-89.954,-17.957],[-90.1,-17.994],[-90.15,-18.081],[-90.204,-18.167],[-90.346,-18.204],[-90.492,-18.241],[-90.542,-18.328],[-90.687,-18.364],[-90.829,-18.401],[-90.883,-18.487],[-91.029,-18.524],[-91.079,-18.61],[-91.042,-18.747],[-91.096,-18.833],[-91.058,-18.969],[-91.017,-19.106],[-91.071,-19.192],[-91.033,-19.329],[-91.087,-19.416],[-91.046,-19.552],[-90.954,-19.603],[-90.917,-19.739],[-90.825,-19.789],[-90.787,-19.926],[-90.746,-20.062],[-90.708,-20.199],[-90.762,-20.286],[-90.725,-20.422],[-90.775,-20.509],[-90.738,-20.645],[-90.792,-20.732],[-90.754,-20.868],[-90.808,-20.955],[-90.858,-21.041],[-90.913,-21.128],[-90.967,-21.214],[-91.113,-21.25],[-91.167,-21.337],[-91.221,-21.423],[-91.275,-21.509],[-91.329,-21.596],[-91.383,-21.682],[-91.442,-21.768],[-91.496,-21.854],[-91.55,-21.941],[-91.604,-22.027],[-91.658,-22.113],[-91.712,-22.199],[-91.675,-22.336],[-91.729,-22.422],[-91.692,-22.559],[-91.746,-22.646],[-91.708,-22.782],[-91.762,-22.869],[-91.725,-23.005],[-91.779,-23.092],[-91.833,-23.178],[-91.887,-23.264],[-91.946,-23.35],[-92.096,-23.385],[-92.15,-23.471],[-92.3,-23.506],[-92.354,-23.592],[-92.504,-23.626],[-92.467,-23.764],[-92.521,-23.849],[-92.579,-23.935],[-92.633,-24.021],[-92.692,-24.107],[-92.654,-24.244],[-92.558,-24.295],[-92.408,-24.261],[-92.258,-24.226],[-92.108,-24.191],[-92.012,-24.242],[-91.863,-24.207],[-91.712,-24.171],[-91.621,-24.222],[-91.471,-24.187],[-91.413,-24.1],[-91.263,-24.065],[-91.113,-24.029],[-91.058,-23.942],[-90.908,-23.906],[-90.854,-23.82],[-90.8,-23.733],[-90.746,-23.647],[-90.783,-23.51],[-90.825,-23.373],[-90.917,-23.323],[-91.012,-23.273],[-91.05,-23.136],[-91.092,-22.999],[-91.129,-22.862],[-91.075,-22.776],[-91.021,-22.69],[-90.967,-22.603],[-90.913,-22.517],[-90.858,-22.431],[-90.804,-22.344],[-90.75,-22.257],[-90.696,-22.171],[-90.642,-22.084],[-90.492,-22.048],[-90.346,-22.011],[-90.2,-21.974],[-90.05,-21.937],[-89.958,-21.987],[-89.808,-21.95],[-89.717,-22],[-89.621,-22.049],[-89.529,-22.099],[-89.433,-22.148],[-89.342,-22.197],[-89.246,-22.247],[-89.154,-22.296],[-89.058,-22.345],[-88.913,-22.307],[-88.858,-22.22],[-88.804,-22.133],[-88.754,-22.046],[-88.7,-21.959],[-88.742,-21.823],[-88.687,-21.736],[-88.729,-21.599],[-88.825,-21.55],[-88.917,-21.501],[-88.958,-21.365],[-88.904,-21.278],[-88.946,-21.142],[-88.988,-21.006],[-88.933,-20.918],[-88.883,-20.831],[-88.829,-20.744],[-88.775,-20.657],[-88.725,-20.57],[-88.579,-20.532],[-88.525,-20.444],[-88.475,-20.357],[-88.329,-20.319],[-88.275,-20.232],[-88.133,-20.193],[-88.079,-20.106],[-88.029,-20.018],[-87.975,-19.931],[-88.017,-19.795],[-88.113,-19.746],[-88.204,-19.697],[-88.296,-19.649],[-88.387,-19.6],[-88.479,-19.551],[-88.575,-19.502],[-88.667,-19.453],[-88.758,-19.404],[-88.85,-19.355],[-88.892,-19.219],[-88.933,-19.083],[-88.879,-18.996],[-88.921,-18.859],[-88.867,-18.772],[-88.817,-18.685],[-88.854,-18.549],[-88.804,-18.462],[-88.754,-18.375],[-88.7,-18.287],[-88.558,-18.249],[-88.508,-18.162],[-88.454,-18.075],[-88.404,-17.987],[-88.262,-17.949],[-88.208,-17.862],[-88.158,-17.774],[-88.108,-17.687],[-87.962,-17.649],[-87.913,-17.561],[-87.863,-17.474],[-87.904,-17.338],[-87.85,-17.25],[-87.8,-17.163],[-87.842,-17.027],[-87.933,-16.978],[-88.025,-16.93],[-88.117,-16.881],[-88.158,-16.745],[-88.246,-16.696],[-88.287,-16.56],[-88.238,-16.473],[-88.279,-16.337],[-88.367,-16.288],[-88.408,-16.152],[-88.5,-16.103],[-88.592,-16.054],[-88.679,-16.006],[-88.721,-15.869],[-88.812,-15.821],[-88.85,-15.684],[-88.942,-15.636],[-88.979,-15.499],[-89.021,-15.363],[-89.058,-15.227],[-89.008,-15.14],[-88.958,-15.053],[-89,-14.917],[-88.95,-14.83],[-88.896,-14.743],[-88.846,-14.656],[-88.708,-14.617],[-88.654,-14.53],[-88.517,-14.492],[-88.425,-14.541],[-88.283,-14.502],[-88.196,-14.551],[-88.054,-14.512],[-87.962,-14.561],[-87.825,-14.522],[-87.683,-14.483],[-87.542,-14.444],[-87.404,-14.404],[-87.262,-14.365],[-87.121,-14.326],[-86.983,-14.286],[-86.842,-14.247],[-86.75,-14.295],[-86.613,-14.255],[-86.471,-14.215],[-86.421,-14.128],[-86.462,-13.992],[-86.413,-13.904],[-86.363,-13.816],[-86.225,-13.776],[-86.175,-13.689],[-86.037,-13.649],[-85.896,-13.608],[-85.804,-13.656],[-85.763,-13.792],[-85.721,-13.927],[-85.771,-14.015],[-85.821,-14.103],[-85.871,-14.191],[-86.008,-14.231],[-86.058,-14.319],[-86.108,-14.407],[-86.067,-14.542],[-85.975,-14.59],[-85.933,-14.726],[-85.846,-14.773],[-85.754,-14.821],[-85.663,-14.869],[-85.571,-14.916],[-85.479,-14.964],[-85.437,-15.099],[-85.346,-15.147],[-85.254,-15.194],[-85.167,-15.242],[-85.121,-15.377],[-85.033,-15.425],[-84.988,-15.56],[-84.896,-15.607],[-84.854,-15.743],[-84.812,-15.878],[-84.863,-15.966],[-84.821,-16.102],[-84.867,-16.19],[-84.825,-16.325],[-84.783,-16.46],[-84.692,-16.507],[-84.55,-16.467],[-84.592,-16.331],[-84.546,-16.243],[-84.496,-16.155],[-84.446,-16.067],[-84.488,-15.932],[-84.533,-15.796],[-84.575,-15.661],[-84.617,-15.526],[-84.567,-15.437],[-84.608,-15.302],[-84.654,-15.167],[-84.604,-15.079],[-84.646,-14.943],[-84.596,-14.855],[-84.637,-14.72],[-84.592,-14.632],[-84.633,-14.496],[-84.675,-14.361],[-84.625,-14.273],[-84.579,-14.185],[-84.621,-14.049],[-84.663,-13.914],[-84.613,-13.826],[-84.567,-13.737],[-84.517,-13.649],[-84.467,-13.561],[-84.421,-13.473],[-84.371,-13.385],[-84.321,-13.297],[-84.275,-13.209],[-84.225,-13.12],[-84.179,-13.032],[-84.129,-12.944],[-84.171,-12.809],[-84.212,-12.673],[-84.304,-12.626],[-84.346,-12.491],[-84.387,-12.356],[-84.429,-12.22],[-84.383,-12.132],[-84.333,-12.044],[-84.283,-11.956],[-84.146,-11.914],[-84.008,-11.873],[-83.917,-11.92],[-83.829,-11.967],[-83.692,-11.926],[-83.6,-11.973],[-83.462,-11.931],[-83.325,-11.89],[-83.275,-11.801],[-83.137,-11.76],[-83.092,-11.671],[-82.95,-11.63],[-82.813,-11.588],[-82.675,-11.546],[-82.537,-11.504],[-82.446,-11.551],[-82.308,-11.509],[-82.221,-11.556],[-82.129,-11.602],[-82.038,-11.648],[-81.95,-11.695],[-81.858,-11.741],[-81.817,-11.876],[-81.771,-12.011],[-81.679,-12.057],[-81.637,-12.192],[-81.546,-12.239],[-81.504,-12.373],[-81.413,-12.419],[-81.371,-12.554],[-81.325,-12.689],[-81.233,-12.735],[-81.192,-12.87],[-81.146,-13.005],[-81.104,-13.139],[-81.058,-13.274],[-81.017,-13.409],[-80.971,-13.543],[-80.925,-13.678],[-80.883,-13.812],[-80.792,-13.859],[-80.7,-13.904],[-80.654,-14.039],[-80.562,-14.085],[-80.471,-14.131],[-80.379,-14.176],[-80.287,-14.222],[-80.196,-14.268],[-80.058,-14.225],[-79.967,-14.27],[-79.875,-14.316],[-79.783,-14.361],[-79.692,-14.407],[-79.6,-14.452],[-79.508,-14.498],[-79.413,-14.543],[-79.371,-14.677],[-79.275,-14.722],[-79.233,-14.857],[-79.138,-14.902],[-79.092,-15.036],[-79,-15.081],[-78.863,-15.037],[-78.817,-14.949],[-78.675,-14.905],[-78.537,-14.861],[-78.4,-14.817],[-78.308,-14.862],[-78.167,-14.819],[-78.029,-14.775],[-77.937,-14.82],[-77.846,-14.865],[-77.754,-14.909],[-77.658,-14.954],[-77.567,-14.999],[-77.521,-15.132],[-77.429,-15.177],[-77.379,-15.311],[-77.288,-15.355],[-77.242,-15.488],[-77.15,-15.533],[-77.054,-15.577],[-77.008,-15.711],[-76.958,-15.844],[-76.867,-15.888],[-76.821,-16.021],[-76.725,-16.065],[-76.633,-16.109],[-76.583,-16.242],[-76.492,-16.287],[-76.396,-16.331],[-76.304,-16.375],[-76.212,-16.419],[-76.163,-16.551],[-76.067,-16.595],[-76.021,-16.728],[-75.971,-16.861],[-75.921,-16.993],[-75.875,-17.126],[-75.921,-17.214],[-75.962,-17.303],[-76.008,-17.392],[-76.054,-17.481],[-76.1,-17.569],[-76.146,-17.658],[-76.192,-17.747],[-76.142,-17.879],[-76.187,-17.968],[-76.229,-18.057],[-76.137,-18.1],[-76.087,-18.232],[-76.133,-18.321],[-76.083,-18.454],[-76.129,-18.542],[-76.079,-18.674],[-76.029,-18.807],[-76.071,-18.895],[-76.117,-18.984],[-76.067,-19.116],[-76.017,-19.248],[-75.967,-19.38],[-75.917,-19.512],[-75.962,-19.601],[-75.908,-19.732],[-75.858,-19.864],[-75.904,-19.953],[-75.95,-20.042],[-75.996,-20.131],[-76.037,-20.219],[-76.083,-20.308],[-76.129,-20.397],[-76.367,-20.399],[-76.271,-20.442],[-76.413,-20.488],[-76.458,-20.577],[-76.504,-20.666],[-76.55,-20.754],[-76.592,-20.843],[-76.637,-20.932],[-76.683,-21.021],[-76.729,-21.109],[-76.775,-21.198],[-76.821,-21.287],[-76.867,-21.376],[-76.913,-21.465],[-76.958,-21.553],[-77.004,-21.642],[-77.05,-21.731],[-77.096,-21.82],[-77.137,-21.909],[-77.183,-21.997],[-77.229,-22.086],[-77.275,-22.175],[-77.225,-22.307],[-77.129,-22.35],[-77.075,-22.481],[-76.979,-22.524],[-76.879,-22.567],[-76.783,-22.61],[-76.729,-22.741],[-76.629,-22.784],[-76.533,-22.826],[-76.479,-22.957],[-76.425,-23.089],[-76.371,-23.22],[-76.417,-23.308],[-76.462,-23.397],[-76.508,-23.486],[-76.554,-23.575],[-76.6,-23.663],[-76.646,-23.752],[-76.787,-23.799],[-76.933,-23.845],[-76.979,-23.934],[-77.121,-23.98],[-77.267,-24.026],[-77.367,-23.984],[-77.467,-23.941],[-77.562,-23.899],[-77.663,-23.856],[-77.762,-23.813],[-77.817,-23.681],[-77.913,-23.638],[-77.967,-23.507],[-77.921,-23.418],[-77.875,-23.329],[-77.829,-23.24],[-77.779,-23.151],[-77.733,-23.063],[-77.687,-22.974],[-77.642,-22.885],[-77.596,-22.796],[-77.55,-22.707],[-77.504,-22.619],[-77.558,-22.487],[-77.654,-22.444],[-77.8,-22.489],[-77.896,-22.446],[-77.992,-22.403],[-78.137,-22.448],[-78.233,-22.405],[-78.333,-22.361],[-78.475,-22.407],[-78.521,-22.495],[-78.667,-22.541],[-78.712,-22.629],[-78.758,-22.718],[-78.808,-22.807],[-78.854,-22.896],[-78.9,-22.984],[-78.946,-23.073],[-78.992,-23.162],[-78.942,-23.294],[-78.988,-23.383],[-78.892,-23.427],[-78.842,-23.559],[-78.887,-23.647],[-78.933,-23.736],[-78.883,-23.869],[-78.783,-23.912],[-78.733,-24.044],[-78.633,-24.087],[-78.533,-24.131],[-78.433,-24.174],[-78.383,-24.306],[-78.329,-24.437],[-78.275,-24.569],[-78.225,-24.701],[-78.271,-24.789],[-78.217,-24.921],[-78.263,-25.01],[-78.308,-25.099],[-78.358,-25.187],[-78.404,-25.276],[-78.45,-25.365],[-78.496,-25.454],[-78.542,-25.542],[-78.687,-25.589],[-78.738,-25.677],[-78.783,-25.766],[-78.829,-25.855],[-78.875,-25.944],[-78.775,-25.986],[-78.675,-26.029],[-78.621,-26.161],[-78.521,-26.203],[-78.421,-26.246],[-78.367,-26.377],[-78.263,-26.42],[-78.208,-26.551],[-78.154,-26.682],[-78.1,-26.813],[-78.046,-26.944],[-78.092,-27.032],[-78.137,-27.121],[-78.183,-27.21],[-78.229,-27.299],[-78.275,-27.388],[-78.321,-27.476],[-78.367,-27.565],[-78.312,-27.696],[-78.358,-27.785],[-78.258,-27.827],[-78.154,-27.869],[-78.05,-27.911],[-77.996,-28.041],[-77.892,-28.083],[-77.833,-28.213],[-77.729,-28.255],[-77.675,-28.385],[-77.617,-28.516],[-77.558,-28.646],[-77.5,-28.776],[-77.546,-28.864],[-77.592,-28.953],[-77.637,-29.042],[-77.683,-29.131],[-77.729,-29.219],[-77.775,-29.308],[-77.821,-29.397],[-77.762,-29.527],[-77.704,-29.657],[-77.75,-29.746],[-77.796,-29.834],[-77.842,-29.923],[-77.996,-29.971],[-78.1,-29.93],[-78.204,-29.889],[-78.263,-29.758],[-78.367,-29.717],[-78.521,-29.764],[-78.671,-29.811],[-78.717,-29.9],[-78.762,-29.989],[-78.704,-30.119],[-78.754,-30.208],[-78.8,-30.297],[-78.742,-30.427],[-78.787,-30.516],[-78.837,-30.605],[-78.883,-30.693],[-78.929,-30.782],[-78.975,-30.871],[-79.238,-30.877],[-79.129,-30.918],[-79.283,-30.965],[-79.329,-31.054],[-79.483,-31.101],[-79.533,-31.19],[-79.579,-31.279],[-79.521,-31.409],[-79.462,-31.539],[-79.354,-31.581],[-79.25,-31.622],[-79.142,-31.664],[-79.033,-31.705],[-78.975,-31.835],[-78.913,-31.965],[-78.962,-32.054],[-79.008,-32.142],[-79.163,-32.19],[-79.212,-32.279],[-79.258,-32.368],[-79.413,-32.415],[-79.462,-32.504],[-79.617,-32.551],[-79.775,-32.599],[-79.821,-32.687],[-79.871,-32.776],[-80.025,-32.823],[-80.075,-32.912],[-80.125,-33.001],[-80.171,-33.089],[-80.221,-33.178],[-80.267,-33.267],[-80.425,-33.314],[-80.583,-33.361],[-80.742,-33.407],[-80.9,-33.454],[-81.058,-33.501],[-81.108,-33.589],[-81.154,-33.678],[-81.204,-33.766],[-81.254,-33.855],[-81.196,-33.986],[-81.246,-34.074],[-81.183,-34.205],[-81.233,-34.294],[-81.283,-34.382],[-81.333,-34.471],[-81.383,-34.56],[-81.433,-34.648],[-81.483,-34.737],[-81.646,-34.783],[-81.804,-34.83],[-82.075,-34.833],[-81.967,-34.876],[-82.129,-34.922],[-82.4,-34.925],[-82.287,-34.968],[-82.45,-35.014],[-82.613,-35.059],[-82.775,-35.105],[-82.825,-35.193],[-82.875,-35.282],[-82.929,-35.37],[-82.871,-35.501],[-82.808,-35.633],[-82.75,-35.764],[-82.8,-35.852],[-82.742,-35.984],[-82.792,-36.072],[-82.733,-36.203],[-82.783,-36.292],[-82.838,-36.38],[-82.888,-36.469],[-83.054,-36.514],[-83.217,-36.56],[-83.383,-36.605],[-83.546,-36.65],[-83.712,-36.695],[-83.825,-36.652],[-83.937,-36.609],[-84.104,-36.653],[-84.267,-36.698],[-84.321,-36.786],[-84.375,-36.874],[-84.429,-36.963],[-84.483,-37.051],[-84.537,-37.139],[-84.479,-37.271],[-84.533,-37.359],[-84.587,-37.447],[-84.642,-37.535],[-84.696,-37.623],[-84.75,-37.711],[-84.804,-37.799],[-84.971,-37.844],[-85.025,-37.932],[-85.196,-37.976],[-85.25,-38.064],[-85.421,-38.107],[-85.475,-38.196],[-85.646,-38.239],[-85.7,-38.327],[-85.754,-38.415],[-85.812,-38.503],[-85.867,-38.591],[-85.925,-38.679],[-85.979,-38.766],[-86.037,-38.854],[-85.975,-38.987],[-86.033,-39.075],[-86.092,-39.162],[-86.146,-39.25],[-86.204,-39.338],[-86.258,-39.426],[-86.317,-39.514],[-86.488,-39.557],[-86.546,-39.644],[-86.837,-39.642],[-86.721,-39.687],[-86.896,-39.73],[-86.95,-39.817],[-87.008,-39.905],[-87.183,-39.947],[-87.242,-40.035],[-87.3,-40.122],[-87.358,-40.21],[-87.3,-40.343],[-87.358,-40.431],[-87.417,-40.518],[-87.475,-40.606],[-87.417,-40.739],[-87.479,-40.826],[-87.538,-40.914],[-87.712,-40.956],[-87.771,-41.043],[-87.95,-41.084],[-88.067,-41.039],[-88.246,-41.08],[-88.363,-41.034],[-88.542,-41.075],[-88.658,-41.029],[-88.837,-41.069],[-89.017,-41.109],[-89.075,-41.197],[-89.137,-41.284],[-89.2,-41.371],[-89.262,-41.457],[-89.321,-41.545],[-89.383,-41.632],[-89.329,-41.766],[-89.392,-41.852],[-89.454,-41.939],[-89.517,-42.026],[-89.575,-42.113],[-89.758,-42.153],[-89.942,-42.192],[-90.004,-42.279],[-90.067,-42.366],[-90.129,-42.453],[-90.192,-42.539],[-90.258,-42.626],[-90.321,-42.713],[-90.504,-42.752],[-90.687,-42.791],[-90.808,-42.742],[-90.992,-42.781],[-91.113,-42.732],[-91.229,-42.684],[-91.413,-42.722],[-91.6,-42.759],[-91.667,-42.846],[-91.85,-42.882],[-91.917,-42.969],[-92.1,-43.006],[-92.288,-43.042],[-92.471,-43.079],[-92.658,-43.115],[-92.779,-43.065],[-92.962,-43.101],[-93.083,-43.051],[-93.271,-43.086],[-93.454,-43.121],[-93.642,-43.156],[-93.829,-43.191],[-94.017,-43.225],[-94.088,-43.31],[-94.154,-43.395],[-94.225,-43.48],[-94.179,-43.617],[-94.246,-43.702],[-94.317,-43.787],[-94.387,-43.872],[-94.458,-43.957],[-94.529,-44.042],[-94.6,-44.127],[-94.792,-44.161],[-94.863,-44.245],[-95.054,-44.278],[-95.246,-44.311],[-95.437,-44.344],[-95.508,-44.428],[-95.821,-44.408],[-95.7,-44.461],[-95.892,-44.492],[-95.967,-44.577],[-96.038,-44.661],[-95.992,-44.798],[-96.067,-44.882],[-96.021,-45.019],[-95.975,-45.156],[-95.929,-45.293],[-96,-45.377],[-95.954,-45.514],[-96.029,-45.599],[-96.104,-45.683],[-96.054,-45.82],[-96.129,-45.904],[-96.204,-45.988],[-96.279,-46.073],[-96.358,-46.157],[-96.308,-46.294],[-96.383,-46.378],[-96.462,-46.462],[-96.413,-46.599],[-96.492,-46.683],[-96.567,-46.767],[-96.517,-46.904],[-96.596,-46.988],[-96.671,-47.072],[-96.75,-47.156],[-96.825,-47.24],[-96.904,-47.324],[-97.108,-47.354],[-97.183,-47.438],[-97.387,-47.468],[-97.592,-47.498],[-97.796,-47.527],[-97.921,-47.474],[-98.046,-47.419],[-98.246,-47.448],[-98.371,-47.394],[-98.496,-47.339],[-98.7,-47.367],[-98.821,-47.312],[-98.946,-47.257],[-99.271,-47.229],[-99.15,-47.284],[-99.354,-47.311],[-99.558,-47.338],[-99.637,-47.421],[-99.721,-47.503],[-99.6,-47.559],[-99.558,-47.697],[-99.517,-47.835],[-99.392,-47.891],[-99.35,-48.029],[-99.308,-48.167],[-99.183,-48.222],[-99.142,-48.36],[-99.017,-48.415],[-98.971,-48.553],[-98.846,-48.608],[-98.717,-48.663],[-98.592,-48.718],[-98.462,-48.772],[-98.254,-48.744],[-98.129,-48.798],[-98,-48.852],[-97.792,-48.822],[-97.663,-48.876],[-97.533,-48.929],[-97.488,-49.067],[-97.358,-49.12],[-97.308,-49.257],[-97.258,-49.394],[-97.208,-49.53],[-97.292,-49.614],[-97.242,-49.751],[-97.321,-49.834],[-97.404,-49.918],[-97.35,-50.055],[-97.567,-50.085],[-97.517,-50.222],[-97.729,-50.252],[-97.946,-50.282],[-98.029,-50.365],[-98.242,-50.395],[-98.458,-50.424],[-98.542,-50.507],[-98.629,-50.59],[-98.846,-50.618],[-98.929,-50.701],[-99.146,-50.729],[-99.233,-50.812],[-99.321,-50.894],[-99.537,-50.922],[-99.625,-51.004],[-99.712,-51.086],[-99.933,-51.113],[-100.021,-51.196],[-100.242,-51.222],[-100.462,-51.248],[-100.683,-51.273],[-100.812,-51.217],[-100.946,-51.16],[-101.075,-51.104],[-101.208,-51.047],[-101.337,-50.99],[-101.467,-50.932],[-101.508,-50.794],[-101.546,-50.656],[-101.588,-50.517],[-101.717,-50.459],[-101.754,-50.321],[-101.883,-50.263],[-102.008,-50.205],[-102.137,-50.147],[-102.262,-50.089],[-102.392,-50.031],[-102.608,-50.053],[-102.642,-49.914],[-102.679,-49.775],[-102.712,-49.636],[-102.625,-49.555],[-102.533,-49.474],[-102.567,-49.335],[-102.479,-49.255],[-102.392,-49.174],[-102.3,-49.093],[-102.212,-49.012],[-102.25,-48.874],[-102.283,-48.734],[-102.321,-48.595],[-102.354,-48.456],[-102.387,-48.317],[-102.3,-48.236],[-102.212,-48.155],[-102.125,-48.074],[-102.042,-47.994],[-101.954,-47.912],[-101.867,-47.832],[-101.779,-47.751],[-101.696,-47.669],[-101.608,-47.588],[-101.646,-47.449],[-101.679,-47.31],[-101.596,-47.229],[-101.513,-47.148],[-101.546,-47.009],[-101.462,-46.927],[-101.379,-46.846],[-101.413,-46.707],[-101.329,-46.626],[-101.246,-46.544],[-101.283,-46.405],[-101.4,-46.348],[-101.517,-46.29],[-101.554,-46.151],[-101.671,-46.093],[-101.787,-46.035],[-101.904,-45.976],[-102.021,-45.918],[-102.054,-45.779],[-102.087,-45.639],[-102.004,-45.558],[-101.921,-45.477],[-101.837,-45.396],[-101.754,-45.315],[-101.671,-45.234],[-101.592,-45.153],[-101.392,-45.13],[-101.196,-45.106],[-101,-45.082],[-100.917,-45.001],[-100.837,-44.919],[-100.642,-44.894],[-100.675,-44.756],[-100.596,-44.674],[-100.517,-44.592],[-100.55,-44.453],[-100.471,-44.371],[-100.504,-44.232],[-100.425,-44.15],[-100.462,-44.011],[-100.383,-43.929],[-100.417,-43.79],[-100.337,-43.708],[-100.375,-43.569],[-100.408,-43.431],[-100.442,-43.291],[-100.479,-43.152],[-100.512,-43.013],[-100.433,-42.931],[-100.358,-42.849],[-100.279,-42.767],[-100.2,-42.686],[-100.125,-42.603],[-100.046,-42.521],[-100.083,-42.382],[-100.117,-42.243],[-100.15,-42.104],[-100.075,-42.022],[-100.108,-41.883],[-100.033,-41.801],[-99.846,-41.776],[-99.771,-41.693],[-99.583,-41.667],[-99.508,-41.585],[-99.325,-41.559],[-99.137,-41.532],[-99.062,-41.45],[-99.1,-41.311],[-99.208,-41.255],[-99.246,-41.116],[-99.354,-41.06],[-99.392,-40.921],[-99.5,-40.865],[-99.533,-40.726],[-99.567,-40.587],[-99.604,-40.448],[-99.637,-40.309],[-99.746,-40.252],[-99.779,-40.114],[-99.812,-39.975],[-99.846,-39.836],[-99.879,-39.697],[-99.983,-39.64],[-100.017,-39.501],[-100.05,-39.361],[-100.083,-39.223],[-100.187,-39.165],[-100.296,-39.108],[-100.329,-38.969],[-100.433,-38.912],[-100.462,-38.772],[-100.571,-38.715],[-100.6,-38.576],[-100.633,-38.436],[-100.558,-38.355],[-100.587,-38.215],[-100.517,-38.134],[-100.442,-38.052],[-100.371,-37.97],[-100.196,-37.945],[-100.092,-38.002],[-99.988,-38.059],[-99.808,-38.034],[-99.704,-38.09],[-99.6,-38.147],[-99.567,-38.286],[-99.462,-38.342],[-99.283,-38.316],[-99.179,-38.373],[-99.075,-38.429],[-98.896,-38.402],[-98.721,-38.375],[-98.542,-38.348],[-98.471,-38.265],[-98.4,-38.182],[-98.329,-38.099],[-98.258,-38.016],[-98.187,-37.932],[-98.012,-37.905],[-97.946,-37.821],[-97.767,-37.793],[-97.7,-37.71],[-97.629,-37.626],[-97.454,-37.598],[-97.35,-37.652],[-97.175,-37.623],[-97.067,-37.678],[-96.962,-37.732],[-96.925,-37.87],[-96.817,-37.924],[-96.779,-38.062],[-96.742,-38.201],[-96.704,-38.339],[-96.771,-38.423],[-96.842,-38.507],[-96.913,-38.591],[-97.087,-38.62],[-97.267,-38.649],[-97.333,-38.733],[-97.404,-38.817],[-97.475,-38.9],[-97.546,-38.984],[-97.617,-39.067],[-97.579,-39.206],[-97.65,-39.289],[-97.613,-39.427],[-97.683,-39.511],[-97.754,-39.594],[-97.717,-39.732],[-97.788,-39.816],[-97.858,-39.899],[-97.821,-40.038],[-97.783,-40.176],[-97.746,-40.314],[-97.708,-40.453],[-97.6,-40.507],[-97.417,-40.478],[-97.346,-40.395],[-97.275,-40.311],[-97.204,-40.227],[-97.133,-40.144],[-97.062,-40.06],[-96.992,-39.976],[-96.921,-39.892],[-96.85,-39.808],[-96.779,-39.724],[-96.817,-39.587],[-96.75,-39.502],[-96.679,-39.419],[-96.717,-39.281],[-96.65,-39.197],[-96.579,-39.113],[-96.508,-39.029],[-96.333,-38.998],[-96.262,-38.914],[-96.196,-38.83],[-96.017,-38.799],[-95.95,-38.715],[-95.771,-38.684],[-95.704,-38.599],[-95.637,-38.515],[-95.462,-38.483],[-95.396,-38.399],[-95.325,-38.314],[-95.258,-38.229],[-95.192,-38.145],[-95.125,-38.06],[-95.167,-37.923],[-95.275,-37.87],[-95.317,-37.732],[-95.354,-37.595],[-95.287,-37.51],[-95.221,-37.425],[-95.262,-37.288],[-95.196,-37.203],[-95.238,-37.066],[-95.171,-36.981],[-95.104,-36.896],[-95.146,-36.759],[-95.183,-36.621],[-95.225,-36.483],[-95.329,-36.43],[-95.433,-36.377],[-95.475,-36.24],[-95.579,-36.186],[-95.617,-36.049],[-95.721,-35.995],[-95.829,-35.942],[-95.933,-35.888],[-96.038,-35.835],[-96.142,-35.781],[-96.242,-35.727],[-96.346,-35.673],[-96.45,-35.619],[-96.488,-35.481],[-96.592,-35.427],[-96.629,-35.289],[-96.562,-35.205],[-96.6,-35.067],[-96.533,-34.982],[-96.567,-34.844],[-96.504,-34.76],[-96.437,-34.676],[-96.371,-34.592],[-96.304,-34.508],[-96.242,-34.424],[-96.175,-34.34],[-96.108,-34.255],[-96.046,-34.171],[-95.979,-34.087],[-96.017,-33.949],[-95.954,-33.864],[-95.887,-33.78],[-95.721,-33.749],[-95.658,-33.665],[-95.592,-33.58],[-95.429,-33.549],[-95.363,-33.464],[-95.2,-33.433],[-95.138,-33.348],[-95.071,-33.264],[-95.008,-33.179],[-94.946,-33.094],[-94.783,-33.062],[-94.617,-33.03],[-94.554,-32.945],[-94.392,-32.912],[-94.329,-32.827],[-94.163,-32.794],[-94.104,-32.709],[-93.937,-32.676],[-93.879,-32.591],[-93.817,-32.506],[-93.654,-32.472],[-93.592,-32.387],[-93.529,-32.301],[-93.467,-32.216],[-93.408,-32.131],[-93.446,-31.993],[-93.387,-31.908],[-93.325,-31.822],[-93.367,-31.685],[-93.404,-31.548],[-93.446,-31.411],[-93.483,-31.273],[-93.583,-31.221],[-93.683,-31.169],[-93.725,-31.032],[-93.821,-30.98],[-93.863,-30.842],[-93.962,-30.79],[-94,-30.653],[-94.1,-30.6],[-94.138,-30.463],[-94.175,-30.325],[-94.212,-30.188],[-94.15,-30.103],[-94.187,-29.965],[-94.229,-29.827],[-94.267,-29.69],[-94.304,-29.552],[-94.342,-29.415],[-94.375,-29.277],[-94.413,-29.139],[-94.354,-29.054],[-94.392,-28.917],[-94.329,-28.832],[-94.271,-28.746],[-94.212,-28.661],[-94.15,-28.576],[-94.092,-28.491],[-94.033,-28.406],[-93.875,-28.373],[-93.817,-28.287],[-93.758,-28.202],[-93.7,-28.117],[-93.642,-28.031],[-93.579,-27.946],[-93.521,-27.861],[-93.462,-27.775],[-93.404,-27.69],[-93.346,-27.604],[-93.288,-27.519],[-93.229,-27.433],[-93.075,-27.399],[-93.017,-27.314],[-92.863,-27.279],[-92.708,-27.245],[-92.554,-27.211],[-92.458,-27.262],[-92.304,-27.227],[-92.246,-27.141],[-92.092,-27.106],[-91.937,-27.071],[-91.879,-26.985],[-91.825,-26.899],[-91.767,-26.813],[-91.708,-26.727],[-91.654,-26.641],[-91.596,-26.554],[-91.637,-26.417],[-91.675,-26.281],[-91.829,-26.316],[-91.925,-26.265],[-92.075,-26.3],[-92.171,-26.249],[-92.325,-26.284],[-92.421,-26.233],[-92.575,-26.267],[-92.671,-26.216],[-92.767,-26.165],[-92.863,-26.113],[-92.958,-26.062],[-93.05,-26.01],[-93.146,-25.958],[-93.183,-25.821],[-93.279,-25.769],[-93.317,-25.632],[-93.354,-25.495],[-93.45,-25.443],[-93.488,-25.306],[-93.579,-25.254],[-93.617,-25.116],[-93.712,-25.064],[-93.808,-25.012],[-93.9,-24.96],[-93.996,-24.908],[-94.088,-24.856],[-94.242,-24.888],[-94.392,-24.921],[-94.542,-24.954],[-94.6,-25.039],[-94.658,-25.124],[-94.717,-25.208],[-94.775,-25.293],[-94.833,-25.378],[-94.8,-25.516],[-94.704,-25.569],[-94.613,-25.621],[-94.458,-25.589],[-94.363,-25.641],[-94.271,-25.694],[-94.233,-25.831],[-94.196,-25.969],[-94.254,-26.054],[-94.217,-26.192],[-94.275,-26.277],[-94.333,-26.362],[-94.392,-26.447],[-94.454,-26.532],[-94.512,-26.617],[-94.667,-26.649],[-94.758,-26.597],[-94.796,-26.459],[-94.892,-26.406],[-94.988,-26.353],[-95.021,-26.215],[-95.058,-26.078],[-95.15,-26.025],[-95.187,-25.887],[-95.221,-25.749],[-95.317,-25.696],[-95.408,-25.643],[-95.504,-25.59],[-95.596,-25.536],[-95.633,-25.399],[-95.667,-25.261],[-95.758,-25.207],[-95.796,-25.069],[-95.887,-25.016],[-95.983,-24.962],[-96.075,-24.909],[-96.167,-24.855],[-96.262,-24.802],[-96.354,-24.748],[-96.446,-24.694],[-96.537,-24.64],[-96.571,-24.502],[-96.667,-24.449],[-96.7,-24.311],[-96.792,-24.257],[-96.883,-24.202],[-96.975,-24.149],[-97.067,-24.094],[-97.217,-24.124],[-97.312,-24.069],[-97.404,-24.015],[-97.554,-24.044],[-97.646,-23.99],[-97.738,-23.935],[-97.829,-23.881],[-97.921,-23.826],[-97.954,-23.688],[-97.983,-23.55],[-98.017,-23.412],[-97.958,-23.329],[-97.896,-23.245],[-97.838,-23.162],[-97.779,-23.079],[-97.721,-22.995],[-97.754,-22.857],[-97.842,-22.803],[-97.875,-22.665],[-97.908,-22.527],[-98,-22.472],[-98.029,-22.334],[-98.121,-22.28],[-98.154,-22.142],[-98.242,-22.087],[-98.275,-21.949],[-98.367,-21.895],[-98.454,-21.84],[-98.546,-21.785],[-98.633,-21.73],[-98.667,-21.592],[-98.758,-21.537],[-98.846,-21.482],[-98.879,-21.345],[-98.908,-21.207],[-99,-21.152],[-99.087,-21.097],[-99.238,-21.124],[-99.325,-21.069],[-99.475,-21.096],[-99.621,-21.124],[-99.771,-21.151],[-99.829,-21.233],[-99.887,-21.315],[-100.037,-21.342],[-100.183,-21.368],[-100.333,-21.394],[-100.421,-21.338],[-100.571,-21.364],[-100.658,-21.308],[-100.746,-21.252],[-100.896,-21.277],[-100.983,-21.221],[-101.071,-21.165],[-101.221,-21.19],[-101.308,-21.133],[-101.4,-21.077],[-101.488,-21.02],[-101.633,-21.045],[-101.871,-21.012],[-101.783,-21.069],[-101.929,-21.093],[-102.079,-21.117],[-102.137,-21.198],[-102.287,-21.222],[-102.437,-21.246],[-102.583,-21.269],[-102.671,-21.211],[-102.821,-21.234],[-102.908,-21.177],[-102.996,-21.119],[-103.083,-21.062],[-103.171,-21.004],[-103.258,-20.946],[-103.408,-20.969],[-103.554,-20.991],[-103.704,-21.013],[-103.762,-21.092],[-103.913,-21.114],[-104.062,-21.136],[-104.208,-21.157],[-104.358,-21.178],[-104.446,-21.119],[-104.592,-21.14],[-104.679,-21.081],[-104.767,-21.022],[-104.854,-20.964],[-104.937,-20.905],[-105.025,-20.846],[-105.113,-20.787],[-105.2,-20.728],[-105.283,-20.669],[-105.371,-20.61],[-105.458,-20.551],[-105.542,-20.492],[-105.567,-20.354],[-105.654,-20.295],[-105.679,-20.157],[-105.767,-20.098],[-105.787,-19.961],[-105.812,-19.823]],[[-86.346,-19.634],[-86.296,-19.546],[-86.154,-19.506],[-86.058,-19.554],[-85.967,-19.601],[-85.921,-19.737],[-85.879,-19.872],[-85.837,-20.008],[-85.742,-20.055],[-85.7,-20.191],[-85.658,-20.326],[-85.613,-20.462],[-85.571,-20.597],[-85.621,-20.685],[-85.671,-20.773],[-85.721,-20.861],[-85.817,-20.813],[-85.908,-20.766],[-85.954,-20.63],[-85.996,-20.495],[-86.092,-20.447],[-86.042,-20.359],[-86.083,-20.224],[-86.175,-20.176],[-86.221,-20.041],[-86.312,-19.993],[-86.354,-19.857],[-86.396,-19.722],[-86.346,-19.634]],[[-88.604,-23.843],[-88.55,-23.756],[-88.496,-23.669],[-88.442,-23.581],[-88.35,-23.63],[-88.254,-23.679],[-88.158,-23.727],[-88.062,-23.776],[-88.021,-23.912],[-87.975,-24.048],[-88.029,-24.135],[-88.083,-24.223],[-88.137,-24.31],[-88.283,-24.349],[-88.379,-24.3],[-88.475,-24.251],[-88.625,-24.29],[-88.667,-24.154],[-88.708,-24.017],[-88.658,-23.93],[-88.604,-23.843]],[[-90.954,-25.965],[-90.896,-25.878],[-90.842,-25.792],[-90.787,-25.705],[-90.633,-25.669],[-90.579,-25.582],[-90.429,-25.546],[-90.333,-25.596],[-90.292,-25.732],[-90.346,-25.819],[-90.4,-25.906],[-90.554,-25.942],[-90.608,-26.029],[-90.762,-26.065],[-90.858,-26.015],[-90.954,-25.965]],[[-81.458,-25.692],[-81.408,-25.604],[-81.308,-25.648],[-81.163,-25.604],[-81.113,-25.737],[-81.158,-25.826],[-81.308,-25.87],[-81.408,-25.826],[-81.508,-25.781],[-81.458,-25.692]],[[-98.342,-19.661],[-98.283,-19.578],[-98.137,-19.549],[-98.05,-19.603],[-97.904,-19.574],[-97.813,-19.628],[-97.779,-19.766],[-97.75,-19.903],[-97.804,-19.986],[-97.863,-20.07],[-97.829,-20.207],[-97.888,-20.291],[-97.946,-20.374],[-98.033,-20.32],[-98.067,-20.182],[-98.154,-20.128],[-98.187,-19.99],[-98.221,-19.853],[-98.308,-19.799],[-98.342,-19.661]],[[-95.821,-27.537],[-95.762,-27.453],[-95.7,-27.369],[-95.546,-27.337],[-95.45,-27.391],[-95.296,-27.359],[-95.2,-27.413],[-95.104,-27.466],[-95.067,-27.604],[-95.033,-27.741],[-94.996,-27.879],[-95.058,-27.964],[-95.117,-28.049],[-95.175,-28.133],[-95.333,-28.165],[-95.492,-28.196],[-95.587,-28.143],[-95.683,-28.089],[-95.779,-28.036],[-95.871,-27.982],[-95.908,-27.844],[-95.942,-27.706],[-95.883,-27.622],[-95.821,-27.537]],[[-101.921,-24.229],[-101.858,-24.148],[-101.796,-24.067],[-101.733,-23.986],[-101.583,-23.962],[-101.521,-23.88],[-101.458,-23.799],[-101.396,-23.718],[-101.246,-23.693],[-101.096,-23.669],[-101.004,-23.726],[-100.917,-23.782],[-100.825,-23.839],[-100.733,-23.896],[-100.708,-24.034],[-100.767,-24.116],[-100.829,-24.197],[-100.892,-24.279],[-100.954,-24.361],[-101.017,-24.442],[-100.988,-24.581],[-101.05,-24.662],[-101.2,-24.687],[-101.262,-24.768],[-101.325,-24.85],[-101.387,-24.931],[-101.479,-24.874],[-101.571,-24.816],[-101.658,-24.759],[-101.75,-24.702],[-101.842,-24.644],[-101.929,-24.587],[-102.021,-24.529],[-102.046,-24.391],[-101.983,-24.31],[-101.921,-24.229]],[[-109.158,-25.938],[-109.087,-25.862],[-109.021,-25.787],[-108.954,-25.711],[-108.8,-25.697],[-108.729,-25.621],[-108.575,-25.608],[-108.421,-25.594],[-108.267,-25.58],[-108.2,-25.504],[-108.133,-25.427],[-108.067,-25.35],[-107.996,-25.274],[-108.017,-25.135],[-107.95,-25.058],[-107.971,-24.919],[-107.904,-24.843],[-107.925,-24.704],[-107.942,-24.566],[-107.875,-24.489],[-107.896,-24.35],[-107.746,-24.335],[-107.679,-24.258],[-107.7,-24.12],[-107.633,-24.043],[-107.479,-24.027],[-107.329,-24.011],[-107.175,-23.995],[-107.092,-24.056],[-107.004,-24.117],[-106.917,-24.178],[-106.829,-24.239],[-106.808,-24.378],[-106.721,-24.439],[-106.633,-24.5],[-106.546,-24.561],[-106.396,-24.544],[-106.242,-24.526],[-106.175,-24.448],[-106.2,-24.31],[-106.221,-24.171],[-106.242,-24.032],[-106.267,-23.894],[-106.2,-23.816],[-106.221,-23.678],[-106.158,-23.599],[-106.008,-23.582],[-105.854,-23.564],[-105.879,-23.425],[-105.725,-23.407],[-105.575,-23.388],[-105.513,-23.31],[-105.446,-23.231],[-105.383,-23.152],[-105.321,-23.074],[-105.258,-22.995],[-105.196,-22.916],[-105.129,-22.837],[-104.979,-22.818],[-104.917,-22.739],[-104.854,-22.66],[-104.704,-22.64],[-104.617,-22.699],[-104.467,-22.679],[-104.317,-22.658],[-104.229,-22.717],[-104.079,-22.696],[-103.992,-22.755],[-103.904,-22.814],[-103.75,-22.792],[-103.663,-22.851],[-103.575,-22.909],[-103.425,-22.887],[-103.363,-22.807],[-103.212,-22.786],[-103.15,-22.706],[-103,-22.683],[-102.937,-22.603],[-102.787,-22.58],[-102.638,-22.557],[-102.488,-22.534],[-102.4,-22.592],[-102.25,-22.569],[-102.163,-22.626],[-102.012,-22.603],[-101.921,-22.66],[-101.833,-22.717],[-101.683,-22.693],[-101.533,-22.669],[-101.383,-22.644],[-101.321,-22.563],[-101.262,-22.481],[-101.2,-22.4],[-101.229,-22.262],[-101.171,-22.181],[-101.021,-22.156],[-100.929,-22.212],[-100.779,-22.187],[-100.633,-22.161],[-100.542,-22.217],[-100.392,-22.192],[-100.242,-22.166],[-100.154,-22.222],[-100.062,-22.278],[-99.917,-22.251],[-99.825,-22.307],[-99.738,-22.363],[-99.704,-22.501],[-99.617,-22.557],[-99.525,-22.612],[-99.496,-22.75],[-99.404,-22.806],[-99.375,-22.944],[-99.346,-23.082],[-99.404,-23.164],[-99.375,-23.303],[-99.433,-23.385],[-99.404,-23.523],[-99.462,-23.606],[-99.525,-23.688],[-99.496,-23.826],[-99.404,-23.882],[-99.312,-23.938],[-99.221,-23.994],[-99.071,-23.966],[-98.979,-24.022],[-98.888,-24.077],[-98.796,-24.132],[-98.767,-24.271],[-98.675,-24.326],[-98.583,-24.381],[-98.55,-24.519],[-98.458,-24.575],[-98.429,-24.713],[-98.488,-24.796],[-98.458,-24.934],[-98.425,-25.072],[-98.488,-25.156],[-98.454,-25.294],[-98.517,-25.377],[-98.579,-25.46],[-98.546,-25.598],[-98.608,-25.681],[-98.671,-25.764],[-98.729,-25.847],[-98.792,-25.93],[-98.946,-25.957],[-99.008,-26.04],[-99.071,-26.122],[-99.129,-26.205],[-99.192,-26.288],[-99.254,-26.371],[-99.408,-26.397],[-99.471,-26.48],[-99.629,-26.506],[-99.692,-26.588],[-99.846,-26.614],[-100,-26.64],[-100.092,-26.584],[-100.246,-26.609],[-100.404,-26.634],[-100.558,-26.659],[-100.65,-26.603],[-100.804,-26.627],[-100.962,-26.652],[-101.117,-26.676],[-101.271,-26.7],[-101.363,-26.643],[-101.521,-26.667],[-101.675,-26.69],[-101.767,-26.633],[-101.921,-26.656],[-102.012,-26.598],[-102.167,-26.621],[-102.325,-26.644],[-102.387,-26.724],[-102.546,-26.747],[-102.608,-26.827],[-102.675,-26.908],[-102.738,-26.988],[-102.804,-27.069],[-102.871,-27.149],[-102.842,-27.288],[-102.687,-27.266],[-102.596,-27.325],[-102.437,-27.303],[-102.283,-27.28],[-102.125,-27.257],[-102.033,-27.316],[-101.879,-27.292],[-101.787,-27.35],[-101.629,-27.327],[-101.538,-27.385],[-101.379,-27.361],[-101.287,-27.419],[-101.133,-27.394],[-100.975,-27.37],[-100.821,-27.346],[-100.754,-27.264],[-100.6,-27.239],[-100.442,-27.214],[-100.379,-27.132],[-100.225,-27.107],[-100.067,-27.082],[-99.913,-27.056],[-99.754,-27.03],[-99.6,-27.004],[-99.446,-26.978],[-99.35,-27.034],[-99.258,-27.09],[-99.104,-27.063],[-99.008,-27.119],[-98.917,-27.175],[-98.821,-27.231],[-98.729,-27.286],[-98.637,-27.342],[-98.542,-27.397],[-98.45,-27.452],[-98.292,-27.425],[-98.2,-27.48],[-98.042,-27.452],[-97.95,-27.507],[-97.854,-27.562],[-97.7,-27.534],[-97.604,-27.589],[-97.508,-27.644],[-97.475,-27.782],[-97.383,-27.836],[-97.35,-27.975],[-97.317,-28.113],[-97.283,-28.251],[-97.346,-28.335],[-97.408,-28.419],[-97.375,-28.557],[-97.342,-28.696],[-97.246,-28.75],[-97.15,-28.805],[-97.054,-28.859],[-96.958,-28.914],[-96.8,-28.884],[-96.704,-28.939],[-96.671,-29.077],[-96.575,-29.131],[-96.542,-29.269],[-96.504,-29.407],[-96.567,-29.491],[-96.629,-29.575],[-96.692,-29.659],[-96.658,-29.798],[-96.721,-29.882],[-96.783,-29.966],[-96.75,-30.104],[-96.812,-30.188],[-96.779,-30.326],[-96.842,-30.41],[-96.904,-30.494],[-96.967,-30.577],[-97.029,-30.661],[-97.192,-30.691],[-97.354,-30.719],[-97.417,-30.803],[-97.579,-30.832],[-97.738,-30.86],[-97.838,-30.805],[-97.996,-30.833],[-98.062,-30.917],[-98.225,-30.944],[-98.321,-30.889],[-98.483,-30.916],[-98.642,-30.944],[-98.742,-30.888],[-98.838,-30.832],[-98.933,-30.776],[-99.029,-30.72],[-99.125,-30.664],[-99.287,-30.69],[-99.45,-30.716],[-99.546,-30.66],[-99.708,-30.686],[-99.804,-30.629],[-99.962,-30.655],[-100.058,-30.598],[-100.154,-30.541],[-100.317,-30.566],[-100.383,-30.648],[-100.45,-30.73],[-100.517,-30.812],[-100.679,-30.836],[-100.746,-30.918],[-100.812,-31],[-100.975,-31.024],[-101.042,-31.106],[-101.012,-31.245],[-101.079,-31.326],[-101.05,-31.466],[-100.954,-31.523],[-100.929,-31.662],[-100.9,-31.802],[-100.804,-31.859],[-100.775,-31.998],[-100.842,-32.08],[-100.812,-32.219],[-100.783,-32.359],[-100.854,-32.44],[-100.921,-32.522],[-100.988,-32.604],[-101.058,-32.685],[-101.125,-32.767],[-101.196,-32.848],[-101.262,-32.929],[-101.333,-33.011],[-101.4,-33.092],[-101.471,-33.174],[-101.542,-33.255],[-101.513,-33.394],[-101.583,-33.476],[-101.65,-33.557],[-101.721,-33.638],[-101.696,-33.777],[-101.767,-33.858],[-101.833,-33.939],[-101.904,-34.021],[-101.975,-34.101],[-102.046,-34.182],[-102.117,-34.263],[-102.287,-34.285],[-102.358,-34.366],[-102.429,-34.447],[-102.5,-34.527],[-102.671,-34.549],[-102.842,-34.57],[-103.008,-34.591],[-103.083,-34.671],[-103.154,-34.752],[-103.325,-34.772],[-103.396,-34.852],[-103.567,-34.872],[-103.642,-34.952],[-103.712,-35.032],[-103.787,-35.112],[-103.958,-35.131],[-104.033,-35.211],[-104.204,-35.23],[-104.279,-35.309],[-104.45,-35.328],[-104.525,-35.407],[-104.696,-35.426],[-104.867,-35.444],[-104.967,-35.383],[-105.137,-35.4],[-105.233,-35.339],[-105.404,-35.356],[-105.5,-35.295],[-105.6,-35.233],[-105.696,-35.171],[-105.792,-35.11],[-105.887,-35.048],[-106.058,-35.064],[-106.154,-35.002],[-106.25,-34.94],[-106.421,-34.955],[-106.517,-34.893],[-106.613,-34.831],[-106.704,-34.768],[-106.8,-34.706],[-106.896,-34.643],[-107.067,-34.657],[-107.162,-34.594],[-107.254,-34.532],[-107.275,-34.391],[-107.367,-34.328],[-107.383,-34.188],[-107.479,-34.125],[-107.571,-34.062],[-107.592,-33.921],[-107.683,-33.858],[-107.775,-33.795],[-107.871,-33.731],[-107.962,-33.668],[-108.054,-33.604],[-108.15,-33.541],[-108.167,-33.401],[-108.258,-33.337],[-108.275,-33.197],[-108.367,-33.133],[-108.383,-32.993],[-108.4,-32.853],[-108.417,-32.713],[-108.433,-32.573],[-108.358,-32.496],[-108.283,-32.42],[-108.208,-32.343],[-108.133,-32.267],[-108.058,-32.19],[-107.983,-32.113],[-107.913,-32.037],[-107.746,-32.023],[-107.671,-31.946],[-107.687,-31.806],[-107.708,-31.666],[-107.725,-31.526],[-107.742,-31.386],[-107.833,-31.323],[-107.85,-31.183],[-107.871,-31.043],[-107.887,-30.904],[-107.904,-30.764],[-107.996,-30.701],[-108.083,-30.637],[-108.175,-30.574],[-108.337,-30.587],[-108.5,-30.601],[-108.575,-30.677],[-108.738,-30.689],[-108.808,-30.765],[-108.792,-30.905],[-108.867,-30.981],[-108.85,-31.121],[-108.762,-31.185],[-108.746,-31.325],[-108.729,-31.465],[-108.712,-31.605],[-108.787,-31.681],[-108.858,-31.757],[-108.933,-31.833],[-109.008,-31.909],[-109.083,-31.985],[-109.25,-31.996],[-109.325,-32.072],[-109.492,-32.083],[-109.567,-32.158],[-109.729,-32.169],[-109.896,-32.179],[-110.063,-32.19],[-110.229,-32.199],[-110.317,-32.134],[-110.408,-32.069],[-110.421,-31.929],[-110.433,-31.789],[-110.446,-31.649],[-110.371,-31.574],[-110.296,-31.499],[-110.221,-31.425],[-110.146,-31.35],[-110.071,-31.275],[-109.908,-31.264],[-109.833,-31.189],[-109.758,-31.114],[-109.596,-31.103],[-109.521,-31.028],[-109.446,-30.952],[-109.371,-30.877],[-109.3,-30.801],[-109.313,-30.661],[-109.404,-30.597],[-109.417,-30.457],[-109.508,-30.393],[-109.596,-30.329],[-109.613,-30.189],[-109.7,-30.124],[-109.787,-30.06],[-109.875,-29.996],[-109.967,-29.931],[-109.979,-29.791],[-110.067,-29.727],[-110.083,-29.587],[-110.096,-29.448],[-110.113,-29.308],[-110.037,-29.233],[-109.967,-29.158],[-109.896,-29.083],[-109.821,-29.008],[-109.75,-28.932],[-109.679,-28.857],[-109.608,-28.782],[-109.533,-28.706],[-109.55,-28.567],[-109.567,-28.428],[-109.496,-28.352],[-109.425,-28.276],[-109.442,-28.137],[-109.371,-28.062],[-109.388,-27.922],[-109.317,-27.847],[-109.333,-27.707],[-109.35,-27.568],[-109.367,-27.429],[-109.383,-27.29],[-109.313,-27.214],[-109.329,-27.075],[-109.346,-26.936],[-109.279,-26.86],[-109.296,-26.721],[-109.225,-26.646],[-109.242,-26.506],[-109.258,-26.367],[-109.192,-26.292],[-109.208,-26.153],[-109.142,-26.077],[-109.158,-25.938]],[[-105.187,-37.898],[-105.212,-37.757],[-105.233,-37.617],[-105.058,-37.6],[-104.979,-37.521],[-104.804,-37.503],[-104.625,-37.485],[-104.525,-37.546],[-104.425,-37.607],[-104.325,-37.667],[-104.3,-37.808],[-104.379,-37.887],[-104.454,-37.966],[-104.533,-38.046],[-104.712,-38.064],[-104.887,-38.082],[-104.988,-38.021],[-105.087,-37.959],[-105.187,-37.898]],[[-107.596,-37.396],[-107.613,-37.255],[-107.629,-37.114],[-107.55,-37.037],[-107.471,-36.96],[-107.296,-36.946],[-107.117,-36.932],[-107.021,-36.996],[-106.846,-36.981],[-106.75,-37.044],[-106.729,-37.184],[-106.633,-37.247],[-106.533,-37.309],[-106.438,-37.372],[-106.417,-37.512],[-106.317,-37.575],[-106.217,-37.637],[-106.2,-37.778],[-106.179,-37.918],[-106.258,-37.996],[-106.337,-38.074],[-106.417,-38.152],[-106.496,-38.23],[-106.575,-38.308],[-106.754,-38.323],[-106.933,-38.338],[-107.113,-38.352],[-107.392,-38.302],[-107.292,-38.366],[-107.471,-38.38],[-107.75,-38.329],[-107.65,-38.393],[-107.829,-38.406],[-108.008,-38.419],[-108.192,-38.432],[-108.287,-38.367],[-108.304,-38.227],[-108.221,-38.15],[-108.142,-38.074],[-108.058,-37.997],[-107.979,-37.921],[-107.8,-37.907],[-107.721,-37.831],[-107.642,-37.754],[-107.658,-37.613],[-107.675,-37.473],[-107.596,-37.396]],[[-111.133,-37.746],[-111.05,-37.672],[-110.871,-37.664],[-110.692,-37.656],[-110.517,-37.648],[-110.421,-37.714],[-110.325,-37.78],[-110.229,-37.846],[-110.133,-37.911],[-110.121,-38.052],[-110.108,-38.193],[-110.096,-38.334],[-110.179,-38.409],[-110.267,-38.484],[-110.35,-38.559],[-110.433,-38.633],[-110.613,-38.642],[-110.796,-38.65],[-110.887,-38.583],[-110.983,-38.517],[-111.079,-38.45],[-111.175,-38.384],[-111.271,-38.317],[-111.367,-38.25],[-111.375,-38.109],[-111.292,-38.035],[-111.204,-37.961],[-111.217,-37.82],[-111.133,-37.746]],[[-110.879,-39.926],[-110.792,-39.852],[-110.704,-39.777],[-110.621,-39.703],[-110.533,-39.628],[-110.45,-39.554],[-110.458,-39.412],[-110.375,-39.338],[-110.387,-39.197],[-110.3,-39.122],[-110.313,-38.981],[-110.325,-38.84],[-110.242,-38.766],[-110.058,-38.756],[-109.962,-38.822],[-109.867,-38.888],[-109.771,-38.954],[-109.671,-39.019],[-109.575,-39.084],[-109.479,-39.15],[-109.296,-39.139],[-109.113,-39.129],[-108.933,-39.118],[-108.85,-39.042],[-108.667,-39.031],[-108.571,-39.095],[-108.388,-39.083],[-108.292,-39.147],[-108.108,-39.135],[-108.008,-39.199],[-107.908,-39.263],[-107.812,-39.327],[-107.712,-39.391],[-107.613,-39.455],[-107.513,-39.518],[-107.413,-39.582],[-107.313,-39.646],[-107.212,-39.709],[-107.108,-39.772],[-107.008,-39.835],[-106.908,-39.899],[-106.808,-39.962],[-106.704,-40.024],[-106.604,-40.088],[-106.5,-40.15],[-106.483,-40.291],[-106.379,-40.353],[-106.358,-40.494],[-106.337,-40.634],[-106.421,-40.713],[-106.4,-40.853],[-106.383,-40.994],[-106.467,-41.072],[-106.55,-41.149],[-106.529,-41.29],[-106.613,-41.368],[-106.592,-41.508],[-106.675,-41.586],[-106.758,-41.664],[-106.742,-41.804],[-106.825,-41.882],[-106.908,-41.96],[-107.1,-41.974],[-107.287,-41.988],[-107.375,-42.065],[-107.562,-42.078],[-107.667,-42.015],[-107.858,-42.027],[-107.958,-41.964],[-108.15,-41.976],[-108.254,-41.912],[-108.442,-41.924],[-108.629,-41.935],[-108.733,-41.871],[-108.837,-41.806],[-108.937,-41.741],[-109.037,-41.676],[-109.142,-41.611],[-109.242,-41.545],[-109.342,-41.48],[-109.446,-41.415],[-109.546,-41.349],[-109.646,-41.284],[-109.658,-41.142],[-109.758,-41.077],[-109.858,-41.011],[-109.958,-40.945],[-110.058,-40.879],[-110.246,-40.888],[-110.333,-40.963],[-110.521,-40.972],[-110.617,-40.905],[-110.804,-40.913],[-110.992,-40.921],[-111.087,-40.854],[-111.1,-40.713],[-111.196,-40.646],[-111.208,-40.505],[-111.217,-40.364],[-111.229,-40.223],[-111.142,-40.149],[-111.054,-40.075],[-110.967,-40.001],[-110.879,-39.926]],[[-112.579,-45.143],[-112.483,-45.07],[-112.387,-44.997],[-112.292,-44.924],[-112.092,-44.919],[-111.996,-44.846],[-111.796,-44.84],[-111.7,-44.766],[-111.5,-44.76],[-111.404,-44.686],[-111.312,-44.612],[-111.217,-44.538],[-111.125,-44.464],[-111.029,-44.39],[-110.937,-44.316],[-110.842,-44.241],[-110.75,-44.167],[-110.658,-44.092],[-110.562,-44.018],[-110.471,-43.943],[-110.379,-43.868],[-110.287,-43.794],[-110.196,-43.719],[-110,-43.71],[-109.908,-43.635],[-109.817,-43.559],[-109.729,-43.484],[-109.637,-43.409],[-109.546,-43.333],[-109.458,-43.258],[-109.263,-43.248],[-109.071,-43.237],[-108.875,-43.226],[-108.683,-43.215],[-108.667,-43.356],[-108.562,-43.421],[-108.546,-43.562],[-108.529,-43.703],[-108.425,-43.767],[-108.317,-43.832],[-108.125,-43.82],[-107.929,-43.807],[-107.733,-43.794],[-107.537,-43.781],[-107.429,-43.845],[-107.237,-43.831],[-107.129,-43.895],[-107.021,-43.958],[-107,-44.099],[-106.983,-44.239],[-106.875,-44.302],[-106.854,-44.443],[-106.942,-44.521],[-106.921,-44.661],[-107.008,-44.739],[-107.1,-44.816],[-107.296,-44.83],[-107.388,-44.907],[-107.587,-44.921],[-107.675,-44.998],[-107.875,-45.011],[-107.983,-44.947],[-108.183,-44.959],[-108.292,-44.895],[-108.492,-44.906],[-108.704,-44.777],[-108.596,-44.842],[-108.796,-44.853],[-108.996,-44.864],[-109.196,-44.875],[-109.287,-44.951],[-109.379,-45.026],[-109.683,-44.97],[-109.579,-45.036],[-109.779,-45.046],[-109.871,-45.121],[-110.071,-45.13],[-110.058,-45.271],[-109.954,-45.337],[-109.75,-45.328],[-109.646,-45.394],[-109.442,-45.384],[-109.242,-45.374],[-109.133,-45.439],[-109.025,-45.504],[-108.917,-45.569],[-108.808,-45.634],[-108.792,-45.775],[-108.683,-45.84],[-108.667,-45.981],[-108.558,-46.046],[-108.542,-46.187],[-108.433,-46.251],[-108.413,-46.392],[-108.396,-46.533],[-108.379,-46.674],[-108.363,-46.815],[-108.458,-46.891],[-108.438,-47.032],[-108.421,-47.173],[-108.517,-47.249],[-108.613,-47.326],[-108.596,-47.466],[-108.692,-47.542],[-108.787,-47.619],[-108.883,-47.695],[-108.867,-47.836],[-108.962,-47.912],[-109.058,-47.988],[-109.158,-48.063],[-109.367,-48.074],[-109.467,-48.149],[-109.567,-48.225],[-109.663,-48.3],[-109.875,-48.31],[-109.975,-48.385],[-110.188,-48.394],[-110.287,-48.469],[-110.387,-48.544],[-110.488,-48.618],[-110.7,-48.626],[-110.917,-48.634],[-111.025,-48.567],[-111.138,-48.5],[-111.25,-48.433],[-111.363,-48.366],[-111.371,-48.224],[-111.271,-48.15],[-111.171,-48.076],[-111.179,-47.935],[-111.192,-47.794],[-111.2,-47.652],[-111.312,-47.585],[-111.321,-47.444],[-111.429,-47.377],[-111.542,-47.309],[-111.65,-47.242],[-111.758,-47.174],[-111.967,-47.18],[-112.071,-47.112],[-112.279,-47.117],[-112.387,-47.049],[-112.496,-46.98],[-112.7,-46.985],[-112.808,-46.916],[-112.917,-46.847],[-113.021,-46.778],[-113.125,-46.709],[-113.133,-46.568],[-113.238,-46.499],[-113.242,-46.358],[-113.246,-46.216],[-113.25,-46.075],[-113.15,-46.003],[-113.154,-45.861],[-113.058,-45.789],[-112.958,-45.716],[-112.962,-45.575],[-112.867,-45.502],[-112.767,-45.43],[-112.775,-45.289],[-112.675,-45.216],[-112.579,-45.143]],[[-120.575,-37.976],[-120.479,-37.911],[-120.387,-37.845],[-120.213,-37.854],[-120.033,-37.863],[-120.042,-38.003],[-119.958,-38.077],[-119.871,-38.152],[-119.879,-38.292],[-119.971,-38.358],[-120.067,-38.423],[-120.246,-38.414],[-120.337,-38.48],[-120.517,-38.47],[-120.6,-38.396],[-120.592,-38.256],[-120.583,-38.116],[-120.575,-37.976]],[[-123.779,-43.034],[-123.675,-42.972],[-123.571,-42.91],[-123.467,-42.848],[-123.275,-42.864],[-123.171,-42.802],[-122.979,-42.817],[-122.892,-42.894],[-122.7,-42.909],[-122.617,-42.986],[-122.529,-43.063],[-122.337,-43.077],[-122.146,-43.091],[-122.058,-43.167],[-121.967,-43.244],[-121.879,-43.321],[-121.792,-43.397],[-121.808,-43.538],[-121.825,-43.678],[-121.842,-43.818],[-121.946,-43.882],[-122.05,-43.946],[-122.158,-44.009],[-122.262,-44.073],[-122.371,-44.136],[-122.475,-44.199],[-122.583,-44.262],[-122.692,-44.325],[-122.796,-44.387],[-122.904,-44.45],[-123.013,-44.513],[-123.033,-44.653],[-123.142,-44.715],[-123.25,-44.778],[-123.358,-44.84],[-123.467,-44.902],[-123.579,-44.964],[-123.687,-45.026],[-123.708,-45.166],[-123.729,-45.306],[-123.754,-45.446],[-123.775,-45.586],[-123.888,-45.647],[-124.087,-45.63],[-124.2,-45.691],[-124.313,-45.752],[-124.512,-45.734],[-124.6,-45.656],[-124.687,-45.576],[-124.662,-45.437],[-124.637,-45.297],[-124.612,-45.157],[-124.587,-45.017],[-124.675,-44.938],[-124.763,-44.859],[-124.846,-44.78],[-124.933,-44.701],[-125.021,-44.621],[-124.996,-44.482],[-124.883,-44.421],[-124.775,-44.361],[-124.667,-44.3],[-124.642,-44.161],[-124.533,-44.1],[-124.425,-44.039],[-124.317,-43.978],[-124.208,-43.917],[-124.187,-43.777],[-124.079,-43.716],[-124.058,-43.576],[-123.95,-43.515],[-123.929,-43.375],[-123.908,-43.235],[-123.888,-43.095],[-123.779,-43.034]],[[-128.404,-49.386],[-128.279,-49.33],[-128.154,-49.273],[-128.029,-49.216],[-127.817,-49.242],[-127.692,-49.185],[-127.479,-49.209],[-127.354,-49.152],[-127.142,-49.176],[-127.017,-49.118],[-126.804,-49.141],[-126.592,-49.164],[-126.379,-49.186],[-126.167,-49.208],[-126.075,-49.289],[-125.863,-49.31],[-125.646,-49.331],[-125.554,-49.411],[-125.342,-49.431],[-125.246,-49.511],[-125.154,-49.591],[-125.062,-49.671],[-124.967,-49.75],[-124.875,-49.83],[-124.904,-49.97],[-124.933,-50.11],[-124.962,-50.25],[-124.867,-50.33],[-124.896,-50.47],[-124.929,-50.61],[-124.833,-50.689],[-124.863,-50.829],[-124.767,-50.909],[-124.796,-51.049],[-124.825,-51.189],[-124.954,-51.249],[-124.983,-51.389],[-125.112,-51.45],[-125.142,-51.59],[-125.271,-51.65],[-125.4,-51.709],[-125.529,-51.769],[-125.562,-51.909],[-125.692,-51.969],[-125.825,-52.028],[-125.954,-52.087],[-126.087,-52.146],[-126.217,-52.205],[-126.35,-52.264],[-126.483,-52.323],[-126.612,-52.381],[-126.746,-52.44],[-126.879,-52.498],[-126.921,-52.637],[-127.054,-52.695],[-127.187,-52.753],[-127.321,-52.811],[-127.458,-52.868],[-127.688,-52.844],[-127.825,-52.901],[-128.054,-52.875],[-128.283,-52.849],[-128.517,-52.823],[-128.608,-52.74],[-128.7,-52.657],[-128.654,-52.519],[-128.75,-52.436],[-128.842,-52.353],[-128.929,-52.27],[-129.021,-52.187],[-129.113,-52.104],[-129.204,-52.021],[-129.292,-51.937],[-129.383,-51.854],[-129.471,-51.771],[-129.563,-51.687],[-129.65,-51.604],[-129.604,-51.465],[-129.692,-51.382],[-129.779,-51.298],[-129.867,-51.214],[-129.954,-51.131],[-130.042,-51.047],[-130.129,-50.963],[-130.212,-50.879],[-130.3,-50.795],[-130.254,-50.657],[-130.208,-50.519],[-130.162,-50.381],[-130.029,-50.327],[-129.9,-50.272],[-129.771,-50.218],[-129.637,-50.163],[-129.508,-50.108],[-129.379,-50.053],[-129.25,-49.998],[-129.038,-50.026],[-128.908,-49.97],[-128.779,-49.914],[-128.738,-49.776],[-128.613,-49.72],[-128.571,-49.581],[-128.533,-49.442],[-128.404,-49.386]],[[-115.6,-46.582],[-115.496,-46.512],[-115.392,-46.441],[-115.292,-46.371],[-115.187,-46.301],[-114.983,-46.301],[-114.779,-46.301],[-114.575,-46.3],[-114.471,-46.229],[-114.267,-46.228],[-114.163,-46.298],[-113.958,-46.296],[-113.854,-46.366],[-113.75,-46.435],[-113.646,-46.505],[-113.542,-46.574],[-113.537,-46.716],[-113.533,-46.857],[-113.529,-46.998],[-113.633,-47.07],[-113.733,-47.142],[-113.733,-47.284],[-113.833,-47.356],[-113.938,-47.427],[-113.933,-47.569],[-113.829,-47.638],[-113.617,-47.636],[-113.512,-47.705],[-113.404,-47.775],[-113.192,-47.772],[-113.087,-47.841],[-112.979,-47.909],[-112.871,-47.978],[-112.763,-48.047],[-112.65,-48.116],[-112.646,-48.257],[-112.537,-48.325],[-112.425,-48.394],[-112.421,-48.535],[-112.308,-48.603],[-112.196,-48.671],[-112.087,-48.739],[-111.975,-48.807],[-111.862,-48.875],[-111.75,-48.943],[-111.637,-49.011],[-111.629,-49.152],[-111.733,-49.226],[-111.837,-49.299],[-112.054,-49.305],[-112.167,-49.237],[-112.383,-49.242],[-112.496,-49.173],[-112.604,-49.105],[-112.717,-49.036],[-112.829,-48.968],[-113.042,-48.972],[-113.154,-48.902],[-113.367,-48.906],[-113.479,-48.836],[-113.692,-48.839],[-113.804,-48.769],[-113.913,-48.7],[-114.021,-48.63],[-114.342,-48.561],[-114.233,-48.632],[-114.446,-48.633],[-114.554,-48.704],[-114.658,-48.775],[-114.767,-48.846],[-114.875,-48.917],[-114.983,-48.988],[-115.092,-49.058],[-115.2,-49.27],[-115.2,-49.411],[-115.2,-49.553],[-115.2,-49.694],[-115.2,-49.836],[-115.312,-49.906],[-115.421,-49.976],[-115.533,-50.047],[-115.533,-50.188],[-115.425,-50.259],[-115.425,-50.401],[-115.317,-50.472],[-115.204,-50.543],[-115.096,-50.614],[-114.871,-50.614],[-114.758,-50.684],[-114.537,-50.684],[-114.425,-50.754],[-114.2,-50.753],[-113.979,-50.751],[-113.754,-50.749],[-113.529,-50.746],[-113.308,-50.744],[-113.083,-50.74],[-112.971,-50.809],[-112.746,-50.805],[-112.629,-50.874],[-112.404,-50.869],[-112.183,-50.864],[-112.067,-50.932],[-111.842,-50.927],[-111.617,-50.921],[-111.396,-50.914],[-111.171,-50.907],[-111.063,-50.833],[-110.842,-50.826],[-110.617,-50.818],[-110.512,-50.743],[-110.287,-50.735],[-110.067,-50.726],[-109.962,-50.651],[-109.742,-50.641],[-109.517,-50.631],[-109.417,-50.556],[-109.192,-50.546],[-108.971,-50.535],[-108.871,-50.459],[-108.65,-50.447],[-108.546,-50.371],[-108.446,-50.295],[-108.225,-50.283],[-108.125,-50.206],[-107.908,-50.193],[-107.808,-50.117],[-107.708,-50.04],[-107.608,-49.963],[-107.513,-49.886],[-107.533,-49.745],[-107.433,-49.668],[-107.454,-49.527],[-107.358,-49.45],[-107.263,-49.373],[-107.283,-49.232],[-107.304,-49.092],[-107.325,-48.951],[-107.229,-48.874],[-107.25,-48.734],[-107.158,-48.656],[-107.062,-48.579],[-106.85,-48.564],[-106.637,-48.55],[-106.425,-48.534],[-106.304,-48.597],[-106.187,-48.659],[-106.163,-48.799],[-106.046,-48.862],[-105.925,-48.924],[-105.9,-49.064],[-105.779,-49.126],[-105.658,-49.188],[-105.633,-49.328],[-105.513,-49.389],[-105.483,-49.529],[-105.363,-49.591],[-105.337,-49.731],[-105.308,-49.871],[-105.187,-49.932],[-105.062,-49.993],[-104.937,-50.054],[-104.817,-50.115],[-104.692,-50.176],[-104.475,-50.157],[-104.254,-50.138],[-104.129,-50.198],[-104.004,-50.258],[-103.879,-50.318],[-103.846,-50.458],[-103.812,-50.597],[-103.908,-50.677],[-103.875,-50.816],[-103.971,-50.896],[-104.062,-50.976],[-104.287,-50.995],[-104.379,-51.074],[-104.475,-51.154],[-104.7,-51.172],[-104.825,-51.112],[-105.175,-51.069],[-105.05,-51.13],[-105.271,-51.148],[-105.621,-51.104],[-105.496,-51.165],[-105.717,-51.182],[-105.817,-51.261],[-105.787,-51.401],[-105.887,-51.479],[-105.758,-51.541],[-105.733,-51.681],[-105.604,-51.742],[-105.479,-51.804],[-105.35,-51.865],[-105.221,-51.926],[-105.092,-51.987],[-104.962,-52.047],[-104.933,-52.187],[-104.8,-52.248],[-104.771,-52.387],[-104.867,-52.466],[-104.967,-52.545],[-104.937,-52.685],[-105.033,-52.764],[-105.133,-52.843],[-105.233,-52.922],[-105.333,-53],[-105.304,-53.14],[-105.404,-53.219],[-105.504,-53.297],[-105.608,-53.376],[-105.708,-53.454],[-105.812,-53.532],[-106.046,-53.549],[-106.283,-53.566],[-106.388,-53.644],[-106.492,-53.721],[-106.596,-53.799],[-106.567,-53.939],[-106.537,-54.079],[-106.646,-54.157],[-106.508,-54.219],[-106.479,-54.359],[-106.346,-54.421],[-106.317,-54.561],[-106.179,-54.622],[-106.046,-54.684],[-106.012,-54.823],[-105.875,-54.885],[-105.846,-55.024],[-105.812,-55.164],[-105.671,-55.225],[-105.638,-55.364],[-105.746,-55.443],[-105.712,-55.582],[-105.821,-55.661],[-105.925,-55.739],[-106.033,-55.817],[-106.283,-55.834],[-106.392,-55.912],[-106.5,-55.99],[-106.75,-56.006],[-106.863,-56.083],[-106.971,-56.161],[-107.083,-56.238],[-107.196,-56.316],[-107.162,-56.455],[-107.275,-56.532],[-107.388,-56.61],[-107.5,-56.687],[-107.617,-56.764],[-107.871,-56.778],[-108.125,-56.791],[-108.267,-56.728],[-108.521,-56.741],[-108.663,-56.677],[-108.804,-56.613],[-108.942,-56.548],[-108.967,-56.408],[-109.104,-56.344],[-109.125,-56.203],[-109.263,-56.139],[-109.4,-56.074],[-109.537,-56.009],[-109.787,-56.019],[-110.037,-56.029],[-110.154,-56.104],[-110.271,-56.179],[-110.392,-56.254],[-110.508,-56.329],[-110.625,-56.403],[-110.608,-56.544],[-110.729,-56.618],[-110.712,-56.759],[-110.829,-56.833],[-110.95,-56.908],[-110.933,-57.048],[-111.054,-57.123],[-111.179,-57.197],[-111.3,-57.271],[-111.558,-57.278],[-111.821,-57.284],[-112.079,-57.291],[-112.342,-57.296],[-112.479,-57.229],[-112.613,-57.161],[-113.008,-57.097],[-112.871,-57.165],[-113.133,-57.169],[-113.258,-57.242],[-113.383,-57.314],[-113.512,-57.386],[-113.637,-57.458],[-113.767,-57.53],[-113.763,-57.671],[-113.754,-57.812],[-113.883,-57.883],[-114.013,-57.955],[-114.008,-58.096],[-114.137,-58.167],[-114,-58.237],[-113.996,-58.378],[-114.125,-58.449],[-114.258,-58.521],[-114.392,-58.592],[-114.525,-58.663],[-114.658,-58.734],[-114.792,-58.805],[-114.925,-58.876],[-115.062,-58.947],[-115.196,-59.017],[-115.058,-59.088],[-115.054,-59.229],[-114.779,-59.228],[-114.642,-59.298],[-114.637,-59.439],[-114.771,-59.51],[-114.767,-59.651],[-114.904,-59.721],[-115.046,-59.792],[-115.042,-59.933],[-115.179,-60.003],[-115.321,-60.074],[-115.462,-60.144],[-115.6,-60.214],[-115.742,-60.284],[-115.883,-60.354],[-116.029,-60.424],[-116.171,-60.494],[-116.171,-60.634],[-116.171,-60.775],[-116.317,-60.845],[-116.462,-60.914],[-116.608,-60.983],[-116.754,-61.052],[-116.904,-61.121],[-117.05,-61.19],[-117.342,-61.186],[-117.638,-61.182],[-117.783,-61.25],[-117.937,-61.318],[-118.229,-61.313],[-118.379,-61.38],[-118.675,-61.374],[-118.967,-61.367],[-119.108,-61.293],[-119.246,-61.219],[-119.387,-61.144],[-119.525,-61.07],[-119.508,-60.929],[-119.646,-60.855],[-119.783,-60.78],[-119.767,-60.639],[-119.9,-60.564],[-120.171,-60.414],[-120.038,-60.489],[-120.321,-60.48],[-120.738,-60.394],[-120.608,-60.469],[-120.892,-60.459],[-121.175,-60.447],[-121.462,-60.435],[-121.592,-60.359],[-121.875,-60.346],[-122.004,-60.269],[-122.287,-60.255],[-122.571,-60.241],[-122.854,-60.226],[-123.137,-60.211],[-123.262,-60.133],[-123.546,-60.117],[-123.825,-60.1],[-123.95,-60.021],[-124.196,-59.864],[-124.071,-59.942],[-124.35,-59.925],[-124.629,-59.906],[-124.667,-60.046],[-124.825,-60.107],[-124.988,-60.167],[-125.267,-60.147],[-125.308,-60.287],[-125.587,-60.267],[-125.75,-60.327],[-126.033,-60.306],[-126.196,-60.364],[-126.358,-60.423],[-126.642,-60.401],[-126.804,-60.459],[-127.087,-60.436],[-127.25,-60.494],[-127.417,-60.551],[-127.583,-60.608],[-127.75,-60.666],[-128.033,-60.64],[-128.2,-60.697],[-128.371,-60.753],[-128.538,-60.81],[-128.708,-60.866],[-128.879,-60.921],[-128.933,-61.06],[-129.104,-61.116],[-129.162,-61.254],[-129.221,-61.393],[-129.392,-61.448],[-129.567,-61.503],[-129.858,-61.474],[-130.146,-61.445],[-130.433,-61.414],[-130.721,-61.384],[-131.008,-61.352],[-131.121,-61.268],[-131.342,-61.098],[-131.229,-61.183],[-131.517,-61.151],[-131.8,-61.118],[-131.979,-61.17],[-132.154,-61.222],[-132.333,-61.273],[-132.617,-61.239],[-132.796,-61.29],[-132.975,-61.341],[-133.258,-61.305],[-133.546,-61.268],[-133.829,-61.231],[-134.112,-61.194],[-134.212,-61.107],[-134.496,-61.068],[-134.596,-60.981],[-134.875,-60.942],[-135.154,-60.902],[-135.25,-60.814],[-135.35,-60.726],[-135.446,-60.638],[-135.362,-60.503],[-135.458,-60.415],[-135.379,-60.279],[-135.296,-60.144],[-135.121,-60.096],[-134.946,-60.048],[-134.771,-60],[-134.596,-59.951],[-134.421,-59.903],[-134.246,-59.854],[-133.975,-59.892],[-133.804,-59.842],[-133.529,-59.879],[-133.258,-59.916],[-132.987,-59.952],[-132.883,-60.038],[-132.608,-60.073],[-132.508,-60.159],[-132.233,-60.193],[-132.129,-60.279],[-132.021,-60.364],[-131.917,-60.45],[-131.637,-60.483],[-131.358,-60.515],[-131.296,-60.378],[-131.4,-60.293],[-131.508,-60.208],[-131.612,-60.122],[-131.717,-60.037],[-131.821,-59.952],[-131.925,-59.867],[-131.858,-59.729],[-131.962,-59.644],[-131.896,-59.507],[-131.729,-59.454],[-131.662,-59.317],[-131.496,-59.264],[-131.329,-59.212],[-131.167,-59.159],[-131,-59.106],[-130.837,-59.053],[-130.671,-58.999],[-130.508,-58.946],[-130.346,-58.892],[-130.183,-58.838],[-130.021,-58.784],[-129.858,-58.729],[-129.696,-58.675],[-129.538,-58.62],[-129.375,-58.565],[-129.217,-58.51],[-129.058,-58.454],[-128.9,-58.399],[-128.742,-58.343],[-128.583,-58.287],[-128.425,-58.231],[-128.163,-58.257],[-128.004,-58.2],[-127.742,-58.225],[-127.587,-58.168],[-127.429,-58.111],[-127.167,-58.135],[-126.904,-58.159],[-126.75,-58.1],[-126.596,-58.042],[-126.554,-57.902],[-126.4,-57.844],[-126.358,-57.704],[-126.208,-57.646],[-126.167,-57.506],[-125.908,-57.527],[-125.867,-57.387],[-125.717,-57.328],[-125.571,-57.269],[-125.421,-57.209],[-125.275,-57.149],[-125.129,-57.089],[-124.979,-57.029],[-124.946,-56.889],[-124.8,-56.828],[-124.763,-56.688],[-124.621,-56.628],[-124.587,-56.488],[-124.442,-56.427],[-124.408,-56.286],[-124.267,-56.226],[-124.125,-56.164],[-123.983,-56.103],[-123.842,-56.041],[-123.7,-55.98],[-123.562,-55.918],[-123.421,-55.856],[-123.283,-55.794],[-123.033,-55.81],[-122.892,-55.747],[-122.754,-55.684],[-122.617,-55.622],[-122.479,-55.559],[-122.342,-55.496],[-122.204,-55.432],[-122.071,-55.369],[-121.933,-55.305],[-121.8,-55.241],[-121.662,-55.177],[-121.642,-55.037],[-121.508,-54.973],[-121.262,-54.985],[-121.129,-54.921],[-120.883,-54.932],[-120.754,-54.867],[-120.508,-54.878],[-120.375,-54.813],[-120.246,-54.747],[-120.113,-54.682],[-120.096,-54.541],[-120.079,-54.4],[-120.192,-54.324],[-120.175,-54.183],[-120.158,-54.042],[-120.271,-53.967],[-120.254,-53.826],[-120.238,-53.685],[-120.221,-53.544],[-120.092,-53.478],[-120.075,-53.337],[-119.95,-53.271],[-119.825,-53.206],[-119.7,-53.139],[-119.575,-53.073],[-119.558,-52.932],[-119.433,-52.866],[-119.312,-52.8],[-119.296,-52.658],[-119.175,-52.592],[-119.05,-52.525],[-118.929,-52.459],[-118.917,-52.317],[-118.796,-52.25],[-118.675,-52.183],[-118.663,-52.042],[-118.65,-51.901],[-118.642,-51.76],[-118.629,-51.618],[-118.617,-51.477],[-118.604,-51.336],[-118.596,-51.195],[-118.479,-51.127],[-118.467,-50.986],[-118.454,-50.845],[-118.337,-50.777],[-118.221,-50.71],[-118.212,-50.569],[-118.096,-50.501],[-117.979,-50.433],[-117.867,-50.366],[-117.75,-50.298],[-117.638,-50.23],[-117.521,-50.161],[-117.513,-50.02],[-117.296,-50.025],[-117.183,-49.956],[-117.067,-49.887],[-116.954,-49.819],[-116.738,-49.823],[-116.625,-49.753],[-116.621,-49.612],[-116.508,-49.543],[-116.504,-49.401],[-116.392,-49.332],[-116.175,-49.334],[-116.067,-49.265],[-115.958,-49.195],[-115.742,-49.197],[-115.525,-49.198],[-115.308,-49.199],[-115.304,-49.057],[-115.413,-48.986],[-115.413,-48.845],[-115.304,-48.775],[-115.304,-48.633],[-115.196,-48.563],[-115.087,-48.492],[-115.087,-48.351],[-114.983,-48.28],[-114.875,-48.21],[-114.875,-48.068],[-114.771,-47.997],[-114.667,-47.926],[-114.667,-47.785],[-114.562,-47.714],[-114.562,-47.573],[-114.771,-47.573],[-114.879,-47.502],[-114.983,-47.432],[-115.087,-47.361],[-115.192,-47.29],[-115.296,-47.219],[-115.4,-47.148],[-115.5,-47.077],[-115.604,-47.006],[-115.708,-46.935],[-115.704,-46.793],[-115.704,-46.652],[-115.6,-46.582]],[[-117.837,-59.628],[-117.55,-59.492],[-117.829,-59.487],[-117.683,-59.419],[-117.558,-59.632],[-117.7,-59.701],[-117.971,-59.555],[-117.837,-59.628]],[[-125.933,-59.027],[-126.1,-59.586],[-125.783,-59.467],[-125.742,-59.327],[-125.858,-59.247],[-126.004,-58.806],[-126.275,-58.785],[-126.429,-58.843],[-126.475,-58.983],[-126.358,-59.064],[-126.404,-59.204],[-126.288,-59.284],[-126.329,-59.424],[-126.217,-59.505],[-125.942,-59.526],[-126.046,-58.946],[-125.933,-59.027]],[[-132.763,-52.099],[-132.542,-52.134],[-132.404,-52.083],[-132.179,-52.117],[-131.954,-52.151],[-131.733,-52.184],[-131.646,-52.269],[-131.421,-52.302],[-131.337,-52.387],[-131.388,-52.524],[-131.529,-52.577],[-131.754,-52.544],[-131.892,-52.596],[-132.033,-52.648],[-131.946,-52.734],[-132.004,-52.871],[-132.146,-52.922],[-132.371,-52.889],[-132.6,-52.854],[-132.654,-52.991],[-132.883,-52.956],[-132.967,-52.87],[-133.192,-52.834],[-133.275,-52.748],[-133.358,-52.661],[-133.442,-52.575],[-133.383,-52.438],[-133.325,-52.302],[-133.183,-52.251],[-133.046,-52.201],[-132.904,-52.15],[-132.763,-52.099]],[[-131.971,-53.094],[-131.829,-53.041],[-131.687,-52.989],[-131.546,-52.937],[-131.408,-52.884],[-131.179,-52.917],[-131.037,-52.864],[-130.808,-52.895],[-130.583,-52.926],[-130.354,-52.956],[-130.125,-52.986],[-130.033,-53.07],[-129.804,-53.1],[-129.571,-53.129],[-129.479,-53.212],[-129.529,-53.351],[-129.437,-53.434],[-129.483,-53.573],[-129.529,-53.711],[-129.671,-53.766],[-129.721,-53.904],[-129.862,-53.959],[-130.004,-54.013],[-130.242,-53.984],[-130.475,-53.953],[-130.708,-53.922],[-130.8,-53.838],[-131.033,-53.807],[-131.212,-53.637],[-131.125,-53.722],[-131.358,-53.69],[-131.587,-53.657],[-131.908,-53.539],[-131.821,-53.624],[-132.05,-53.591],[-132.283,-53.557],[-132.371,-53.471],[-132.313,-53.334],[-132.171,-53.282],[-132.112,-53.145],[-131.971,-53.094]],[[-125.008,-61.306],[-124.717,-61.325],[-124.425,-61.343],[-124.133,-61.361],[-123.842,-61.379],[-123.712,-61.457],[-123.583,-61.536],[-123.45,-61.614],[-123.483,-61.754],[-123.35,-61.832],[-123.221,-61.91],[-123.087,-61.988],[-122.95,-62.066],[-122.817,-62.143],[-122.683,-62.221],[-122.712,-62.361],[-122.575,-62.439],[-122.437,-62.516],[-122.3,-62.593],[-122.325,-62.733],[-122.354,-62.874],[-122.521,-62.937],[-122.829,-62.922],[-123.137,-62.907],[-123.308,-62.969],[-123.754,-62.875],[-123.617,-62.953],[-123.925,-62.936],[-124.096,-62.998],[-124.537,-62.901],[-124.404,-62.98],[-124.712,-62.962],[-125.017,-62.943],[-125.325,-62.923],[-125.458,-62.843],[-125.717,-62.683],[-125.587,-62.763],[-125.892,-62.742],[-125.937,-62.882],[-125.983,-63.022],[-126.025,-63.161],[-126.071,-63.301],[-126.117,-63.44],[-126.296,-63.499],[-126.479,-63.558],[-126.658,-63.616],[-126.708,-63.756],[-126.887,-63.814],[-127.071,-63.872],[-127.254,-63.929],[-127.442,-63.987],[-127.754,-63.963],[-127.942,-64.019],[-128.258,-63.994],[-128.575,-63.968],[-129.017,-63.858],[-128.887,-63.941],[-129.204,-63.914],[-129.517,-63.886],[-129.833,-63.857],[-129.954,-63.773],[-130.079,-63.689],[-130.2,-63.606],[-130.325,-63.521],[-130.258,-63.383],[-130.192,-63.246],[-130.008,-63.191],[-129.821,-63.137],[-129.758,-62.999],[-129.579,-62.944],[-129.396,-62.889],[-129.212,-62.834],[-129.033,-62.778],[-128.85,-62.723],[-128.671,-62.667],[-128.492,-62.611],[-128.317,-62.554],[-128.013,-62.58],[-127.837,-62.523],[-127.658,-62.466],[-127.358,-62.49],[-127.183,-62.433],[-126.883,-62.456],[-126.583,-62.479],[-126.454,-62.56],[-126.325,-62.641],[-126.021,-62.662],[-125.85,-62.603],[-125.804,-62.463],[-125.933,-62.383],[-125.887,-62.244],[-125.846,-62.104],[-125.971,-62.024],[-125.929,-61.884],[-125.887,-61.744],[-125.717,-61.685],[-125.675,-61.545],[-125.508,-61.486],[-125.342,-61.426],[-125.175,-61.366],[-125.008,-61.306]],[[-130.233,-65.045],[-130.167,-64.907],[-129.971,-64.853],[-129.775,-64.798],[-129.45,-64.827],[-129.125,-64.854],[-128.8,-64.882],[-128.667,-64.964],[-128.533,-65.047],[-128.4,-65.129],[-128.262,-65.212],[-128.129,-65.294],[-127.992,-65.376],[-127.854,-65.457],[-127.908,-65.596],[-127.771,-65.678],[-127.829,-65.817],[-127.883,-65.956],[-128.083,-66.012],[-128.283,-66.069],[-128.483,-66.125],[-128.687,-66.181],[-129.029,-66.154],[-129.371,-66.127],[-129.708,-66.099],[-130.05,-66.07],[-129.979,-65.932],[-130.317,-65.902],[-130.45,-65.818],[-130.379,-65.68],[-130.513,-65.596],[-130.442,-65.459],[-130.371,-65.321],[-130.5,-65.237],[-130.433,-65.099],[-130.233,-65.045]],[[-151.079,-55.894],[-150.908,-55.869],[-150.737,-55.843],[-150.567,-55.817],[-150.396,-55.79],[-150.225,-55.764],[-150.008,-55.833],[-149.787,-55.902],[-149.617,-55.874],[-149.446,-55.847],[-149.275,-55.819],[-149.108,-55.79],[-148.937,-55.762],[-148.767,-55.733],[-148.6,-55.704],[-148.429,-55.675],[-148.263,-55.645],[-148.092,-55.616],[-147.925,-55.586],[-147.704,-55.651],[-147.533,-55.62],[-147.313,-55.684],[-147.258,-55.779],[-147.2,-55.874],[-147.317,-56],[-147.483,-56.031],[-147.429,-56.126],[-147.542,-56.252],[-147.712,-56.283],[-147.887,-56.313],[-147.829,-56.408],[-147.95,-56.534],[-148.067,-56.659],[-148.183,-56.784],[-148.304,-56.91],[-148.425,-57.035],[-148.546,-57.159],[-148.671,-57.284],[-148.792,-57.409],[-148.917,-57.533],[-149.096,-57.562],[-149.275,-57.59],[-149.454,-57.618],[-149.633,-57.646],[-149.812,-57.673],[-149.992,-57.701],[-150.171,-57.727],[-150.35,-57.754],[-150.529,-57.781],[-150.663,-57.903],[-150.846,-57.929],[-151.025,-57.955],[-150.979,-58.052],[-151.112,-58.174],[-151.063,-58.271],[-151.017,-58.367],[-150.967,-58.464],[-150.917,-58.561],[-150.867,-58.657],[-150.633,-58.728],[-150.446,-58.701],[-150.262,-58.675],[-150.025,-58.744],[-149.837,-58.717],[-149.654,-58.69],[-149.417,-58.758],[-149.229,-58.73],[-148.992,-58.797],[-148.804,-58.769],[-148.621,-58.74],[-148.379,-58.806],[-148.137,-58.872],[-147.896,-58.937],[-147.837,-59.033],[-147.779,-59.128],[-147.721,-59.223],[-147.658,-59.319],[-147.6,-59.414],[-147.542,-59.509],[-147.479,-59.604],[-147.608,-59.73],[-147.546,-59.825],[-147.483,-59.921],[-147.612,-60.046],[-147.554,-60.141],[-147.492,-60.237],[-147.621,-60.363],[-147.75,-60.488],[-147.883,-60.614],[-148.017,-60.739],[-148.15,-60.864],[-148.288,-60.99],[-148.483,-61.019],[-148.621,-61.144],[-148.821,-61.173],[-149.021,-61.202],[-149.217,-61.23],[-149.417,-61.258],[-149.617,-61.286],[-149.817,-61.313],[-150.129,-61.148],[-150.075,-61.244],[-150.329,-61.175],[-150.583,-61.105],[-150.638,-61.008],[-150.692,-60.912],[-150.946,-60.841],[-150.996,-60.744],[-151.05,-60.647],[-151.1,-60.551],[-151.154,-60.454],[-151.204,-60.357],[-151.45,-60.286],[-151.5,-60.189],[-151.55,-60.092],[-151.792,-60.019],[-151.842,-59.922],[-151.892,-59.826],[-152.129,-59.752],[-152.417,-59.582],[-152.371,-59.679],[-152.608,-59.605],[-152.846,-59.531],[-152.892,-59.434],[-153.129,-59.359],[-153.362,-59.284],[-153.596,-59.208],[-153.829,-59.132],[-154.058,-59.055],[-154.288,-58.978],[-154.517,-58.901],[-154.558,-58.803],[-154.783,-58.725],[-155.012,-58.647],[-155.05,-58.549],[-155.087,-58.451],[-155.125,-58.353],[-154.975,-58.235],[-155.012,-58.137],[-154.862,-58.019],[-154.679,-57.999],[-154.533,-57.881],[-154.571,-57.783],[-154.608,-57.685],[-154.467,-57.567],[-154.283,-57.547],[-154.104,-57.526],[-153.958,-57.407],[-153.821,-57.288],[-153.637,-57.267],[-153.5,-57.147],[-153.362,-57.028],[-153.183,-57.006],[-153.004,-56.983],[-152.867,-56.863],[-152.692,-56.84],[-152.558,-56.72],[-152.379,-56.696],[-152.246,-56.576],[-152.071,-56.552],[-151.942,-56.431],[-151.808,-56.309],[-151.854,-56.212],[-151.725,-56.091],[-151.554,-56.066],[-151.379,-56.041],[-151.254,-55.919],[-151.079,-55.894]],[[-143.108,-58.474],[-142.929,-58.436],[-142.754,-58.399],[-142.504,-58.454],[-142.325,-58.416],[-142.15,-58.378],[-141.9,-58.431],[-141.725,-58.392],[-141.55,-58.354],[-141.375,-58.314],[-141.2,-58.275],[-140.95,-58.326],[-140.7,-58.378],[-140.621,-58.469],[-140.367,-58.52],[-140.292,-58.611],[-140.212,-58.702],[-140.133,-58.794],[-140.054,-58.885],[-139.971,-58.976],[-139.892,-59.067],[-139.813,-59.158],[-139.729,-59.249],[-139.471,-59.297],[-139.388,-59.388],[-139.125,-59.436],[-139.042,-59.527],[-138.958,-59.617],[-138.871,-59.708],[-138.788,-59.798],[-138.7,-59.888],[-138.617,-59.979],[-138.529,-60.069],[-138.442,-60.159],[-138.354,-60.249],[-138.45,-60.382],[-138.358,-60.473],[-138.271,-60.562],[-138.367,-60.696],[-138.275,-60.786],[-138.187,-60.876],[-138.096,-60.966],[-138.004,-61.056],[-137.729,-61.101],[-137.45,-61.146],[-137.358,-61.235],[-137.079,-61.279],[-136.983,-61.368],[-137.075,-61.503],[-136.979,-61.592],[-137.071,-61.726],[-137.167,-61.861],[-137.354,-61.906],[-137.45,-62.04],[-137.637,-62.085],[-137.733,-62.219],[-137.929,-62.263],[-138.121,-62.307],[-138.221,-62.441],[-138.412,-62.484],[-138.608,-62.528],[-138.804,-62.571],[-139,-62.614],[-139.104,-62.747],[-139.3,-62.789],[-139.408,-62.922],[-139.512,-63.055],[-139.621,-63.187],[-139.729,-63.32],[-139.637,-63.411],[-139.542,-63.502],[-139.65,-63.634],[-139.763,-63.767],[-139.871,-63.899],[-140.079,-63.941],[-140.192,-64.073],[-140.4,-64.114],[-140.608,-64.155],[-140.817,-64.195],[-140.937,-64.327],[-141.146,-64.367],[-141.054,-64.458],[-140.75,-64.51],[-140.654,-64.601],[-140.558,-64.693],[-140.467,-64.784],[-140.367,-64.875],[-140.271,-64.966],[-140.392,-65.098],[-140.508,-65.23],[-140.629,-65.362],[-140.85,-65.402],[-140.971,-65.534],[-141.192,-65.574],[-141.412,-65.614],[-141.633,-65.653],[-141.95,-65.6],[-142.175,-65.638],[-142.396,-65.676],[-142.621,-65.714],[-142.937,-65.659],[-143.163,-65.696],[-143.387,-65.733],[-143.612,-65.769],[-143.837,-65.806],[-144.067,-65.841],[-144.292,-65.877],[-144.608,-65.818],[-144.921,-65.759],[-145.229,-65.7],[-145.312,-65.606],[-145.396,-65.511],[-145.704,-65.451],[-146.087,-65.295],[-146.008,-65.39],[-146.233,-65.422],[-146.463,-65.455],[-146.687,-65.487],[-146.917,-65.519],[-147.146,-65.55],[-147.375,-65.581],[-147.604,-65.612],[-147.833,-65.642],[-148.067,-65.672],[-148.296,-65.702],[-148.529,-65.731],[-148.758,-65.761],[-148.992,-65.789],[-149.225,-65.818],[-149.458,-65.846],[-149.696,-65.873],[-149.929,-65.901],[-150.163,-65.928],[-150.4,-65.954],[-150.638,-65.981],[-150.871,-66.007],[-151.108,-66.032],[-151.346,-66.057],[-151.583,-66.082],[-151.825,-66.107],[-152.063,-66.131],[-152.3,-66.155],[-152.542,-66.178],[-152.837,-66.104],[-153.079,-66.127],[-153.321,-66.149],[-153.612,-66.074],[-153.854,-66.095],[-154.096,-66.116],[-154.388,-66.039],[-154.675,-65.962],[-154.917,-65.981],[-155.204,-65.903],[-155.25,-65.805],[-155.3,-65.707],[-155.583,-65.627],[-155.629,-65.529],[-155.671,-65.431],[-155.996,-65.252],[-155.954,-65.351],[-156.229,-65.271],[-156.467,-65.288],[-156.7,-65.305],[-156.937,-65.322],[-157.133,-65.437],[-157.333,-65.552],[-157.571,-65.568],[-157.808,-65.584],[-158.013,-65.697],[-158.25,-65.712],[-158.454,-65.826],[-158.696,-65.84],[-158.904,-65.953],[-159.15,-65.966],[-159.358,-66.079],[-159.604,-66.091],[-159.817,-66.203],[-160.062,-66.215],[-160.279,-66.326],[-160.529,-66.337],[-160.775,-66.348],[-161.046,-66.259],[-161.296,-66.27],[-161.542,-66.279],[-161.813,-66.189],[-162.058,-66.198],[-162.304,-66.207],[-162.571,-66.116],[-162.817,-66.123],[-163.062,-66.131],[-163.308,-66.138],[-163.554,-66.144],[-163.8,-66.151],[-164.033,-66.257],[-164.279,-66.262],[-164.529,-66.267],[-164.775,-66.272],[-165.021,-66.277],[-165.271,-66.281],[-165.508,-66.384],[-165.75,-66.487],[-165.742,-66.587],[-165.733,-66.687],[-165.979,-66.79],[-165.975,-66.89],[-166.221,-66.993],[-166.217,-67.093],[-166.467,-67.195],[-166.721,-67.297],[-166.975,-67.398],[-167.233,-67.399],[-167.496,-67.3],[-167.75,-67.2],[-168.008,-67.2],[-168.267,-67.199],[-168.525,-67.198],[-168.779,-67.197],[-169.042,-67.295],[-169.3,-67.293],[-169.558,-67.29],[-169.825,-67.387],[-170.083,-67.384],[-170.342,-67.38],[-170.604,-67.376],[-170.862,-67.371],[-171.121,-67.366],[-171.379,-67.361],[-171.637,-67.355],[-171.896,-67.349],[-172.154,-67.342],[-172.412,-67.335],[-172.65,-67.228],[-172.904,-67.22],[-173.142,-67.112],[-173.375,-67.004],[-173.604,-66.896],[-173.583,-66.796],[-173.558,-66.696],[-173.538,-66.597],[-173.513,-66.497],[-173.242,-66.406],[-173.221,-66.307],[-172.954,-66.215],[-172.688,-66.123],[-172.442,-66.131],[-172.196,-66.138],[-171.933,-66.045],[-171.675,-65.951],[-171.429,-65.957],[-171.171,-65.863],[-171.158,-65.763],[-170.904,-65.668],[-170.65,-65.573],[-170.408,-65.577],[-170.158,-65.481],[-169.913,-65.385],[-169.671,-65.388],[-169.425,-65.291],[-169.421,-65.191],[-169.175,-65.093],[-169.171,-64.993],[-169.167,-64.893],[-168.925,-64.795],[-168.921,-64.695],[-168.683,-64.597],[-168.45,-64.498],[-168.217,-64.499],[-167.983,-64.4],[-167.75,-64.4],[-167.521,-64.4],[-167.287,-64.399],[-167.058,-64.398],[-166.825,-64.397],[-166.596,-64.395],[-166.362,-64.393],[-166.133,-64.391],[-165.9,-64.388],[-165.679,-64.285],[-165.45,-64.282],[-165.225,-64.178],[-164.996,-64.174],[-164.779,-64.07],[-164.562,-63.965],[-164.333,-63.96],[-164.121,-63.855],[-163.892,-63.849],[-163.683,-63.743],[-163.471,-63.637],[-163.263,-63.53],[-163.054,-63.423],[-162.85,-63.316],[-162.646,-63.209],[-162.442,-63.101],[-162.242,-62.993],[-162.042,-62.885],[-161.842,-62.776],[-161.646,-62.667],[-161.45,-62.558],[-161.254,-62.449],[-161.042,-62.439],[-160.825,-62.428],[-160.633,-62.318],[-160.421,-62.307],[-160.208,-62.295],[-159.992,-62.283],[-159.779,-62.271],[-159.567,-62.259],[-159.325,-62.345],[-159.112,-62.332],[-158.9,-62.318],[-158.687,-62.304],[-158.471,-62.29],[-158.229,-62.375],[-158.017,-62.36],[-157.804,-62.345],[-157.554,-62.428],[-157.308,-62.511],[-157.096,-62.494],[-156.846,-62.577],[-156.592,-62.658],[-156.342,-62.739],[-156.3,-62.838],[-156.046,-62.918],[-156.008,-63.017],[-155.967,-63.115],[-155.925,-63.213],[-155.667,-63.293],[-155.625,-63.391],[-155.583,-63.49],[-155.321,-63.569],[-155.1,-63.55],[-154.883,-63.53],[-154.662,-63.51],[-154.442,-63.49],[-154.271,-63.371],[-154.05,-63.351],[-153.833,-63.329],[-153.617,-63.308],[-153.4,-63.286],[-153.183,-63.264],[-152.967,-63.241],[-152.75,-63.219],[-152.533,-63.195],[-152.267,-63.269],[-151.996,-63.342],[-151.725,-63.415],[-151.454,-63.487],[-151.4,-63.584],[-151.342,-63.681],[-151.504,-63.802],[-151.446,-63.899],[-151.392,-63.996],[-151.333,-64.093],[-151.054,-64.164],[-150.833,-64.139],[-150.55,-64.209],[-150.329,-64.183],[-150.108,-64.156],[-149.887,-64.129],[-149.667,-64.102],[-149.45,-64.074],[-149.229,-64.046],[-148.946,-64.113],[-148.725,-64.085],[-148.508,-64.056],[-148.292,-64.026],[-148.071,-63.996],[-147.854,-63.966],[-147.708,-63.841],[-147.562,-63.715],[-147.417,-63.589],[-147.487,-63.494],[-147.342,-63.368],[-147.2,-63.242],[-147.058,-63.116],[-147.129,-63.021],[-146.987,-62.894],[-146.85,-62.768],[-146.921,-62.673],[-146.783,-62.546],[-146.85,-62.452],[-146.717,-62.325],[-146.579,-62.198],[-146.379,-62.166],[-146.175,-62.134],[-145.975,-62.101],[-145.771,-62.068],[-145.571,-62.034],[-145.371,-62.001],[-145.171,-61.967],[-144.971,-61.932],[-144.846,-61.804],[-144.721,-61.676],[-144.596,-61.547],[-144.667,-61.453],[-144.546,-61.325],[-144.617,-61.231],[-144.692,-61.137],[-144.762,-61.044],[-144.642,-60.915],[-144.712,-60.821],[-144.783,-60.727],[-144.662,-60.599],[-144.733,-60.505],[-144.612,-60.377],[-144.683,-60.283],[-144.567,-60.154],[-144.637,-60.061],[-144.517,-59.932],[-144.587,-59.838],[-144.471,-59.71],[-144.542,-59.616],[-144.425,-59.487],[-144.496,-59.394],[-144.379,-59.265],[-144.196,-59.229],[-144.083,-59.101],[-143.971,-58.971],[-143.792,-58.936],[-143.679,-58.806],[-143.571,-58.677],[-143.462,-58.547],[-143.283,-58.511],[-143.108,-58.474]],[[-144.575,-63.572],[-144.367,-63.537],[-144.158,-63.501],[-143.95,-63.466],[-143.658,-63.523],[-143.367,-63.579],[-143.283,-63.672],[-143.2,-63.766],[-143.117,-63.858],[-143.033,-63.951],[-143.163,-64.081],[-143.075,-64.174],[-143.287,-64.211],[-143.504,-64.247],[-143.717,-64.284],[-143.929,-64.32],[-144.146,-64.356],[-144.279,-64.484],[-144.496,-64.52],[-144.712,-64.555],[-144.85,-64.683],[-145.071,-64.717],[-145.15,-64.624],[-144.933,-64.589],[-144.796,-64.461],[-144.875,-64.367],[-144.737,-64.239],[-144.821,-64.145],[-144.683,-64.016],[-144.762,-63.923],[-144.842,-63.829],[-144.708,-63.7],[-144.575,-63.572]],[[-151.479,-61.838],[-151.325,-61.716],[-151.121,-61.691],[-150.917,-61.665],[-150.717,-61.639],[-150.458,-61.71],[-150.196,-61.779],[-149.937,-61.849],[-149.879,-61.945],[-149.821,-62.041],[-149.762,-62.137],[-149.704,-62.234],[-149.642,-62.33],[-149.792,-62.453],[-149.942,-62.577],[-150.15,-62.604],[-150.358,-62.631],[-150.513,-62.753],[-150.725,-62.78],[-150.933,-62.806],[-151.2,-62.734],[-151.412,-62.759],[-151.679,-62.687],[-151.733,-62.59],[-151.783,-62.493],[-151.837,-62.396],[-151.887,-62.299],[-151.942,-62.202],[-151.787,-62.081],[-151.633,-61.96],[-151.479,-61.838]],[[-158.758,-58.472],[-158.567,-58.458],[-158.379,-58.444],[-158.192,-58.429],[-158.004,-58.414],[-157.812,-58.399],[-157.596,-58.482],[-157.375,-58.565],[-157.187,-58.549],[-156.967,-58.631],[-156.937,-58.73],[-156.904,-58.828],[-156.871,-58.927],[-156.837,-59.026],[-156.804,-59.124],[-156.967,-59.239],[-157.125,-59.354],[-157.092,-59.453],[-157.254,-59.568],[-157.417,-59.683],[-157.612,-59.699],[-157.583,-59.797],[-157.75,-59.912],[-157.717,-60.011],[-157.883,-60.125],[-157.654,-60.208],[-157.425,-60.291],[-157.192,-60.374],[-156.958,-60.456],[-156.725,-60.538],[-156.692,-60.636],[-156.454,-60.717],[-156.421,-60.816],[-156.179,-60.897],[-156.146,-60.995],[-156.108,-61.094],[-156.071,-61.192],[-156.033,-61.29],[-155.996,-61.389],[-156.162,-61.505],[-156.333,-61.621],[-156.504,-61.737],[-156.712,-61.754],[-156.883,-61.87],[-157.092,-61.886],[-157.304,-61.902],[-157.513,-61.919],[-157.721,-61.934],[-157.967,-61.851],[-158.175,-61.866],[-158.417,-61.781],[-158.446,-61.682],[-158.475,-61.583],[-158.504,-61.484],[-158.533,-61.385],[-158.567,-61.286],[-158.596,-61.187],[-158.625,-61.088],[-158.654,-60.989],[-158.683,-60.89],[-158.708,-60.791],[-158.737,-60.692],[-158.767,-60.593],[-158.996,-60.508],[-159.225,-60.422],[-159.45,-60.336],[-159.65,-60.349],[-159.875,-60.262],[-160.1,-60.174],[-160.325,-60.087],[-160.546,-59.999],[-160.567,-59.899],[-160.587,-59.8],[-160.612,-59.701],[-160.437,-59.59],[-160.262,-59.479],[-160.092,-59.368],[-159.896,-59.356],[-159.725,-59.245],[-159.75,-59.146],[-159.775,-59.046],[-159.608,-58.934],[-159.633,-58.835],[-159.654,-58.736],[-159.487,-58.624],[-159.325,-58.512],[-159.133,-58.499],[-158.946,-58.486],[-158.758,-58.472]],[[171.642,-56.602],[171.817,-56.633],[171.987,-56.664],[172.163,-56.694],[172.333,-56.724],[172.563,-56.659],[172.733,-56.689],[172.908,-56.719],[173.083,-56.748],[173.258,-56.777],[173.429,-56.806],[173.554,-56.93],[173.675,-57.054],[173.8,-57.178],[173.925,-57.302],[173.875,-57.398],[173.821,-57.494],[174,-57.522],[174.179,-57.55],[174.308,-57.673],[174.254,-57.77],[174.383,-57.893],[174.333,-57.989],[174.463,-58.113],[174.413,-58.209],[174.358,-58.305],[174.308,-58.401],[174.492,-58.429],[174.625,-58.552],[174.808,-58.579],[174.992,-58.605],[175.179,-58.631],[175.363,-58.657],[175.55,-58.683],[175.733,-58.708],[175.871,-58.83],[176.058,-58.855],[176.246,-58.88],[176.433,-58.904],[176.621,-58.928],[176.808,-58.952],[177,-58.975],[177.188,-58.999],[177.375,-59.021],[177.567,-59.044],[177.754,-59.066],[177.987,-58.991],[178.029,-58.893],[178.258,-58.817],[178.487,-58.741],[178.529,-58.643],[178.758,-58.566],[178.946,-58.587],[179.133,-58.607],[179.358,-58.529],[179.546,-58.549],[179.696,-58.666],[179.883,-58.686],[-179.929,-58.704],[-179.775,-58.821],[-179.621,-58.938],[-179.462,-59.054],[-179.5,-59.153],[-179.533,-59.251],[-179.571,-59.349],[-179.608,-59.448],[-179.642,-59.546],[-179.483,-59.662],[-179.521,-59.761],[-179.358,-59.877],[-179.396,-59.976],[-179.2,-59.993],[-179.037,-60.109],[-178.842,-60.127],[-178.675,-60.242],[-178.512,-60.357],[-178.313,-60.374],[-178.146,-60.489],[-177.975,-60.603],[-177.804,-60.717],[-177.604,-60.733],[-177.433,-60.847],[-177.229,-60.862],[-177.2,-60.763],[-177.171,-60.664],[-177.142,-60.565],[-177.112,-60.466],[-177.083,-60.367],[-177.054,-60.268],[-176.825,-60.183],[-176.6,-60.098],[-176.571,-59.999],[-176.346,-59.913],[-176.121,-59.827],[-175.9,-59.741],[-175.704,-59.753],[-175.508,-59.765],[-175.308,-59.777],[-175.112,-59.789],[-174.917,-59.8],[-174.717,-59.811],[-174.521,-59.821],[-174.321,-59.832],[-174.125,-59.842],[-173.925,-59.851],[-173.712,-59.761],[-173.513,-59.77],[-173.496,-59.671],[-173.283,-59.58],[-173.067,-59.489],[-172.858,-59.397],[-172.646,-59.305],[-172.45,-59.312],[-172.242,-59.22],[-172.033,-59.127],[-171.829,-59.034],[-171.633,-59.04],[-171.442,-59.046],[-171.237,-58.951],[-171.042,-58.956],[-170.85,-58.961],[-170.65,-58.866],[-170.446,-58.771],[-170.246,-58.675],[-170.05,-58.579],[-169.85,-58.482],[-169.654,-58.385],[-169.458,-58.288],[-169.267,-58.191],[-169.071,-58.093],[-168.883,-58.095],[-168.692,-57.996],[-168.504,-57.897],[-168.312,-57.799],[-168.125,-57.799],[-167.937,-57.8],[-167.75,-57.8],[-167.567,-57.8],[-167.375,-57.899],[-167.187,-57.999],[-167.187,-58.099],[-166.996,-58.197],[-166.992,-58.297],[-166.992,-58.397],[-166.796,-58.496],[-166.796,-58.596],[-166.792,-58.696],[-166.787,-58.796],[-166.787,-58.896],[-166.783,-58.996],[-166.779,-59.096],[-166.779,-59.196],[-166.971,-59.297],[-166.967,-59.397],[-167.162,-59.499],[-166.962,-59.598],[-166.762,-59.696],[-166.563,-59.794],[-166.558,-59.894],[-166.358,-59.892],[-166.154,-59.99],[-166.15,-60.09],[-166.146,-60.19],[-166.138,-60.29],[-166.133,-60.39],[-166.129,-60.49],[-166.329,-60.592],[-166.529,-60.594],[-166.729,-60.696],[-166.933,-60.797],[-167.137,-60.798],[-167.342,-60.799],[-167.546,-60.8],[-167.75,-60.8],[-167.958,-60.8],[-168.162,-60.799],[-168.367,-60.798],[-168.571,-60.697],[-168.771,-60.596],[-168.975,-60.594],[-169.171,-60.492],[-169.371,-60.39],[-169.579,-60.487],[-169.788,-60.584],[-169.996,-60.681],[-170.208,-60.777],[-170.421,-60.873],[-170.637,-60.969],[-170.854,-61.064],[-171.058,-61.059],[-171.275,-61.153],[-171.496,-61.248],[-171.717,-61.341],[-171.937,-61.435],[-172.158,-61.528],[-172.383,-61.621],[-172.608,-61.713],[-172.625,-61.813],[-172.642,-61.913],[-172.871,-62.005],[-172.887,-62.104],[-173.117,-62.196],[-173.138,-62.296],[-173.154,-62.395],[-172.954,-62.503],[-172.975,-62.603],[-172.992,-62.702],[-173.008,-62.802],[-173.025,-62.902],[-173.046,-63.001],[-173.063,-63.101],[-173.3,-63.192],[-173.321,-63.292],[-173.563,-63.383],[-173.583,-63.482],[-173.825,-63.573],[-173.625,-63.682],[-173.646,-63.781],[-173.437,-63.89],[-173.458,-63.989],[-173.25,-64.097],[-173.271,-64.197],[-173.058,-64.305],[-173.079,-64.405],[-173.1,-64.504],[-172.887,-64.612],[-172.904,-64.712],[-172.925,-64.812],[-172.942,-64.911],[-172.962,-65.011],[-172.979,-65.111],[-173.237,-65.202],[-173.258,-65.302],[-173.279,-65.401],[-173.3,-65.501],[-173.558,-65.592],[-173.583,-65.691],[-173.846,-65.782],[-174.112,-65.872],[-174.379,-65.961],[-174.65,-66.05],[-174.921,-66.139],[-175.167,-66.127],[-175.412,-66.116],[-175.687,-66.203],[-175.933,-66.191],[-176.175,-66.178],[-176.454,-66.264],[-176.7,-66.25],[-176.946,-66.236],[-177.225,-66.321],[-177.471,-66.306],[-177.717,-66.291],[-178.004,-66.374],[-178.246,-66.358],[-178.492,-66.341],[-178.737,-66.325],[-178.983,-66.307],[-179.225,-66.29],[-179.471,-66.272],[-179.712,-66.254],[-179.958,-66.236],[179.846,-66.118],[179.654,-66.001],[179.462,-65.883],[179.508,-65.785],[179.558,-65.687],[179.604,-65.589],[179.65,-65.491],[179.933,-65.412],[179.979,-65.314],[-179.742,-65.234],[-179.467,-65.154],[-179.187,-65.074],[-178.917,-64.993],[-178.642,-64.911],[-178.371,-64.829],[-178.333,-64.73],[-178.296,-64.632],[-178.258,-64.533],[-178.221,-64.434],[-178.446,-64.418],[-178.675,-64.401],[-178.942,-64.483],[-179.212,-64.564],[-179.483,-64.644],[-179.712,-64.626],[-179.987,-64.706],[179.783,-64.687],[179.554,-64.668],[179.325,-64.648],[179.1,-64.628],[178.871,-64.607],[178.642,-64.587],[178.413,-64.566],[178.238,-64.447],[178.013,-64.425],[177.788,-64.403],[177.563,-64.381],[177.338,-64.358],[177.163,-64.238],[176.942,-64.214],[176.717,-64.191],[176.496,-64.167],[176.329,-64.046],[176.108,-64.021],[175.942,-63.899],[175.725,-63.874],[175.563,-63.752],[175.346,-63.727],[175.125,-63.701],[174.908,-63.674],[174.692,-63.648],[174.475,-63.621],[174.258,-63.594],[173.979,-63.662],[173.763,-63.634],[173.55,-63.606],[173.333,-63.577],[173.117,-63.548],[172.971,-63.423],[172.758,-63.394],[172.542,-63.364],[172.4,-63.239],[172.254,-63.113],[172.113,-62.987],[172.179,-62.892],[172.038,-62.766],[172.104,-62.671],[172.171,-62.576],[172.238,-62.481],[172.7,-62.129],[172.638,-62.225],[172.433,-62.195],[172.367,-62.29],[172.229,-62.164],[172.025,-62.134],[171.821,-62.103],[171.617,-62.072],[171.417,-62.041],[171.146,-62.104],[171.013,-61.977],[170.808,-61.944],[170.608,-61.912],[170.408,-61.879],[170.208,-61.846],[170.079,-61.718],[169.879,-61.684],[169.683,-61.651],[169.483,-61.616],[169.288,-61.582],[169.017,-61.641],[168.821,-61.606],[168.55,-61.664],[168.354,-61.628],[168.079,-61.685],[167.808,-61.741],[167.533,-61.797],[167.258,-61.853],[166.979,-61.908],[166.704,-61.962],[166.621,-62.054],[166.342,-62.108],[166.258,-62.2],[166.175,-62.292],[165.892,-62.345],[165.608,-62.397],[165.521,-62.489],[165.238,-62.541],[164.95,-62.591],[164.663,-62.642],[164.375,-62.691],[164.179,-62.65],[163.888,-62.699],[163.692,-62.656],[163.404,-62.704],[163.113,-62.751],[162.821,-62.798],[162.529,-62.844],[162.233,-62.889],[162.138,-62.979],[161.842,-63.024],[161.742,-63.113],[161.838,-63.247],[161.938,-63.381],[161.838,-63.471],[161.733,-63.56],[161.633,-63.649],[161.529,-63.738],[161.229,-63.781],[160.921,-63.824],[160.617,-63.866],[160.308,-63.908],[160.112,-63.861],[159.913,-63.814],[159.712,-63.766],[159.517,-63.718],[159.321,-63.67],[159.121,-63.622],[158.925,-63.573],[158.621,-63.611],[158.317,-63.649],[158.121,-63.599],[157.813,-63.635],[157.504,-63.671],[157.196,-63.706],[156.888,-63.741],[156.696,-63.689],[156.388,-63.723],[156.075,-63.756],[155.888,-63.704],[155.575,-63.736],[155.383,-63.682],[155.075,-63.713],[154.763,-63.743],[154.45,-63.773],[154.263,-63.719],[154.138,-63.802],[153.825,-63.83],[153.513,-63.858],[153.325,-63.802],[153.013,-63.829],[152.825,-63.773],[152.513,-63.799],[152.329,-63.742],[152.146,-63.684],[152.092,-63.546],[151.908,-63.488],[151.729,-63.431],[151.675,-63.291],[151.496,-63.234],[151.446,-63.094],[151.575,-63.013],[151.525,-62.874],[151.475,-62.735],[151.3,-62.677],[151.125,-62.618],[150.95,-62.56],[150.775,-62.501],[150.604,-62.442],[150.429,-62.383],[150.258,-62.324],[150.088,-62.264],[149.787,-62.284],[149.617,-62.224],[149.446,-62.164],[149.275,-62.104],[149.108,-62.043],[148.942,-61.982],[148.775,-61.921],[148.608,-61.86],[148.442,-61.799],[148.275,-61.738],[148.242,-61.597],[148.079,-61.536],[148.046,-61.395],[148.013,-61.255],[148.142,-61.177],[148.108,-61.037],[148.075,-60.896],[148.204,-60.818],[148.329,-60.739],[148.296,-60.599],[148.138,-60.537],[147.979,-60.476],[147.821,-60.414],[147.696,-60.492],[147.408,-60.507],[147.254,-60.444],[147.096,-60.382],[146.813,-60.396],[146.654,-60.332],[146.5,-60.269],[146.217,-60.282],[146.062,-60.218],[145.913,-60.154],[145.758,-60.09],[145.737,-59.949],[145.867,-59.872],[145.992,-59.796],[145.971,-59.656],[146.096,-59.579],[146.375,-59.566],[146.5,-59.489],[146.625,-59.412],[146.75,-59.335],[146.875,-59.257],[147,-59.18],[147.121,-59.103],[147.096,-58.962],[147.217,-58.884],[147.338,-58.807],[147.458,-58.729],[147.429,-58.588],[147.55,-58.511],[147.671,-58.432],[147.788,-58.354],[147.908,-58.276],[148.025,-58.197],[148.292,-58.181],[148.558,-58.163],[148.821,-58.146],[149.088,-58.127],[149.238,-58.188],[149.504,-58.169],[149.654,-58.229],[149.808,-58.289],[149.958,-58.349],[150.113,-58.408],[150.15,-58.548],[150.304,-58.607],[150.346,-58.747],[150.5,-58.806],[150.658,-58.866],[150.925,-58.843],[151.196,-58.821],[151.467,-58.798],[151.579,-58.716],[151.687,-58.635],[151.954,-58.611],[152.067,-58.529],[152.175,-58.447],[152.283,-58.364],[152.392,-58.282],[152.5,-58.2],[152.608,-58.118],[152.717,-58.035],[152.979,-58.009],[153.083,-57.926],[153.346,-57.899],[153.45,-57.816],[153.554,-57.733],[153.813,-57.705],[153.917,-57.622],[154.021,-57.538],[153.967,-57.4],[154.067,-57.316],[154.325,-57.287],[154.425,-57.203],[154.525,-57.119],[154.625,-57.036],[154.879,-57.005],[154.979,-56.921],[155.229,-56.89],[155.483,-56.859],[155.579,-56.774],[155.833,-56.742],[156.083,-56.71],[156.333,-56.677],[156.583,-56.643],[156.833,-56.609],[156.987,-56.66],[157.238,-56.626],[157.487,-56.59],[157.642,-56.641],[157.892,-56.604],[157.983,-56.518],[157.917,-56.381],[158.008,-56.295],[158.096,-56.208],[158.029,-56.072],[158.121,-55.985],[158.208,-55.898],[158.142,-55.762],[158.233,-55.675],[158.254,-55.452],[158.167,-55.538],[158.1,-55.402],[157.95,-55.352],[157.796,-55.302],[157.646,-55.252],[157.404,-55.287],[157.254,-55.236],[157.104,-55.186],[156.954,-55.134],[156.804,-55.083],[156.654,-55.031],[156.413,-55.065],[156.267,-55.013],[156.117,-54.961],[155.967,-54.908],[155.729,-54.941],[155.583,-54.887],[155.342,-54.919],[155.196,-54.866],[155.05,-54.812],[154.904,-54.758],[154.758,-54.704],[154.613,-54.65],[154.467,-54.596],[154.321,-54.541],[154.179,-54.487],[154.033,-54.432],[153.892,-54.377],[153.842,-54.238],[153.796,-54.1],[153.888,-54.016],[153.983,-53.933],[154.075,-53.849],[154.167,-53.766],[154.263,-53.682],[154.354,-53.598],[154.446,-53.514],[154.675,-53.485],[154.908,-53.455],[155.142,-53.424],[155.283,-53.478],[155.513,-53.446],[155.746,-53.414],[155.888,-53.467],[156.029,-53.52],[156.263,-53.487],[156.404,-53.539],[156.633,-53.505],[156.867,-53.471],[157.096,-53.437],[157.238,-53.488],[157.471,-53.452],[157.613,-53.503],[157.758,-53.553],[157.904,-53.604],[157.967,-53.74],[158.025,-53.877],[158.088,-54.013],[158.237,-54.063],[158.383,-54.113],[158.533,-54.162],[158.679,-54.211],[158.829,-54.26],[158.979,-54.309],[159.129,-54.357],[159.196,-54.493],[159.263,-54.629],[159.179,-54.717],[159.246,-54.852],[159.313,-54.988],[159.467,-55.036],[159.617,-55.084],[159.771,-55.132],[159.925,-55.18],[160.079,-55.227],[160.233,-55.274],[160.388,-55.321],[160.546,-55.368],[160.783,-55.326],[160.938,-55.372],[161.092,-55.418],[161.25,-55.464],[161.408,-55.51],[161.563,-55.555],[161.721,-55.601],[161.879,-55.646],[162.038,-55.69],[162.196,-55.735],[162.354,-55.779],[162.513,-55.823],[162.675,-55.867],[162.833,-55.911],[162.996,-55.954],[163.154,-55.998],[163.317,-56.041],[163.479,-56.084],[163.563,-56.217],[163.725,-56.259],[163.888,-56.301],[164.054,-56.344],[164.292,-56.294],[164.379,-56.427],[164.471,-56.559],[164.708,-56.509],[164.783,-56.418],[164.692,-56.286],[164.767,-56.195],[164.842,-56.104],[164.913,-56.012],[164.987,-55.921],[165.221,-55.87],[165.383,-55.911],[165.621,-55.859],[165.783,-55.899],[165.946,-55.938],[166.108,-55.977],[166.275,-56.016],[166.438,-56.055],[166.604,-56.094],[166.771,-56.132],[166.933,-56.17],[167.171,-56.115],[167.333,-56.152],[167.5,-56.19],[167.667,-56.227],[167.833,-56.264],[168,-56.3],[168.171,-56.337],[168.404,-56.279],[168.571,-56.315],[168.737,-56.351],[168.971,-56.292],[169.138,-56.327],[169.308,-56.362],[169.475,-56.397],[169.646,-56.431],[169.875,-56.371],[170.046,-56.404],[170.217,-56.438],[170.446,-56.377],[170.617,-56.41],[170.788,-56.442],[170.958,-56.474],[171.129,-56.507],[171.3,-56.539],[171.471,-56.57],[171.642,-56.602]],[[-176.879,-61.088],[-176.675,-61.102],[-176.5,-61.215],[-176.321,-61.327],[-176.35,-61.426],[-176.554,-61.413],[-176.763,-61.399],[-176.937,-61.286],[-176.908,-61.187],[-176.879,-61.088]],[[176.792,-56.891],[177.008,-56.817],[177.188,-56.84],[177.363,-56.863],[177.5,-56.983],[177.458,-57.081],[177.417,-57.178],[177.196,-57.252],[176.971,-57.326],[176.792,-57.303],[176.613,-57.279],[176.433,-57.255],[176.3,-57.134],[176.346,-57.037],[176.567,-56.964],[176.792,-56.891]],[[-176.342,-66.673],[-176.092,-66.686],[-175.842,-66.699],[-175.592,-66.711],[-175.371,-66.822],[-175.4,-66.922],[-175.433,-67.021],[-175.717,-67.108],[-176.004,-67.195],[-176.258,-67.182],[-176.512,-67.169],[-176.733,-67.056],[-176.696,-66.957],[-176.662,-66.858],[-176.625,-66.759],[-176.342,-66.673]],[[166.417,-63.316],[166.621,-63.354],[166.742,-63.485],[166.654,-63.577],[166.363,-63.631],[166.154,-63.592],[166.038,-63.461],[166.125,-63.369],[166.417,-63.316]],[[159.067,-53.192],[159.292,-53.154],[159.438,-53.202],[159.504,-53.338],[159.425,-53.425],[159.196,-53.464],[159.05,-53.416],[158.983,-53.28],[159.067,-53.192]],[[145.771,-53.423],[145.9,-53.488],[146.029,-53.552],[146.158,-53.616],[146.288,-53.679],[146.313,-53.82],[146.333,-53.961],[146.354,-54.102],[146.246,-54.179],[146.138,-54.256],[146.029,-54.332],[145.917,-54.409],[145.675,-54.421],[145.563,-54.498],[145.321,-54.509],[145.192,-54.444],[144.95,-54.455],[144.817,-54.39],[144.575,-54.4],[144.446,-54.334],[144.429,-54.193],[144.3,-54.127],[144.288,-53.986],[144.4,-53.911],[144.383,-53.77],[144.492,-53.694],[144.604,-53.619],[144.717,-53.544],[144.825,-53.468],[144.933,-53.392],[145.046,-53.316],[145.279,-53.306],[145.517,-53.294],[145.642,-53.359],[145.771,-53.423]],[[141.229,-52.722],[141.35,-52.791],[141.467,-52.86],[141.588,-52.929],[141.708,-52.997],[141.717,-53.139],[141.725,-53.28],[141.729,-53.421],[141.617,-53.494],[141.621,-53.635],[141.746,-53.704],[141.867,-53.772],[141.875,-53.914],[142,-53.982],[142.125,-54.05],[142.133,-54.191],[142.258,-54.259],[142.267,-54.401],[142.275,-54.542],[142.283,-54.683],[142.167,-54.757],[142.175,-54.898],[142.054,-54.971],[141.937,-55.044],[141.942,-55.185],[141.825,-55.258],[141.704,-55.331],[141.583,-55.403],[141.462,-55.476],[141.337,-55.548],[141.217,-55.621],[141.096,-55.693],[140.971,-55.765],[140.846,-55.837],[140.725,-55.909],[140.6,-55.98],[140.475,-56.052],[140.221,-56.053],[139.967,-56.054],[139.717,-56.055],[139.588,-55.984],[139.592,-55.843],[139.462,-55.772],[139.467,-55.631],[139.342,-55.56],[139.217,-55.489],[139.096,-55.419],[138.971,-55.348],[138.85,-55.276],[138.725,-55.205],[138.729,-55.064],[138.608,-54.992],[138.488,-54.921],[138.367,-54.849],[138.371,-54.708],[138.25,-54.636],[138.133,-54.564],[138.013,-54.492],[137.896,-54.42],[137.65,-54.417],[137.533,-54.344],[137.292,-54.34],[137.175,-54.267],[136.933,-54.263],[136.692,-54.258],[136.575,-54.184],[136.463,-54.111],[136.346,-54.038],[136.233,-53.964],[136.242,-53.823],[136.129,-53.749],[136.142,-53.608],[136.029,-53.535],[136.038,-53.394],[136.163,-53.326],[136.175,-53.185],[136.296,-53.118],[136.421,-53.05],[136.542,-52.982],[136.663,-52.914],[136.675,-52.773],[136.796,-52.705],[136.804,-52.564],[136.925,-52.496],[137.046,-52.428],[137.05,-52.286],[137.171,-52.218],[137.292,-52.149],[137.408,-52.081],[137.525,-52.012],[137.754,-52.016],[137.983,-52.019],[138.217,-52.021],[138.446,-52.023],[138.675,-52.025],[138.788,-52.096],[139.017,-52.098],[139.133,-52.169],[139.363,-52.169],[139.479,-52.24],[139.596,-52.311],[139.708,-52.381],[139.825,-52.451],[139.942,-52.522],[140.175,-52.521],[140.292,-52.591],[140.408,-52.661],[140.642,-52.658],[140.875,-52.656],[140.996,-52.725],[141.229,-52.722]],[[136.983,-42.878],[137.075,-42.951],[137.171,-43.024],[137.263,-43.097],[137.358,-43.169],[137.35,-43.311],[137.25,-43.379],[137.15,-43.447],[137.05,-43.516],[136.95,-43.584],[136.754,-43.579],[136.558,-43.574],[136.467,-43.501],[136.375,-43.427],[136.279,-43.354],[136.288,-43.213],[136.296,-43.071],[136.396,-43.004],[136.5,-42.936],[136.6,-42.868],[136.792,-42.873],[136.983,-42.878]],[[132.188,-45.638],[132.279,-45.715],[132.371,-45.792],[132.462,-45.868],[132.554,-45.945],[132.65,-46.022],[132.629,-46.162],[132.725,-46.239],[132.817,-46.316],[132.8,-46.457],[132.892,-46.533],[132.987,-46.609],[133.079,-46.686],[133.175,-46.762],[133.271,-46.838],[133.367,-46.914],[133.458,-46.99],[133.446,-47.131],[133.542,-47.207],[133.525,-47.348],[133.621,-47.424],[133.604,-47.565],[133.492,-47.63],[133.379,-47.695],[133.267,-47.76],[133.154,-47.824],[133.038,-47.889],[132.925,-47.954],[132.713,-47.942],[132.6,-48.006],[132.388,-47.993],[132.275,-48.057],[132.063,-48.044],[131.854,-48.031],[131.738,-48.094],[131.529,-48.08],[131.413,-48.143],[131.296,-48.206],[131.083,-48.191],[130.967,-48.254],[130.754,-48.238],[130.637,-48.3],[130.429,-48.284],[130.217,-48.268],[130.004,-48.251],[129.796,-48.234],[129.704,-48.155],[129.492,-48.138],[129.404,-48.059],[129.192,-48.041],[128.983,-48.022],[128.775,-48.003],[128.654,-48.064],[128.446,-48.044],[128.325,-48.104],[128.204,-48.164],[127.996,-48.144],[127.875,-48.204],[127.667,-48.183],[127.546,-48.242],[127.337,-48.221],[127.217,-48.28],[127.004,-48.258],[126.917,-48.177],[126.708,-48.155],[126.621,-48.074],[126.413,-48.052],[126.329,-47.971],[126.242,-47.89],[126.275,-47.751],[126.192,-47.669],[126.225,-47.53],[126.346,-47.473],[126.383,-47.333],[126.417,-47.194],[126.538,-47.136],[126.654,-47.077],[126.775,-47.019],[126.892,-46.96],[127.012,-46.902],[127.129,-46.843],[127.25,-46.784],[127.367,-46.725],[127.571,-46.746],[127.775,-46.766],[127.979,-46.787],[128.096,-46.727],[128.3,-46.747],[128.417,-46.687],[128.533,-46.627],[128.558,-46.487],[128.675,-46.426],[128.704,-46.286],[128.617,-46.207],[128.646,-46.067],[128.758,-46.006],[128.788,-45.866],[128.813,-45.726],[128.925,-45.666],[128.954,-45.525],[129.067,-45.464],[129.179,-45.404],[129.292,-45.342],[129.404,-45.281],[129.429,-45.141],[129.542,-45.08],[129.654,-45.018],[129.767,-44.957],[129.875,-44.895],[129.988,-44.834],[130.1,-44.772],[130.208,-44.71],[130.408,-44.726],[130.496,-44.804],[130.583,-44.882],[130.779,-44.898],[130.871,-44.976],[130.958,-45.054],[131.046,-45.132],[131.138,-45.209],[131.333,-45.224],[131.425,-45.302],[131.625,-45.316],[131.717,-45.393],[131.804,-45.471],[131.896,-45.547],[131.987,-45.625],[132.188,-45.638]],[[121.413,-42.853],[121.488,-42.937],[121.558,-43.02],[121.75,-43.05],[121.708,-43.188],[121.667,-43.326],[121.738,-43.409],[121.813,-43.493],[121.888,-43.577],[121.963,-43.66],[121.921,-43.798],[121.996,-43.882],[122.071,-43.965],[122.029,-44.103],[121.988,-44.241],[121.946,-44.379],[121.825,-44.432],[121.708,-44.487],[121.517,-44.457],[121.396,-44.51],[121.204,-44.48],[121.129,-44.396],[120.938,-44.365],[120.746,-44.334],[120.554,-44.302],[120.479,-44.218],[120.408,-44.134],[120.333,-44.05],[120.263,-43.965],[120.187,-43.881],[120.233,-43.744],[120.279,-43.607],[120.092,-43.575],[120.021,-43.49],[119.9,-43.542],[119.713,-43.51],[119.596,-43.562],[119.475,-43.614],[119.358,-43.666],[119.171,-43.633],[118.979,-43.599],[118.908,-43.514],[118.721,-43.48],[118.65,-43.395],[118.583,-43.31],[118.513,-43.225],[118.442,-43.14],[118.375,-43.054],[118.421,-42.918],[118.471,-42.782],[118.588,-42.731],[118.704,-42.679],[118.892,-42.713],[119.079,-42.747],[119.146,-42.832],[119.333,-42.865],[119.521,-42.897],[119.592,-42.982],[119.779,-43.015],[119.85,-43.099],[120.038,-43.132],[120.154,-43.079],[120.271,-43.026],[120.388,-42.974],[120.504,-42.921],[120.546,-42.784],[120.663,-42.731],[120.779,-42.677],[120.967,-42.708],[121.079,-42.654],[121.267,-42.685],[121.454,-42.715],[121.413,-42.853]],[[120.838,-39.94],[120.875,-39.802],[120.808,-39.718],[120.629,-39.687],[120.517,-39.741],[120.408,-39.794],[120.367,-39.932],[120.438,-40.016],[120.617,-40.047],[120.725,-39.993],[120.838,-39.94]],[[120.267,-33.251],[120.2,-33.166],[120.138,-33.082],[120.075,-32.997],[119.908,-32.966],[119.746,-32.935],[119.646,-32.988],[119.542,-33.041],[119.442,-33.094],[119.342,-33.147],[119.367,-33.369],[119.3,-33.284],[119.263,-33.422],[119.225,-33.56],[119.288,-33.645],[119.25,-33.782],[119.313,-33.867],[119.375,-33.952],[119.442,-34.037],[119.504,-34.122],[119.671,-34.153],[119.838,-34.185],[120.004,-34.216],[120.104,-34.163],[120.208,-34.109],[120.246,-33.972],[120.283,-33.834],[120.217,-33.749],[120.254,-33.611],[120.292,-33.473],[120.329,-33.335],[120.267,-33.251]],[[113.763,-29.807],[113.708,-29.72],[113.921,-29.845],[113.975,-29.932],[113.933,-30.068],[113.829,-30.117],[113.729,-30.166],[113.629,-30.214],[113.471,-30.176],[113.417,-30.089],[113.358,-30.002],[113.404,-29.866],[113.504,-29.817],[113.604,-29.769],[113.763,-29.807]],[[114.917,-27.74],[114.863,-27.654],[114.708,-27.617],[114.554,-27.58],[114.4,-27.542],[114.3,-27.592],[114.146,-27.554],[114.05,-27.604],[113.95,-27.653],[114.004,-27.74],[114.062,-27.827],[114.117,-27.914],[114.075,-28.05],[114.129,-28.137],[114.188,-28.224],[114.242,-28.311],[114.3,-28.397],[114.354,-28.484],[114.508,-28.522],[114.608,-28.472],[114.708,-28.422],[114.804,-28.373],[114.904,-28.323],[114.946,-28.186],[114.988,-28.05],[115.029,-27.914],[114.975,-27.827],[114.917,-27.74]],[[119.783,-18.081],[119.729,-17.997],[119.588,-17.964],[119.496,-18.017],[119.404,-18.069],[119.371,-18.206],[119.425,-18.291],[119.571,-18.323],[119.658,-18.271],[119.75,-18.218],[119.783,-18.081]],[[117.779,-20.165],[117.871,-20.114],[118.017,-20.147],[118.075,-20.233],[118.038,-20.37],[117.946,-20.421],[118,-20.507],[117.963,-20.644],[117.871,-20.696],[117.779,-20.747],[117.633,-20.713],[117.579,-20.627],[117.617,-20.491],[117.562,-20.405],[117.6,-20.268],[117.688,-20.216],[117.779,-20.165]],[[114.1,-14.127],[114.05,-14.041],[114,-13.954],[113.863,-13.916],[113.808,-13.829],[113.758,-13.742],[113.708,-13.655],[113.658,-13.568],[113.521,-13.53],[113.379,-13.491],[113.288,-13.54],[113.15,-13.502],[113.058,-13.551],[113.021,-13.686],[112.929,-13.735],[112.892,-13.871],[112.85,-14.007],[112.9,-14.094],[112.863,-14.23],[112.871,-14.453],[112.821,-14.366],[112.779,-14.502],[112.742,-14.638],[112.7,-14.774],[112.75,-14.861],[112.713,-14.997],[112.763,-15.084],[112.813,-15.172],[112.954,-15.21],[113.004,-15.297],[113.146,-15.336],[113.233,-15.287],[113.375,-15.325],[113.467,-15.276],[113.554,-15.227],[113.646,-15.178],[113.738,-15.129],[113.775,-14.993],[113.867,-14.944],[113.904,-14.808],[113.996,-14.759],[114.033,-14.622],[114.075,-14.486],[114.113,-14.35],[114.062,-14.263],[114.1,-14.127]],[[111.129,-19.714],[111.233,-19.889],[111.183,-19.801],[111.283,-19.977],[111.488,-20.327],[111.346,-20.288],[111.292,-20.2],[111.242,-20.112],[111.683,-20.454],[111.633,-20.367],[111.788,-20.629],[111.738,-20.542],[111.942,-20.892],[111.996,-20.979],[112.142,-21.019],[112.288,-21.057],[112.433,-21.096],[112.483,-21.184],[112.629,-21.222],[112.683,-21.31],[112.733,-21.397],[112.788,-21.484],[112.838,-21.572],[112.892,-21.659],[112.946,-21.746],[112.996,-21.833],[113.05,-21.921],[113.1,-22.008],[113.154,-22.095],[113.208,-22.182],[113.354,-22.22],[113.408,-22.307],[113.463,-22.394],[113.421,-22.531],[113.475,-22.618],[113.433,-22.754],[113.392,-22.89],[113.35,-23.026],[113.404,-23.114],[113.454,-23.201],[113.508,-23.288],[113.563,-23.375],[113.617,-23.462],[113.671,-23.549],[113.725,-23.636],[113.683,-23.772],[113.738,-23.859],[113.792,-23.946],[113.846,-24.033],[113.9,-24.12],[113.954,-24.207],[113.913,-24.343],[113.967,-24.43],[114.021,-24.517],[114.075,-24.604],[114.129,-24.691],[114.087,-24.827],[114.046,-24.964],[113.95,-25.013],[113.908,-25.149],[113.812,-25.199],[113.771,-25.335],[113.675,-25.384],[113.579,-25.433],[113.479,-25.482],[113.425,-25.395],[113.275,-25.357],[113.179,-25.406],[113.083,-25.454],[112.933,-25.416],[112.833,-25.465],[112.792,-25.601],[112.696,-25.649],[112.6,-25.698],[112.554,-25.833],[112.608,-25.921],[112.663,-26.008],[112.717,-26.096],[112.771,-26.183],[112.921,-26.221],[112.975,-26.309],[113.129,-26.347],[113.225,-26.298],[113.375,-26.337],[113.429,-26.424],[113.387,-26.56],[113.442,-26.647],[113.496,-26.734],[113.454,-26.87],[113.508,-26.957],[113.563,-27.044],[113.621,-27.131],[113.675,-27.218],[113.633,-27.354],[113.688,-27.441],[113.587,-27.49],[113.433,-27.452],[113.337,-27.501],[113.183,-27.462],[113.083,-27.511],[112.933,-27.472],[112.779,-27.434],[112.679,-27.482],[112.525,-27.443],[112.429,-27.491],[112.275,-27.452],[112.175,-27.5],[112.079,-27.548],[112.033,-27.684],[111.988,-27.819],[111.888,-27.867],[111.842,-28.002],[111.896,-28.09],[111.85,-28.225],[111.904,-28.312],[111.858,-28.448],[111.813,-28.583],[111.867,-28.671],[111.921,-28.758],[111.975,-28.846],[112.129,-28.885],[112.183,-28.973],[112.238,-29.06],[112.192,-29.196],[112.246,-29.283],[112.304,-29.37],[112.358,-29.458],[112.313,-29.593],[112.267,-29.728],[112.321,-29.816],[112.375,-29.903],[112.329,-30.038],[112.383,-30.126],[112.283,-30.174],[112.233,-30.309],[112.133,-30.357],[112.033,-30.404],[111.929,-30.452],[111.829,-30.499],[111.725,-30.547],[111.679,-30.681],[111.575,-30.729],[111.525,-30.864],[111.479,-30.998],[111.375,-31.045],[111.325,-31.18],[111.279,-31.314],[111.229,-31.449],[111.125,-31.496],[110.967,-31.455],[110.863,-31.501],[110.704,-31.46],[110.65,-31.372],[110.496,-31.331],[110.392,-31.377],[110.288,-31.423],[110.129,-31.382],[110.025,-31.428],[109.975,-31.561],[109.925,-31.695],[109.871,-31.829],[109.925,-31.917],[109.979,-32.005],[110.033,-32.093],[109.979,-32.227],[110.137,-32.269],[110.192,-32.357],[110.354,-32.399],[110.512,-32.441],[110.567,-32.529],[110.725,-32.57],[110.829,-32.524],[110.933,-32.477],[111.096,-32.519],[111.2,-32.472],[111.25,-32.338],[111.354,-32.291],[111.404,-32.156],[111.454,-32.022],[111.558,-31.975],[111.663,-31.928],[111.767,-31.881],[111.925,-31.921],[112.029,-31.874],[112.133,-31.826],[112.238,-31.779],[112.338,-31.731],[112.442,-31.684],[112.546,-31.636],[112.65,-31.588],[112.75,-31.54],[112.854,-31.492],[112.958,-31.444],[113.058,-31.396],[113.163,-31.348],[113.267,-31.299],[113.367,-31.251],[113.525,-31.29],[113.629,-31.241],[113.788,-31.279],[113.892,-31.231],[114.05,-31.269],[114.104,-31.356],[114.062,-31.492],[114.117,-31.578],[114.071,-31.714],[114.129,-31.801],[114.188,-31.888],[114.246,-31.975],[114.404,-32.013],[114.463,-32.099],[114.625,-32.137],[114.725,-32.088],[114.888,-32.125],[114.992,-32.075],[115.092,-32.026],[115.196,-31.976],[115.296,-31.926],[115.342,-31.79],[115.442,-31.74],[115.546,-31.69],[115.704,-31.727],[115.808,-31.676],[115.908,-31.626],[116.008,-31.576],[116.113,-31.526],[116.213,-31.475],[116.254,-31.338],[116.354,-31.288],[116.396,-31.151],[116.438,-31.014],[116.479,-30.877],[116.521,-30.741],[116.463,-30.654],[116.404,-30.568],[116.446,-30.432],[116.383,-30.346],[116.325,-30.259],[116.267,-30.173],[116.208,-30.087],[116.15,-30.001],[116.192,-29.864],[116.133,-29.778],[116.075,-29.692],[116.017,-29.606],[115.958,-29.519],[116,-29.382],[116.042,-29.246],[116.083,-29.109],[116.125,-28.972],[116.167,-28.836],[116.263,-28.785],[116.304,-28.648],[116.4,-28.597],[116.5,-28.546],[116.542,-28.409],[116.579,-28.272],[116.679,-28.221],[116.775,-28.17],[116.813,-28.033],[116.913,-27.982],[117.008,-27.931],[117.104,-27.88],[117.263,-27.914],[117.321,-28],[117.379,-28.086],[117.438,-28.171],[117.396,-28.308],[117.3,-28.36],[117.146,-28.326],[117.046,-28.377],[117.008,-28.514],[116.908,-28.565],[116.813,-28.616],[116.713,-28.667],[116.675,-28.804],[116.633,-28.941],[116.692,-29.027],[116.75,-29.113],[116.808,-29.199],[116.867,-29.285],[116.925,-29.371],[117.083,-29.406],[117.142,-29.491],[117.3,-29.526],[117.358,-29.612],[117.517,-29.646],[117.575,-29.731],[117.733,-29.765],[117.796,-29.851],[117.754,-29.988],[117.817,-30.074],[117.875,-30.159],[117.933,-30.245],[117.896,-30.382],[117.954,-30.467],[118.017,-30.553],[118.075,-30.638],[118.138,-30.724],[118.196,-30.809],[118.258,-30.894],[118.317,-30.98],[118.379,-31.065],[118.442,-31.15],[118.5,-31.236],[118.563,-31.321],[118.625,-31.406],[118.683,-31.491],[118.746,-31.576],[118.708,-31.714],[118.771,-31.799],[118.933,-31.832],[118.892,-31.969],[118.954,-32.054],[119.117,-32.087],[119.279,-32.119],[119.442,-32.151],[119.542,-32.098],[119.642,-32.045],[119.804,-32.076],[119.867,-32.161],[119.933,-32.246],[120.096,-32.277],[120.158,-32.361],[120.221,-32.446],[120.383,-32.476],[120.45,-32.561],[120.512,-32.645],[120.675,-32.676],[120.775,-32.622],[120.875,-32.568],[120.975,-32.514],[121.075,-32.459],[121.113,-32.321],[121.208,-32.267],[121.246,-32.129],[121.346,-32.074],[121.442,-32.02],[121.608,-32.049],[121.704,-31.994],[121.771,-32.078],[121.833,-32.162],[121.9,-32.245],[121.867,-32.384],[121.929,-32.467],[121.996,-32.551],[122.062,-32.634],[122.025,-32.773],[122.092,-32.856],[122.158,-32.94],[122.125,-33.079],[122.087,-33.217],[121.992,-33.272],[121.825,-33.243],[121.758,-33.16],[121.592,-33.131],[121.529,-33.047],[121.363,-33.017],[121.263,-33.072],[121.163,-33.126],[121.129,-33.264],[121.092,-33.402],[121.054,-33.541],[121.021,-33.679],[121.083,-33.763],[121.15,-33.847],[121.113,-33.985],[121.179,-34.069],[121.246,-34.153],[121.313,-34.237],[121.479,-34.267],[121.546,-34.351],[121.613,-34.434],[121.779,-34.463],[121.846,-34.547],[122.012,-34.576],[122.079,-34.659],[122.25,-34.687],[122.317,-34.771],[122.383,-34.854],[122.55,-34.882],[122.721,-34.91],[122.788,-34.993],[122.754,-35.132],[122.721,-35.271],[122.687,-35.409],[122.754,-35.492],[122.654,-35.548],[122.617,-35.687],[122.517,-35.742],[122.413,-35.797],[122.308,-35.852],[122.208,-35.908],[122.037,-35.879],[121.933,-35.934],[121.829,-35.989],[121.796,-36.127],[121.692,-36.182],[121.587,-36.236],[121.55,-36.375],[121.512,-36.513],[121.579,-36.597],[121.65,-36.681],[121.613,-36.819],[121.679,-36.902],[121.75,-36.986],[121.817,-37.07],[121.779,-37.208],[121.85,-37.292],[121.917,-37.376],[121.988,-37.459],[122.054,-37.543],[122.125,-37.626],[122.196,-37.71],[122.262,-37.793],[122.333,-37.877],[122.508,-37.905],[122.683,-37.932],[122.863,-37.96],[123.037,-37.988],[123.142,-37.932],[123.246,-37.876],[123.354,-37.82],[123.458,-37.764],[123.562,-37.708],[123.596,-37.569],[123.629,-37.43],[123.733,-37.374],[123.908,-37.4],[124.013,-37.344],[124.083,-37.426],[124.258,-37.452],[124.433,-37.477],[124.504,-37.559],[124.679,-37.584],[124.754,-37.666],[124.929,-37.691],[125.033,-37.634],[125.208,-37.658],[125.312,-37.6],[125.413,-37.543],[125.446,-37.403],[125.546,-37.346],[125.65,-37.287],[125.75,-37.229],[125.854,-37.171],[125.883,-37.032],[125.983,-36.974],[126.158,-36.997],[126.262,-36.938],[126.363,-36.879],[126.538,-36.902],[126.638,-36.843],[126.738,-36.784],[126.842,-36.725],[126.942,-36.666],[127.042,-36.607],[127.142,-36.548],[127.167,-36.408],[127.196,-36.268],[127.296,-36.209],[127.321,-36.069],[127.346,-35.929],[127.446,-35.87],[127.546,-35.811],[127.646,-35.751],[127.742,-35.691],[127.817,-35.771],[127.892,-35.851],[127.867,-35.991],[127.938,-36.071],[128.012,-36.151],[128.088,-36.231],[128.163,-36.311],[128.338,-36.331],[128.408,-36.41],[128.583,-36.43],[128.658,-36.509],[128.833,-36.528],[128.933,-36.467],[129.108,-36.486],[129.204,-36.425],[129.304,-36.364],[129.404,-36.302],[129.5,-36.241],[129.6,-36.18],[129.696,-36.119],[129.717,-35.979],[129.737,-35.838],[129.762,-35.698],[129.858,-35.637],[129.879,-35.496],[129.804,-35.418],[129.825,-35.278],[129.846,-35.137],[129.771,-35.059],[129.696,-34.98],[129.721,-34.84],[129.646,-34.761],[129.571,-34.682],[129.496,-34.603],[129.421,-34.524],[129.254,-34.506],[129.179,-34.427],[129.104,-34.348],[129.033,-34.269],[128.958,-34.189],[128.888,-34.11],[128.813,-34.031],[128.742,-33.951],[128.571,-33.932],[128.404,-33.913],[128.308,-33.973],[128.208,-34.033],[128.113,-34.093],[128.017,-34.153],[127.992,-34.293],[127.967,-34.432],[127.871,-34.492],[127.846,-34.632],[127.75,-34.692],[127.65,-34.752],[127.554,-34.811],[127.479,-34.731],[127.308,-34.71],[127.238,-34.629],[127.167,-34.549],[127.096,-34.468],[127.025,-34.388],[126.95,-34.307],[126.879,-34.226],[126.808,-34.146],[126.837,-34.006],[126.767,-33.925],[126.792,-33.786],[126.721,-33.705],[126.817,-33.646],[126.917,-33.587],[126.942,-33.448],[127.038,-33.389],[127.204,-33.41],[127.275,-33.491],[127.446,-33.512],[127.542,-33.452],[127.613,-33.532],[127.779,-33.553],[127.875,-33.494],[127.971,-33.434],[128.138,-33.454],[128.233,-33.394],[128.258,-33.254],[128.354,-33.194],[128.379,-33.054],[128.404,-32.915],[128.425,-32.775],[128.45,-32.635],[128.379,-32.555],[128.308,-32.476],[128.237,-32.396],[128.167,-32.316],[128,-32.296],[127.929,-32.216],[127.767,-32.196],[127.792,-32.056],[127.721,-31.976],[127.65,-31.896],[127.746,-31.836],[127.771,-31.696],[127.796,-31.557],[127.725,-31.477],[127.658,-31.397],[127.588,-31.316],[127.517,-31.236],[127.45,-31.156],[127.287,-31.134],[127.192,-31.194],[127.096,-31.252],[126.933,-31.231],[126.842,-31.289],[126.812,-31.429],[126.65,-31.407],[126.554,-31.465],[126.458,-31.524],[126.392,-31.442],[126.229,-31.42],[126.158,-31.339],[126.188,-31.199],[126.217,-31.06],[126.308,-31.002],[126.337,-30.862],[126.433,-30.804],[126.525,-30.746],[126.621,-30.687],[126.712,-30.629],[126.808,-30.57],[126.833,-30.431],[126.929,-30.372],[127.021,-30.314],[127.117,-30.255],[127.142,-30.116],[127.075,-30.035],[127.167,-29.976],[127.262,-29.917],[127.238,-30.057],[127.304,-30.137],[127.371,-30.217],[127.437,-30.298],[127.508,-30.378],[127.671,-30.399],[127.763,-30.34],[127.925,-30.361],[127.992,-30.441],[128.154,-30.461],[128.25,-30.401],[128.342,-30.342],[128.367,-30.202],[128.296,-30.122],[128.321,-29.983],[128.346,-29.844],[128.275,-29.764],[128.208,-29.684],[128.142,-29.604],[127.979,-29.584],[127.821,-29.563],[127.725,-29.622],[127.567,-29.601],[127.475,-29.66],[127.379,-29.719],[127.287,-29.778],[127.196,-29.837],[127.125,-29.756],[126.967,-29.734],[126.992,-29.595],[126.925,-29.514],[126.858,-29.434],[126.792,-29.353],[126.725,-29.272],[126.658,-29.191],[126.592,-29.111],[126.525,-29.03],[126.367,-29.007],[126.3,-28.926],[126.233,-28.845],[126.167,-28.764],[126.008,-28.74],[125.917,-28.798],[125.758,-28.774],[125.663,-28.832],[125.571,-28.889],[125.475,-28.947],[125.383,-29.004],[125.354,-29.143],[125.262,-29.201],[125.1,-29.176],[125.038,-29.094],[124.879,-29.069],[124.783,-29.126],[124.717,-29.044],[124.558,-29.019],[124.496,-28.937],[124.338,-28.911],[124.179,-28.886],[124.113,-28.803],[124.05,-28.721],[123.983,-28.638],[123.921,-28.556],[123.95,-28.417],[123.888,-28.334],[123.917,-28.196],[123.95,-28.057],[124.042,-28.001],[124.138,-27.944],[124.229,-27.888],[124.321,-27.832],[124.417,-27.775],[124.508,-27.719],[124.667,-27.744],[124.758,-27.687],[124.85,-27.631],[124.879,-27.492],[124.817,-27.41],[124.754,-27.328],[124.692,-27.246],[124.625,-27.164],[124.654,-27.025],[124.683,-26.886],[124.713,-26.748],[124.742,-26.609],[124.837,-26.553],[124.929,-26.496],[125.021,-26.439],[125.05,-26.3],[124.983,-26.218],[124.829,-26.193],[124.738,-26.25],[124.675,-26.168],[124.521,-26.142],[124.367,-26.116],[124.275,-26.172],[124.183,-26.229],[124.092,-26.285],[124,-26.341],[123.904,-26.397],[123.813,-26.453],[123.783,-26.592],[123.754,-26.73],[123.658,-26.786],[123.504,-26.759],[123.442,-26.676],[123.288,-26.649],[123.225,-26.566],[123.163,-26.483],[123.1,-26.401],[123.042,-26.317],[122.888,-26.29],[122.729,-26.262],[122.762,-26.124],[122.7,-26.04],[122.642,-25.957],[122.579,-25.874],[122.517,-25.791],[122.55,-25.652],[122.396,-25.624],[122.338,-25.541],[122.275,-25.457],[122.217,-25.374],[122.246,-25.236],[122.187,-25.152],[122.125,-25.069],[122.158,-24.931],[122.192,-24.792],[122.225,-24.654],[122.254,-24.516],[122.288,-24.378],[122.321,-24.24],[122.258,-24.157],[122.2,-24.073],[122.233,-23.935],[122.175,-23.852],[122.204,-23.714],[122.146,-23.63],[122.179,-23.492],[122.121,-23.409],[122.062,-23.325],[122,-23.242],[121.85,-23.212],[121.7,-23.183],[121.608,-23.237],[121.517,-23.291],[121.425,-23.345],[121.333,-23.399],[121.242,-23.453],[121.15,-23.507],[121.058,-23.561],[120.967,-23.615],[120.875,-23.668],[120.725,-23.638],[120.667,-23.554],[120.608,-23.469],[120.458,-23.439],[120.4,-23.354],[120.25,-23.323],[120.1,-23.292],[120.042,-23.207],[119.892,-23.176],[119.833,-23.091],[119.779,-23.007],[119.629,-22.975],[119.571,-22.89],[119.513,-22.805],[119.363,-22.773],[119.308,-22.688],[119.25,-22.603],[119.1,-22.571],[119.046,-22.486],[118.988,-22.401],[118.842,-22.368],[118.783,-22.283],[118.633,-22.25],[118.487,-22.217],[118.429,-22.132],[118.283,-22.099],[118.192,-22.151],[118.133,-22.065],[117.988,-22.031],[117.929,-21.946],[117.783,-21.912],[117.633,-21.878],[117.488,-21.844],[117.429,-21.758],[117.467,-21.621],[117.413,-21.536],[117.358,-21.45],[117.213,-21.416],[117.117,-21.467],[117.079,-21.604],[116.988,-21.655],[116.95,-21.792],[117.004,-21.878],[116.967,-22.015],[117.025,-22.101],[117.079,-22.187],[117.042,-22.324],[117.096,-22.409],[117.004,-22.461],[116.967,-22.598],[116.875,-22.649],[116.833,-22.786],[116.892,-22.872],[116.946,-22.958],[116.854,-23.009],[116.817,-23.146],[116.721,-23.197],[116.571,-23.162],[116.517,-23.076],[116.463,-22.99],[116.408,-22.904],[116.35,-22.818],[116.392,-22.681],[116.429,-22.544],[116.375,-22.458],[116.413,-22.321],[116.358,-22.235],[116.396,-22.098],[116.342,-22.012],[116.283,-21.926],[116.229,-21.839],[116.083,-21.804],[116.029,-21.718],[115.975,-21.631],[115.921,-21.545],[115.867,-21.459],[115.813,-21.373],[115.758,-21.286],[115.704,-21.2],[115.65,-21.114],[115.596,-21.027],[115.633,-20.891],[115.579,-20.804],[115.617,-20.667],[115.658,-20.531],[115.604,-20.444],[115.55,-20.358],[115.404,-20.322],[115.313,-20.372],[115.221,-20.422],[115.075,-20.386],[114.979,-20.436],[114.942,-20.572],[114.996,-20.659],[114.904,-20.709],[114.808,-20.759],[114.717,-20.809],[114.625,-20.858],[114.533,-20.908],[114.438,-20.958],[114.346,-21.007],[114.2,-20.97],[114.054,-20.933],[113.908,-20.895],[113.854,-20.808],[113.804,-20.721],[113.658,-20.684],[113.604,-20.597],[113.55,-20.51],[113.5,-20.422],[113.354,-20.385],[113.3,-20.298],[113.154,-20.259],[113.013,-20.221],[112.917,-20.27],[112.771,-20.232],[112.679,-20.28],[112.533,-20.242],[112.442,-20.29],[112.35,-20.339],[112.254,-20.387],[112.108,-20.349],[112.017,-20.397],[111.925,-20.445],[111.883,-20.581],[111.838,-20.717],[111.892,-20.804],[111.796,-20.853],[111.754,-20.989],[111.663,-21.037],[111.567,-21.085],[111.525,-21.221],[111.429,-21.269],[111.388,-21.404],[111.296,-21.452],[111.2,-21.501],[111.158,-21.636],[111.063,-21.684],[110.967,-21.732],[110.925,-21.867],[110.779,-21.827],[110.683,-21.875],[110.538,-21.835],[110.488,-21.747],[110.342,-21.706],[110.196,-21.666],[110.146,-21.578],[110.092,-21.49],[110.042,-21.402],[109.992,-21.314],[109.942,-21.226],[109.988,-21.091],[109.933,-21.003],[109.883,-20.915],[109.833,-20.827],[109.783,-20.739],[109.829,-20.604],[109.775,-20.516],[109.725,-20.428],[109.771,-20.292],[109.721,-20.204],[109.671,-20.116],[109.621,-20.028],[109.571,-19.94],[109.521,-19.852],[109.563,-19.717],[109.604,-19.582],[109.7,-19.534],[109.792,-19.487],[109.887,-19.44],[110.029,-19.48],[110.125,-19.433],[110.267,-19.473],[110.363,-19.426],[110.454,-19.378],[110.546,-19.33],[110.692,-19.371],[110.783,-19.323],[110.929,-19.362],[110.979,-19.45],[111.029,-19.538],[111.079,-19.626],[111.129,-19.714]],[[114.863,-27.654],[114.917,-27.74],[114.975,-27.827],[115.029,-27.914],[114.988,-28.05],[114.946,-28.186],[114.904,-28.323],[114.804,-28.373],[114.708,-28.422],[114.608,-28.472],[114.508,-28.522],[114.354,-28.484],[114.3,-28.397],[114.242,-28.311],[114.188,-28.224],[114.129,-28.137],[114.075,-28.05],[114.117,-27.914],[114.062,-27.827],[114.004,-27.74],[113.95,-27.653],[114.05,-27.604],[114.146,-27.554],[114.3,-27.592],[114.4,-27.542],[114.554,-27.58],[114.708,-27.617],[114.863,-27.654]],[[113.808,-29.671],[113.763,-29.807],[113.921,-29.845],[113.975,-29.932],[113.933,-30.068],[113.829,-30.117],[113.729,-30.166],[113.629,-30.214],[113.471,-30.176],[113.417,-30.089],[113.358,-30.002],[113.404,-29.866],[113.504,-29.817],[113.604,-29.769],[113.708,-29.72],[113.808,-29.671]],[[110.871,-25.979],[110.921,-26.066],[110.975,-26.154],[111.029,-26.242],[111.079,-26.329],[111.033,-26.465],[111.088,-26.553],[111.142,-26.64],[111.096,-26.775],[110.996,-26.823],[110.95,-26.958],[110.85,-27.005],[110.754,-27.052],[110.654,-27.099],[110.554,-27.146],[110.454,-27.193],[110.354,-27.24],[110.254,-27.287],[110.104,-27.246],[109.954,-27.205],[109.8,-27.163],[109.65,-27.122],[109.6,-27.034],[109.446,-26.992],[109.346,-27.038],[109.196,-26.996],[109.096,-27.042],[108.996,-27.089],[108.896,-27.134],[108.796,-27.181],[108.696,-27.226],[108.546,-27.184],[108.396,-27.141],[108.346,-27.053],[108.392,-26.919],[108.342,-26.831],[108.392,-26.697],[108.492,-26.651],[108.592,-26.605],[108.692,-26.559],[108.788,-26.513],[108.887,-26.467],[108.988,-26.421],[109.033,-26.287],[109.083,-26.152],[109.183,-26.106],[109.229,-25.972],[109.275,-25.837],[109.225,-25.749],[109.175,-25.661],[109.121,-25.573],[109.071,-25.485],[109.021,-25.397],[108.871,-25.355],[108.821,-25.267],[108.771,-25.178],[108.721,-25.09],[108.667,-25.002],[108.717,-24.867],[108.667,-24.779],[108.713,-24.645],[108.663,-24.557],[108.708,-24.422],[108.754,-24.288],[108.704,-24.199],[108.75,-24.065],[108.85,-24.019],[108.996,-24.06],[109.142,-24.102],[109.292,-24.144],[109.438,-24.185],[109.587,-24.226],[109.733,-24.267],[109.788,-24.356],[109.837,-24.444],[109.988,-24.484],[110.038,-24.572],[110.087,-24.661],[110.142,-24.748],[110.192,-24.836],[110.246,-24.924],[110.296,-25.012],[110.346,-25.1],[110.4,-25.188],[110.45,-25.276],[110.404,-25.411],[110.458,-25.499],[110.508,-25.587],[110.658,-25.627],[110.713,-25.715],[110.767,-25.803],[110.817,-25.891],[110.871,-25.979]],[[108.342,-22.913],[108.392,-23.002],[108.442,-23.09],[108.492,-23.178],[108.542,-23.266],[108.592,-23.355],[108.546,-23.489],[108.5,-23.624],[108.404,-23.67],[108.304,-23.716],[108.208,-23.762],[108.063,-23.72],[107.917,-23.678],[107.867,-23.589],[107.767,-23.635],[107.621,-23.592],[107.475,-23.55],[107.425,-23.461],[107.375,-23.373],[107.325,-23.285],[107.375,-23.151],[107.421,-23.016],[107.517,-22.971],[107.613,-22.925],[107.708,-22.879],[107.858,-22.921],[107.954,-22.875],[108.05,-22.829],[108.196,-22.871],[108.342,-22.913]],[[105.575,-23.431],[105.625,-23.52],[105.771,-23.564],[105.817,-23.652],[105.767,-23.786],[105.817,-23.874],[105.767,-24.007],[105.717,-24.141],[105.621,-24.185],[105.571,-24.318],[105.471,-24.363],[105.375,-24.407],[105.275,-24.452],[105.129,-24.407],[104.983,-24.363],[104.838,-24.318],[104.788,-24.23],[104.742,-24.141],[104.692,-24.052],[104.646,-23.964],[104.596,-23.875],[104.55,-23.786],[104.6,-23.653],[104.65,-23.521],[104.75,-23.476],[104.846,-23.432],[104.942,-23.387],[105.042,-23.343],[105.137,-23.299],[105.283,-23.343],[105.429,-23.387],[105.575,-23.431]],[[117.871,-20.114],[118.017,-20.147],[118.075,-20.233],[118.038,-20.37],[118,-20.507],[117.963,-20.644],[117.871,-20.696],[117.779,-20.747],[117.633,-20.713],[117.579,-20.627],[117.617,-20.491],[117.562,-20.405],[117.6,-20.268],[117.688,-20.216],[117.779,-20.165],[117.871,-20.114]],[[119.729,-17.997],[119.783,-18.081],[119.75,-18.218],[119.658,-18.271],[119.571,-18.323],[119.425,-18.291],[119.371,-18.206],[119.404,-18.069],[119.496,-18.017],[119.588,-17.964],[119.729,-17.997]],[[113.808,-13.829],[113.863,-13.916],[114,-13.954],[114.05,-14.041],[114.1,-14.127],[114.062,-14.263],[114.113,-14.35],[114.075,-14.486],[114.033,-14.622],[113.996,-14.759],[113.904,-14.808],[113.867,-14.944],[113.775,-14.993],[113.738,-15.129],[113.646,-15.178],[113.554,-15.227],[113.467,-15.276],[113.375,-15.325],[113.233,-15.287],[113.146,-15.336],[113.004,-15.297],[112.954,-15.21],[112.813,-15.172],[112.763,-15.084],[112.713,-14.997],[112.75,-14.861],[112.7,-14.774],[112.742,-14.638],[112.871,-14.453],[112.779,-14.502],[112.821,-14.366],[112.863,-14.23],[112.9,-14.094],[112.85,-14.007],[112.892,-13.871],[112.929,-13.735],[113.021,-13.686],[113.058,-13.551],[113.15,-13.502],[113.288,-13.54],[113.379,-13.491],[113.521,-13.53],[113.658,-13.568],[113.708,-13.655],[113.758,-13.742],[113.808,-13.829]],[[112.133,-13.366],[112.179,-13.454],[112.321,-13.493],[112.371,-13.58],[112.421,-13.667],[112.379,-13.803],[112.521,-13.842],[112.479,-13.978],[112.442,-14.114],[112.35,-14.162],[112.308,-14.298],[112.271,-14.434],[112.179,-14.483],[112.088,-14.531],[112.046,-14.667],[111.958,-14.715],[111.867,-14.764],[111.775,-14.812],[111.688,-14.86],[111.546,-14.821],[111.496,-14.733],[111.446,-14.646],[111.396,-14.558],[111.346,-14.47],[111.204,-14.431],[111.246,-14.295],[111.288,-14.159],[111.238,-14.071],[111.188,-13.984],[111.138,-13.896],[111,-13.856],[110.908,-13.904],[110.821,-13.952],[110.729,-14],[110.637,-14.047],[110.5,-14.007],[110.45,-13.92],[110.492,-13.784],[110.533,-13.649],[110.621,-13.601],[110.713,-13.553],[110.804,-13.505],[110.942,-13.545],[110.992,-13.633],[111.042,-13.721],[111.179,-13.76],[111.221,-13.624],[111.263,-13.489],[111.354,-13.441],[111.442,-13.393],[111.533,-13.345],[111.621,-13.297],[111.713,-13.248],[111.854,-13.288],[111.992,-13.327],[112.133,-13.366]],[[92.067,24.184],[92.025,24.048],[91.979,23.912],[92.033,23.825],[91.992,23.689],[91.896,23.64],[91.8,23.592],[91.704,23.543],[91.608,23.494],[91.517,23.446],[91.367,23.484],[91.312,23.571],[91.163,23.609],[91.113,23.696],[91.154,23.833],[91.1,23.919],[91.142,24.056],[91.183,24.192],[91.225,24.328],[91.321,24.377],[91.417,24.426],[91.513,24.474],[91.663,24.436],[91.812,24.397],[91.958,24.359],[92.013,24.271],[92.067,24.184]]]]}},{"type":"Feature","id":"ol3","properties":{},"geometry":{"type":"MultiPolygon","coordinates":[[[[-28.808,55.741],[-28.667,55.799],[-28.521,55.857],[-28.271,55.833],[-28.125,55.891],[-27.979,55.948],[-27.729,55.923],[-27.483,55.898],[-27.233,55.872],[-26.988,55.846],[-26.742,55.819],[-26.592,55.875],[-26.446,55.93],[-26.296,55.986],[-26.146,56.041],[-25.996,56.096],[-25.946,56.234],[-25.796,56.289],[-25.642,56.344],[-25.492,56.398],[-25.437,56.537],[-25.287,56.591],[-25.133,56.645],[-24.883,56.614],[-24.729,56.668],[-24.575,56.721],[-24.517,56.859],[-24.363,56.912],[-24.204,56.965],[-24.146,57.103],[-23.992,57.155],[-23.929,57.293],[-23.771,57.345],[-23.613,57.397],[-23.454,57.449],[-23.392,57.586],[-23.233,57.638],[-23.071,57.689],[-22.913,57.741],[-22.75,57.792],[-22.587,57.843],[-22.329,57.807],[-22.167,57.857],[-21.913,57.821],[-21.654,57.783],[-21.4,57.746],[-21.308,57.659],[-21.217,57.571],[-20.962,57.533],[-20.708,57.494],[-20.546,57.542],[-20.383,57.59],[-20.221,57.638],[-20.054,57.686],[-19.892,57.733],[-19.725,57.78],[-19.471,57.738],[-19.217,57.696],[-18.967,57.654],[-18.879,57.565],[-18.629,57.522],[-18.546,57.433],[-18.462,57.344],[-18.212,57.3],[-18.129,57.21],[-18.046,57.121],[-17.962,57.032],[-17.883,56.942],[-17.8,56.853],[-17.883,56.719],[-17.962,56.584],[-18.125,56.54],[-18.204,56.405],[-18.367,56.36],[-18.529,56.315],[-18.604,56.181],[-18.767,56.135],[-18.925,56.089],[-19.083,56.043],[-19.242,55.997],[-19.4,55.95],[-19.642,55.992],[-19.883,56.033],[-20.042,55.986],[-20.283,56.026],[-20.525,56.066],[-20.683,56.018],[-20.925,56.057],[-21.083,56.008],[-21.238,55.959],[-21.479,55.997],[-21.725,56.034],[-21.971,56.072],[-22.212,56.108],[-22.458,56.144],[-22.704,56.179],[-22.858,56.129],[-23.104,56.163],[-23.258,56.112],[-23.321,55.974],[-23.229,55.889],[-23.287,55.751],[-23.196,55.666],[-22.954,55.631],[-22.863,55.546],[-22.621,55.51],[-22.471,55.561],[-22.229,55.525],[-21.988,55.489],[-21.746,55.452],[-21.658,55.365],[-21.421,55.327],[-21.333,55.24],[-21.246,55.153],[-21.163,55.066],[-21.075,54.979],[-20.992,54.891],[-21.058,54.755],[-20.975,54.668],[-21.042,54.532],[-20.954,54.445],[-21.021,54.309],[-21.171,54.26],[-21.321,54.211],[-21.467,54.162],[-21.617,54.113],[-21.762,54.063],[-21.913,54.013],[-22.058,53.963],[-22.121,53.827],[-22.033,53.74],[-22.096,53.604],[-22.158,53.467],[-22.071,53.381],[-22.133,53.244],[-22.275,53.194],[-22.337,53.057],[-22.396,52.92],[-22.537,52.87],[-22.596,52.733],[-22.654,52.596],[-22.571,52.51],[-22.488,52.424],[-22.404,52.338],[-22.458,52.201],[-22.379,52.115],[-22.433,51.978],[-22.492,51.841],[-22.55,51.705],[-22.604,51.568],[-22.742,51.517],[-22.796,51.38],[-22.933,51.329],[-23.071,51.278],[-23.208,51.226],[-23.342,51.175],[-23.562,51.208],[-23.779,51.242],[-23.917,51.189],[-24.133,51.222],[-24.271,51.169],[-24.404,51.116],[-24.537,51.063],[-24.587,50.925],[-24.721,50.872],[-24.771,50.734],[-24.817,50.596],[-24.95,50.543],[-25.079,50.489],[-25.125,50.351],[-25.258,50.297],[-25.387,50.243],[-25.521,50.189],[-25.562,50.051],[-25.692,49.996],[-25.908,50.025],[-26.125,50.053],[-26.337,50.081],[-26.554,50.109],[-26.642,50.191],[-26.858,50.218],[-27.075,50.245],[-27.292,50.271],[-27.421,50.214],[-27.638,50.24],[-27.767,50.183],[-27.892,50.126],[-27.929,49.986],[-27.967,49.847],[-28.096,49.79],[-28.221,49.733],[-28.346,49.675],[-28.562,49.698],[-28.687,49.64],[-28.9,49.663],[-29.025,49.604],[-29.15,49.546],[-29.275,49.487],[-29.396,49.428],[-29.429,49.289],[-29.462,49.149],[-29.492,49.009],[-29.404,48.929],[-29.433,48.789],[-29.467,48.65],[-29.379,48.569],[-29.408,48.429],[-29.442,48.29],[-29.471,48.151],[-29.504,48.011],[-29.533,47.871],[-29.65,47.812],[-29.771,47.753],[-29.8,47.613],[-29.917,47.554],[-30.125,47.574],[-30.242,47.514],[-30.358,47.454],[-30.567,47.473],[-30.775,47.492],[-30.979,47.511],[-31.096,47.45],[-31.304,47.468],[-31.512,47.485],[-31.604,47.564],[-31.696,47.643],[-31.787,47.721],[-31.879,47.8],[-31.971,47.878],[-32.062,47.956],[-32.158,48.035],[-32.25,48.113],[-32.346,48.191],[-32.437,48.269],[-32.533,48.347],[-32.625,48.425],[-32.837,48.44],[-32.933,48.517],[-33.029,48.595],[-33.125,48.672],[-33.337,48.686],[-33.433,48.763],[-33.529,48.84],[-33.629,48.918],[-33.725,48.994],[-33.821,49.071],[-33.921,49.148],[-34.021,49.225],[-34.117,49.301],[-34.333,49.313],[-34.45,49.249],[-34.567,49.184],[-34.683,49.119],[-34.8,49.054],[-34.913,48.989],[-35.029,48.924],[-35.146,48.859],[-35.158,48.718],[-35.275,48.652],[-35.387,48.587],[-35.5,48.521],[-35.517,48.38],[-35.629,48.314],[-35.742,48.249],[-35.754,48.108],[-35.867,48.041],[-35.979,47.975],[-35.992,47.834],[-36.104,47.768],[-36.117,47.627],[-36.125,47.486],[-36.137,47.345],[-36.25,47.278],[-36.258,47.137],[-36.271,46.996],[-36.283,46.855],[-36.296,46.714],[-36.304,46.573],[-36.413,46.506],[-36.425,46.366],[-36.533,46.299],[-36.637,46.232],[-36.842,46.239],[-36.95,46.172],[-37.054,46.104],[-37.163,46.037],[-37.267,45.97],[-37.371,45.902],[-37.479,45.834],[-37.583,45.767],[-37.687,45.699],[-37.696,45.558],[-37.8,45.49],[-37.904,45.421],[-38.004,45.353],[-38.208,45.358],[-38.408,45.362],[-38.504,45.434],[-38.604,45.507],[-38.704,45.579],[-38.7,45.72],[-38.796,45.793],[-38.896,45.865],[-38.892,46.006],[-38.992,46.078],[-38.988,46.219],[-38.983,46.361],[-39.087,46.433],[-39.083,46.574],[-39.079,46.716],[-39.075,46.857],[-38.971,46.926],[-38.967,47.068],[-38.962,47.209],[-38.958,47.35],[-38.85,47.419],[-38.742,47.488],[-38.738,47.629],[-38.629,47.699],[-38.525,47.767],[-38.517,47.909],[-38.512,48.05],[-38.617,48.123],[-38.608,48.264],[-38.712,48.336],[-38.708,48.478],[-38.704,48.619],[-38.7,48.76],[-38.587,48.829],[-38.583,48.971],[-38.471,49.039],[-38.363,49.108],[-38.25,49.177],[-38.242,49.318],[-38.133,49.386],[-38.125,49.528],[-38.012,49.596],[-37.9,49.664],[-37.788,49.733],[-37.671,49.8],[-37.558,49.868],[-37.55,50.009],[-37.433,50.077],[-37.321,50.145],[-37.312,50.286],[-37.196,50.354],[-37.183,50.495],[-37.175,50.636],[-37.283,50.71],[-37.271,50.851],[-37.262,50.993],[-37.254,51.134],[-37.242,51.275],[-37.125,51.343],[-37.004,51.41],[-36.887,51.477],[-36.875,51.618],[-36.863,51.76],[-36.746,51.827],[-36.733,51.968],[-36.721,52.109],[-36.829,52.183],[-36.817,52.325],[-36.808,52.466],[-36.796,52.607],[-36.783,52.748],[-36.771,52.889],[-36.65,52.957],[-36.637,53.098],[-36.512,53.164],[-36.5,53.306],[-36.375,53.373],[-36.137,53.364],[-36.013,53.431],[-35.775,53.422],[-35.537,53.412],[-35.3,53.402],[-35.067,53.392],[-34.954,53.316],[-34.721,53.306],[-34.613,53.229],[-34.375,53.218],[-34.142,53.206],[-34.033,53.129],[-33.929,53.052],[-33.692,53.039],[-33.587,52.962],[-33.608,52.821],[-33.504,52.744],[-33.525,52.604],[-33.55,52.463],[-33.571,52.322],[-33.696,52.258],[-33.717,52.118],[-33.842,52.054],[-33.967,51.989],[-33.988,51.849],[-34.113,51.784],[-34.238,51.72],[-34.358,51.656],[-34.483,51.591],[-34.604,51.526],[-34.729,51.462],[-34.85,51.397],[-34.867,51.256],[-34.988,51.191],[-35.004,51.049],[-34.9,50.974],[-34.796,50.898],[-34.696,50.822],[-34.592,50.746],[-34.492,50.669],[-34.387,50.593],[-34.167,50.581],[-34.067,50.504],[-33.962,50.428],[-33.863,50.351],[-33.762,50.274],[-33.542,50.261],[-33.325,50.247],[-33.204,50.311],[-33.079,50.374],[-32.958,50.437],[-32.837,50.5],[-32.812,50.64],[-32.692,50.703],[-32.667,50.844],[-32.646,50.984],[-32.621,51.125],[-32.596,51.265],[-32.571,51.406],[-32.546,51.546],[-32.646,51.624],[-32.625,51.765],[-32.725,51.843],[-32.7,51.983],[-32.675,52.124],[-32.779,52.202],[-32.754,52.343],[-32.729,52.483],[-32.704,52.624],[-32.575,52.686],[-32.55,52.827],[-32.525,52.968],[-32.5,53.108],[-32.367,53.171],[-32.238,53.233],[-32.212,53.373],[-32.183,53.514],[-32.05,53.576],[-31.921,53.638],[-31.892,53.778],[-31.758,53.84],[-31.625,53.902],[-31.492,53.963],[-31.458,54.103],[-31.325,54.165],[-31.296,54.305],[-31.158,54.366],[-31.129,54.506],[-31.096,54.646],[-30.958,54.707],[-30.821,54.768],[-30.787,54.908],[-30.65,54.969],[-30.508,55.029],[-30.267,55.009],[-30.125,55.069],[-29.988,55.129],[-29.846,55.189],[-29.704,55.248],[-29.562,55.307],[-29.421,55.366],[-29.383,55.506],[-29.242,55.565],[-29.096,55.624],[-28.954,55.682],[-28.808,55.741]],[[-35.633,46.05],[-35.429,46.04],[-35.225,46.031],[-35.117,46.096],[-34.917,46.085],[-34.821,46.01],[-34.617,45.999],[-34.525,45.923],[-34.542,45.782],[-34.554,45.641],[-34.663,45.577],[-34.771,45.512],[-34.879,45.447],[-34.988,45.381],[-35.092,45.316],[-35.292,45.326],[-35.387,45.402],[-35.587,45.411],[-35.683,45.486],[-35.775,45.561],[-35.762,45.702],[-35.858,45.777],[-35.846,45.918],[-35.742,45.984],[-35.633,46.05]],[[-49.196,47.318],[-49.104,47.396],[-49.013,47.473],[-48.917,47.551],[-48.825,47.629],[-48.617,47.644],[-48.525,47.721],[-48.429,47.799],[-48.221,47.813],[-48.012,47.826],[-47.917,47.903],[-47.704,47.916],[-47.496,47.929],[-47.383,47.865],[-47.171,47.877],[-46.962,47.889],[-46.846,47.824],[-46.733,47.76],[-46.525,47.771],[-46.413,47.706],[-46.3,47.64],[-46.187,47.575],[-46.171,47.434],[-46.058,47.369],[-46.046,47.228],[-46.029,47.086],[-46.017,46.946],[-46,46.804],[-46.096,46.729],[-46.083,46.588],[-45.971,46.522],[-45.863,46.457],[-45.658,46.466],[-45.562,46.541],[-45.358,46.55],[-45.263,46.625],[-45.054,46.634],[-44.958,46.708],[-44.863,46.783],[-44.871,46.924],[-44.775,46.999],[-44.675,47.073],[-44.579,47.148],[-44.587,47.289],[-44.492,47.363],[-44.392,47.437],[-44.4,47.578],[-44.304,47.652],[-44.204,47.726],[-44.104,47.8],[-44,47.874],[-43.9,47.948],[-43.692,47.954],[-43.587,48.027],[-43.379,48.033],[-43.167,48.038],[-42.954,48.043],[-42.846,47.974],[-42.738,47.906],[-42.733,47.764],[-42.725,47.623],[-42.617,47.554],[-42.613,47.413],[-42.504,47.344],[-42.4,47.275],[-42.292,47.206],[-42.083,47.209],[-41.979,47.14],[-41.871,47.07],[-41.767,47.001],[-41.663,46.931],[-41.554,46.862],[-41.554,46.72],[-41.45,46.65],[-41.446,46.509],[-41.442,46.368],[-41.546,46.296],[-41.442,46.226],[-41.437,46.085],[-41.437,45.944],[-41.433,45.802],[-41.329,45.732],[-41.329,45.591],[-41.325,45.449],[-41.325,45.308],[-41.321,45.167],[-41.321,45.026],[-41.417,44.954],[-41.417,44.813],[-41.413,44.671],[-41.508,44.6],[-41.508,44.459],[-41.504,44.317],[-41.6,44.246],[-41.7,44.174],[-41.896,44.171],[-42.092,44.169],[-42.192,44.238],[-42.296,44.307],[-42.3,44.448],[-42.4,44.517],[-42.504,44.586],[-42.604,44.655],[-42.708,44.723],[-42.808,44.792],[-42.913,44.86],[-43.017,44.929],[-43.117,44.997],[-43.221,45.065],[-43.325,45.133],[-43.429,45.201],[-43.629,45.196],[-43.829,45.19],[-44.029,45.184],[-44.125,45.11],[-44.221,45.036],[-44.212,44.895],[-44.308,44.821],[-44.296,44.679],[-44.392,44.605],[-44.483,44.531],[-44.579,44.457],[-44.671,44.383],[-44.767,44.308],[-44.858,44.234],[-45.054,44.225],[-45.15,44.151],[-45.346,44.142],[-45.542,44.133],[-45.646,44.199],[-45.842,44.189],[-45.95,44.255],[-46.054,44.321],[-46.25,44.311],[-46.358,44.376],[-46.462,44.441],[-46.479,44.582],[-46.583,44.647],[-46.692,44.712],[-46.8,44.777],[-46.817,44.918],[-46.921,44.983],[-46.937,45.124],[-47.046,45.188],[-47.062,45.329],[-47.171,45.394],[-47.192,45.535],[-47.3,45.599],[-47.5,45.587],[-47.7,45.574],[-47.904,45.561],[-48.104,45.548],[-48.212,45.611],[-48.417,45.597],[-48.617,45.583],[-48.729,45.646],[-48.929,45.631],[-49.042,45.694],[-49.242,45.679],[-49.442,45.663],[-49.642,45.647],[-49.733,45.569],[-49.821,45.49],[-49.908,45.412],[-49.996,45.333],[-50.196,45.316],[-50.396,45.299],[-50.508,45.36],[-50.621,45.422],[-50.733,45.483],[-50.758,45.623],[-50.671,45.702],[-50.583,45.781],[-50.496,45.86],[-50.296,45.878],[-50.208,45.956],[-50.117,46.035],[-50.029,46.114],[-49.825,46.13],[-49.738,46.209],[-49.646,46.287],[-49.558,46.365],[-49.467,46.443],[-49.379,46.522],[-49.4,46.662],[-49.308,46.74],[-49.217,46.818],[-49.242,46.959],[-49.262,47.099],[-49.287,47.239],[-49.196,47.318]],[[-56,38.924],[-55.925,39.007],[-55.746,39.033],[-55.642,38.976],[-55.608,38.837],[-55.679,38.754],[-55.858,38.729],[-55.967,38.786],[-56,38.924]],[[-66.562,32.809],[-66.504,32.896],[-66.446,32.983],[-66.387,33.07],[-66.329,33.158],[-66.379,33.293],[-66.321,33.38],[-66.367,33.515],[-66.417,33.651],[-66.358,33.738],[-66.404,33.873],[-66.346,33.96],[-66.396,34.095],[-66.337,34.182],[-66.279,34.269],[-66.221,34.356],[-66.163,34.443],[-66.104,34.53],[-66.046,34.617],[-65.988,34.704],[-65.929,34.791],[-65.871,34.878],[-65.812,34.965],[-65.858,35.1],[-65.908,35.236],[-66.017,35.284],[-66.062,35.419],[-66.113,35.554],[-66.163,35.689],[-66.104,35.776],[-66.042,35.863],[-65.875,35.902],[-65.767,35.854],[-65.6,35.892],[-65.492,35.843],[-65.387,35.794],[-65.217,35.833],[-65.113,35.783],[-65.004,35.734],[-64.896,35.685],[-64.729,35.723],[-64.562,35.76],[-64.392,35.796],[-64.333,35.883],[-64.163,35.919],[-64.104,36.006],[-63.933,36.042],[-63.871,36.128],[-63.812,36.214],[-63.642,36.251],[-63.579,36.337],[-63.517,36.423],[-63.454,36.509],[-63.392,36.595],[-63.437,36.731],[-63.375,36.817],[-63.421,36.953],[-63.529,37.004],[-63.575,37.14],[-63.683,37.19],[-63.792,37.24],[-63.904,37.29],[-64.013,37.339],[-64.121,37.389],[-64.229,37.439],[-64.279,37.574],[-64.217,37.661],[-64.154,37.747],[-64.092,37.833],[-64.029,37.919],[-63.967,38.006],[-63.904,38.092],[-63.842,38.178],[-63.887,38.314],[-63.825,38.4],[-63.762,38.486],[-63.7,38.573],[-63.637,38.659],[-63.575,38.745],[-63.508,38.831],[-63.446,38.917],[-63.271,38.953],[-63.208,39.039],[-63.142,39.125],[-62.967,39.16],[-62.792,39.196],[-62.725,39.281],[-62.55,39.316],[-62.483,39.402],[-62.308,39.437],[-62.242,39.523],[-62.175,39.608],[-62.113,39.694],[-61.933,39.728],[-61.867,39.813],[-61.8,39.899],[-61.733,39.984],[-61.667,40.069],[-61.488,40.103],[-61.421,40.189],[-61.242,40.222],[-61.175,40.307],[-60.996,40.34],[-60.925,40.425],[-60.858,40.51],[-60.679,40.543],[-60.496,40.576],[-60.429,40.661],[-60.246,40.693],[-60.067,40.725],[-59.954,40.672],[-59.775,40.704],[-59.592,40.735],[-59.521,40.819],[-59.45,40.903],[-59.383,40.988],[-59.2,41.019],[-59.129,41.103],[-59.058,41.187],[-58.988,41.271],[-58.917,41.355],[-58.846,41.439],[-58.658,41.469],[-58.475,41.499],[-58.292,41.529],[-58.108,41.558],[-57.996,41.503],[-57.883,41.449],[-57.771,41.394],[-57.658,41.339],[-57.55,41.284],[-57.437,41.229],[-57.4,41.091],[-57.363,40.953],[-57.325,40.814],[-57.396,40.731],[-57.471,40.648],[-57.542,40.564],[-57.504,40.426],[-57.575,40.343],[-57.65,40.259],[-57.613,40.121],[-57.683,40.038],[-57.646,39.899],[-57.608,39.761],[-57.571,39.623],[-57.642,39.539],[-57.604,39.401],[-57.675,39.318],[-57.638,39.179],[-57.533,39.124],[-57.496,38.986],[-57.387,38.93],[-57.279,38.875],[-57.175,38.82],[-57.067,38.764],[-56.962,38.709],[-56.854,38.653],[-56.821,38.514],[-56.996,38.487],[-57.067,38.404],[-57.137,38.321],[-57.208,38.238],[-57.279,38.154],[-57.35,38.071],[-57.421,37.988],[-57.317,37.933],[-57.208,37.877],[-57.104,37.822],[-57,37.766],[-56.825,37.793],[-56.646,37.82],[-56.471,37.847],[-56.437,37.708],[-56.333,37.652],[-56.3,37.513],[-56.371,37.43],[-56.442,37.348],[-56.408,37.209],[-56.479,37.126],[-56.55,37.043],[-56.621,36.961],[-56.692,36.878],[-56.758,36.795],[-56.829,36.712],[-56.796,36.573],[-56.867,36.49],[-56.933,36.407],[-56.9,36.268],[-56.971,36.185],[-56.937,36.047],[-57.004,35.964],[-56.971,35.825],[-57.042,35.742],[-57.008,35.603],[-57.075,35.52],[-57.142,35.437],[-57.212,35.354],[-57.383,35.326],[-57.55,35.298],[-57.721,35.27],[-57.892,35.242],[-58.058,35.213],[-58.229,35.184],[-58.296,35.101],[-58.467,35.071],[-58.533,34.988],[-58.6,34.904],[-58.767,34.874],[-58.871,34.928],[-58.971,34.983],[-59.008,35.121],[-59.113,35.175],[-59.15,35.313],[-59.187,35.451],[-59.287,35.505],[-59.325,35.643],[-59.429,35.697],[-59.467,35.835],[-59.571,35.888],[-59.675,35.942],[-59.846,35.911],[-60.017,35.879],[-60.187,35.848],[-60.358,35.816],[-60.525,35.784],[-60.696,35.752],[-60.867,35.72],[-61.033,35.688],[-61.204,35.655],[-61.375,35.622],[-61.542,35.589],[-61.712,35.555],[-61.775,35.47],[-61.942,35.436],[-62.113,35.402],[-62.175,35.317],[-62.238,35.231],[-62.3,35.146],[-62.363,35.06],[-62.425,34.974],[-62.488,34.889],[-62.55,34.803],[-62.508,34.666],[-62.571,34.581],[-62.633,34.495],[-62.692,34.409],[-62.754,34.323],[-62.817,34.238],[-62.879,34.152],[-62.837,34.015],[-62.896,33.929],[-62.958,33.843],[-62.917,33.707],[-62.875,33.57],[-62.833,33.433],[-62.792,33.296],[-62.75,33.159],[-62.646,33.108],[-62.604,32.971],[-62.667,32.885],[-62.625,32.748],[-62.687,32.663],[-62.646,32.525],[-62.542,32.474],[-62.442,32.423],[-62.337,32.371],[-62.238,32.319],[-62.075,32.353],[-61.975,32.301],[-61.875,32.249],[-61.833,32.112],[-61.733,32.06],[-61.692,31.923],[-61.654,31.786],[-61.717,31.7],[-61.675,31.563],[-61.738,31.478],[-61.8,31.392],[-61.858,31.307],[-61.921,31.221],[-61.979,31.136],[-62.042,31.05],[-62.1,30.965],[-62.163,30.879],[-62.221,30.794],[-62.383,30.76],[-62.442,30.674],[-62.6,30.64],[-62.762,30.606],[-62.921,30.571],[-62.979,30.486],[-63.037,30.4],[-63.1,30.314],[-63.058,30.177],[-63.117,30.091],[-63.075,29.954],[-63.133,29.868],[-63.096,29.731],[-63.054,29.594],[-63.113,29.508],[-63.017,29.457],[-62.975,29.32],[-62.875,29.269],[-62.779,29.217],[-62.679,29.166],[-62.583,29.114],[-62.483,29.063],[-62.446,28.926],[-62.346,28.874],[-62.308,28.737],[-62.367,28.651],[-62.329,28.514],[-62.387,28.428],[-62.446,28.342],[-62.604,28.308],[-62.663,28.223],[-62.721,28.137],[-62.875,28.103],[-63.029,28.068],[-63.087,27.982],[-63.242,27.947],[-63.4,27.912],[-63.554,27.877],[-63.708,27.842],[-63.863,27.807],[-64.017,27.771],[-64.171,27.735],[-64.325,27.699],[-64.483,27.663],[-64.579,27.713],[-64.733,27.677],[-64.829,27.727],[-64.983,27.691],[-65.083,27.74],[-65.179,27.79],[-65.433,27.803],[-65.337,27.753],[-65.488,27.716],[-65.642,27.679],[-65.7,27.592],[-65.754,27.505],[-65.812,27.418],[-65.867,27.331],[-65.921,27.245],[-65.975,27.158],[-65.933,27.021],[-65.892,26.885],[-65.85,26.749],[-65.904,26.662],[-65.863,26.526],[-65.917,26.439],[-66.071,26.401],[-66.221,26.364],[-66.375,26.326],[-66.525,26.288],[-66.625,26.337],[-66.775,26.298],[-66.871,26.347],[-66.971,26.396],[-67.013,26.532],[-67.058,26.668],[-67.1,26.803],[-67.046,26.891],[-66.992,26.978],[-67.033,27.114],[-67.079,27.249],[-67.179,27.298],[-67.275,27.346],[-67.321,27.482],[-67.421,27.531],[-67.517,27.579],[-67.617,27.627],[-67.717,27.675],[-67.813,27.723],[-67.858,27.859],[-67.958,27.906],[-68.058,27.954],[-68.104,28.09],[-68.204,28.138],[-68.25,28.273],[-68.296,28.408],[-68.342,28.543],[-68.387,28.678],[-68.433,28.813],[-68.379,28.901],[-68.425,29.036],[-68.371,29.124],[-68.317,29.211],[-68.262,29.299],[-68.208,29.386],[-68.258,29.521],[-68.204,29.609],[-68.25,29.744],[-68.296,29.879],[-68.342,30.014],[-68.287,30.102],[-68.337,30.236],[-68.283,30.324],[-68.329,30.459],[-68.275,30.547],[-68.221,30.634],[-68.167,30.722],[-68.113,30.809],[-68.054,30.897],[-68,30.984],[-67.946,31.072],[-67.992,31.207],[-67.937,31.294],[-67.883,31.382],[-67.829,31.469],[-67.771,31.557],[-67.717,31.644],[-67.663,31.731],[-67.5,31.771],[-67.446,31.859],[-67.392,31.946],[-67.333,32.033],[-67.279,32.121],[-67.221,32.208],[-67.062,32.247],[-67.004,32.334],[-66.95,32.422],[-66.892,32.509],[-66.837,32.596],[-66.675,32.635],[-66.617,32.722],[-66.562,32.809]],[[-61.867,33.415],[-61.804,33.5],[-61.742,33.586],[-61.679,33.671],[-61.517,33.704],[-61.454,33.789],[-61.388,33.874],[-61.225,33.908],[-61.163,33.993],[-60.996,34.025],[-60.829,34.058],[-60.663,34.09],[-60.496,34.122],[-60.329,34.153],[-60.163,34.185],[-59.996,34.216],[-59.829,34.248],[-59.663,34.278],[-59.562,34.225],[-59.396,34.255],[-59.292,34.201],[-59.254,34.063],[-59.154,34.009],[-59.117,33.871],[-59.017,33.817],[-58.979,33.679],[-58.946,33.541],[-58.908,33.402],[-58.975,33.319],[-59.037,33.234],[-59.104,33.15],[-59.167,33.066],[-59.333,33.036],[-59.496,33.006],[-59.596,33.059],[-59.762,33.028],[-59.925,32.998],[-60.029,33.051],[-60.192,33.019],[-60.254,32.935],[-60.421,32.903],[-60.483,32.818],[-60.546,32.734],[-60.708,32.702],[-60.871,32.669],[-61.037,32.637],[-61.2,32.604],[-61.363,32.572],[-61.462,32.624],[-61.625,32.591],[-61.792,32.558],[-61.892,32.61],[-61.933,32.747],[-61.971,32.884],[-61.908,32.969],[-61.95,33.107],[-61.992,33.244],[-61.929,33.329],[-61.867,33.415]],[[-61.687,30.397],[-61.625,30.482],[-61.567,30.568],[-61.404,30.6],[-61.346,30.686],[-61.183,30.718],[-61.125,30.803],[-60.962,30.836],[-60.904,30.921],[-60.742,30.953],[-60.583,30.985],[-60.483,30.932],[-60.383,30.879],[-60.283,30.826],[-60.25,30.688],[-60.212,30.55],[-60.175,30.412],[-60.137,30.274],[-60.104,30.136],[-60.163,30.052],[-60.129,29.914],[-60.192,29.829],[-60.25,29.744],[-60.408,29.713],[-60.471,29.628],[-60.629,29.596],[-60.787,29.564],[-60.946,29.532],[-61.104,29.5],[-61.2,29.552],[-61.3,29.605],[-61.396,29.657],[-61.554,29.624],[-61.654,29.676],[-61.754,29.729],[-61.792,29.866],[-61.887,29.918],[-61.929,30.055],[-61.867,30.141],[-61.908,30.278],[-61.846,30.364],[-61.687,30.397]],[[-68.275,12.443],[-68.225,12.53],[-68.175,12.618],[-68.125,12.706],[-68.075,12.793],[-68.025,12.881],[-67.975,12.968],[-67.838,13.007],[-67.788,13.094],[-67.65,13.134],[-67.6,13.221],[-67.458,13.26],[-67.408,13.347],[-67.271,13.386],[-67.129,13.425],[-67.079,13.512],[-67.029,13.599],[-66.892,13.638],[-66.842,13.725],[-66.792,13.812],[-66.65,13.85],[-66.6,13.938],[-66.55,14.025],[-66.408,14.063],[-66.358,14.15],[-66.217,14.188],[-66.079,14.226],[-65.937,14.263],[-65.796,14.301],[-65.746,14.388],[-65.696,14.475],[-65.646,14.562],[-65.592,14.648],[-65.633,14.784],[-65.583,14.871],[-65.621,15.008],[-65.658,15.144],[-65.7,15.28],[-65.787,15.329],[-65.829,15.465],[-65.917,15.515],[-65.958,15.651],[-66.046,15.7],[-66.087,15.836],[-66.125,15.973],[-66.167,16.109],[-66.117,16.196],[-66.062,16.282],[-66.013,16.369],[-65.962,16.456],[-65.908,16.543],[-65.858,16.63],[-65.808,16.717],[-65.754,16.804],[-65.704,16.891],[-65.65,16.978],[-65.6,17.064],[-65.55,17.151],[-65.496,17.238],[-65.446,17.325],[-65.392,17.411],[-65.342,17.498],[-65.379,17.634],[-65.329,17.721],[-65.367,17.858],[-65.404,17.994],[-65.446,18.13],[-65.392,18.217],[-65.342,18.304],[-65.196,18.341],[-65.054,18.378],[-64.908,18.414],[-64.817,18.364],[-64.675,18.401],[-64.529,18.437],[-64.475,18.524],[-64.425,18.61],[-64.371,18.696],[-64.317,18.783],[-64.175,18.819],[-64.121,18.905],[-64.067,18.991],[-64.104,19.128],[-64.05,19.214],[-64,19.301],[-63.946,19.387],[-63.892,19.473],[-63.837,19.559],[-63.783,19.645],[-63.729,19.731],[-63.675,19.818],[-63.625,19.904],[-63.479,19.939],[-63.333,19.974],[-63.187,20.009],[-63.096,19.958],[-63.004,19.907],[-62.913,19.856],[-62.821,19.805],[-62.675,19.839],[-62.529,19.874],[-62.383,19.908],[-62.329,19.994],[-62.275,20.079],[-62.312,20.216],[-62.254,20.302],[-62.292,20.439],[-62.329,20.576],[-62.275,20.662],[-62.221,20.747],[-62.163,20.833],[-62.017,20.867],[-61.871,20.9],[-61.725,20.934],[-61.633,20.882],[-61.542,20.83],[-61.504,20.693],[-61.467,20.556],[-61.379,20.504],[-61.342,20.367],[-61.396,20.281],[-61.363,20.144],[-61.417,20.059],[-61.471,19.974],[-61.437,19.837],[-61.4,19.7],[-61.454,19.614],[-61.421,19.477],[-61.383,19.34],[-61.346,19.203],[-61.4,19.118],[-61.367,18.981],[-61.421,18.896],[-61.383,18.759],[-61.35,18.622],[-61.404,18.537],[-61.367,18.399],[-61.421,18.314],[-61.475,18.229],[-61.442,18.092],[-61.404,17.955],[-61.458,17.87],[-61.421,17.733],[-61.475,17.648],[-61.529,17.563],[-61.583,17.478],[-61.637,17.392],[-61.692,17.307],[-61.837,17.273],[-61.887,17.188],[-62.033,17.154],[-62.087,17.068],[-62.137,16.982],[-62.283,16.948],[-62.246,16.811],[-62.3,16.726],[-62.263,16.589],[-62.225,16.453],[-62.187,16.316],[-62.242,16.231],[-62.204,16.094],[-62.258,16.008],[-62.312,15.923],[-62.363,15.837],[-62.417,15.751],[-62.471,15.666],[-62.613,15.631],[-62.663,15.545],[-62.717,15.46],[-62.858,15.424],[-62.908,15.339],[-62.962,15.253],[-63.012,15.167],[-62.979,15.031],[-63.029,14.945],[-62.942,14.894],[-62.85,14.844],[-62.762,14.793],[-62.725,14.657],[-62.687,14.52],[-62.738,14.434],[-62.704,14.298],[-62.754,14.212],[-62.804,14.127],[-62.946,14.091],[-63,14.006],[-63.05,13.92],[-63.1,13.834],[-63.154,13.748],[-63.204,13.662],[-63.254,13.576],[-63.217,13.44],[-63.271,13.354],[-63.321,13.268],[-63.283,13.132],[-63.333,13.046],[-63.387,12.96],[-63.437,12.874],[-63.575,12.838],[-63.629,12.752],[-63.679,12.666],[-63.729,12.579],[-63.779,12.493],[-63.829,12.407],[-63.883,12.321],[-63.933,12.235],[-63.983,12.149],[-64.121,12.112],[-64.262,12.075],[-64.312,11.989],[-64.45,11.952],[-64.5,11.866],[-64.642,11.829],[-64.692,11.742],[-64.829,11.705],[-64.879,11.619],[-65.017,11.581],[-65.158,11.544],[-65.208,11.457],[-65.346,11.42],[-65.396,11.333],[-65.446,11.246],[-65.496,11.159],[-65.633,11.122],[-65.683,11.035],[-65.733,10.948],[-65.871,10.91],[-65.921,10.823],[-66.058,10.785],[-66.108,10.698],[-66.246,10.66],[-66.296,10.573],[-66.433,10.534],[-66.483,10.448],[-66.621,10.409],[-66.671,10.322],[-66.808,10.283],[-66.858,10.196],[-66.908,10.109],[-67.046,10.07],[-67.096,9.983],[-67.233,9.944],[-67.371,9.905],[-67.508,9.866],[-67.596,9.914],[-67.683,9.962],[-67.775,10.01],[-67.863,10.058],[-67.954,10.106],[-67.992,10.242],[-68.083,10.29],[-68.121,10.425],[-68.212,10.473],[-68.25,10.609],[-68.292,10.745],[-68.242,10.832],[-68.283,10.968],[-68.325,11.103],[-68.275,11.191],[-68.317,11.327],[-68.358,11.462],[-68.396,11.598],[-68.35,11.686],[-68.387,11.821],[-68.337,11.909],[-68.379,12.044],[-68.329,12.132],[-68.371,12.268],[-68.321,12.355],[-68.275,12.443]],[[-78.442,10.907],[-78.396,10.996],[-78.35,11.085],[-78.304,11.173],[-78.258,11.262],[-78.121,11.306],[-78.075,11.394],[-77.937,11.438],[-77.804,11.482],[-77.758,11.57],[-77.712,11.659],[-77.575,11.702],[-77.529,11.791],[-77.479,11.88],[-77.433,11.969],[-77.387,12.058],[-77.342,12.147],[-77.204,12.19],[-77.067,12.233],[-76.929,12.277],[-76.837,12.231],[-76.75,12.186],[-76.658,12.141],[-76.613,12.006],[-76.521,11.961],[-76.475,11.826],[-76.525,11.737],[-76.479,11.603],[-76.433,11.469],[-76.479,11.38],[-76.529,11.291],[-76.663,11.248],[-76.712,11.159],[-76.846,11.116],[-76.983,11.073],[-77.121,11.03],[-77.258,10.986],[-77.396,10.943],[-77.533,10.9],[-77.671,10.856],[-77.717,10.768],[-77.762,10.679],[-77.808,10.59],[-77.946,10.547],[-77.992,10.458],[-78.037,10.369],[-78.171,10.326],[-78.308,10.282],[-78.4,10.328],[-78.492,10.373],[-78.533,10.507],[-78.579,10.641],[-78.533,10.729],[-78.488,10.818],[-78.442,10.907]],[[-80.758,9.497],[-80.712,9.586],[-80.667,9.674],[-80.625,9.763],[-80.579,9.852],[-80.533,9.941],[-80.396,9.984],[-80.262,10.028],[-80.217,9.894],[-80.171,9.761],[-80.125,9.627],[-80.171,9.538],[-80.125,9.404],[-80.171,9.316],[-80.217,9.227],[-80.262,9.138],[-80.396,9.095],[-80.488,9.14],[-80.625,9.096],[-80.667,9.23],[-80.712,9.364],[-80.758,9.497]],[[-81.3,8.211],[-81.346,8.345],[-81.3,8.434],[-81.167,8.477],[-81.075,8.432],[-81.029,8.298],[-81.075,8.21],[-81.212,8.166],[-81.3,8.211]],[[-70.096,8.301],[-70.05,8.389],[-70,8.478],[-69.954,8.565],[-69.904,8.653],[-69.767,8.694],[-69.721,8.782],[-69.583,8.822],[-69.446,8.862],[-69.358,8.815],[-69.267,8.768],[-69.129,8.808],[-69.042,8.76],[-68.954,8.712],[-68.863,8.665],[-68.775,8.617],[-68.687,8.569],[-68.596,8.522],[-68.458,8.562],[-68.371,8.514],[-68.233,8.554],[-68.096,8.593],[-67.958,8.633],[-67.913,8.72],[-67.775,8.76],[-67.725,8.847],[-67.587,8.887],[-67.542,8.974],[-67.492,9.061],[-67.442,9.149],[-67.396,9.236],[-67.258,9.275],[-67.121,9.314],[-66.983,9.353],[-66.896,9.305],[-66.804,9.257],[-66.667,9.296],[-66.579,9.247],[-66.492,9.199],[-66.4,9.15],[-66.262,9.189],[-66.175,9.14],[-66.087,9.092],[-66,9.043],[-65.908,8.994],[-65.871,8.859],[-65.829,8.724],[-65.879,8.637],[-66.017,8.598],[-66.067,8.511],[-66.204,8.473],[-66.25,8.386],[-66.3,8.299],[-66.35,8.212],[-66.396,8.125],[-66.446,8.038],[-66.404,7.903],[-66.454,7.816],[-66.413,7.68],[-66.462,7.593],[-66.512,7.506],[-66.471,7.371],[-66.521,7.284],[-66.567,7.197],[-66.617,7.109],[-66.663,7.022],[-66.625,6.887],[-66.671,6.8],[-66.721,6.713],[-66.767,6.626],[-66.904,6.587],[-66.95,6.499],[-67.087,6.46],[-67.175,6.508],[-67.267,6.556],[-67.4,6.516],[-67.537,6.477],[-67.625,6.524],[-67.763,6.485],[-67.9,6.445],[-67.988,6.493],[-68.121,6.453],[-68.212,6.5],[-68.346,6.46],[-68.437,6.508],[-68.525,6.556],[-68.613,6.603],[-68.7,6.651],[-68.742,6.786],[-68.833,6.833],[-68.921,6.881],[-69.008,6.928],[-69.096,6.976],[-69.187,7.023],[-69.275,7.071],[-69.363,7.118],[-69.454,7.165],[-69.542,7.213],[-69.629,7.26],[-69.717,7.307],[-69.808,7.355],[-69.896,7.402],[-69.983,7.449],[-70.025,7.584],[-70.117,7.632],[-70.158,7.767],[-70.2,7.902],[-70.15,7.99],[-70.192,8.126],[-70.146,8.214],[-70.096,8.301]],[[-69.446,3.997],[-69.4,4.085],[-69.354,4.173],[-69.304,4.261],[-69.258,4.349],[-69.212,4.436],[-69.167,4.524],[-69.117,4.612],[-69.158,4.747],[-69.025,4.788],[-68.888,4.828],[-68.8,4.781],[-68.663,4.821],[-68.529,4.862],[-68.392,4.902],[-68.258,4.942],[-68.121,4.982],[-68.033,4.935],[-67.946,4.887],[-67.858,4.84],[-67.817,4.705],[-67.863,4.618],[-67.821,4.483],[-67.779,4.348],[-67.829,4.261],[-67.875,4.173],[-67.833,4.038],[-67.879,3.951],[-67.929,3.863],[-67.975,3.776],[-68.021,3.688],[-68.067,3.601],[-68.204,3.561],[-68.25,3.473],[-68.296,3.385],[-68.346,3.298],[-68.479,3.257],[-68.525,3.17],[-68.575,3.082],[-68.708,3.041],[-68.754,2.954],[-68.8,2.866],[-68.937,2.825],[-68.983,2.738],[-69.029,2.65],[-69.079,2.562],[-69.125,2.474],[-69.258,2.433],[-69.304,2.345],[-69.442,2.304],[-69.575,2.263],[-69.663,2.31],[-69.704,2.445],[-69.796,2.491],[-69.837,2.626],[-69.879,2.761],[-69.921,2.896],[-69.875,2.984],[-69.825,3.071],[-69.779,3.159],[-69.733,3.247],[-69.687,3.335],[-69.642,3.423],[-69.592,3.511],[-69.633,3.646],[-69.587,3.734],[-69.542,3.822],[-69.496,3.909],[-69.446,3.997]],[[-77.492,-0.585],[-77.446,-0.496],[-77.4,-0.408],[-77.267,-0.365],[-77.221,-0.276],[-77.083,-0.233],[-76.95,-0.191],[-76.817,-0.148],[-76.679,-0.105],[-76.592,-0.151],[-76.458,-0.108],[-76.367,-0.154],[-76.233,-0.112],[-76.146,-0.157],[-76.054,-0.204],[-75.921,-0.161],[-75.833,-0.207],[-75.696,-0.164],[-75.608,-0.21],[-75.475,-0.167],[-75.429,-0.079],[-75.292,-0.036],[-75.246,0.052],[-75.113,0.095],[-75.067,0.184],[-74.929,0.226],[-74.796,0.269],[-74.663,0.311],[-74.571,0.265],[-74.437,0.308],[-74.35,0.262],[-74.212,0.304],[-74.125,0.258],[-73.992,0.301],[-73.854,0.343],[-73.721,0.385],[-73.675,0.474],[-73.542,0.516],[-73.496,0.605],[-73.45,0.693],[-73.404,0.782],[-73.354,0.871],[-73.4,1.005],[-73.354,1.094],[-73.308,1.182],[-73.35,1.317],[-73.392,1.452],[-73.433,1.586],[-73.387,1.675],[-73.429,1.81],[-73.471,1.945],[-73.517,2.079],[-73.471,2.168],[-73.513,2.303],[-73.554,2.438],[-73.642,2.484],[-73.729,2.53],[-73.821,2.577],[-73.908,2.623],[-73.996,2.669],[-74.087,2.715],[-74.175,2.762],[-74.262,2.808],[-74.354,2.854],[-74.442,2.9],[-74.483,3.035],[-74.525,3.17],[-74.479,3.259],[-74.521,3.394],[-74.475,3.482],[-74.429,3.571],[-74.383,3.659],[-74.337,3.748],[-74.2,3.791],[-74.154,3.879],[-74.021,3.921],[-73.883,3.964],[-73.796,3.917],[-73.663,3.959],[-73.571,3.913],[-73.483,3.867],[-73.396,3.82],[-73.304,3.774],[-73.217,3.728],[-73.083,3.77],[-72.992,3.723],[-72.904,3.677],[-72.771,3.719],[-72.679,3.672],[-72.592,3.626],[-72.504,3.579],[-72.413,3.533],[-72.325,3.486],[-72.238,3.44],[-72.15,3.393],[-72.104,3.258],[-72.017,3.212],[-71.929,3.165],[-71.887,3.03],[-71.846,2.896],[-71.892,2.807],[-71.85,2.673],[-71.896,2.584],[-71.942,2.496],[-71.9,2.361],[-71.946,2.273],[-71.904,2.138],[-71.863,2.003],[-71.821,1.868],[-71.775,1.734],[-71.733,1.599],[-71.692,1.464],[-71.738,1.376],[-71.696,1.241],[-71.742,1.153],[-71.787,1.065],[-71.925,1.023],[-71.971,0.934],[-72.104,0.892],[-72.15,0.804],[-72.283,0.762],[-72.329,0.674],[-72.467,0.631],[-72.513,0.543],[-72.558,0.454],[-72.604,0.366],[-72.65,0.278],[-72.696,0.189],[-72.742,0.101],[-72.787,0.013],[-72.833,-0.076],[-72.879,-0.164],[-73.017,-0.207],[-73.062,-0.295],[-73.108,-0.384],[-73.242,-0.426],[-73.375,-0.468],[-73.421,-0.557],[-73.558,-0.599],[-73.604,-0.688],[-73.65,-0.776],[-73.696,-0.865],[-73.742,-0.954],[-73.787,-1.042],[-73.833,-1.131],[-73.879,-1.219],[-73.925,-1.308],[-73.971,-1.396],[-74.017,-1.485],[-74.062,-1.574],[-74.108,-1.662],[-74.154,-1.751],[-74.2,-1.839],[-74.333,-1.882],[-74.425,-1.836],[-74.558,-1.879],[-74.692,-1.922],[-74.829,-1.964],[-74.917,-1.919],[-75.004,-1.872],[-75.096,-1.827],[-75.183,-1.781],[-75.317,-1.823],[-75.408,-1.777],[-75.496,-1.732],[-75.583,-1.686],[-75.721,-1.728],[-75.808,-1.682],[-75.896,-1.636],[-75.988,-1.591],[-76.075,-1.544],[-76.163,-1.499],[-76.254,-1.452],[-76.342,-1.407],[-76.429,-1.361],[-76.517,-1.315],[-76.608,-1.269],[-76.696,-1.223],[-76.783,-1.177],[-76.921,-1.219],[-77.008,-1.173],[-77.096,-1.127],[-77.233,-1.17],[-77.321,-1.124],[-77.408,-1.078],[-77.5,-1.032],[-77.542,-0.897],[-77.583,-0.763],[-77.537,-0.674],[-77.492,-0.585]],[[-71.317,-0.192],[-71.271,-0.104],[-71.225,-0.016],[-71.092,0.026],[-71.046,0.114],[-70.908,0.156],[-70.821,0.109],[-70.779,-0.025],[-70.825,-0.113],[-70.779,-0.247],[-70.738,-0.381],[-70.696,-0.516],[-70.742,-0.604],[-70.7,-0.738],[-70.746,-0.826],[-70.792,-0.914],[-70.837,-1.002],[-70.971,-1.045],[-71.058,-0.999],[-71.15,-0.952],[-71.238,-0.906],[-71.325,-0.86],[-71.371,-0.726],[-71.413,-0.591],[-71.367,-0.503],[-71.408,-0.369],[-71.363,-0.281],[-71.317,-0.192]],[[-80.525,-5.548],[-80.567,-5.413],[-80.433,-5.371],[-80.387,-5.282],[-80.337,-5.194],[-80.204,-5.151],[-80.158,-5.062],[-80.021,-5.02],[-79.975,-4.931],[-79.842,-4.888],[-79.796,-4.8],[-79.658,-4.757],[-79.525,-4.714],[-79.387,-4.672],[-79.254,-4.629],[-79.163,-4.675],[-79.075,-4.721],[-78.988,-4.767],[-78.896,-4.813],[-78.854,-4.948],[-78.767,-4.994],[-78.721,-5.129],[-78.633,-5.175],[-78.587,-5.309],[-78.5,-5.356],[-78.413,-5.401],[-78.275,-5.359],[-78.142,-5.316],[-78.096,-5.227],[-77.958,-5.184],[-77.913,-5.095],[-77.779,-5.052],[-77.733,-4.964],[-77.596,-4.921],[-77.462,-4.878],[-77.325,-4.835],[-77.192,-4.792],[-77.146,-4.703],[-77.1,-4.614],[-77.054,-4.526],[-77.008,-4.437],[-76.962,-4.348],[-76.917,-4.259],[-76.779,-4.216],[-76.646,-4.173],[-76.512,-4.131],[-76.421,-4.176],[-76.379,-4.311],[-76.288,-4.357],[-76.246,-4.491],[-76.204,-4.626],[-76.158,-4.76],[-76.117,-4.895],[-76.071,-5.029],[-75.983,-5.075],[-75.892,-5.121],[-75.804,-5.166],[-75.717,-5.212],[-75.625,-5.257],[-75.492,-5.214],[-75.4,-5.26],[-75.313,-5.306],[-75.175,-5.263],[-75.087,-5.308],[-74.996,-5.354],[-74.863,-5.311],[-74.775,-5.356],[-74.683,-5.402],[-74.596,-5.448],[-74.504,-5.493],[-74.462,-5.627],[-74.417,-5.761],[-74.375,-5.896],[-74.417,-5.984],[-74.375,-6.118],[-74.329,-6.252],[-74.375,-6.341],[-74.421,-6.429],[-74.375,-6.564],[-74.421,-6.652],[-74.467,-6.741],[-74.513,-6.829],[-74.471,-6.963],[-74.513,-7.052],[-74.471,-7.186],[-74.517,-7.274],[-74.425,-7.32],[-74.379,-7.454],[-74.337,-7.587],[-74.246,-7.633],[-74.2,-7.767],[-74.113,-7.812],[-74.067,-7.946],[-74.021,-8.079],[-74.067,-8.168],[-74.021,-8.301],[-74.067,-8.39],[-74.204,-8.434],[-74.246,-8.522],[-74.383,-8.566],[-74.517,-8.609],[-74.654,-8.653],[-74.7,-8.742],[-74.833,-8.785],[-74.879,-8.874],[-74.925,-8.962],[-74.971,-9.051],[-75.017,-9.14],[-75.154,-9.183],[-75.196,-9.272],[-75.333,-9.316],[-75.379,-9.404],[-75.517,-9.448],[-75.65,-9.492],[-75.696,-9.58],[-75.742,-9.669],[-75.787,-9.758],[-75.833,-9.847],[-75.879,-9.935],[-75.925,-10.024],[-75.971,-10.113],[-76.017,-10.201],[-76.058,-10.29],[-76.104,-10.379],[-76.242,-10.423],[-76.379,-10.466],[-76.517,-10.51],[-76.65,-10.554],[-76.696,-10.642],[-76.833,-10.686],[-76.925,-10.641],[-77.062,-10.684],[-77.108,-10.773],[-77.242,-10.817],[-77.379,-10.86],[-77.425,-10.949],[-77.471,-11.038],[-77.517,-11.126],[-77.654,-11.17],[-77.7,-11.259],[-77.837,-11.302],[-77.883,-11.391],[-78.021,-11.434],[-78.113,-11.389],[-78.25,-11.432],[-78.337,-11.387],[-78.475,-11.43],[-78.567,-11.385],[-78.658,-11.339],[-78.75,-11.294],[-78.842,-11.248],[-78.929,-11.202],[-79.067,-11.246],[-79.158,-11.2],[-79.25,-11.154],[-79.387,-11.197],[-79.475,-11.152],[-79.567,-11.106],[-79.704,-11.149],[-79.796,-11.103],[-79.887,-11.057],[-79.929,-10.922],[-79.975,-10.788],[-80.017,-10.653],[-79.971,-10.564],[-80.013,-10.43],[-80.058,-10.295],[-80.013,-10.206],[-79.962,-10.118],[-80.008,-9.983],[-79.962,-9.894],[-80.004,-9.76],[-79.958,-9.671],[-80,-9.536],[-79.954,-9.447],[-80,-9.313],[-80.042,-9.178],[-80.083,-9.043],[-80.129,-8.909],[-80.217,-8.862],[-80.262,-8.728],[-80.35,-8.682],[-80.396,-8.547],[-80.437,-8.412],[-80.479,-8.277],[-80.525,-8.142],[-80.567,-8.007],[-80.608,-7.873],[-80.654,-7.738],[-80.604,-7.649],[-80.65,-7.514],[-80.692,-7.379],[-80.733,-7.244],[-80.687,-7.156],[-80.729,-7.021],[-80.683,-6.932],[-80.637,-6.843],[-80.679,-6.709],[-80.633,-6.62],[-80.587,-6.531],[-80.629,-6.396],[-80.583,-6.308],[-80.537,-6.219],[-80.579,-6.084],[-80.533,-5.995],[-80.575,-5.861],[-80.617,-5.726],[-80.571,-5.637],[-80.525,-5.548]],[[-87.913,-15.502],[-87.954,-15.366],[-87.904,-15.279],[-87.854,-15.192],[-87.712,-15.152],[-87.663,-15.065],[-87.613,-14.978],[-87.471,-14.939],[-87.329,-14.899],[-87.192,-14.86],[-87.05,-14.821],[-86.958,-14.869],[-86.867,-14.917],[-86.729,-14.877],[-86.638,-14.925],[-86.546,-14.973],[-86.454,-15.021],[-86.363,-15.069],[-86.275,-15.117],[-86.233,-15.253],[-86.142,-15.301],[-86.05,-15.348],[-85.958,-15.396],[-85.917,-15.532],[-85.875,-15.667],[-85.925,-15.755],[-85.975,-15.843],[-86.025,-15.931],[-86.075,-16.019],[-86.125,-16.107],[-86.175,-16.194],[-86.225,-16.282],[-86.271,-16.37],[-86.321,-16.458],[-86.371,-16.546],[-86.421,-16.633],[-86.563,-16.673],[-86.613,-16.761],[-86.758,-16.801],[-86.9,-16.84],[-86.992,-16.792],[-87.079,-16.744],[-87.171,-16.696],[-87.262,-16.647],[-87.304,-16.511],[-87.396,-16.463],[-87.437,-16.327],[-87.529,-16.279],[-87.571,-16.143],[-87.608,-16.007],[-87.7,-15.959],[-87.742,-15.823],[-87.783,-15.687],[-87.871,-15.638],[-87.913,-15.502]],[[-93.371,-28.41],[-93.312,-28.325],[-93.25,-28.239],[-93.192,-28.154],[-93.133,-28.068],[-93.075,-27.982],[-92.921,-27.948],[-92.863,-27.862],[-92.708,-27.828],[-92.554,-27.794],[-92.396,-27.759],[-92.242,-27.724],[-92.087,-27.689],[-91.933,-27.654],[-91.779,-27.619],[-91.721,-27.533],[-91.663,-27.447],[-91.608,-27.361],[-91.55,-27.274],[-91.492,-27.188],[-91.437,-27.102],[-91.379,-27.016],[-91.321,-26.929],[-91.267,-26.843],[-91.208,-26.757],[-91.058,-26.721],[-91,-26.634],[-90.846,-26.598],[-90.696,-26.562],[-90.542,-26.525],[-90.388,-26.488],[-90.333,-26.402],[-90.183,-26.365],[-90.125,-26.278],[-90.071,-26.191],[-90.017,-26.105],[-89.958,-26.018],[-89.904,-25.931],[-89.85,-25.844],[-89.796,-25.757],[-89.742,-25.671],[-89.683,-25.584],[-89.725,-25.447],[-89.671,-25.361],[-89.617,-25.274],[-89.562,-25.187],[-89.413,-25.149],[-89.358,-25.062],[-89.208,-25.024],[-89.058,-24.987],[-89.004,-24.9],[-88.854,-24.861],[-88.704,-24.823],[-88.554,-24.785],[-88.404,-24.746],[-88.308,-24.795],[-88.158,-24.756],[-88.008,-24.718],[-87.858,-24.679],[-87.708,-24.64],[-87.654,-24.552],[-87.604,-24.465],[-87.55,-24.377],[-87.592,-24.241],[-87.542,-24.154],[-87.488,-24.066],[-87.529,-23.931],[-87.575,-23.795],[-87.617,-23.659],[-87.658,-23.524],[-87.608,-23.436],[-87.65,-23.3],[-87.692,-23.164],[-87.733,-23.029],[-87.779,-22.893],[-87.821,-22.757],[-87.913,-22.708],[-87.958,-22.572],[-88.05,-22.524],[-88.092,-22.388],[-88.042,-22.301],[-88.083,-22.164],[-88.029,-22.077],[-88.071,-21.941],[-88.021,-21.854],[-87.967,-21.766],[-87.917,-21.679],[-87.863,-21.592],[-87.812,-21.504],[-87.758,-21.417],[-87.708,-21.329],[-87.75,-21.194],[-87.696,-21.106],[-87.55,-21.067],[-87.5,-20.979],[-87.354,-20.94],[-87.3,-20.853],[-87.158,-20.814],[-87.012,-20.774],[-86.867,-20.734],[-86.771,-20.782],[-86.679,-20.831],[-86.638,-20.966],[-86.542,-21.014],[-86.446,-21.062],[-86.354,-21.11],[-86.258,-21.157],[-86.167,-21.205],[-86.071,-21.252],[-85.975,-21.3],[-85.883,-21.348],[-85.788,-21.395],[-85.642,-21.355],[-85.496,-21.314],[-85.35,-21.273],[-85.3,-21.185],[-85.25,-21.097],[-85.2,-21.009],[-85.15,-20.921],[-85.1,-20.833],[-85.05,-20.745],[-85,-20.657],[-84.95,-20.569],[-84.896,-20.481],[-84.942,-20.346],[-84.892,-20.257],[-84.937,-20.122],[-84.979,-19.987],[-84.929,-19.899],[-84.879,-19.811],[-84.829,-19.723],[-84.875,-19.588],[-84.825,-19.5],[-84.775,-19.412],[-84.817,-19.276],[-84.767,-19.188],[-84.812,-19.053],[-84.763,-18.965],[-84.804,-18.83],[-84.754,-18.742],[-84.8,-18.606],[-84.842,-18.471],[-84.933,-18.424],[-84.979,-18.289],[-85.121,-18.329],[-85.262,-18.37],[-85.404,-18.411],[-85.454,-18.499],[-85.6,-18.539],[-85.65,-18.627],[-85.792,-18.667],[-85.933,-18.708],[-85.983,-18.796],[-86.033,-18.884],[-86.179,-18.924],[-86.229,-19.011],[-86.371,-19.051],[-86.425,-19.139],[-86.475,-19.227],[-86.617,-19.267],[-86.667,-19.354],[-86.812,-19.394],[-86.958,-19.434],[-87.008,-19.521],[-87.15,-19.561],[-87.246,-19.512],[-87.387,-19.552],[-87.483,-19.503],[-87.575,-19.455],[-87.667,-19.406],[-87.812,-19.445],[-87.904,-19.397],[-87.946,-19.261],[-88.037,-19.212],[-88.129,-19.164],[-88.221,-19.115],[-88.262,-18.979],[-88.304,-18.842],[-88.254,-18.755],[-88.2,-18.668],[-88.15,-18.581],[-88.1,-18.493],[-88.046,-18.406],[-87.996,-18.319],[-87.946,-18.231],[-87.892,-18.144],[-87.842,-18.056],[-87.7,-18.017],[-87.65,-17.93],[-87.504,-17.891],[-87.454,-17.804],[-87.312,-17.764],[-87.171,-17.725],[-87.025,-17.686],[-86.933,-17.734],[-86.792,-17.694],[-86.65,-17.655],[-86.6,-17.567],[-86.458,-17.527],[-86.312,-17.487],[-86.171,-17.447],[-86.029,-17.407],[-85.937,-17.455],[-85.796,-17.415],[-85.654,-17.374],[-85.512,-17.334],[-85.371,-17.294],[-85.229,-17.253],[-85.087,-17.212],[-84.946,-17.172],[-84.854,-17.219],[-84.712,-17.178],[-84.617,-17.225],[-84.525,-17.272],[-84.383,-17.231],[-84.242,-17.19],[-84.1,-17.149],[-84.054,-17.06],[-84.004,-16.972],[-83.954,-16.884],[-83.904,-16.796],[-83.858,-16.707],[-83.9,-16.572],[-83.85,-16.484],[-83.896,-16.349],[-83.846,-16.261],[-83.888,-16.125],[-83.842,-16.037],[-83.883,-15.902],[-83.925,-15.767],[-83.971,-15.632],[-84.012,-15.496],[-84.054,-15.361],[-84.096,-15.226],[-84.142,-15.091],[-84.183,-14.955],[-84.133,-14.867],[-84.179,-14.732],[-84.129,-14.644],[-84.171,-14.508],[-84.121,-14.42],[-84.075,-14.332],[-84.117,-14.197],[-84.067,-14.108],[-84.021,-14.02],[-83.971,-13.932],[-83.833,-13.891],[-83.783,-13.802],[-83.733,-13.714],[-83.596,-13.673],[-83.55,-13.584],[-83.5,-13.496],[-83.45,-13.408],[-83.404,-13.319],[-83.354,-13.231],[-83.308,-13.142],[-83.35,-13.007],[-83.304,-12.919],[-83.254,-12.831],[-83.296,-12.696],[-83.25,-12.607],[-83.2,-12.519],[-83.154,-12.431],[-83.104,-12.342],[-82.967,-12.3],[-82.921,-12.212],[-82.779,-12.17],[-82.642,-12.128],[-82.504,-12.086],[-82.413,-12.133],[-82.325,-12.179],[-82.233,-12.226],[-82.142,-12.272],[-82.1,-12.407],[-82.008,-12.454],[-81.917,-12.5],[-81.875,-12.635],[-81.783,-12.681],[-81.742,-12.816],[-81.696,-12.951],[-81.654,-13.086],[-81.608,-13.221],[-81.567,-13.356],[-81.521,-13.49],[-81.479,-13.625],[-81.433,-13.76],[-81.392,-13.894],[-81.346,-14.029],[-81.254,-14.075],[-81.212,-14.21],[-81.121,-14.256],[-81.075,-14.39],[-81.029,-14.525],[-80.937,-14.571],[-80.846,-14.617],[-80.754,-14.662],[-80.663,-14.708],[-80.571,-14.754],[-80.479,-14.8],[-80.387,-14.846],[-80.296,-14.891],[-80.154,-14.848],[-80.063,-14.894],[-80.017,-15.028],[-79.925,-15.073],[-79.833,-15.119],[-79.787,-15.253],[-79.742,-15.387],[-79.696,-15.521],[-79.65,-15.655],[-79.604,-15.789],[-79.558,-15.923],[-79.512,-16.058],[-79.562,-16.146],[-79.517,-16.28],[-79.421,-16.325],[-79.375,-16.459],[-79.329,-16.593],[-79.238,-16.638],[-79.192,-16.772],[-79.142,-16.906],[-79.096,-17.039],[-79.05,-17.173],[-79.096,-17.261],[-79.142,-17.35],[-79.187,-17.439],[-79.142,-17.572],[-79.187,-17.661],[-79.142,-17.795],[-79.05,-17.84],[-78.954,-17.884],[-78.858,-17.929],[-78.767,-17.974],[-78.625,-17.93],[-78.483,-17.885],[-78.392,-17.93],[-78.296,-17.974],[-78.204,-18.019],[-78.062,-17.974],[-77.967,-18.019],[-77.829,-17.974],[-77.687,-17.93],[-77.546,-17.885],[-77.454,-17.929],[-77.358,-17.973],[-77.263,-18.017],[-77.171,-18.061],[-77.121,-18.194],[-77.167,-18.283],[-77.117,-18.416],[-77.163,-18.504],[-77.208,-18.593],[-77.254,-18.682],[-77.3,-18.771],[-77.346,-18.859],[-77.488,-18.904],[-77.533,-18.993],[-77.675,-19.038],[-77.817,-19.083],[-77.863,-19.171],[-78.004,-19.216],[-78.05,-19.305],[-78.192,-19.35],[-78.283,-19.306],[-78.379,-19.261],[-78.475,-19.217],[-78.571,-19.173],[-78.617,-19.04],[-78.712,-18.995],[-78.808,-18.951],[-78.904,-18.906],[-78.996,-18.862],[-79.138,-18.906],[-79.233,-18.861],[-79.375,-18.906],[-79.467,-18.861],[-79.562,-18.816],[-79.613,-18.682],[-79.562,-18.594],[-79.517,-18.505],[-79.562,-18.371],[-79.517,-18.282],[-79.562,-18.149],[-79.658,-18.104],[-79.704,-17.97],[-79.8,-17.925],[-79.942,-17.969],[-80.033,-17.924],[-80.175,-17.967],[-80.221,-18.056],[-80.271,-18.145],[-80.317,-18.234],[-80.363,-18.322],[-80.413,-18.411],[-80.458,-18.499],[-80.504,-18.588],[-80.554,-18.677],[-80.6,-18.766],[-80.65,-18.854],[-80.6,-18.988],[-80.508,-19.033],[-80.413,-19.079],[-80.367,-19.212],[-80.271,-19.257],[-80.225,-19.391],[-80.175,-19.525],[-80.129,-19.658],[-80.083,-19.792],[-80.129,-19.881],[-80.083,-20.014],[-80.033,-20.148],[-80.079,-20.236],[-80.129,-20.325],[-80.175,-20.414],[-80.225,-20.502],[-80.175,-20.636],[-80.221,-20.725],[-80.271,-20.813],[-80.317,-20.902],[-80.221,-20.947],[-80.175,-21.08],[-80.125,-21.214],[-80.171,-21.302],[-80.125,-21.436],[-80.171,-21.524],[-80.121,-21.657],[-80.075,-21.791],[-79.975,-21.835],[-79.879,-21.88],[-79.829,-22.013],[-79.879,-22.101],[-79.829,-22.234],[-79.779,-22.367],[-79.825,-22.456],[-79.875,-22.545],[-79.825,-22.678],[-79.775,-22.811],[-79.821,-22.899],[-79.871,-22.988],[-79.821,-23.121],[-79.867,-23.21],[-79.913,-23.298],[-79.962,-23.387],[-80.008,-23.476],[-80.058,-23.564],[-80.104,-23.653],[-80.15,-23.742],[-80.1,-23.875],[-80.15,-23.964],[-80.196,-24.052],[-80.146,-24.185],[-80.192,-24.274],[-80.242,-24.362],[-80.287,-24.451],[-80.437,-24.496],[-80.483,-24.584],[-80.629,-24.629],[-80.775,-24.673],[-80.925,-24.717],[-81.071,-24.762],[-81.217,-24.806],[-81.367,-24.85],[-81.512,-24.894],[-81.562,-24.983],[-81.708,-25.027],[-81.758,-25.115],[-81.808,-25.204],[-81.954,-25.248],[-82.004,-25.336],[-82.054,-25.425],[-82.1,-25.513],[-82.15,-25.602],[-82.3,-25.645],[-82.35,-25.734],[-82.3,-25.867],[-82.35,-25.956],[-82.3,-26.089],[-82.2,-26.134],[-82.15,-26.267],[-82.05,-26.312],[-81.95,-26.356],[-81.85,-26.401],[-81.75,-26.446],[-81.7,-26.579],[-81.6,-26.623],[-81.5,-26.667],[-81.396,-26.711],[-81.346,-26.844],[-81.296,-26.977],[-81.342,-27.066],[-81.292,-27.198],[-81.342,-27.287],[-81.387,-27.375],[-81.337,-27.508],[-81.283,-27.641],[-81.183,-27.684],[-81.033,-27.64],[-80.883,-27.595],[-80.833,-27.506],[-80.683,-27.461],[-80.533,-27.416],[-80.383,-27.371],[-80.283,-27.414],[-80.183,-27.457],[-80.079,-27.501],[-79.979,-27.544],[-79.925,-27.676],[-79.871,-27.807],[-79.817,-27.939],[-79.762,-28.071],[-79.808,-28.159],[-79.754,-28.291],[-79.8,-28.379],[-79.85,-28.468],[-79.896,-28.557],[-79.842,-28.688],[-79.887,-28.777],[-79.937,-28.866],[-80.088,-28.912],[-80.138,-29.001],[-80.183,-29.089],[-80.337,-29.135],[-80.488,-29.181],[-80.537,-29.269],[-80.687,-29.315],[-80.792,-29.272],[-80.896,-29.229],[-81,-29.185],[-81.1,-29.142],[-81.204,-29.099],[-81.413,-29.011],[-81.308,-29.055],[-81.458,-29.1],[-81.358,-29.144],[-81.254,-29.187],[-81.15,-29.231],[-81.096,-29.362],[-80.992,-29.406],[-80.937,-29.538],[-80.883,-29.67],[-80.829,-29.801],[-80.771,-29.933],[-80.667,-29.976],[-80.613,-30.107],[-80.558,-30.239],[-80.45,-30.282],[-80.396,-30.413],[-80.446,-30.502],[-80.492,-30.591],[-80.646,-30.636],[-80.8,-30.682],[-80.904,-30.639],[-81.058,-30.685],[-81.163,-30.642],[-81.317,-30.688],[-81.471,-30.733],[-81.521,-30.822],[-81.571,-30.91],[-81.621,-30.999],[-81.671,-31.087],[-81.721,-31.176],[-81.663,-31.308],[-81.712,-31.396],[-81.762,-31.485],[-81.812,-31.574],[-81.863,-31.662],[-81.913,-31.751],[-81.962,-31.839],[-82.121,-31.884],[-82.171,-31.973],[-82.325,-32.018],[-82.483,-32.063],[-82.642,-32.108],[-82.796,-32.152],[-82.904,-32.109],[-83.008,-32.064],[-83.167,-32.109],[-83.325,-32.153],[-83.375,-32.241],[-83.429,-32.33],[-83.479,-32.418],[-83.529,-32.506],[-83.475,-32.639],[-83.529,-32.727],[-83.471,-32.86],[-83.417,-32.992],[-83.471,-33.081],[-83.521,-33.169],[-83.571,-33.257],[-83.517,-33.39],[-83.571,-33.478],[-83.729,-33.522],[-83.779,-33.611],[-83.833,-33.699],[-83.888,-33.787],[-83.937,-33.876],[-83.992,-33.964],[-84.042,-34.052],[-84.096,-34.14],[-84.15,-34.228],[-84.2,-34.317],[-84.146,-34.449],[-84.2,-34.537],[-84.25,-34.626],[-84.304,-34.714],[-84.358,-34.802],[-84.408,-34.89],[-84.571,-34.934],[-84.625,-35.022],[-84.679,-35.11],[-84.842,-35.154],[-84.896,-35.242],[-84.95,-35.33],[-85.113,-35.373],[-85.167,-35.461],[-85.221,-35.549],[-85.387,-35.592],[-85.442,-35.681],[-85.496,-35.768],[-85.55,-35.856],[-85.604,-35.944],[-85.658,-36.032],[-85.825,-36.075],[-85.879,-36.163],[-85.937,-36.251],[-85.992,-36.339],[-86.158,-36.381],[-86.212,-36.469],[-86.271,-36.557],[-86.325,-36.645],[-86.492,-36.687],[-86.546,-36.775],[-86.604,-36.863],[-86.55,-36.996],[-86.604,-37.084],[-86.663,-37.171],[-86.717,-37.259],[-86.663,-37.392],[-86.721,-37.48],[-86.887,-37.522],[-86.946,-37.61],[-87,-37.697],[-87.058,-37.785],[-87.117,-37.872],[-87.175,-37.96],[-87.229,-38.047],[-87.287,-38.135],[-87.233,-38.269],[-87.292,-38.356],[-87.35,-38.444],[-87.404,-38.531],[-87.462,-38.619],[-87.638,-38.66],[-87.696,-38.748],[-87.979,-38.742],[-87.867,-38.789],[-88.037,-38.83],[-88.212,-38.871],[-88.383,-38.911],[-88.442,-38.999],[-88.617,-39.039],[-88.675,-39.126],[-88.85,-39.166],[-88.908,-39.254],[-88.971,-39.341],[-89.029,-39.428],[-89.092,-39.515],[-89.037,-39.649],[-89.096,-39.736],[-89.042,-39.87],[-89.104,-39.957],[-89.163,-40.044],[-89.225,-40.131],[-89.287,-40.218],[-89.462,-40.258],[-89.525,-40.345],[-89.7,-40.384],[-89.762,-40.471],[-89.942,-40.51],[-90.117,-40.549],[-90.296,-40.588],[-90.358,-40.674],[-90.537,-40.713],[-90.717,-40.751],[-90.779,-40.838],[-90.958,-40.876],[-91.021,-40.962],[-91.083,-41.048],[-91.267,-41.086],[-91.446,-41.123],[-91.625,-41.161],[-91.742,-41.111],[-91.921,-41.148],[-92.037,-41.099],[-92.217,-41.135],[-92.333,-41.085],[-92.512,-41.121],[-92.629,-41.071],[-92.921,-41.056],[-92.808,-41.107],[-92.988,-41.142],[-93.171,-41.177],[-93.238,-41.263],[-93.304,-41.348],[-93.488,-41.383],[-93.667,-41.417],[-93.738,-41.503],[-93.917,-41.537],[-94.1,-41.571],[-94.283,-41.605],[-94.467,-41.638],[-94.583,-41.586],[-94.767,-41.619],[-94.95,-41.652],[-95.063,-41.6],[-95.246,-41.632],[-95.358,-41.58],[-95.542,-41.612],[-95.658,-41.559],[-95.842,-41.591],[-95.954,-41.538],[-96.137,-41.569],[-96.321,-41.6],[-96.508,-41.63],[-96.579,-41.714],[-96.762,-41.745],[-96.875,-41.691],[-96.988,-41.637],[-97.1,-41.583],[-97.142,-41.445],[-97.067,-41.361],[-97.108,-41.223],[-97.038,-41.139],[-96.967,-41.056],[-96.783,-41.026],[-96.712,-40.942],[-96.642,-40.858],[-96.571,-40.774],[-96.5,-40.689],[-96.429,-40.606],[-96.358,-40.521],[-96.287,-40.437],[-96.217,-40.353],[-96.15,-40.269],[-96.187,-40.131],[-96.121,-40.047],[-96.05,-39.963],[-95.979,-39.878],[-95.913,-39.794],[-95.842,-39.709],[-95.775,-39.625],[-95.704,-39.541],[-95.746,-39.403],[-95.679,-39.319],[-95.5,-39.287],[-95.433,-39.202],[-95.363,-39.118],[-95.187,-39.086],[-95.121,-39.001],[-94.942,-38.969],[-94.875,-38.884],[-94.808,-38.799],[-94.742,-38.714],[-94.567,-38.682],[-94.5,-38.597],[-94.433,-38.512],[-94.475,-38.375],[-94.408,-38.29],[-94.342,-38.205],[-94.387,-38.067],[-94.321,-37.982],[-94.363,-37.845],[-94.404,-37.708],[-94.446,-37.571],[-94.488,-37.434],[-94.529,-37.296],[-94.571,-37.159],[-94.504,-37.074],[-94.546,-36.937],[-94.587,-36.799],[-94.525,-36.714],[-94.567,-36.577],[-94.5,-36.492],[-94.542,-36.355],[-94.583,-36.217],[-94.687,-36.165],[-94.729,-36.027],[-94.833,-35.975],[-94.871,-35.837],[-94.979,-35.784],[-95.083,-35.732],[-95.187,-35.679],[-95.292,-35.626],[-95.396,-35.573],[-95.5,-35.519],[-95.604,-35.466],[-95.642,-35.328],[-95.679,-35.19],[-95.717,-35.052],[-95.654,-34.968],[-95.587,-34.884],[-95.625,-34.746],[-95.562,-34.661],[-95.496,-34.577],[-95.433,-34.492],[-95.471,-34.354],[-95.404,-34.27],[-95.342,-34.185],[-95.275,-34.1],[-95.212,-34.016],[-95.15,-33.931],[-95.083,-33.846],[-95.021,-33.761],[-94.854,-33.729],[-94.792,-33.645],[-94.625,-33.613],[-94.562,-33.527],[-94.4,-33.495],[-94.337,-33.41],[-94.171,-33.377],[-94.108,-33.292],[-93.946,-33.259],[-93.883,-33.174],[-93.717,-33.14],[-93.654,-33.055],[-93.596,-32.969],[-93.533,-32.884],[-93.471,-32.799],[-93.408,-32.713],[-93.35,-32.628],[-93.288,-32.542],[-93.225,-32.457],[-93.167,-32.371],[-93.104,-32.286],[-93.042,-32.2],[-92.983,-32.114],[-92.921,-32.029],[-92.962,-31.891],[-92.9,-31.806],[-92.942,-31.669],[-92.883,-31.583],[-92.921,-31.446],[-92.962,-31.309],[-93.062,-31.257],[-93.104,-31.12],[-93.204,-31.068],[-93.242,-30.931],[-93.342,-30.879],[-93.383,-30.742],[-93.479,-30.69],[-93.521,-30.553],[-93.621,-30.501],[-93.658,-30.364],[-93.596,-30.278],[-93.637,-30.141],[-93.675,-30.003],[-93.617,-29.918],[-93.654,-29.781],[-93.592,-29.695],[-93.633,-29.558],[-93.671,-29.42],[-93.708,-29.283],[-93.65,-29.197],[-93.687,-29.06],[-93.725,-28.923],[-93.667,-28.837],[-93.608,-28.752],[-93.546,-28.666],[-93.488,-28.581],[-93.429,-28.496],[-93.371,-28.41]],[[-82.529,-15.573],[-82.479,-15.484],[-82.342,-15.442],[-82.2,-15.4],[-82.108,-15.446],[-81.967,-15.404],[-81.829,-15.361],[-81.738,-15.407],[-81.596,-15.365],[-81.458,-15.322],[-81.367,-15.369],[-81.225,-15.326],[-81.133,-15.372],[-81.042,-15.417],[-80.95,-15.463],[-80.904,-15.598],[-80.858,-15.732],[-80.812,-15.867],[-80.863,-15.955],[-80.817,-16.09],[-80.863,-16.178],[-80.913,-16.267],[-80.958,-16.356],[-81.008,-16.444],[-81.054,-16.533],[-81.1,-16.621],[-81.196,-16.576],[-81.333,-16.619],[-81.429,-16.573],[-81.521,-16.527],[-81.567,-16.392],[-81.658,-16.346],[-81.75,-16.3],[-81.842,-16.254],[-81.933,-16.208],[-82.029,-16.162],[-82.121,-16.116],[-82.163,-15.981],[-82.254,-15.935],[-82.35,-15.889],[-82.442,-15.843],[-82.483,-15.707],[-82.529,-15.573]],[[-80.687,-17.384],[-80.642,-17.295],[-80.5,-17.252],[-80.404,-17.298],[-80.267,-17.254],[-80.171,-17.299],[-80.079,-17.345],[-80.125,-17.433],[-80.175,-17.522],[-80.221,-17.611],[-80.267,-17.699],[-80.363,-17.654],[-80.454,-17.609],[-80.55,-17.564],[-80.642,-17.518],[-80.687,-17.384]],[[-83.888,-20.191],[-83.842,-20.103],[-83.792,-20.015],[-83.646,-19.973],[-83.554,-20.019],[-83.458,-20.066],[-83.363,-20.112],[-83.271,-20.159],[-83.225,-20.293],[-83.275,-20.381],[-83.321,-20.47],[-83.467,-20.512],[-83.562,-20.466],[-83.654,-20.419],[-83.75,-20.373],[-83.846,-20.326],[-83.888,-20.191]],[[-94.575,-39.844],[-94.508,-39.759],[-94.437,-39.674],[-94.329,-39.726],[-94.283,-39.863],[-94.242,-40],[-94.308,-40.085],[-94.417,-40.033],[-94.529,-39.981],[-94.575,-39.844]],[[-102.379,-18.181],[-102.321,-18.1],[-102.262,-18.019],[-102.204,-17.938],[-102.062,-17.914],[-102.004,-17.833],[-101.946,-17.752],[-101.887,-17.671],[-101.829,-17.59],[-101.771,-17.509],[-101.717,-17.428],[-101.571,-17.402],[-101.513,-17.321],[-101.458,-17.24],[-101.4,-17.158],[-101.254,-17.133],[-101.113,-17.107],[-101.054,-17.025],[-100.913,-16.999],[-100.854,-16.917],[-100.8,-16.836],[-100.742,-16.754],[-100.683,-16.672],[-100.717,-16.535],[-100.658,-16.454],[-100.604,-16.372],[-100.546,-16.29],[-100.492,-16.208],[-100.433,-16.126],[-100.292,-16.099],[-100.15,-16.072],[-100.008,-16.044],[-99.863,-16.017],[-99.721,-15.989],[-99.579,-15.961],[-99.433,-15.932],[-99.379,-15.85],[-99.325,-15.767],[-99.183,-15.739],[-99.125,-15.656],[-99.071,-15.574],[-99.017,-15.491],[-98.962,-15.408],[-98.996,-15.271],[-98.854,-15.242],[-98.708,-15.213],[-98.567,-15.184],[-98.425,-15.154],[-98.283,-15.125],[-98.142,-15.095],[-98,-15.065],[-97.858,-15.035],[-97.804,-14.952],[-97.663,-14.921],[-97.608,-14.838],[-97.467,-14.807],[-97.413,-14.724],[-97.271,-14.693],[-97.217,-14.609],[-97.163,-14.526],[-97.108,-14.442],[-97.058,-14.358],[-97.004,-14.274],[-96.95,-14.19],[-96.896,-14.106],[-96.842,-14.022],[-96.787,-13.939],[-96.738,-13.855],[-96.771,-13.718],[-96.717,-13.634],[-96.667,-13.551],[-96.525,-13.519],[-96.471,-13.435],[-96.417,-13.351],[-96.367,-13.266],[-96.225,-13.234],[-96.171,-13.15],[-96.033,-13.118],[-95.892,-13.085],[-95.75,-13.052],[-95.663,-13.104],[-95.525,-13.071],[-95.383,-13.038],[-95.242,-13.005],[-95.192,-12.921],[-95.05,-12.887],[-95,-12.802],[-94.858,-12.769],[-94.808,-12.684],[-94.667,-12.65],[-94.529,-12.616],[-94.387,-12.582],[-94.246,-12.548],[-94.158,-12.599],[-94.021,-12.565],[-93.933,-12.616],[-93.792,-12.581],[-93.704,-12.632],[-93.617,-12.683],[-93.525,-12.733],[-93.492,-12.869],[-93.4,-12.92],[-93.363,-13.056],[-93.275,-13.107],[-93.238,-13.243],[-93.292,-13.329],[-93.342,-13.414],[-93.396,-13.5],[-93.533,-13.534],[-93.587,-13.62],[-93.725,-13.654],[-93.867,-13.689],[-93.921,-13.774],[-93.971,-13.859],[-94.025,-13.944],[-94.075,-14.03],[-94.042,-14.166],[-94.004,-14.302],[-93.917,-14.354],[-93.825,-14.405],[-93.738,-14.456],[-93.596,-14.421],[-93.454,-14.387],[-93.404,-14.301],[-93.263,-14.267],[-93.208,-14.181],[-93.071,-14.146],[-93.017,-14.061],[-92.967,-13.975],[-92.825,-13.94],[-92.683,-13.905],[-92.596,-13.955],[-92.454,-13.92],[-92.367,-13.97],[-92.275,-14.02],[-92.187,-14.071],[-92.1,-14.121],[-91.958,-14.085],[-91.817,-14.049],[-91.729,-14.099],[-91.637,-14.149],[-91.55,-14.199],[-91.512,-14.336],[-91.421,-14.386],[-91.333,-14.436],[-91.242,-14.486],[-91.154,-14.536],[-91.062,-14.585],[-91.025,-14.722],[-90.937,-14.771],[-90.846,-14.821],[-90.758,-14.871],[-90.717,-15.007],[-90.629,-15.057],[-90.537,-15.107],[-90.45,-15.156],[-90.358,-15.206],[-90.267,-15.256],[-90.179,-15.305],[-90.137,-15.441],[-90.05,-15.491],[-90.008,-15.627],[-89.971,-15.763],[-90.021,-15.85],[-89.983,-15.986],[-90.033,-16.073],[-90.087,-16.16],[-90.137,-16.246],[-90.192,-16.333],[-90.333,-16.37],[-90.383,-16.457],[-90.346,-16.593],[-90.396,-16.68],[-90.45,-16.766],[-90.358,-16.816],[-90.321,-16.952],[-90.279,-17.089],[-90.242,-17.225],[-90.204,-17.362],[-90.254,-17.448],[-90.308,-17.535],[-90.358,-17.622],[-90.504,-17.659],[-90.646,-17.695],[-90.738,-17.645],[-90.829,-17.595],[-90.917,-17.545],[-90.958,-17.409],[-90.996,-17.272],[-91.033,-17.136],[-91.071,-16.999],[-91.108,-16.863],[-91.2,-16.813],[-91.292,-16.762],[-91.433,-16.799],[-91.525,-16.748],[-91.667,-16.784],[-91.808,-16.82],[-91.863,-16.906],[-91.913,-16.992],[-91.875,-17.129],[-91.837,-17.266],[-91.75,-17.316],[-91.708,-17.452],[-91.671,-17.589],[-91.725,-17.675],[-91.687,-17.812],[-91.742,-17.898],[-91.792,-17.984],[-91.846,-18.07],[-91.9,-18.156],[-91.954,-18.242],[-92.004,-18.329],[-92.058,-18.414],[-92.113,-18.501],[-92.075,-18.637],[-92.037,-18.774],[-92,-18.911],[-91.962,-19.048],[-91.871,-19.098],[-91.833,-19.235],[-91.796,-19.372],[-91.85,-19.458],[-91.812,-19.595],[-91.775,-19.731],[-91.683,-19.782],[-91.646,-19.919],[-91.554,-19.969],[-91.512,-20.106],[-91.421,-20.157],[-91.383,-20.293],[-91.437,-20.379],[-91.4,-20.516],[-91.454,-20.603],[-91.508,-20.689],[-91.562,-20.775],[-91.617,-20.861],[-91.762,-20.897],[-91.908,-20.932],[-92.054,-20.967],[-92.108,-21.053],[-92.163,-21.139],[-92.217,-21.225],[-92.179,-21.362],[-92.142,-21.499],[-92.104,-21.636],[-92.158,-21.722],[-92.217,-21.808],[-92.179,-21.945],[-92.233,-22.031],[-92.288,-22.117],[-92.342,-22.203],[-92.304,-22.34],[-92.358,-22.426],[-92.417,-22.512],[-92.379,-22.649],[-92.433,-22.735],[-92.488,-22.821],[-92.546,-22.906],[-92.6,-22.992],[-92.654,-23.078],[-92.804,-23.112],[-92.858,-23.198],[-92.917,-23.284],[-92.971,-23.37],[-93.029,-23.455],[-93.083,-23.541],[-93.142,-23.626],[-93.196,-23.712],[-93.254,-23.798],[-93.308,-23.883],[-93.367,-23.969],[-93.425,-24.054],[-93.575,-24.088],[-93.629,-24.173],[-93.783,-24.207],[-93.933,-24.24],[-94.083,-24.273],[-94.233,-24.306],[-94.383,-24.338],[-94.537,-24.371],[-94.687,-24.403],[-94.746,-24.488],[-94.896,-24.52],[-95.046,-24.552],[-95.142,-24.499],[-95.292,-24.531],[-95.442,-24.562],[-95.537,-24.509],[-95.629,-24.456],[-95.779,-24.487],[-95.875,-24.434],[-95.967,-24.381],[-96.058,-24.327],[-96.15,-24.273],[-96.187,-24.136],[-96.221,-23.998],[-96.254,-23.86],[-96.287,-23.722],[-96.229,-23.638],[-96.262,-23.5],[-96.204,-23.416],[-96.146,-23.332],[-96.179,-23.194],[-96.121,-23.11],[-96.154,-22.972],[-96.246,-22.918],[-96.337,-22.865],[-96.488,-22.895],[-96.579,-22.842],[-96.671,-22.788],[-96.821,-22.818],[-96.913,-22.764],[-97.062,-22.794],[-97.154,-22.74],[-97.246,-22.686],[-97.279,-22.548],[-97.371,-22.494],[-97.458,-22.44],[-97.492,-22.302],[-97.583,-22.248],[-97.617,-22.11],[-97.646,-21.972],[-97.679,-21.834],[-97.621,-21.751],[-97.562,-21.667],[-97.504,-21.584],[-97.45,-21.5],[-97.479,-21.362],[-97.425,-21.279],[-97.367,-21.195],[-97.308,-21.111],[-97.342,-20.974],[-97.375,-20.836],[-97.317,-20.753],[-97.35,-20.615],[-97.383,-20.477],[-97.325,-20.394],[-97.358,-20.256],[-97.3,-20.173],[-97.242,-20.089],[-97.187,-20.005],[-97.129,-19.922],[-97.163,-19.784],[-97.104,-19.7],[-97.137,-19.563],[-97.229,-19.509],[-97.317,-19.456],[-97.35,-19.318],[-97.442,-19.264],[-97.529,-19.211],[-97.621,-19.157],[-97.708,-19.103],[-97.796,-19.049],[-97.888,-18.995],[-97.975,-18.941],[-98.008,-18.804],[-98.096,-18.75],[-98.187,-18.696],[-98.275,-18.641],[-98.363,-18.587],[-98.45,-18.533],[-98.542,-18.479],[-98.683,-18.507],[-98.775,-18.453],[-98.863,-18.399],[-98.95,-18.344],[-99.096,-18.372],[-99.183,-18.318],[-99.271,-18.263],[-99.417,-18.291],[-99.504,-18.236],[-99.592,-18.181],[-99.825,-18.154],[-99.738,-18.209],[-99.883,-18.236],[-100.029,-18.263],[-100.175,-18.29],[-100.317,-18.317],[-100.462,-18.344],[-100.608,-18.37],[-100.696,-18.315],[-100.842,-18.341],[-100.929,-18.285],[-101.017,-18.23],[-101.104,-18.174],[-101.192,-18.118],[-101.337,-18.144],[-101.425,-18.088],[-101.567,-18.113],[-101.625,-18.194],[-101.683,-18.276],[-101.742,-18.357],[-101.712,-18.494],[-101.683,-18.631],[-101.654,-18.769],[-101.625,-18.906],[-101.596,-19.043],[-101.567,-19.181],[-101.538,-19.318],[-101.567,-19.537],[-101.654,-19.481],[-101.596,-19.4],[-101.508,-19.456],[-101.363,-19.431],[-101.275,-19.487],[-101.187,-19.543],[-101.042,-19.517],[-100.954,-19.574],[-100.863,-19.629],[-100.775,-19.685],[-100.629,-19.659],[-100.542,-19.715],[-100.454,-19.771],[-100.367,-19.826],[-100.275,-19.882],[-100.187,-19.938],[-100.1,-19.993],[-100.071,-20.131],[-100.129,-20.213],[-100.187,-20.295],[-100.333,-20.321],[-100.392,-20.403],[-100.45,-20.485],[-100.6,-20.511],[-100.746,-20.537],[-100.892,-20.563],[-101.042,-20.588],[-101.129,-20.532],[-101.217,-20.476],[-101.367,-20.501],[-101.454,-20.444],[-101.483,-20.306],[-101.571,-20.25],[-101.658,-20.194],[-101.687,-20.056],[-101.717,-19.918],[-101.746,-19.781],[-101.683,-19.699],[-101.712,-19.562],[-101.8,-19.506],[-101.946,-19.53],[-102.096,-19.554],[-102.183,-19.498],[-102.329,-19.522],[-102.417,-19.465],[-102.504,-19.408],[-102.529,-19.271],[-102.558,-19.133],[-102.588,-18.996],[-102.617,-18.858],[-102.642,-18.721],[-102.583,-18.64],[-102.613,-18.503],[-102.554,-18.422],[-102.496,-18.342],[-102.437,-18.261],[-102.379,-18.181]],[[-99.333,-20.353],[-99.183,-20.326],[-99.125,-20.243],[-99.158,-20.106],[-99.246,-20.051],[-99.337,-19.996],[-99.425,-19.941],[-99.571,-19.968],[-99.717,-19.995],[-99.863,-20.022],[-99.833,-20.159],[-99.746,-20.215],[-99.658,-20.27],[-99.567,-20.326],[-99.479,-20.381],[-99.333,-20.353]],[[-95.654,-19.972],[-95.6,-19.887],[-95.542,-19.803],[-95.488,-19.718],[-95.521,-19.581],[-95.558,-19.444],[-95.646,-19.391],[-95.738,-19.338],[-95.883,-19.37],[-96.029,-19.401],[-96.175,-19.432],[-96.229,-19.517],[-96.375,-19.548],[-96.433,-19.632],[-96.488,-19.716],[-96.546,-19.8],[-96.512,-19.937],[-96.479,-20.075],[-96.387,-20.128],[-96.354,-20.266],[-96.208,-20.235],[-96.117,-20.288],[-95.971,-20.257],[-95.913,-20.172],[-95.858,-20.088],[-95.712,-20.056],[-95.654,-19.972]],[[-93.667,-20.181],[-93.613,-20.096],[-93.558,-20.01],[-93.504,-19.925],[-93.45,-19.839],[-93.396,-19.754],[-93.304,-19.805],[-93.158,-19.771],[-93.067,-19.823],[-92.975,-19.874],[-92.883,-19.925],[-92.846,-20.062],[-92.754,-20.113],[-92.717,-20.251],[-92.683,-20.387],[-92.646,-20.524],[-92.554,-20.576],[-92.517,-20.712],[-92.479,-20.849],[-92.442,-20.986],[-92.496,-21.072],[-92.55,-21.158],[-92.696,-21.193],[-92.75,-21.279],[-92.808,-21.364],[-92.863,-21.45],[-92.917,-21.536],[-92.971,-21.621],[-93.029,-21.707],[-93.083,-21.792],[-93.229,-21.827],[-93.325,-21.775],[-93.417,-21.723],[-93.45,-21.586],[-93.396,-21.501],[-93.342,-21.415],[-93.379,-21.278],[-93.321,-21.192],[-93.267,-21.107],[-93.304,-20.97],[-93.342,-20.833],[-93.375,-20.696],[-93.467,-20.644],[-93.504,-20.507],[-93.596,-20.455],[-93.687,-20.404],[-93.725,-20.266],[-93.667,-20.181]],[[-100.725,-25.469],[-100.663,-25.387],[-100.6,-25.305],[-100.537,-25.223],[-100.383,-25.198],[-100.321,-25.116],[-100.258,-25.034],[-100.2,-24.952],[-100.137,-24.87],[-100.075,-24.788],[-99.921,-24.762],[-99.863,-24.68],[-99.708,-24.653],[-99.554,-24.627],[-99.404,-24.6],[-99.312,-24.656],[-99.221,-24.712],[-99.129,-24.767],[-99.1,-24.906],[-99.067,-25.044],[-99.037,-25.182],[-99.1,-25.265],[-99.158,-25.348],[-99.221,-25.431],[-99.192,-25.569],[-99.254,-25.651],[-99.408,-25.678],[-99.467,-25.761],[-99.529,-25.843],[-99.592,-25.926],[-99.654,-26.008],[-99.717,-26.09],[-99.871,-26.116],[-100.025,-26.142],[-100.179,-26.168],[-100.271,-26.111],[-100.425,-26.137],[-100.517,-26.08],[-100.671,-26.105],[-100.763,-26.048],[-100.854,-25.991],[-100.883,-25.852],[-100.913,-25.714],[-100.85,-25.632],[-100.788,-25.55],[-100.725,-25.469]],[[-102.779,-23.432],[-102.717,-23.352],[-102.654,-23.272],[-102.504,-23.249],[-102.417,-23.306],[-102.325,-23.364],[-102.238,-23.422],[-102.208,-23.56],[-102.271,-23.641],[-102.333,-23.722],[-102.488,-23.744],[-102.55,-23.825],[-102.7,-23.848],[-102.787,-23.79],[-102.879,-23.732],[-102.904,-23.593],[-102.842,-23.513],[-102.779,-23.432]],[[-106.929,-26.154],[-106.863,-26.076],[-106.796,-25.999],[-106.729,-25.921],[-106.575,-25.904],[-106.508,-25.827],[-106.354,-25.81],[-106.287,-25.732],[-106.133,-25.714],[-105.975,-25.697],[-105.913,-25.619],[-105.758,-25.601],[-105.692,-25.522],[-105.537,-25.504],[-105.471,-25.426],[-105.317,-25.407],[-105.25,-25.329],[-105.275,-25.19],[-105.208,-25.111],[-105.233,-24.972],[-105.167,-24.894],[-105.192,-24.755],[-105.212,-24.616],[-105.238,-24.477],[-105.171,-24.399],[-105.196,-24.26],[-105.133,-24.181],[-105.067,-24.103],[-105.004,-24.024],[-104.85,-24.004],[-104.787,-23.925],[-104.725,-23.846],[-104.658,-23.767],[-104.596,-23.688],[-104.533,-23.608],[-104.467,-23.529],[-104.317,-23.509],[-104.167,-23.488],[-104.079,-23.547],[-103.925,-23.526],[-103.837,-23.585],[-103.687,-23.564],[-103.6,-23.622],[-103.508,-23.681],[-103.421,-23.739],[-103.396,-23.878],[-103.458,-23.958],[-103.521,-24.038],[-103.583,-24.118],[-103.65,-24.198],[-103.8,-24.219],[-103.863,-24.299],[-103.929,-24.378],[-103.992,-24.458],[-103.967,-24.596],[-104.029,-24.676],[-104.096,-24.756],[-104.158,-24.835],[-104.225,-24.915],[-104.2,-25.053],[-104.262,-25.133],[-104.329,-25.212],[-104.304,-25.351],[-104.217,-25.411],[-104.125,-25.47],[-103.971,-25.449],[-103.817,-25.429],[-103.729,-25.488],[-103.575,-25.467],[-103.483,-25.526],[-103.329,-25.504],[-103.242,-25.563],[-103.15,-25.622],[-103.062,-25.68],[-102.971,-25.739],[-102.946,-25.877],[-102.921,-26.016],[-102.896,-26.155],[-102.867,-26.294],[-102.933,-26.374],[-102.996,-26.455],[-103.062,-26.535],[-103.129,-26.615],[-103.192,-26.695],[-103.258,-26.776],[-103.325,-26.856],[-103.387,-26.936],[-103.454,-27.016],[-103.429,-27.155],[-103.496,-27.235],[-103.562,-27.315],[-103.471,-27.374],[-103.446,-27.513],[-103.354,-27.572],[-103.262,-27.631],[-103.171,-27.69],[-103.079,-27.749],[-102.988,-27.807],[-102.896,-27.866],[-102.742,-27.844],[-102.583,-27.822],[-102.517,-27.742],[-102.358,-27.72],[-102.204,-27.697],[-102.113,-27.755],[-101.954,-27.732],[-101.796,-27.709],[-101.704,-27.767],[-101.546,-27.744],[-101.454,-27.801],[-101.296,-27.778],[-101.204,-27.835],[-101.113,-27.893],[-101.021,-27.95],[-100.929,-28.007],[-100.833,-28.065],[-100.742,-28.122],[-100.712,-28.261],[-100.683,-28.4],[-100.654,-28.539],[-100.625,-28.678],[-100.6,-28.816],[-100.571,-28.955],[-100.475,-29.012],[-100.383,-29.069],[-100.287,-29.126],[-100.129,-29.101],[-100.062,-29.019],[-100,-28.937],[-99.842,-28.911],[-99.775,-28.829],[-99.712,-28.747],[-99.646,-28.664],[-99.488,-28.638],[-99.425,-28.556],[-99.454,-28.417],[-99.392,-28.334],[-99.329,-28.252],[-99.296,-28.031],[-99.325,-27.892],[-99.354,-27.753],[-99.512,-27.78],[-99.671,-27.806],[-99.733,-27.888],[-99.704,-28.027],[-99.608,-28.083],[-99.517,-28.14],[-99.358,-28.113],[-99.267,-28.169],[-99.108,-28.143],[-99.012,-28.199],[-98.854,-28.172],[-98.763,-28.227],[-98.667,-28.283],[-98.508,-28.256],[-98.417,-28.311],[-98.383,-28.45],[-98.354,-28.588],[-98.321,-28.727],[-98.287,-28.866],[-98.258,-29.004],[-98.321,-29.087],[-98.225,-29.142],[-98.192,-29.281],[-98.163,-29.42],[-98.067,-29.475],[-97.971,-29.53],[-97.875,-29.585],[-97.779,-29.641],[-97.746,-29.779],[-97.712,-29.917],[-97.679,-30.056],[-97.838,-30.084],[-97.904,-30.168],[-98.062,-30.196],[-98.225,-30.224],[-98.321,-30.168],[-98.479,-30.196],[-98.575,-30.14],[-98.738,-30.167],[-98.833,-30.111],[-98.992,-30.138],[-99.087,-30.082],[-99.25,-30.109],[-99.346,-30.052],[-99.504,-30.079],[-99.6,-30.022],[-99.696,-29.966],[-99.792,-29.909],[-99.887,-29.853],[-99.979,-29.796],[-100.075,-29.739],[-100.171,-29.682],[-100.267,-29.625],[-100.358,-29.568],[-100.521,-29.593],[-100.583,-29.675],[-100.65,-29.757],[-100.717,-29.838],[-100.879,-29.863],[-100.942,-29.944],[-101.008,-30.026],[-101.075,-30.107],[-101.142,-30.189],[-101.208,-30.271],[-101.275,-30.352],[-101.342,-30.433],[-101.504,-30.457],[-101.571,-30.538],[-101.733,-30.561],[-101.896,-30.584],[-102.058,-30.607],[-102.125,-30.687],[-102.192,-30.768],[-102.096,-30.827],[-102.004,-30.885],[-101.975,-31.024],[-101.883,-31.083],[-101.854,-31.222],[-101.758,-31.281],[-101.733,-31.42],[-101.704,-31.559],[-101.608,-31.617],[-101.583,-31.757],[-101.554,-31.896],[-101.529,-32.035],[-101.596,-32.117],[-101.567,-32.256],[-101.638,-32.337],[-101.704,-32.418],[-101.775,-32.499],[-101.846,-32.581],[-101.913,-32.661],[-101.983,-32.742],[-102.05,-32.823],[-102.025,-32.963],[-102.096,-33.044],[-102.167,-33.125],[-102.137,-33.264],[-102.208,-33.345],[-102.279,-33.426],[-102.25,-33.565],[-102.321,-33.646],[-102.392,-33.727],[-102.462,-33.807],[-102.533,-33.888],[-102.704,-33.91],[-102.775,-33.99],[-102.846,-34.071],[-103.012,-34.091],[-103.087,-34.172],[-103.254,-34.192],[-103.425,-34.213],[-103.592,-34.233],[-103.762,-34.253],[-103.833,-34.332],[-104.004,-34.352],[-104.079,-34.432],[-104.246,-34.451],[-104.321,-34.53],[-104.492,-34.549],[-104.513,-34.409],[-104.442,-34.329],[-104.462,-34.189],[-104.392,-34.11],[-104.317,-34.031],[-104.342,-33.891],[-104.437,-33.83],[-104.604,-33.849],[-104.679,-33.928],[-104.846,-33.946],[-104.921,-34.025],[-105.087,-34.043],[-105.163,-34.122],[-105.333,-34.139],[-105.5,-34.157],[-105.575,-34.235],[-105.746,-34.252],[-105.913,-34.269],[-106.083,-34.285],[-106.179,-34.223],[-106.275,-34.161],[-106.367,-34.099],[-106.462,-34.036],[-106.558,-33.974],[-106.575,-33.834],[-106.671,-33.771],[-106.762,-33.709],[-106.783,-33.569],[-106.879,-33.506],[-106.896,-33.366],[-106.988,-33.304],[-107.083,-33.241],[-107.175,-33.178],[-107.196,-33.038],[-107.287,-32.975],[-107.304,-32.835],[-107.229,-32.758],[-107.25,-32.618],[-107.175,-32.54],[-107.196,-32.4],[-107.121,-32.323],[-107.137,-32.183],[-107.067,-32.106],[-107.083,-31.966],[-107.104,-31.826],[-107.121,-31.686],[-107.212,-31.623],[-107.233,-31.483],[-107.25,-31.343],[-107.271,-31.204],[-107.287,-31.064],[-107.308,-30.924],[-107.233,-30.847],[-107.254,-30.707],[-107.346,-30.644],[-107.363,-30.504],[-107.454,-30.442],[-107.471,-30.302],[-107.562,-30.239],[-107.579,-30.1],[-107.671,-30.037],[-107.687,-29.897],[-107.779,-29.835],[-107.796,-29.695],[-107.887,-29.632],[-107.904,-29.492],[-107.996,-29.43],[-108.012,-29.29],[-108.029,-29.151],[-108.05,-29.011],[-108.067,-28.871],[-108.083,-28.732],[-108.104,-28.592],[-108.121,-28.453],[-108.05,-28.376],[-108.067,-28.237],[-108,-28.16],[-107.929,-28.084],[-107.858,-28.007],[-107.787,-27.93],[-107.629,-27.916],[-107.562,-27.839],[-107.492,-27.761],[-107.425,-27.684],[-107.442,-27.545],[-107.375,-27.468],[-107.304,-27.391],[-107.237,-27.314],[-107.167,-27.236],[-107.187,-27.097],[-107.208,-26.958],[-107.142,-26.881],[-107.071,-26.803],[-107.092,-26.664],[-107.025,-26.587],[-107.046,-26.447],[-107.067,-26.309],[-106.996,-26.231],[-106.929,-26.154]],[[-108.913,-40.18],[-108.829,-40.104],[-108.746,-40.028],[-108.658,-39.951],[-108.475,-39.94],[-108.375,-40.004],[-108.275,-40.069],[-108.263,-40.209],[-108.246,-40.35],[-108.146,-40.414],[-108.042,-40.479],[-107.942,-40.543],[-107.758,-40.53],[-107.654,-40.594],[-107.471,-40.581],[-107.367,-40.644],[-107.267,-40.707],[-107.162,-40.771],[-107.146,-40.912],[-107.229,-40.989],[-107.212,-41.13],[-107.296,-41.207],[-107.379,-41.284],[-107.467,-41.361],[-107.654,-41.374],[-107.842,-41.387],[-108.029,-41.4],[-108.129,-41.336],[-108.317,-41.348],[-108.421,-41.284],[-108.521,-41.219],[-108.621,-41.154],[-108.725,-41.09],[-108.825,-41.025],[-108.925,-40.96],[-108.942,-40.819],[-108.954,-40.678],[-108.971,-40.537],[-108.983,-40.397],[-109,-40.256],[-108.913,-40.18]],[[-99.375,-43.22],[-99.3,-43.137],[-99.225,-43.055],[-99.033,-43.028],[-98.846,-43.001],[-98.654,-42.974],[-98.542,-43.029],[-98.35,-43.001],[-98.238,-43.056],[-98.05,-43.028],[-97.933,-43.083],[-97.821,-43.137],[-97.704,-43.192],[-97.663,-43.33],[-97.625,-43.468],[-97.696,-43.552],[-97.658,-43.689],[-97.617,-43.827],[-97.692,-43.911],[-97.575,-43.965],[-97.533,-44.103],[-97.417,-44.157],[-97.375,-44.295],[-97.329,-44.432],[-97.287,-44.57],[-97.246,-44.708],[-97.321,-44.791],[-97.275,-44.929],[-97.233,-45.067],[-97.187,-45.204],[-97.146,-45.342],[-97.1,-45.479],[-97.179,-45.563],[-97.254,-45.646],[-97.329,-45.73],[-97.529,-45.76],[-97.725,-45.789],[-97.921,-45.818],[-98.042,-45.764],[-98.242,-45.792],[-98.363,-45.738],[-98.479,-45.683],[-98.679,-45.711],[-98.796,-45.656],[-98.917,-45.6],[-99.037,-45.545],[-99.233,-45.572],[-99.35,-45.516],[-99.471,-45.46],[-99.587,-45.404],[-99.704,-45.348],[-99.746,-45.209],[-99.783,-45.071],[-99.821,-44.932],[-99.858,-44.793],[-99.892,-44.655],[-99.812,-44.573],[-99.85,-44.434],[-99.771,-44.352],[-99.696,-44.269],[-99.617,-44.187],[-99.654,-44.048],[-99.575,-43.966],[-99.496,-43.883],[-99.533,-43.745],[-99.458,-43.662],[-99.496,-43.524],[-99.417,-43.441],[-99.454,-43.302],[-99.375,-43.22]],[[-111.183,-46.448],[-111.087,-46.374],[-110.992,-46.3],[-110.787,-46.292],[-110.687,-46.218],[-110.483,-46.21],[-110.387,-46.135],[-110.183,-46.127],[-110.092,-46.052],[-109.887,-46.043],[-109.683,-46.033],[-109.575,-46.099],[-109.371,-46.089],[-109.263,-46.154],[-109.246,-46.296],[-109.138,-46.361],[-109.029,-46.426],[-109.013,-46.567],[-108.996,-46.708],[-108.979,-46.849],[-108.962,-46.99],[-109.058,-47.066],[-109.046,-47.207],[-109.142,-47.282],[-109.238,-47.358],[-109.333,-47.434],[-109.429,-47.51],[-109.525,-47.585],[-109.625,-47.661],[-109.721,-47.736],[-109.929,-47.745],[-110.142,-47.754],[-110.254,-47.688],[-110.363,-47.622],[-110.475,-47.555],[-110.583,-47.489],[-110.596,-47.348],[-110.708,-47.281],[-110.817,-47.214],[-110.829,-47.073],[-110.937,-47.006],[-110.946,-46.865],[-111.054,-46.798],[-111.067,-46.657],[-111.175,-46.59],[-111.183,-46.448]],[[-127.212,-50.313],[-127.179,-50.174],[-127.05,-50.116],[-126.925,-50.058],[-126.8,-50],[-126.671,-49.942],[-126.454,-49.964],[-126.362,-50.045],[-126.271,-50.126],[-126.179,-50.207],[-126.212,-50.346],[-126.121,-50.427],[-126.154,-50.567],[-126.062,-50.647],[-126.096,-50.787],[-126.129,-50.927],[-126.258,-50.986],[-126.292,-51.125],[-126.421,-51.184],[-126.642,-51.161],[-126.867,-51.138],[-127.087,-51.115],[-127.179,-51.033],[-127.271,-50.952],[-127.362,-50.87],[-127.454,-50.788],[-127.417,-50.649],[-127.379,-50.51],[-127.342,-50.371],[-127.212,-50.313]],[[-117.437,-50.659],[-117.321,-50.59],[-117.1,-50.594],[-116.983,-50.526],[-116.763,-50.529],[-116.654,-50.602],[-116.433,-50.605],[-116.321,-50.677],[-116.1,-50.679],[-115.988,-50.751],[-115.879,-50.822],[-115.767,-50.894],[-115.542,-50.895],[-115.433,-50.966],[-115.321,-51.037],[-115.096,-51.038],[-114.983,-51.109],[-114.758,-51.109],[-114.533,-51.108],[-114.308,-51.107],[-114.083,-51.105],[-113.858,-51.104],[-113.633,-51.101],[-113.517,-51.171],[-113.292,-51.168],[-113.067,-51.164],[-112.842,-51.161],[-112.725,-51.229],[-112.608,-51.298],[-112.383,-51.293],[-112.158,-51.288],[-112.037,-51.356],[-111.812,-51.35],[-111.696,-51.418],[-111.467,-51.411],[-111.242,-51.405],[-111.125,-51.472],[-110.896,-51.464],[-110.779,-51.531],[-110.55,-51.523],[-110.429,-51.589],[-110.204,-51.581],[-110.083,-51.647],[-109.962,-51.713],[-109.837,-51.778],[-109.613,-51.769],[-109.629,-51.628],[-109.521,-51.552],[-109.417,-51.477],[-109.313,-51.401],[-109.208,-51.326],[-109.104,-51.25],[-109.004,-51.174],[-108.9,-51.098],[-108.675,-51.087],[-108.571,-51.01],[-108.35,-50.998],[-108.125,-50.986],[-107.904,-50.973],[-107.779,-51.037],[-107.658,-51.101],[-107.533,-51.164],[-107.413,-51.227],[-107.287,-51.291],[-107.263,-51.431],[-107.137,-51.494],[-107.117,-51.634],[-107.092,-51.775],[-107.192,-51.852],[-107.167,-51.992],[-107.142,-52.133],[-107.246,-52.21],[-107.346,-52.287],[-107.45,-52.364],[-107.679,-52.378],[-107.808,-52.315],[-108.037,-52.328],[-108.142,-52.404],[-108.496,-52.352],[-108.371,-52.417],[-108.604,-52.429],[-108.708,-52.505],[-108.812,-52.581],[-108.921,-52.657],[-109.025,-52.733],[-109.133,-52.809],[-109.367,-52.819],[-109.346,-52.96],[-109.454,-53.036],[-109.329,-53.101],[-109.204,-53.166],[-109.183,-53.307],[-109.054,-53.371],[-109.037,-53.512],[-109.146,-53.588],[-109.125,-53.729],[-109.233,-53.804],[-109.212,-53.945],[-109.325,-54.021],[-109.433,-54.096],[-109.417,-54.237],[-109.525,-54.312],[-109.637,-54.388],[-109.75,-54.463],[-109.992,-54.473],[-110.233,-54.482],[-110.346,-54.557],[-110.592,-54.566],[-110.717,-54.499],[-110.846,-54.433],[-111.087,-54.441],[-111.217,-54.374],[-111.346,-54.307],[-111.587,-54.314],[-111.829,-54.32],[-112.071,-54.326],[-112.312,-54.331],[-112.429,-54.404],[-112.546,-54.477],[-112.663,-54.55],[-112.904,-54.554],[-113.025,-54.627],[-113.142,-54.699],[-113.262,-54.771],[-113.379,-54.844],[-113.5,-54.916],[-113.621,-54.988],[-113.742,-55.06],[-113.863,-55.131],[-114.108,-55.133],[-114.229,-55.205],[-114.354,-55.276],[-114.475,-55.348],[-114.6,-55.419],[-114.721,-55.489],[-114.846,-55.56],[-114.971,-55.631],[-115.096,-55.702],[-115.221,-55.772],[-115.346,-55.843],[-115.346,-55.984],[-115.471,-56.054],[-115.471,-56.196],[-115.6,-56.266],[-115.6,-56.407],[-115.729,-56.477],[-115.729,-56.618],[-115.858,-56.688],[-115.988,-56.758],[-115.992,-56.899],[-116.121,-56.969],[-116.379,-56.966],[-116.642,-56.964],[-116.9,-56.961],[-117.025,-56.888],[-117.283,-56.884],[-117.408,-56.811],[-117.533,-56.739],[-117.658,-56.666],[-117.917,-56.66],[-118.037,-56.587],[-118.296,-56.581],[-118.55,-56.574],[-118.683,-56.642],[-118.942,-56.634],[-119.075,-56.701],[-119.333,-56.693],[-119.471,-56.759],[-119.608,-56.826],[-119.742,-56.892],[-119.879,-56.958],[-119.896,-57.099],[-119.775,-57.174],[-119.654,-57.249],[-119.529,-57.324],[-119.271,-57.332],[-119.146,-57.406],[-119.021,-57.481],[-118.758,-57.488],[-118.633,-57.562],[-118.371,-57.569],[-118.246,-57.642],[-117.979,-57.648],[-117.717,-57.653],[-117.454,-57.658],[-117.317,-57.59],[-117.054,-57.594],[-116.792,-57.597],[-116.529,-57.6],[-116.267,-57.602],[-116.133,-57.674],[-116.004,-57.746],[-115.871,-57.817],[-115.875,-57.958],[-115.875,-58.099],[-115.875,-58.24],[-116.012,-58.31],[-116.146,-58.379],[-116.417,-58.377],[-116.55,-58.447],[-116.821,-58.444],[-116.958,-58.512],[-117.229,-58.509],[-117.5,-58.505],[-117.638,-58.573],[-117.908,-58.568],[-118.179,-58.562],[-118.45,-58.556],[-118.587,-58.623],[-118.858,-58.616],[-119,-58.683],[-119.271,-58.676],[-119.417,-58.742],[-119.558,-58.808],[-119.833,-58.799],[-119.975,-58.865],[-120.121,-58.931],[-120.267,-58.996],[-120.412,-59.062],[-120.558,-59.127],[-120.708,-59.192],[-120.854,-59.257],[-121.004,-59.322],[-121.15,-59.386],[-121.429,-59.374],[-121.554,-59.297],[-121.829,-59.285],[-121.954,-59.208],[-122.229,-59.194],[-122.354,-59.117],[-122.475,-59.04],[-122.6,-58.962],[-122.721,-58.884],[-123.112,-58.791],[-122.992,-58.869],[-123.262,-58.854],[-123.533,-58.838],[-123.804,-58.821],[-123.958,-58.882],[-124.229,-58.864],[-124.5,-58.846],[-124.617,-58.767],[-124.583,-58.627],[-124.7,-58.547],[-124.662,-58.407],[-124.629,-58.267],[-124.742,-58.188],[-124.708,-58.048],[-124.671,-57.908],[-124.637,-57.767],[-124.604,-57.627],[-124.567,-57.487],[-124.421,-57.426],[-124.388,-57.286],[-124.242,-57.225],[-124.096,-57.164],[-124.062,-57.024],[-123.917,-56.962],[-123.775,-56.901],[-123.742,-56.76],[-123.6,-56.699],[-123.567,-56.558],[-123.425,-56.496],[-123.283,-56.434],[-123.142,-56.372],[-123.004,-56.309],[-122.862,-56.247],[-122.721,-56.184],[-122.583,-56.121],[-122.329,-56.136],[-122.192,-56.073],[-122.054,-56.009],[-121.917,-55.945],[-121.662,-55.958],[-121.529,-55.894],[-121.392,-55.83],[-121.254,-55.766],[-121.121,-55.701],[-120.983,-55.637],[-120.85,-55.572],[-120.717,-55.507],[-120.583,-55.442],[-120.45,-55.377],[-120.2,-55.387],[-120.067,-55.322],[-119.933,-55.256],[-119.804,-55.19],[-119.671,-55.124],[-119.542,-55.058],[-119.412,-54.992],[-119.396,-54.851],[-119.383,-54.709],[-119.367,-54.568],[-119.354,-54.427],[-119.467,-54.352],[-119.454,-54.211],[-119.437,-54.07],[-119.425,-53.929],[-119.408,-53.788],[-119.396,-53.647],[-119.267,-53.58],[-119.142,-53.514],[-119.129,-53.372],[-119.004,-53.306],[-118.879,-53.239],[-118.867,-53.098],[-118.746,-53.031],[-118.621,-52.964],[-118.5,-52.897],[-118.487,-52.755],[-118.367,-52.688],[-118.246,-52.621],[-118.121,-52.553],[-118,-52.485],[-117.879,-52.417],[-117.871,-52.276],[-117.863,-52.135],[-117.854,-51.993],[-117.846,-51.852],[-117.837,-51.711],[-117.829,-51.569],[-117.937,-51.496],[-117.929,-51.355],[-117.808,-51.287],[-117.8,-51.146],[-117.792,-51.004],[-117.675,-50.936],[-117.563,-50.868],[-117.554,-50.727],[-117.437,-50.659]],[[-129.654,-59.257],[-129.488,-59.202],[-129.325,-59.147],[-129.054,-59.175],[-128.896,-59.119],[-128.733,-59.064],[-128.571,-59.008],[-128.304,-59.034],[-128.033,-59.06],[-127.921,-59.142],[-127.808,-59.224],[-127.858,-59.364],[-127.908,-59.503],[-127.958,-59.642],[-128.121,-59.698],[-128.283,-59.755],[-128.337,-59.894],[-128.5,-59.95],[-128.779,-59.923],[-128.942,-59.979],[-129.221,-59.951],[-129.496,-59.923],[-129.604,-59.84],[-129.712,-59.756],[-129.825,-59.672],[-129.929,-59.589],[-129.875,-59.45],[-129.708,-59.396],[-129.654,-59.257]],[[-159.212,-62.742],[-158.996,-62.728],[-158.779,-62.714],[-158.563,-62.701],[-158.317,-62.785],[-158.1,-62.77],[-157.85,-62.854],[-157.633,-62.839],[-157.383,-62.922],[-157.129,-63.004],[-157.096,-63.103],[-156.837,-63.185],[-156.8,-63.283],[-156.763,-63.382],[-156.725,-63.481],[-156.687,-63.579],[-156.65,-63.677],[-156.612,-63.776],[-156.571,-63.875],[-156.533,-63.973],[-156.492,-64.072],[-156.679,-64.187],[-156.867,-64.303],[-157.058,-64.418],[-157.246,-64.533],[-157.437,-64.648],[-157.633,-64.762],[-157.867,-64.778],[-158.063,-64.892],[-158.025,-64.991],[-158.225,-65.104],[-158.458,-65.119],[-158.663,-65.232],[-158.9,-65.246],[-159.104,-65.358],[-159.342,-65.371],[-159.579,-65.384],[-159.787,-65.496],[-160.025,-65.508],[-160.262,-65.52],[-160.475,-65.631],[-160.717,-65.642],[-160.958,-65.652],[-161.2,-65.663],[-161.442,-65.672],[-161.679,-65.682],[-161.921,-65.691],[-162.183,-65.601],[-162.425,-65.609],[-162.667,-65.617],[-162.908,-65.625],[-163.15,-65.632],[-163.392,-65.639],[-163.633,-65.646],[-163.875,-65.652],[-164.117,-65.657],[-164.358,-65.663],[-164.6,-65.668],[-164.842,-65.673],[-165.083,-65.677],[-165.337,-65.581],[-165.579,-65.585],[-165.821,-65.588],[-166.058,-65.591],[-166.3,-65.593],[-166.538,-65.695],[-166.783,-65.697],[-167.021,-65.798],[-167.267,-65.799],[-167.508,-65.8],[-167.75,-65.7],[-167.75,-65.6],[-167.75,-65.5],[-167.75,-65.4],[-167.75,-65.3],[-167.75,-65.2],[-167.517,-65.1],[-167.279,-64.999],[-167.042,-64.998],[-166.808,-64.897],[-166.575,-64.895],[-166.337,-64.893],[-166.104,-64.891],[-165.867,-64.888],[-165.633,-64.885],[-165.396,-64.882],[-165.171,-64.778],[-164.946,-64.674],[-164.712,-64.669],[-164.492,-64.564],[-164.275,-64.459],[-164.054,-64.354],[-163.825,-64.348],[-163.608,-64.242],[-163.379,-64.236],[-163.167,-64.129],[-162.937,-64.121],[-162.729,-64.014],[-162.5,-64.006],[-162.271,-63.998],[-162.046,-63.989],[-161.817,-63.98],[-161.592,-63.971],[-161.342,-64.061],[-161.117,-64.051],[-160.887,-64.04],[-160.662,-64.029],[-160.458,-63.919],[-160.487,-63.819],[-160.513,-63.72],[-160.538,-63.621],[-160.783,-63.532],[-160.808,-63.433],[-160.833,-63.334],[-160.854,-63.234],[-160.879,-63.135],[-160.683,-63.024],[-160.487,-62.914],[-160.296,-62.803],[-160.079,-62.792],[-159.862,-62.78],[-159.671,-62.668],[-159.429,-62.754],[-159.212,-62.742]],[[-176.2,-63.957],[-175.975,-63.97],[-175.75,-63.983],[-175.525,-63.995],[-175.325,-64.106],[-175.096,-64.118],[-174.892,-64.228],[-174.667,-64.239],[-174.458,-64.349],[-174.254,-64.459],[-174.275,-64.558],[-174.067,-64.668],[-174.092,-64.767],[-174.112,-64.867],[-174.137,-64.966],[-174.162,-65.066],[-174.183,-65.165],[-174.208,-65.265],[-174.471,-65.354],[-174.733,-65.443],[-175,-65.531],[-175.267,-65.619],[-175.508,-65.607],[-175.75,-65.595],[-176.017,-65.682],[-176.258,-65.669],[-176.5,-65.656],[-176.737,-65.642],[-176.946,-65.529],[-177.183,-65.514],[-177.383,-65.401],[-177.35,-65.302],[-177.313,-65.203],[-177.279,-65.104],[-177.246,-65.005],[-176.975,-64.921],[-176.942,-64.822],[-176.908,-64.723],[-176.875,-64.624],[-176.846,-64.525],[-176.813,-64.426],[-176.779,-64.327],[-176.746,-64.228],[-176.717,-64.129],[-176.458,-64.043],[-176.2,-63.957]],[[-176.263,-62.642],[-176.046,-62.655],[-175.833,-62.668],[-175.642,-62.78],[-175.45,-62.891],[-175.479,-62.99],[-175.721,-63.077],[-175.75,-63.177],[-176,-63.263],[-176.217,-63.25],[-176.408,-63.138],[-176.596,-63.025],[-176.567,-62.926],[-176.537,-62.827],[-176.508,-62.728],[-176.263,-62.642]],[[170.346,-57.736],[170.525,-57.769],[170.7,-57.801],[170.879,-57.834],[170.996,-57.961],[171.113,-58.088],[171.233,-58.214],[171.171,-58.309],[171.292,-58.436],[171.229,-58.53],[171.35,-58.657],[171.475,-58.783],[171.658,-58.815],[171.779,-58.941],[171.962,-58.972],[172.15,-59.002],[172.333,-59.033],[172.521,-59.063],[172.704,-59.093],[172.892,-59.122],[173.133,-59.056],[173.321,-59.085],[173.504,-59.114],[173.746,-59.046],[173.933,-59.074],[174.121,-59.102],[174.363,-59.033],[174.55,-59.06],[174.737,-59.087],[174.925,-59.114],[175.112,-59.14],[175.3,-59.166],[175.488,-59.192],[175.625,-59.314],[175.817,-59.339],[176.004,-59.364],[176.146,-59.486],[176.338,-59.51],[176.483,-59.631],[176.675,-59.656],[176.867,-59.679],[177.058,-59.702],[177.25,-59.726],[177.446,-59.749],[177.683,-59.674],[177.875,-59.696],[178.113,-59.62],[178.304,-59.642],[178.5,-59.663],[178.733,-59.586],[178.888,-59.704],[179.079,-59.725],[179.233,-59.843],[179.196,-59.941],[179.35,-60.059],[179.308,-60.157],[179.467,-60.275],[179.429,-60.373],[179.388,-60.471],[179.15,-60.549],[179.108,-60.647],[179.067,-60.745],[179.025,-60.842],[178.983,-60.941],[179.142,-61.059],[179.346,-61.079],[179.55,-61.098],[179.792,-61.019],[179.992,-61.039],[-179.842,-61.156],[-179.675,-61.272],[-179.508,-61.389],[-179.342,-61.505],[-179.171,-61.621],[-179,-61.737],[-178.829,-61.853],[-178.654,-61.968],[-178.446,-61.985],[-178.271,-62.1],[-178.304,-62.199],[-178.342,-62.297],[-178.375,-62.396],[-178.625,-62.478],[-178.658,-62.577],[-178.912,-62.658],[-178.95,-62.757],[-179.204,-62.838],[-179.242,-62.936],[-179.279,-63.034],[-179.321,-63.133],[-179.358,-63.231],[-179.179,-63.348],[-179.221,-63.446],[-179.258,-63.544],[-179.3,-63.643],[-179.337,-63.741],[-179.6,-63.821],[-179.867,-63.901],[179.867,-63.981],[179.642,-63.961],[179.375,-64.04],[179.15,-64.02],[178.929,-64],[178.704,-63.979],[178.529,-63.86],[178.308,-63.839],[178.088,-63.817],[177.867,-63.796],[177.646,-63.774],[177.475,-63.654],[177.258,-63.631],[177.038,-63.608],[176.875,-63.487],[176.708,-63.366],[176.492,-63.342],[176.329,-63.221],[176.117,-63.196],[175.9,-63.172],[175.687,-63.147],[175.475,-63.121],[175.258,-63.095],[174.988,-63.166],[174.775,-63.139],[174.5,-63.209],[174.288,-63.181],[174.075,-63.154],[173.863,-63.126],[173.712,-63.002],[173.567,-62.878],[173.417,-62.753],[173.688,-62.686],[173.75,-62.59],[173.813,-62.494],[174.079,-62.426],[174.346,-62.357],[174.404,-62.261],[174.463,-62.165],[174.521,-62.069],[174.433,-61.849],[174.375,-61.945],[174.229,-61.822],[174.083,-61.698],[173.879,-61.67],[173.679,-61.642],[173.475,-61.614],[173.275,-61.585],[173.075,-61.556],[172.813,-61.622],[172.613,-61.592],[172.413,-61.562],[172.208,-61.532],[171.946,-61.597],[171.746,-61.566],[171.546,-61.534],[171.35,-61.503],[171.15,-61.471],[170.95,-61.439],[170.754,-61.407],[170.554,-61.374],[170.429,-61.247],[170.233,-61.214],[170.038,-61.18],[169.842,-61.146],[169.646,-61.113],[169.521,-60.984],[169.329,-60.95],[169.138,-60.915],[168.946,-60.88],[168.75,-60.845],[168.488,-60.903],[168.413,-60.996],[168.146,-61.053],[168.071,-61.146],[167.8,-61.203],[167.725,-61.296],[167.454,-61.352],[167.375,-61.445],[167.104,-61.5],[166.829,-61.554],[166.554,-61.608],[166.475,-61.701],[166.2,-61.754],[165.921,-61.807],[165.838,-61.899],[165.754,-61.991],[165.471,-62.042],[165.192,-62.094],[164.908,-62.145],[164.625,-62.195],[164.342,-62.245],[164.058,-62.294],[163.862,-62.252],[163.579,-62.3],[163.383,-62.257],[163.096,-62.304],[162.808,-62.351],[162.617,-62.307],[162.329,-62.353],[162.038,-62.398],[161.75,-62.442],[161.558,-62.397],[161.267,-62.441],[161.075,-62.395],[160.783,-62.437],[160.592,-62.391],[160.3,-62.432],[160.112,-62.385],[159.821,-62.426],[159.629,-62.378],[159.338,-62.418],[159.15,-62.369],[158.963,-62.321],[158.667,-62.359],[158.483,-62.31],[158.296,-62.26],[158.108,-62.211],[157.925,-62.161],[157.738,-62.111],[157.446,-62.146],[157.154,-62.181],[157.046,-62.267],[156.75,-62.302],[156.638,-62.387],[156.342,-62.421],[156.046,-62.454],[155.929,-62.539],[155.633,-62.571],[155.333,-62.602],[155.15,-62.549],[154.85,-62.579],[154.554,-62.609],[154.371,-62.555],[154.071,-62.584],[153.892,-62.529],[153.712,-62.473],[153.533,-62.418],[153.354,-62.363],[153.175,-62.307],[153,-62.251],[152.821,-62.194],[152.646,-62.138],[152.471,-62.081],[152.421,-61.942],[152.246,-61.885],[152.071,-61.828],[151.9,-61.771],[151.729,-61.713],[151.558,-61.655],[151.388,-61.597],[151.338,-61.458],[151.171,-61.4],[151,-61.341],[150.833,-61.282],[150.667,-61.224],[150.5,-61.165],[150.333,-61.106],[150.167,-61.046],[150.125,-60.906],[150.088,-60.767],[149.921,-60.707],[149.883,-60.567],[149.842,-60.427],[149.679,-60.367],[149.642,-60.227],[149.483,-60.167],[149.446,-60.027],[149.404,-59.887],[149.25,-59.827],[149.213,-59.687],[149.333,-59.607],[149.45,-59.528],[149.571,-59.448],[149.846,-59.428],[150.121,-59.408],[150.396,-59.387],[150.667,-59.365],[150.825,-59.424],[151.1,-59.402],[151.375,-59.379],[151.533,-59.437],[151.808,-59.413],[151.971,-59.47],[152.129,-59.528],[152.404,-59.503],[152.567,-59.559],[152.729,-59.616],[152.892,-59.672],[153.167,-59.646],[153.329,-59.702],[153.604,-59.674],[153.879,-59.646],[154.154,-59.618],[154.263,-59.534],[154.204,-59.396],[154.313,-59.312],[154.417,-59.228],[154.525,-59.144],[154.467,-59.006],[154.575,-58.922],[154.679,-58.838],[154.621,-58.7],[154.725,-58.616],[154.829,-58.531],[154.933,-58.447],[155.033,-58.363],[155.138,-58.279],[155.238,-58.194],[155.338,-58.109],[155.437,-58.025],[155.379,-57.887],[155.321,-57.749],[155.421,-57.664],[155.363,-57.527],[155.462,-57.442],[155.558,-57.357],[155.817,-57.325],[156.071,-57.293],[156.325,-57.26],[156.579,-57.226],[156.833,-57.192],[156.992,-57.243],[157.15,-57.295],[157.404,-57.259],[157.563,-57.31],[157.817,-57.274],[157.975,-57.324],[158.229,-57.287],[158.388,-57.337],[158.642,-57.299],[158.804,-57.348],[158.967,-57.397],[159.217,-57.358],[159.292,-57.494],[159.454,-57.542],[159.529,-57.678],[159.692,-57.726],[159.767,-57.861],[159.933,-57.909],[160.008,-58.044],[160.175,-58.092],[160.342,-58.139],[160.508,-58.186],[160.679,-58.232],[160.846,-58.279],[160.929,-58.413],[161.096,-58.459],[161.354,-58.416],[161.613,-58.372],[161.696,-58.283],[161.783,-58.194],[161.867,-58.105],[161.954,-58.015],[162.204,-57.971],[162.458,-57.925],[162.629,-57.969],[162.796,-58.013],[162.967,-58.056],[163.138,-58.1],[163.308,-58.143],[163.479,-58.186],[163.65,-58.228],[163.742,-58.361],[163.917,-58.404],[164.088,-58.446],[164.342,-58.396],[164.596,-58.347],[164.846,-58.297],[164.925,-58.205],[165,-58.114],[165.079,-58.022],[165.154,-57.931],[165.229,-57.84],[165.304,-57.748],[165.379,-57.657],[165.454,-57.565],[165.529,-57.473],[165.604,-57.382],[165.679,-57.29],[165.921,-57.238],[165.992,-57.146],[166.233,-57.093],[166.404,-57.132],[166.646,-57.078],[166.883,-57.024],[167.054,-57.062],[167.225,-57.099],[167.396,-57.137],[167.633,-57.081],[167.804,-57.118],[167.975,-57.154],[168.217,-57.098],[168.388,-57.134],[168.558,-57.169],[168.667,-57.299],[168.838,-57.334],[168.946,-57.463],[169.054,-57.591],[169.167,-57.72],[169.342,-57.755],[169.517,-57.789],[169.754,-57.729],[169.933,-57.763],[170.108,-57.797],[170.346,-57.736]],[[159.933,-56.432],[160.179,-56.392],[160.425,-56.351],[160.667,-56.309],[160.825,-56.355],[161.071,-56.312],[161.313,-56.269],[161.471,-56.315],[161.633,-56.36],[161.875,-56.316],[162.038,-56.361],[162.2,-56.406],[162.279,-56.539],[162.442,-56.584],[162.525,-56.717],[162.608,-56.851],[162.692,-56.985],[162.613,-57.075],[162.529,-57.165],[162.45,-57.254],[162.367,-57.344],[162.288,-57.434],[162.038,-57.479],[161.788,-57.523],[161.538,-57.567],[161.288,-57.611],[161.121,-57.565],[160.954,-57.519],[160.704,-57.561],[160.538,-57.515],[160.375,-57.468],[160.208,-57.421],[160.046,-57.374],[159.971,-57.239],[159.808,-57.191],[159.733,-57.055],[159.821,-56.967],[159.75,-56.832],[159.833,-56.744],[159.763,-56.609],[159.85,-56.521],[159.933,-56.432]],[[140.563,-54.285],[140.688,-54.354],[140.808,-54.424],[140.933,-54.493],[140.937,-54.635],[140.942,-54.776],[140.821,-54.848],[140.7,-54.92],[140.454,-54.922],[140.208,-54.923],[140.083,-54.853],[139.962,-54.783],[139.838,-54.713],[139.838,-54.571],[139.958,-54.501],[140.079,-54.429],[140.2,-54.358],[140.321,-54.287],[140.563,-54.285]],[[131.617,-46.097],[131.704,-46.174],[131.688,-46.315],[131.667,-46.455],[131.758,-46.533],[131.738,-46.673],[131.625,-46.737],[131.604,-46.877],[131.492,-46.941],[131.375,-47.004],[131.263,-47.067],[131.058,-47.052],[130.942,-47.114],[130.737,-47.099],[130.646,-47.021],[130.554,-46.943],[130.463,-46.865],[130.488,-46.724],[130.508,-46.584],[130.533,-46.443],[130.554,-46.303],[130.671,-46.241],[130.692,-46.1],[130.804,-46.038],[130.917,-45.975],[131.029,-45.912],[131.229,-45.927],[131.321,-46.005],[131.525,-46.019],[131.617,-46.097]],[[125.496,-32.964],[125.567,-33.045],[125.633,-33.127],[125.704,-33.208],[125.771,-33.29],[125.842,-33.371],[125.812,-33.51],[125.783,-33.65],[125.758,-33.789],[125.658,-33.847],[125.563,-33.905],[125.296,-33.939],[125.125,-33.915],[124.958,-33.89],[124.858,-33.947],[124.762,-34.005],[124.663,-34.062],[124.563,-34.119],[124.462,-34.176],[124.363,-34.233],[124.262,-34.289],[124.167,-34.346],[123.996,-34.321],[123.896,-34.377],[123.729,-34.351],[123.558,-34.324],[123.392,-34.298],[123.225,-34.271],[123.154,-34.188],[123.087,-34.105],[123.021,-34.022],[122.954,-33.939],[122.988,-33.8],[123.021,-33.662],[123.054,-33.523],[123.083,-33.384],[123.117,-33.245],[123.15,-33.106],[123.083,-33.024],[123.117,-32.885],[123.05,-32.802],[122.983,-32.719],[122.917,-32.636],[122.85,-32.552],[122.783,-32.469],[122.721,-32.386],[122.654,-32.303],[122.687,-32.164],[122.621,-32.081],[122.654,-31.942],[122.75,-31.887],[122.85,-31.832],[122.946,-31.776],[123.113,-31.803],[123.275,-31.83],[123.342,-31.913],[123.504,-31.94],[123.571,-32.023],[123.637,-32.105],[123.7,-32.188],[123.867,-32.214],[123.933,-32.297],[124.096,-32.323],[124.262,-32.348],[124.358,-32.292],[124.525,-32.317],[124.621,-32.26],[124.788,-32.285],[124.95,-32.31],[125.017,-32.392],[125.088,-32.473],[125.154,-32.555],[125.221,-32.637],[125.292,-32.719],[125.358,-32.801],[125.429,-32.882],[125.496,-32.964]],[[121.238,-30.464],[121.304,-30.548],[121.463,-30.577],[121.625,-30.607],[121.687,-30.691],[121.75,-30.774],[121.717,-30.913],[121.683,-31.051],[121.583,-31.106],[121.488,-31.16],[121.388,-31.215],[121.292,-31.269],[121.192,-31.324],[121.096,-31.378],[120.996,-31.432],[120.896,-31.486],[120.738,-31.456],[120.638,-31.51],[120.475,-31.479],[120.313,-31.449],[120.25,-31.364],[120.088,-31.333],[120.025,-31.249],[120.063,-31.111],[120,-31.026],[120.038,-30.888],[120.071,-30.75],[120.171,-30.697],[120.271,-30.643],[120.367,-30.59],[120.467,-30.536],[120.563,-30.482],[120.663,-30.428],[120.758,-30.374],[120.917,-30.405],[121.079,-30.434],[121.238,-30.464]],[[119.025,-27.783],[119.083,-27.868],[119.146,-27.953],[119.204,-28.038],[119.263,-28.123],[119.229,-28.261],[119.192,-28.398],[119.154,-28.536],[119.058,-28.589],[118.9,-28.556],[118.746,-28.524],[118.683,-28.439],[118.529,-28.406],[118.471,-28.321],[118.408,-28.235],[118.446,-28.098],[118.387,-28.012],[118.329,-27.927],[118.367,-27.79],[118.463,-27.737],[118.5,-27.6],[118.654,-27.633],[118.813,-27.666],[118.871,-27.751],[119.025,-27.783]],[[118.317,-24.652],[118.471,-24.685],[118.525,-24.77],[118.492,-24.908],[118.55,-24.993],[118.604,-25.078],[118.663,-25.163],[118.721,-25.249],[118.683,-25.386],[118.65,-25.524],[118.613,-25.661],[118.575,-25.799],[118.538,-25.936],[118.504,-26.074],[118.467,-26.211],[118.371,-26.263],[118.333,-26.401],[118.238,-26.453],[118.142,-26.505],[118.046,-26.557],[117.95,-26.609],[117.858,-26.661],[117.704,-26.627],[117.608,-26.679],[117.454,-26.645],[117.3,-26.611],[117.204,-26.662],[117.05,-26.627],[116.896,-26.593],[116.8,-26.644],[116.704,-26.695],[116.608,-26.746],[116.513,-26.797],[116.417,-26.848],[116.321,-26.899],[116.221,-26.95],[116.125,-27.001],[116.029,-27.051],[115.933,-27.102],[115.779,-27.066],[115.721,-26.98],[115.667,-26.893],[115.608,-26.807],[115.554,-26.721],[115.496,-26.634],[115.442,-26.548],[115.479,-26.411],[115.521,-26.274],[115.563,-26.137],[115.504,-26.051],[115.546,-25.914],[115.588,-25.778],[115.625,-25.641],[115.667,-25.504],[115.608,-25.418],[115.65,-25.281],[115.688,-25.144],[115.633,-25.058],[115.675,-24.921],[115.617,-24.835],[115.563,-24.749],[115.6,-24.612],[115.546,-24.525],[115.492,-24.439],[115.438,-24.353],[115.379,-24.266],[115.229,-24.23],[115.079,-24.193],[115.025,-24.107],[114.875,-24.07],[114.821,-23.984],[114.863,-23.847],[114.9,-23.71],[114.996,-23.66],[115.146,-23.697],[115.242,-23.647],[115.333,-23.597],[115.483,-23.633],[115.538,-23.719],[115.688,-23.755],[115.742,-23.841],[115.704,-23.978],[115.667,-24.115],[115.721,-24.201],[115.775,-24.288],[115.925,-24.324],[116.021,-24.273],[116.171,-24.308],[116.321,-24.344],[116.417,-24.293],[116.567,-24.328],[116.717,-24.363],[116.867,-24.398],[116.921,-24.484],[117.075,-24.518],[117.129,-24.604],[117.279,-24.639],[117.433,-24.673],[117.488,-24.758],[117.637,-24.792],[117.792,-24.826],[117.883,-24.774],[117.979,-24.722],[118.225,-24.704],[118.317,-24.652]]]]}},{"type":"Feature","id":"ol4","properties":{},"geometry":{"type":"MultiPolygon","coordinates":[[[[-28.079,54.809],[-27.937,54.867],[-27.796,54.924],[-27.65,54.981],[-27.508,55.038],[-27.267,55.012],[-27.025,54.986],[-26.783,54.959],[-26.542,54.932],[-26.3,54.904],[-26.058,54.876],[-25.962,54.793],[-26.012,54.654],[-26.062,54.516],[-26.204,54.46],[-26.346,54.405],[-26.492,54.349],[-26.633,54.294],[-26.775,54.238],[-26.917,54.182],[-27.058,54.126],[-27.2,54.07],[-27.337,54.013],[-27.479,53.956],[-27.617,53.9],[-27.854,53.925],[-27.95,54.007],[-28.05,54.089],[-28.146,54.171],[-28.104,54.31],[-28.062,54.449],[-28.163,54.531],[-28.121,54.67],[-28.079,54.809]],[[-27.937,52.426],[-27.804,52.483],[-27.667,52.54],[-27.533,52.597],[-27.4,52.654],[-27.171,52.628],[-26.942,52.601],[-26.983,52.463],[-27.025,52.324],[-27.071,52.185],[-27.113,52.046],[-27.246,51.99],[-27.287,51.851],[-27.421,51.794],[-27.646,51.82],[-27.871,51.844],[-28.096,51.869],[-28.058,52.008],[-28.15,52.09],[-28.113,52.229],[-28.071,52.369],[-27.937,52.426]],[[-36.437,50.117],[-36.425,50.258],[-36.308,50.325],[-36.192,50.391],[-36.075,50.458],[-35.854,50.449],[-35.75,50.374],[-35.646,50.299],[-35.663,50.158],[-35.558,50.083],[-35.575,49.941],[-35.587,49.8],[-35.604,49.659],[-35.617,49.518],[-35.633,49.377],[-35.746,49.311],[-35.863,49.245],[-35.875,49.104],[-35.988,49.038],[-36.104,48.972],[-36.317,48.98],[-36.433,48.913],[-36.646,48.921],[-36.863,48.928],[-36.962,49.002],[-37.067,49.076],[-37.058,49.217],[-37.046,49.358],[-36.933,49.426],[-36.921,49.567],[-36.808,49.634],[-36.692,49.701],[-36.683,49.842],[-36.567,49.909],[-36.554,50.05],[-36.437,50.117]],[[-44.329,46.59],[-44.233,46.664],[-44.242,46.805],[-44.142,46.879],[-44.046,46.953],[-43.946,47.027],[-43.846,47.1],[-43.746,47.174],[-43.538,47.18],[-43.433,47.112],[-43.325,47.044],[-43.217,46.976],[-43.108,46.907],[-43.004,46.839],[-42.896,46.771],[-42.792,46.702],[-42.783,46.561],[-42.779,46.419],[-42.879,46.346],[-42.975,46.274],[-42.971,46.132],[-43.067,46.059],[-43.167,45.986],[-43.267,45.913],[-43.363,45.84],[-43.567,45.834],[-43.767,45.829],[-43.971,45.823],[-44.175,45.816],[-44.279,45.883],[-44.387,45.951],[-44.492,46.018],[-44.6,46.084],[-44.613,46.226],[-44.513,46.3],[-44.525,46.441],[-44.429,46.516],[-44.329,46.59]],[[-61.113,36.544],[-61.046,36.629],[-61.087,36.767],[-61.129,36.904],[-61.062,36.989],[-61.104,37.126],[-61.212,37.178],[-61.254,37.316],[-61.425,37.283],[-61.533,37.334],[-61.642,37.386],[-61.812,37.352],[-61.879,37.267],[-61.942,37.181],[-61.9,37.045],[-61.792,36.993],[-61.858,36.908],[-61.812,36.771],[-61.771,36.634],[-61.667,36.582],[-61.558,36.53],[-61.454,36.478],[-61.283,36.511],[-61.113,36.544]],[[-66.179,30.921],[-66.121,31.008],[-66.067,31.095],[-66.008,31.182],[-65.85,31.22],[-65.792,31.307],[-65.633,31.344],[-65.475,31.382],[-65.417,31.469],[-65.258,31.506],[-65.154,31.457],[-64.996,31.494],[-64.95,31.358],[-64.908,31.221],[-64.863,31.085],[-64.762,31.035],[-64.721,30.899],[-64.675,30.763],[-64.575,30.713],[-64.475,30.662],[-64.375,30.612],[-64.275,30.562],[-64.233,30.426],[-64.133,30.375],[-64.033,30.325],[-63.992,30.188],[-63.892,30.138],[-63.85,30.001],[-63.808,29.864],[-63.767,29.728],[-63.725,29.591],[-63.783,29.504],[-63.742,29.368],[-63.8,29.281],[-63.758,29.145],[-63.721,29.008],[-63.779,28.922],[-63.738,28.785],[-63.796,28.699],[-63.854,28.613],[-63.908,28.526],[-64.067,28.491],[-64.125,28.404],[-64.279,28.368],[-64.433,28.333],[-64.587,28.296],[-64.687,28.346],[-64.787,28.396],[-64.942,28.36],[-65.038,28.409],[-65.138,28.459],[-65.292,28.423],[-65.492,28.522],[-65.392,28.472],[-65.546,28.435],[-65.7,28.398],[-65.758,28.311],[-65.913,28.273],[-65.967,28.186],[-66.121,28.148],[-66.179,28.061],[-66.333,28.023],[-66.433,28.072],[-66.587,28.034],[-66.683,28.083],[-66.783,28.132],[-66.883,28.18],[-66.983,28.229],[-67.025,28.364],[-67.125,28.413],[-67.171,28.549],[-67.217,28.684],[-67.158,28.771],[-67.204,28.907],[-67.15,28.994],[-67.096,29.082],[-67.042,29.169],[-66.983,29.256],[-66.929,29.343],[-66.875,29.431],[-66.817,29.518],[-66.762,29.605],[-66.708,29.692],[-66.55,29.731],[-66.496,29.818],[-66.437,29.904],[-66.383,29.992],[-66.225,30.03],[-66.171,30.117],[-66.212,30.253],[-66.158,30.34],[-66.204,30.476],[-66.146,30.563],[-66.192,30.698],[-66.238,30.834],[-66.179,30.921]],[[-65.146,16.011],[-65.004,16.048],[-64.863,16.085],[-64.721,16.121],[-64.629,16.071],[-64.488,16.108],[-64.4,16.058],[-64.308,16.008],[-64.167,16.044],[-64.075,15.994],[-64.038,15.858],[-64,15.721],[-64.054,15.635],[-64.104,15.549],[-64.246,15.513],[-64.387,15.476],[-64.529,15.44],[-64.621,15.489],[-64.758,15.453],[-64.85,15.503],[-64.942,15.552],[-65.029,15.602],[-65.071,15.738],[-65.108,15.875],[-65.146,16.011]],[[-67.825,12.202],[-67.867,12.338],[-67.725,12.377],[-67.675,12.464],[-67.625,12.551],[-67.579,12.639],[-67.437,12.678],[-67.3,12.717],[-67.25,12.804],[-67.108,12.843],[-66.971,12.881],[-66.829,12.92],[-66.692,12.958],[-66.6,12.909],[-66.512,12.861],[-66.471,12.725],[-66.433,12.589],[-66.483,12.502],[-66.442,12.366],[-66.354,12.317],[-66.267,12.268],[-66.225,12.132],[-66.137,12.083],[-66.096,11.948],[-66.058,11.812],[-66.017,11.676],[-66.067,11.589],[-66.117,11.502],[-66.167,11.415],[-66.217,11.328],[-66.267,11.241],[-66.404,11.203],[-66.454,11.116],[-66.504,11.029],[-66.642,10.99],[-66.692,10.903],[-66.742,10.816],[-66.879,10.777],[-66.929,10.69],[-67.067,10.651],[-67.117,10.564],[-67.254,10.525],[-67.392,10.486],[-67.479,10.534],[-67.571,10.583],[-67.658,10.631],[-67.75,10.679],[-67.788,10.815],[-67.829,10.95],[-67.779,11.038],[-67.821,11.173],[-67.858,11.309],[-67.9,11.445],[-67.942,11.581],[-67.892,11.668],[-67.933,11.804],[-67.971,11.939],[-67.925,12.027],[-67.875,12.114],[-67.825,12.202]],[[-69.608,7.929],[-69.65,8.065],[-69.604,8.153],[-69.554,8.241],[-69.421,8.281],[-69.329,8.233],[-69.242,8.186],[-69.154,8.138],[-69.113,8.003],[-69.071,7.868],[-69.117,7.78],[-69.254,7.74],[-69.392,7.699],[-69.479,7.747],[-69.571,7.794],[-69.608,7.929]],[[-80.121,-5.644],[-80.075,-5.556],[-80.029,-5.467],[-79.896,-5.424],[-79.846,-5.336],[-79.712,-5.293],[-79.667,-5.204],[-79.529,-5.162],[-79.396,-5.119],[-79.304,-5.165],[-79.217,-5.211],[-79.129,-5.257],[-79.038,-5.303],[-78.95,-5.349],[-78.908,-5.484],[-78.817,-5.53],[-78.729,-5.576],[-78.637,-5.622],[-78.596,-5.757],[-78.508,-5.802],[-78.417,-5.848],[-78.283,-5.806],[-78.192,-5.851],[-78.104,-5.897],[-77.967,-5.854],[-77.879,-5.9],[-77.742,-5.857],[-77.608,-5.814],[-77.562,-5.726],[-77.425,-5.682],[-77.292,-5.64],[-77.154,-5.597],[-77.021,-5.554],[-76.883,-5.511],[-76.796,-5.556],[-76.663,-5.513],[-76.571,-5.559],[-76.483,-5.605],[-76.392,-5.651],[-76.304,-5.696],[-76.212,-5.742],[-76.125,-5.787],[-76.033,-5.833],[-75.946,-5.879],[-75.9,-6.013],[-75.812,-6.059],[-75.767,-6.193],[-75.725,-6.327],[-75.771,-6.416],[-75.725,-6.55],[-75.771,-6.639],[-75.729,-6.773],[-75.683,-6.908],[-75.642,-7.042],[-75.596,-7.176],[-75.55,-7.31],[-75.462,-7.355],[-75.417,-7.489],[-75.371,-7.623],[-75.329,-7.757],[-75.375,-7.846],[-75.421,-7.935],[-75.467,-8.024],[-75.512,-8.112],[-75.554,-8.201],[-75.692,-8.244],[-75.738,-8.333],[-75.783,-8.422],[-75.917,-8.465],[-76.054,-8.509],[-76.1,-8.597],[-76.146,-8.686],[-76.283,-8.73],[-76.325,-8.818],[-76.371,-8.907],[-76.508,-8.951],[-76.554,-9.039],[-76.692,-9.083],[-76.738,-9.172],[-76.783,-9.26],[-76.917,-9.304],[-76.962,-9.392],[-77.1,-9.436],[-77.238,-9.479],[-77.371,-9.522],[-77.462,-9.477],[-77.554,-9.432],[-77.642,-9.386],[-77.779,-9.429],[-77.871,-9.384],[-77.913,-9.249],[-78.004,-9.204],[-78.096,-9.158],[-78.183,-9.113],[-78.275,-9.067],[-78.363,-9.021],[-78.408,-8.887],[-78.5,-8.841],[-78.587,-8.795],[-78.679,-8.75],[-78.767,-8.704],[-78.858,-8.658],[-78.95,-8.612],[-79.038,-8.566],[-79.129,-8.521],[-79.217,-8.475],[-79.308,-8.429],[-79.442,-8.472],[-79.533,-8.426],[-79.625,-8.38],[-79.758,-8.422],[-79.85,-8.376],[-79.937,-8.33],[-79.983,-8.196],[-80.071,-8.149],[-80.117,-8.015],[-80.204,-7.969],[-80.246,-7.834],[-80.292,-7.699],[-80.333,-7.564],[-80.375,-7.429],[-80.329,-7.341],[-80.371,-7.206],[-80.417,-7.071],[-80.371,-6.982],[-80.413,-6.847],[-80.367,-6.759],[-80.321,-6.67],[-80.363,-6.535],[-80.317,-6.446],[-80.267,-6.357],[-80.312,-6.223],[-80.267,-6.134],[-80.217,-6.045],[-80.262,-5.911],[-80.217,-5.822],[-80.167,-5.733],[-80.121,-5.644]],[[-83.521,-14.39],[-83.475,-14.302],[-83.425,-14.213],[-83.375,-14.125],[-83.238,-14.083],[-83.187,-13.995],[-83.142,-13.907],[-83.092,-13.818],[-83.046,-13.73],[-82.996,-13.641],[-82.95,-13.553],[-82.808,-13.511],[-82.763,-13.423],[-82.712,-13.334],[-82.667,-13.246],[-82.621,-13.157],[-82.479,-13.115],[-82.387,-13.162],[-82.3,-13.208],[-82.208,-13.255],[-82.163,-13.39],[-82.121,-13.524],[-82.075,-13.659],[-82.033,-13.794],[-81.992,-13.929],[-82.038,-14.018],[-81.992,-14.152],[-82.042,-14.241],[-82.087,-14.33],[-82.046,-14.464],[-82.092,-14.553],[-82.142,-14.641],[-82.187,-14.73],[-82.238,-14.819],[-82.375,-14.861],[-82.517,-14.903],[-82.654,-14.945],[-82.746,-14.898],[-82.888,-14.94],[-82.979,-14.894],[-83.117,-14.935],[-83.208,-14.889],[-83.3,-14.842],[-83.392,-14.795],[-83.483,-14.749],[-83.525,-14.613],[-83.571,-14.478],[-83.521,-14.39]],[[-83.108,-16.634],[-83.058,-16.546],[-82.917,-16.504],[-82.779,-16.462],[-82.637,-16.42],[-82.546,-16.466],[-82.454,-16.512],[-82.408,-16.647],[-82.363,-16.782],[-82.321,-16.916],[-82.367,-17.005],[-82.508,-17.047],[-82.65,-17.089],[-82.742,-17.043],[-82.833,-16.997],[-82.929,-16.95],[-83.021,-16.904],[-83.062,-16.769],[-83.108,-16.634]],[[-87.533,-18.561],[-87.483,-18.474],[-87.342,-18.435],[-87.196,-18.396],[-87.054,-18.356],[-86.913,-18.317],[-86.817,-18.365],[-86.675,-18.325],[-86.533,-18.285],[-86.442,-18.333],[-86.4,-18.469],[-86.45,-18.557],[-86.5,-18.644],[-86.55,-18.732],[-86.6,-18.82],[-86.65,-18.908],[-86.796,-18.947],[-86.846,-19.035],[-86.988,-19.074],[-87.133,-19.114],[-87.275,-19.153],[-87.371,-19.105],[-87.462,-19.057],[-87.554,-19.008],[-87.596,-18.872],[-87.638,-18.736],[-87.588,-18.649],[-87.533,-18.561]],[[-98.133,-17.319],[-98.075,-17.236],[-98.021,-17.153],[-97.879,-17.123],[-97.821,-17.04],[-97.679,-17.01],[-97.625,-16.926],[-97.479,-16.896],[-97.392,-16.95],[-97.246,-16.919],[-97.104,-16.889],[-97.05,-16.805],[-96.996,-16.721],[-97.029,-16.584],[-96.975,-16.501],[-96.917,-16.417],[-96.775,-16.386],[-96.721,-16.302],[-96.579,-16.271],[-96.525,-16.187],[-96.379,-16.155],[-96.238,-16.124],[-96.096,-16.092],[-96.042,-16.007],[-95.988,-15.923],[-95.933,-15.839],[-95.879,-15.755],[-95.825,-15.67],[-95.863,-15.534],[-95.808,-15.449],[-95.754,-15.365],[-95.7,-15.28],[-95.646,-15.196],[-95.592,-15.111],[-95.542,-15.027],[-95.4,-14.994],[-95.258,-14.961],[-95.117,-14.929],[-95.025,-14.98],[-94.992,-15.117],[-94.954,-15.253],[-94.921,-15.39],[-94.975,-15.475],[-94.937,-15.611],[-94.992,-15.696],[-94.954,-15.833],[-95.008,-15.918],[-94.975,-16.054],[-94.937,-16.191],[-94.992,-16.276],[-95.046,-16.361],[-95.1,-16.446],[-95.154,-16.53],[-95.208,-16.615],[-95.171,-16.752],[-95.225,-16.836],[-95.192,-16.973],[-95.1,-17.025],[-95.067,-17.162],[-95.033,-17.299],[-94.942,-17.351],[-94.854,-17.403],[-94.762,-17.455],[-94.729,-17.592],[-94.637,-17.644],[-94.604,-17.781],[-94.567,-17.918],[-94.621,-18.003],[-94.675,-18.088],[-94.729,-18.173],[-94.783,-18.258],[-94.842,-18.343],[-94.896,-18.428],[-94.95,-18.512],[-95.096,-18.545],[-95.15,-18.63],[-95.296,-18.662],[-95.437,-18.694],[-95.583,-18.726],[-95.729,-18.758],[-95.875,-18.789],[-96.021,-18.821],[-96.163,-18.852],[-96.308,-18.884],[-96.454,-18.914],[-96.6,-18.945],[-96.692,-18.892],[-96.833,-18.923],[-96.925,-18.869],[-97.013,-18.816],[-97.104,-18.762],[-97.192,-18.709],[-97.225,-18.572],[-97.312,-18.518],[-97.346,-18.381],[-97.437,-18.327],[-97.471,-18.19],[-97.558,-18.136],[-97.646,-18.083],[-97.738,-18.029],[-97.825,-17.975],[-97.858,-17.838],[-97.946,-17.784],[-98.033,-17.731],[-98.067,-17.594],[-98.1,-17.456],[-98.133,-17.319]],[[-93.05,-15.888],[-93,-15.802],[-92.946,-15.717],[-92.804,-15.682],[-92.663,-15.647],[-92.571,-15.697],[-92.429,-15.662],[-92.342,-15.713],[-92.25,-15.763],[-92.163,-15.814],[-92.125,-15.951],[-92.175,-16.036],[-92.229,-16.122],[-92.371,-16.158],[-92.512,-16.193],[-92.604,-16.142],[-92.746,-16.177],[-92.887,-16.212],[-92.979,-16.161],[-93.067,-16.11],[-93.104,-15.974],[-93.05,-15.888]],[[-93.504,-17.598],[-93.363,-17.564],[-93.4,-17.427],[-93.488,-17.376],[-93.579,-17.324],[-93.667,-17.273],[-93.812,-17.307],[-93.954,-17.341],[-94.046,-17.289],[-94.187,-17.323],[-94.242,-17.408],[-94.296,-17.493],[-94.35,-17.578],[-94.317,-17.715],[-94.225,-17.767],[-94.133,-17.818],[-93.992,-17.785],[-93.9,-17.836],[-93.758,-17.803],[-93.613,-17.769],[-93.558,-17.683],[-93.504,-17.598]],[[-96.262,-21.259],[-95.233,-21.039],[-95.196,-21.176],[-95.254,-21.261],[-95.308,-21.346],[-95.367,-21.43],[-95.604,-21.409],[-95.512,-21.462],[-95.663,-21.494],[-95.808,-21.525],[-95.9,-21.472],[-96.05,-21.503],[-96.142,-21.45],[-96.229,-21.396],[-96.262,-21.259]],[[-95.892,-20.891],[-95.596,-20.828],[-95.742,-20.859],[-96.3,-21.121],[-96.15,-21.09],[-96.096,-21.006],[-95.946,-20.975],[-95.892,-20.891]],[[-94.971,-23.303],[-94.913,-23.218],[-94.854,-23.133],[-94.8,-23.048],[-94.742,-22.963],[-94.683,-22.878],[-94.533,-22.846],[-94.479,-22.761],[-94.421,-22.676],[-94.271,-22.643],[-94.217,-22.558],[-94.067,-22.525],[-93.917,-22.492],[-93.825,-22.544],[-93.733,-22.596],[-93.696,-22.733],[-93.604,-22.785],[-93.567,-22.922],[-93.625,-23.008],[-93.679,-23.093],[-93.646,-23.23],[-93.7,-23.316],[-93.85,-23.349],[-93.908,-23.434],[-93.962,-23.52],[-94.021,-23.605],[-94.171,-23.638],[-94.229,-23.723],[-94.379,-23.756],[-94.529,-23.788],[-94.583,-23.873],[-94.738,-23.906],[-94.829,-23.853],[-94.979,-23.885],[-95.071,-23.832],[-95.108,-23.694],[-95.142,-23.557],[-95.083,-23.472],[-95.025,-23.387],[-94.971,-23.303]],[[-93.2,-29.902],[-93.142,-29.817],[-93.179,-29.68],[-93.121,-29.594],[-93.058,-29.509],[-93.1,-29.371],[-93.042,-29.286],[-93.079,-29.148],[-93.117,-29.011],[-93.058,-28.926],[-93.096,-28.788],[-93.037,-28.702],[-93.079,-28.565],[-93.021,-28.48],[-92.958,-28.394],[-92.9,-28.308],[-92.746,-28.274],[-92.592,-28.24],[-92.433,-28.205],[-92.279,-28.17],[-92.125,-28.135],[-91.967,-28.1],[-91.812,-28.065],[-91.754,-27.979],[-91.6,-27.943],[-91.542,-27.857],[-91.488,-27.771],[-91.429,-27.685],[-91.371,-27.598],[-91.317,-27.512],[-91.258,-27.426],[-91.2,-27.339],[-91.146,-27.253],[-91.087,-27.167],[-90.933,-27.131],[-90.879,-27.044],[-90.725,-27.008],[-90.571,-26.971],[-90.417,-26.935],[-90.267,-26.898],[-90.208,-26.811],[-90.154,-26.724],[-90,-26.687],[-89.946,-26.601],[-89.892,-26.514],[-89.833,-26.427],[-89.683,-26.39],[-89.629,-26.303],[-89.575,-26.216],[-89.517,-26.129],[-89.462,-26.042],[-89.408,-25.955],[-89.354,-25.868],[-89.3,-25.781],[-89.246,-25.694],[-89.192,-25.607],[-89.137,-25.52],[-89.083,-25.433],[-88.929,-25.395],[-88.875,-25.308],[-88.725,-25.27],[-88.575,-25.231],[-88.425,-25.193],[-88.329,-25.242],[-88.179,-25.203],[-88.083,-25.251],[-87.933,-25.212],[-87.833,-25.261],[-87.683,-25.222],[-87.533,-25.182],[-87.383,-25.143],[-87.333,-25.056],[-87.279,-24.968],[-87.225,-24.88],[-87.271,-24.745],[-87.217,-24.657],[-87.163,-24.57],[-87.113,-24.482],[-87.154,-24.346],[-87.104,-24.259],[-87.05,-24.171],[-87.096,-24.036],[-87.137,-23.9],[-87.179,-23.764],[-87.225,-23.629],[-87.171,-23.541],[-87.217,-23.406],[-87.258,-23.27],[-87.204,-23.182],[-87.25,-23.047],[-87.196,-22.959],[-87.242,-22.823],[-87.187,-22.736],[-87.229,-22.6],[-87.275,-22.464],[-87.317,-22.329],[-87.358,-22.193],[-87.308,-22.105],[-87.254,-22.018],[-87.204,-21.93],[-87.15,-21.842],[-87.004,-21.803],[-86.858,-21.764],[-86.712,-21.724],[-86.567,-21.684],[-86.471,-21.732],[-86.379,-21.779],[-86.283,-21.827],[-86.187,-21.875],[-86.092,-21.922],[-86,-21.97],[-85.904,-22.017],[-85.808,-22.065],[-85.663,-22.024],[-85.517,-21.984],[-85.371,-21.943],[-85.321,-21.855],[-85.175,-21.814],[-85.125,-21.726],[-85.075,-21.638],[-85.021,-21.55],[-84.971,-21.462],[-84.829,-21.421],[-84.775,-21.332],[-84.725,-21.244],[-84.583,-21.203],[-84.533,-21.115],[-84.387,-21.074],[-84.242,-21.032],[-84.146,-21.079],[-84.004,-21.037],[-83.908,-21.084],[-83.813,-21.13],[-83.717,-21.176],[-83.575,-21.134],[-83.479,-21.181],[-83.383,-21.227],[-83.287,-21.273],[-83.142,-21.231],[-83.05,-21.277],[-82.954,-21.323],[-82.808,-21.281],[-82.663,-21.238],[-82.571,-21.284],[-82.425,-21.241],[-82.329,-21.287],[-82.233,-21.333],[-82.137,-21.378],[-82.042,-21.424],[-81.946,-21.469],[-81.9,-21.603],[-81.804,-21.649],[-81.758,-21.782],[-81.663,-21.828],[-81.613,-21.962],[-81.567,-22.096],[-81.467,-22.141],[-81.421,-22.274],[-81.371,-22.408],[-81.275,-22.453],[-81.229,-22.587],[-81.179,-22.72],[-81.225,-22.809],[-81.275,-22.897],[-81.325,-22.986],[-81.371,-23.074],[-81.517,-23.118],[-81.567,-23.207],[-81.712,-23.25],[-81.858,-23.294],[-81.908,-23.382],[-82.054,-23.426],[-82.1,-23.514],[-82.15,-23.603],[-82.296,-23.646],[-82.346,-23.734],[-82.492,-23.778],[-82.542,-23.866],[-82.687,-23.909],[-82.788,-23.864],[-82.883,-23.818],[-82.979,-23.772],[-83.129,-23.815],[-83.225,-23.769],[-83.371,-23.812],[-83.517,-23.854],[-83.567,-23.943],[-83.617,-24.031],[-83.571,-24.165],[-83.475,-24.211],[-83.375,-24.257],[-83.279,-24.303],[-83.183,-24.349],[-83.083,-24.394],[-82.988,-24.44],[-82.888,-24.485],[-82.792,-24.531],[-82.692,-24.576],[-82.646,-24.71],[-82.596,-24.844],[-82.546,-24.977],[-82.596,-25.066],[-82.646,-25.154],[-82.696,-25.243],[-82.746,-25.331],[-82.892,-25.374],[-82.942,-25.463],[-82.992,-25.551],[-83.142,-25.594],[-83.192,-25.682],[-83.242,-25.771],[-83.292,-25.859],[-83.342,-25.948],[-83.292,-26.081],[-83.342,-26.17],[-83.296,-26.304],[-83.346,-26.392],[-83.296,-26.526],[-83.246,-26.659],[-83.296,-26.748],[-83.246,-26.882],[-83.296,-26.97],[-83.346,-27.058],[-83.396,-27.147],[-83.35,-27.28],[-83.4,-27.369],[-83.45,-27.457],[-83.4,-27.591],[-83.45,-27.679],[-83.4,-27.812],[-83.45,-27.901],[-83.4,-28.034],[-83.35,-28.168],[-83.3,-28.301],[-83.35,-28.39],[-83.4,-28.478],[-83.45,-28.566],[-83.5,-28.655],[-83.554,-28.743],[-83.604,-28.831],[-83.654,-28.92],[-83.704,-29.008],[-83.758,-29.096],[-83.808,-29.185],[-83.858,-29.273],[-83.808,-29.406],[-83.858,-29.495],[-83.913,-29.583],[-83.962,-29.671],[-84.117,-29.714],[-84.167,-29.803],[-84.325,-29.845],[-84.479,-29.888],[-84.529,-29.976],[-84.583,-30.064],[-84.633,-30.152],[-84.687,-30.241],[-84.738,-30.329],[-84.792,-30.417],[-84.742,-30.551],[-84.687,-30.684],[-84.637,-30.818],[-84.587,-30.951],[-84.533,-31.085],[-84.587,-31.173],[-84.637,-31.261],[-84.692,-31.349],[-84.746,-31.437],[-84.796,-31.526],[-84.954,-31.568],[-85.113,-31.611],[-85.167,-31.699],[-85.321,-31.741],[-85.375,-31.829],[-85.533,-31.871],[-85.587,-31.959],[-85.642,-32.047],[-85.696,-32.135],[-85.642,-32.269],[-85.592,-32.403],[-85.542,-32.537],[-85.488,-32.67],[-85.437,-32.804],[-85.492,-32.892],[-85.546,-32.98],[-85.6,-33.068],[-85.65,-33.156],[-85.704,-33.244],[-85.758,-33.332],[-85.812,-33.419],[-85.867,-33.507],[-85.925,-33.595],[-85.979,-33.683],[-86.033,-33.771],[-86.087,-33.859],[-86.142,-33.947],[-86.087,-34.08],[-86.142,-34.168],[-86.2,-34.256],[-86.254,-34.344],[-86.308,-34.432],[-86.363,-34.519],[-86.417,-34.607],[-86.475,-34.695],[-86.638,-34.737],[-86.692,-34.824],[-86.75,-34.912],[-86.913,-34.953],[-86.967,-35.041],[-87.133,-35.082],[-87.187,-35.17],[-87.354,-35.211],[-87.408,-35.298],[-87.467,-35.386],[-87.525,-35.473],[-87.579,-35.561],[-87.638,-35.648],[-87.583,-35.782],[-87.642,-35.87],[-87.592,-36.004],[-87.646,-36.092],[-87.704,-36.179],[-87.762,-36.267],[-87.821,-36.354],[-87.988,-36.394],[-88.154,-36.435],[-88.212,-36.522],[-88.379,-36.562],[-88.437,-36.65],[-88.496,-36.737],[-88.554,-36.824],[-88.613,-36.911],[-88.671,-36.999],[-88.621,-37.133],[-88.679,-37.22],[-88.625,-37.355],[-88.687,-37.442],[-88.746,-37.529],[-88.804,-37.616],[-88.75,-37.751],[-88.812,-37.838],[-88.871,-37.925],[-88.929,-38.012],[-88.988,-38.099],[-89.05,-38.186],[-89.221,-38.226],[-89.279,-38.312],[-89.342,-38.4],[-89.513,-38.439],[-89.575,-38.526],[-89.633,-38.613],[-89.696,-38.699],[-89.867,-38.738],[-89.929,-38.825],[-90.217,-38.816],[-90.104,-38.864],[-90.275,-38.902],[-90.45,-38.94],[-90.562,-38.892],[-90.738,-38.93],[-90.85,-38.881],[-91.025,-38.918],[-91.2,-38.956],[-91.263,-39.042],[-91.437,-39.079],[-91.5,-39.165],[-91.675,-39.202],[-91.85,-39.238],[-92.025,-39.275],[-92.204,-39.311],[-92.312,-39.261],[-92.492,-39.296],[-92.6,-39.246],[-92.712,-39.196],[-92.887,-39.231],[-93,-39.18],[-93.113,-39.129],[-93.221,-39.079],[-93.333,-39.027],[-93.379,-38.891],[-93.425,-38.754],[-93.467,-38.617],[-93.404,-38.532],[-93.337,-38.447],[-93.383,-38.31],[-93.317,-38.224],[-93.254,-38.139],[-93.187,-38.053],[-93.125,-37.968],[-92.95,-37.933],[-92.887,-37.848],[-92.933,-37.711],[-92.975,-37.574],[-93.083,-37.523],[-93.192,-37.472],[-93.3,-37.421],[-93.408,-37.37],[-93.517,-37.318],[-93.562,-37.181],[-93.667,-37.13],[-93.712,-36.993],[-93.646,-36.908],[-93.692,-36.771],[-93.733,-36.634],[-93.775,-36.497],[-93.817,-36.359],[-93.925,-36.308],[-93.967,-36.171],[-94.071,-36.119],[-94.113,-35.981],[-94.217,-35.929],[-94.258,-35.792],[-94.363,-35.74],[-94.471,-35.687],[-94.508,-35.55],[-94.613,-35.497],[-94.717,-35.445],[-94.758,-35.307],[-94.863,-35.255],[-94.9,-35.117],[-94.942,-34.98],[-94.875,-34.895],[-94.917,-34.757],[-94.85,-34.672],[-94.787,-34.588],[-94.829,-34.45],[-94.762,-34.365],[-94.7,-34.28],[-94.637,-34.195],[-94.571,-34.11],[-94.408,-34.077],[-94.342,-33.992],[-94.179,-33.96],[-94.013,-33.927],[-93.846,-33.894],[-93.679,-33.86],[-93.517,-33.826],[-93.35,-33.793],[-93.187,-33.759],[-93.021,-33.724],[-92.958,-33.639],[-92.896,-33.553],[-92.937,-33.416],[-92.879,-33.331],[-92.921,-33.194],[-92.962,-33.056],[-92.9,-32.971],[-92.837,-32.885],[-92.879,-32.748],[-92.817,-32.662],[-92.758,-32.577],[-92.696,-32.491],[-92.637,-32.405],[-92.575,-32.319],[-92.517,-32.233],[-92.454,-32.147],[-92.496,-32.011],[-92.437,-31.925],[-92.479,-31.788],[-92.417,-31.702],[-92.458,-31.565],[-92.5,-31.428],[-92.542,-31.291],[-92.583,-31.154],[-92.683,-31.103],[-92.721,-30.966],[-92.821,-30.914],[-92.863,-30.777],[-92.962,-30.726],[-93.004,-30.589],[-93.1,-30.537],[-93.142,-30.4],[-93.179,-30.263],[-93.221,-30.126],[-93.158,-30.04],[-93.2,-29.902]],[[-105.358,-28.104],[-105.287,-28.026],[-105.221,-27.947],[-105.062,-27.929],[-104.971,-27.989],[-104.883,-28.049],[-104.725,-28.03],[-104.567,-28.011],[-104.408,-27.992],[-104.25,-27.972],[-104.092,-27.952],[-103.933,-27.932],[-103.846,-27.992],[-103.754,-28.051],[-103.596,-28.031],[-103.504,-28.09],[-103.479,-28.229],[-103.387,-28.289],[-103.296,-28.348],[-103.204,-28.407],[-103.113,-28.466],[-103.021,-28.525],[-102.929,-28.584],[-102.771,-28.562],[-102.704,-28.481],[-102.546,-28.459],[-102.479,-28.379],[-102.321,-28.357],[-102.254,-28.276],[-102.096,-28.253],[-101.937,-28.231],[-101.779,-28.207],[-101.687,-28.265],[-101.596,-28.323],[-101.437,-28.3],[-101.346,-28.357],[-101.317,-28.496],[-101.225,-28.554],[-101.196,-28.693],[-101.167,-28.832],[-101.142,-28.971],[-101.204,-29.053],[-101.179,-29.191],[-101.242,-29.273],[-101.308,-29.354],[-101.375,-29.436],[-101.538,-29.459],[-101.6,-29.54],[-101.762,-29.564],[-101.829,-29.645],[-101.896,-29.726],[-102.054,-29.748],[-102.217,-29.771],[-102.375,-29.793],[-102.538,-29.815],[-102.629,-29.756],[-102.725,-29.697],[-102.817,-29.639],[-102.908,-29.58],[-103.004,-29.521],[-103.096,-29.462],[-103.187,-29.403],[-103.371,-29.284],[-103.279,-29.344],[-103.442,-29.364],[-103.6,-29.385],[-103.667,-29.465],[-103.829,-29.485],[-103.896,-29.565],[-103.967,-29.644],[-104.125,-29.664],[-104.196,-29.744],[-104.354,-29.763],[-104.517,-29.782],[-104.583,-29.861],[-104.746,-29.88],[-104.908,-29.899],[-105.067,-29.917],[-105.229,-29.935],[-105.321,-29.874],[-105.413,-29.814],[-105.504,-29.752],[-105.596,-29.691],[-105.687,-29.63],[-105.775,-29.569],[-105.867,-29.508],[-105.887,-29.369],[-105.908,-29.229],[-105.842,-29.151],[-105.771,-29.072],[-105.704,-28.994],[-105.725,-28.854],[-105.654,-28.776],[-105.587,-28.697],[-105.517,-28.619],[-105.45,-28.541],[-105.471,-28.401],[-105.404,-28.322],[-105.425,-28.183],[-105.358,-28.104]],[[-106.596,-31.283],[-106.617,-31.143],[-106.542,-31.065],[-106.471,-30.987],[-106.4,-30.909],[-106.329,-30.831],[-106.258,-30.753],[-106.096,-30.737],[-105.933,-30.72],[-105.771,-30.703],[-105.608,-30.686],[-105.513,-30.748],[-105.421,-30.809],[-105.329,-30.869],[-105.238,-30.931],[-105.146,-30.991],[-105.054,-31.052],[-104.958,-31.113],[-104.867,-31.174],[-104.775,-31.234],[-104.679,-31.295],[-104.587,-31.356],[-104.496,-31.416],[-104.329,-31.397],[-104.262,-31.317],[-104.096,-31.298],[-104.029,-31.219],[-103.958,-31.139],[-103.796,-31.119],[-103.629,-31.099],[-103.562,-31.019],[-103.4,-30.999],[-103.238,-30.978],[-103.142,-31.037],[-103.05,-31.097],[-102.954,-31.156],[-102.858,-31.215],[-102.767,-31.274],[-102.671,-31.333],[-102.646,-31.472],[-102.621,-31.612],[-102.687,-31.692],[-102.663,-31.832],[-102.733,-31.912],[-102.8,-31.993],[-102.775,-32.132],[-102.75,-32.272],[-102.725,-32.412],[-102.7,-32.551],[-102.767,-32.632],[-102.742,-32.771],[-102.717,-32.911],[-102.787,-32.991],[-102.762,-33.131],[-102.833,-33.211],[-102.904,-33.292],[-102.975,-33.372],[-103.046,-33.452],[-103.117,-33.532],[-103.283,-33.553],[-103.379,-33.494],[-103.475,-33.434],[-103.571,-33.374],[-103.596,-33.234],[-103.692,-33.174],[-103.787,-33.114],[-103.883,-33.054],[-103.979,-32.994],[-104.075,-32.934],[-104.242,-32.953],[-104.408,-32.972],[-104.575,-32.991],[-104.646,-33.07],[-104.812,-33.089],[-104.979,-33.107],[-105.146,-33.124],[-105.313,-33.142],[-105.408,-33.081],[-105.429,-32.941],[-105.525,-32.879],[-105.617,-32.818],[-105.638,-32.678],[-105.658,-32.538],[-105.587,-32.46],[-105.517,-32.381],[-105.442,-32.302],[-105.462,-32.163],[-105.392,-32.084],[-105.321,-32.005],[-105.342,-31.866],[-105.438,-31.804],[-105.529,-31.743],[-105.621,-31.682],[-105.787,-31.699],[-105.95,-31.716],[-106.042,-31.654],[-106.208,-31.67],[-106.3,-31.608],[-106.392,-31.547],[-106.483,-31.484],[-106.575,-31.422],[-106.596,-31.283]],[[-116.925,-51.729],[-116.808,-51.66],[-116.692,-51.591],[-116.575,-51.522],[-116.458,-51.453],[-116.233,-51.456],[-116.004,-51.458],[-115.779,-51.459],[-115.55,-51.461],[-115.325,-51.462],[-115.096,-51.462],[-114.871,-51.462],[-114.642,-51.462],[-114.417,-51.461],[-114.187,-51.46],[-113.962,-51.458],[-113.733,-51.456],[-113.621,-51.525],[-113.392,-51.522],[-113.167,-51.519],[-113.05,-51.588],[-112.933,-51.657],[-112.813,-51.726],[-112.696,-51.794],[-112.579,-51.863],[-112.462,-51.931],[-112.342,-51.999],[-112.333,-52.141],[-112.325,-52.282],[-112.204,-52.35],[-112.196,-52.491],[-112.075,-52.559],[-111.954,-52.627],[-111.833,-52.694],[-111.821,-52.836],[-111.7,-52.903],[-111.692,-53.044],[-111.8,-53.118],[-111.912,-53.191],[-112.025,-53.265],[-112.142,-53.338],[-112.254,-53.411],[-112.367,-53.484],[-112.483,-53.557],[-112.596,-53.63],[-112.712,-53.703],[-112.829,-53.776],[-112.942,-53.848],[-113.058,-53.921],[-113.175,-53.993],[-113.292,-54.066],[-113.413,-54.138],[-113.529,-54.21],[-113.646,-54.282],[-113.767,-54.354],[-113.883,-54.425],[-114.125,-54.427],[-114.246,-54.499],[-114.367,-54.57],[-114.613,-54.571],[-114.733,-54.642],[-114.975,-54.642],[-115.096,-54.713],[-115.221,-54.784],[-115.342,-54.854],[-115.467,-54.924],[-115.592,-54.994],[-115.712,-55.064],[-115.958,-55.063],[-116.208,-55.061],[-116.454,-55.059],[-116.7,-55.056],[-116.821,-54.983],[-117.067,-54.98],[-117.187,-54.907],[-117.433,-54.903],[-117.679,-54.898],[-117.796,-54.825],[-118.042,-54.819],[-118.287,-54.813],[-118.404,-54.739],[-118.521,-54.665],[-118.638,-54.591],[-118.75,-54.517],[-118.742,-54.376],[-118.729,-54.235],[-118.842,-54.161],[-118.829,-54.019],[-118.817,-53.878],[-118.692,-53.811],[-118.679,-53.67],[-118.554,-53.603],[-118.429,-53.536],[-118.421,-53.394],[-118.296,-53.327],[-118.171,-53.259],[-118.05,-53.192],[-118.042,-53.05],[-117.917,-52.982],[-117.796,-52.915],[-117.675,-52.847],[-117.554,-52.779],[-117.433,-52.71],[-117.312,-52.642],[-117.304,-52.501],[-117.187,-52.432],[-117.067,-52.363],[-117.058,-52.222],[-117.054,-52.081],[-117.046,-51.939],[-116.929,-51.871],[-116.925,-51.729]],[[-158.817,-63.323],[-158.625,-63.21],[-158.375,-63.294],[-158.121,-63.379],[-158.087,-63.477],[-158.054,-63.576],[-158.246,-63.69],[-158.467,-63.704],[-158.721,-63.62],[-158.975,-63.534],[-159.004,-63.435],[-158.817,-63.323]],[[177.083,-60.939],[177.283,-60.963],[177.487,-60.985],[177.642,-61.105],[177.796,-61.225],[178,-61.247],[178.158,-61.366],[178.363,-61.388],[178.521,-61.507],[178.725,-61.527],[178.888,-61.646],[179.096,-61.666],[179.258,-61.784],[179.425,-61.902],[179.592,-62.02],[179.55,-62.118],[179.508,-62.216],[179.467,-62.314],[179.213,-62.392],[178.958,-62.47],[178.746,-62.449],[178.487,-62.526],[178.275,-62.505],[178.067,-62.484],[177.854,-62.462],[177.692,-62.342],[177.529,-62.222],[177.371,-62.102],[177.213,-61.982],[177.004,-61.959],[176.85,-61.838],[176.642,-61.814],[176.488,-61.693],[176.283,-61.669],[176.129,-61.547],[175.979,-61.426],[176.033,-61.329],[176.083,-61.232],[176.333,-61.159],[176.388,-61.062],[176.638,-60.989],[176.838,-61.013],[177.083,-60.939]],[[172.233,-59.856],[172.421,-59.886],[172.613,-59.916],[172.8,-59.946],[172.933,-60.071],[173.067,-60.196],[173.2,-60.32],[173.396,-60.349],[173.588,-60.378],[173.725,-60.502],[173.921,-60.53],[174.117,-60.558],[174.313,-60.585],[174.454,-60.709],[174.396,-60.805],[174.342,-60.901],[174.088,-60.97],[173.888,-60.942],[173.633,-61.01],[173.433,-60.981],[173.179,-61.048],[172.979,-61.019],[172.783,-60.99],[172.588,-60.96],[172.392,-60.93],[172.196,-60.9],[172,-60.869],[171.804,-60.838],[171.608,-60.807],[171.413,-60.776],[171.221,-60.744],[171.092,-60.617],[170.9,-60.585],[170.771,-60.458],[170.646,-60.331],[170.713,-60.236],[170.779,-60.142],[171.033,-60.079],[171.096,-59.985],[171.35,-59.922],[171.6,-59.858],[171.854,-59.794],[172.042,-59.825],[172.233,-59.856]],[[161.429,-58.998],[161.604,-59.043],[161.775,-59.089],[161.95,-59.133],[162.038,-59.267],[162.213,-59.312],[162.388,-59.356],[162.479,-59.49],[162.654,-59.534],[162.833,-59.578],[163.096,-59.531],[163.358,-59.484],[163.621,-59.436],[163.883,-59.388],[163.967,-59.297],[164.046,-59.207],[164.308,-59.158],[164.388,-59.067],[164.646,-59.017],[164.725,-58.926],[164.979,-58.876],[165.058,-58.784],[165.138,-58.692],[165.217,-58.601],[165.467,-58.55],[165.546,-58.458],[165.621,-58.366],[165.696,-58.275],[165.771,-58.183],[166.021,-58.13],[166.267,-58.077],[166.517,-58.024],[166.687,-58.062],[166.863,-58.101],[167.038,-58.138],[167.217,-58.176],[167.321,-58.306],[167.496,-58.344],[167.604,-58.474],[167.708,-58.603],[167.638,-58.696],[167.567,-58.789],[167.496,-58.882],[167.242,-58.937],[167.171,-59.03],[166.917,-59.085],[166.842,-59.177],[166.588,-59.232],[166.513,-59.324],[166.438,-59.416],[166.358,-59.508],[166.467,-59.639],[166.571,-59.77],[166.754,-59.808],[166.863,-59.939],[167.05,-59.977],[167.233,-60.014],[167.346,-60.145],[167.458,-60.275],[167.571,-60.405],[167.496,-60.497],[167.417,-60.591],[167.533,-60.721],[167.454,-60.813],[167.379,-60.906],[167.3,-60.999],[167.033,-61.054],[166.954,-61.146],[166.683,-61.201],[166.604,-61.293],[166.333,-61.347],[166.058,-61.4],[165.783,-61.452],[165.7,-61.544],[165.425,-61.596],[165.342,-61.687],[165.063,-61.739],[164.783,-61.789],[164.504,-61.839],[164.221,-61.889],[164.029,-61.847],[163.746,-61.895],[163.554,-61.853],[163.275,-61.9],[163.083,-61.857],[162.8,-61.904],[162.517,-61.95],[162.325,-61.906],[162.038,-61.951],[161.85,-61.906],[161.563,-61.95],[161.279,-61.994],[161.087,-61.948],[160.9,-61.902],[160.612,-61.944],[160.425,-61.897],[160.242,-61.85],[159.954,-61.891],[159.767,-61.844],[159.579,-61.796],[159.396,-61.748],[159.212,-61.699],[159.129,-61.564],[158.946,-61.515],[158.763,-61.466],[158.583,-61.417],[158.504,-61.281],[158.325,-61.231],[158.142,-61.182],[157.963,-61.132],[157.888,-60.995],[157.713,-60.945],[157.533,-60.894],[157.462,-60.757],[157.283,-60.707],[157.108,-60.656],[156.933,-60.605],[156.758,-60.553],[156.588,-60.502],[156.517,-60.364],[156.346,-60.312],[156.175,-60.26],[156.004,-60.208],[155.937,-60.07],[155.875,-59.932],[155.979,-59.848],[155.913,-59.71],[156.188,-59.677],[156.292,-59.592],[156.563,-59.558],[156.663,-59.473],[156.933,-59.439],[157.1,-59.49],[157.371,-59.455],[157.542,-59.505],[157.813,-59.469],[158.079,-59.433],[158.25,-59.482],[158.517,-59.445],[158.617,-59.358],[158.712,-59.271],[158.979,-59.233],[159.071,-59.145],[159.167,-59.058],[159.263,-58.97],[159.354,-58.883],[159.617,-58.843],[159.879,-58.803],[160.142,-58.762],[160.313,-58.809],[160.479,-58.856],[160.654,-58.903],[160.913,-58.861],[161.083,-58.907],[161.258,-58.952],[161.429,-58.998]]]]}},{"type":"Feature","id":"ol5","properties":{},"geometry":{"type":"MultiPolygon","coordinates":[[[[-79.996,-6.272],[-79.95,-6.184],[-79.904,-6.095],[-79.858,-6.006],[-79.812,-5.917],[-79.767,-5.829],[-79.629,-5.786],[-79.583,-5.698],[-79.45,-5.655],[-79.358,-5.701],[-79.271,-5.747],[-79.179,-5.793],[-79.092,-5.839],[-79,-5.885],[-78.913,-5.931],[-78.825,-5.977],[-78.779,-6.112],[-78.692,-6.158],[-78.6,-6.204],[-78.512,-6.249],[-78.421,-6.295],[-78.333,-6.341],[-78.246,-6.387],[-78.2,-6.522],[-78.113,-6.567],[-78.067,-6.702],[-78.025,-6.837],[-78.071,-6.926],[-78.025,-7.06],[-77.983,-7.195],[-77.942,-7.329],[-77.85,-7.375],[-77.762,-7.421],[-77.671,-7.466],[-77.579,-7.512],[-77.537,-7.647],[-77.446,-7.692],[-77.404,-7.827],[-77.358,-7.961],[-77.404,-8.05],[-77.363,-8.184],[-77.408,-8.273],[-77.542,-8.316],[-77.592,-8.405],[-77.725,-8.448],[-77.817,-8.402],[-77.95,-8.446],[-78.042,-8.4],[-78.133,-8.354],[-78.175,-8.22],[-78.267,-8.174],[-78.308,-8.039],[-78.354,-7.905],[-78.442,-7.859],[-78.533,-7.813],[-78.621,-7.767],[-78.712,-7.722],[-78.846,-7.764],[-78.937,-7.719],[-79.071,-7.761],[-79.163,-7.716],[-79.3,-7.758],[-79.433,-7.801],[-79.525,-7.755],[-79.613,-7.709],[-79.704,-7.663],[-79.792,-7.617],[-79.883,-7.571],[-79.925,-7.436],[-79.967,-7.301],[-80.013,-7.167],[-80.054,-7.032],[-80.008,-6.943],[-80.05,-6.808],[-80.004,-6.719],[-80.046,-6.585],[-80,-6.496],[-79.954,-6.407],[-79.996,-6.272]],[[-92.492,-28.874],[-92.433,-28.788],[-92.375,-28.702],[-92.217,-28.667],[-92.158,-28.581],[-92.004,-28.546],[-91.85,-28.511],[-91.692,-28.476],[-91.633,-28.389],[-91.479,-28.354],[-91.421,-28.267],[-91.363,-28.181],[-91.208,-28.145],[-91.154,-28.059],[-91.096,-27.973],[-91.037,-27.886],[-90.983,-27.8],[-90.925,-27.713],[-90.867,-27.627],[-90.812,-27.541],[-90.658,-27.504],[-90.6,-27.417],[-90.45,-27.381],[-90.296,-27.344],[-90.142,-27.307],[-90.083,-27.22],[-89.933,-27.183],[-89.875,-27.096],[-89.821,-27.009],[-89.767,-26.923],[-89.708,-26.836],[-89.558,-26.798],[-89.5,-26.711],[-89.446,-26.624],[-89.392,-26.537],[-89.238,-26.5],[-89.183,-26.413],[-89.129,-26.326],[-89.075,-26.239],[-89.021,-26.152],[-88.967,-26.064],[-88.817,-26.026],[-88.758,-25.939],[-88.704,-25.852],[-88.554,-25.814],[-88.404,-25.775],[-88.254,-25.736],[-88.104,-25.698],[-88.004,-25.746],[-87.908,-25.794],[-87.758,-25.755],[-87.658,-25.804],[-87.508,-25.764],[-87.413,-25.812],[-87.262,-25.773],[-87.208,-25.685],[-87.058,-25.645],[-87.004,-25.558],[-86.95,-25.47],[-86.9,-25.382],[-86.846,-25.295],[-86.796,-25.207],[-86.742,-25.119],[-86.687,-25.032],[-86.638,-24.944],[-86.583,-24.856],[-86.629,-24.721],[-86.575,-24.633],[-86.525,-24.546],[-86.567,-24.41],[-86.613,-24.275],[-86.563,-24.187],[-86.604,-24.052],[-86.65,-23.916],[-86.692,-23.781],[-86.738,-23.645],[-86.779,-23.51],[-86.729,-23.422],[-86.675,-23.334],[-86.721,-23.199],[-86.667,-23.111],[-86.521,-23.071],[-86.471,-22.984],[-86.321,-22.943],[-86.175,-22.903],[-86.079,-22.951],[-85.933,-22.91],[-85.837,-22.957],[-85.692,-22.917],[-85.542,-22.876],[-85.446,-22.923],[-85.3,-22.882],[-85.154,-22.841],[-85.008,-22.8],[-84.863,-22.759],[-84.767,-22.806],[-84.721,-22.941],[-84.771,-23.029],[-84.821,-23.117],[-84.871,-23.205],[-84.921,-23.293],[-84.975,-23.381],[-85.025,-23.469],[-84.979,-23.604],[-85.029,-23.692],[-84.983,-23.827],[-84.937,-23.962],[-84.988,-24.05],[-84.892,-24.097],[-84.846,-24.232],[-84.8,-24.366],[-84.754,-24.501],[-84.708,-24.636],[-84.663,-24.77],[-84.712,-24.859],[-84.763,-24.947],[-84.812,-25.035],[-84.867,-25.123],[-84.917,-25.211],[-84.967,-25.299],[-85.021,-25.387],[-85.071,-25.475],[-85.121,-25.563],[-85.175,-25.651],[-85.125,-25.786],[-85.029,-25.832],[-84.929,-25.879],[-84.779,-25.837],[-84.629,-25.796],[-84.533,-25.842],[-84.433,-25.888],[-84.333,-25.934],[-84.238,-25.98],[-84.137,-26.026],[-84.087,-26.161],[-84.042,-26.295],[-83.992,-26.429],[-84.042,-26.517],[-84.096,-26.605],[-84.046,-26.739],[-84.096,-26.827],[-84.15,-26.916],[-84.2,-27.004],[-84.25,-27.092],[-84.3,-27.181],[-84.354,-27.269],[-84.404,-27.357],[-84.354,-27.491],[-84.408,-27.579],[-84.458,-27.667],[-84.508,-27.756],[-84.462,-27.89],[-84.512,-27.978],[-84.562,-28.066],[-84.517,-28.2],[-84.567,-28.288],[-84.617,-28.376],[-84.671,-28.464],[-84.821,-28.507],[-84.875,-28.595],[-84.925,-28.683],[-84.979,-28.771],[-85.029,-28.859],[-85.183,-28.901],[-85.238,-28.989],[-85.287,-29.077],[-85.342,-29.165],[-85.396,-29.253],[-85.446,-29.341],[-85.4,-29.475],[-85.45,-29.563],[-85.504,-29.651],[-85.558,-29.739],[-85.608,-29.827],[-85.663,-29.915],[-85.613,-30.049],[-85.667,-30.137],[-85.721,-30.225],[-85.771,-30.313],[-85.725,-30.447],[-85.775,-30.535],[-85.829,-30.623],[-85.883,-30.711],[-85.937,-30.799],[-85.992,-30.887],[-86.046,-30.974],[-86.1,-31.062],[-86.254,-31.104],[-86.308,-31.192],[-86.467,-31.233],[-86.625,-31.274],[-86.783,-31.314],[-86.942,-31.355],[-87.042,-31.308],[-87.2,-31.349],[-87.304,-31.301],[-87.462,-31.342],[-87.517,-31.429],[-87.675,-31.469],[-87.733,-31.557],[-87.787,-31.644],[-87.842,-31.731],[-87.9,-31.819],[-87.954,-31.906],[-88.008,-31.994],[-88.067,-32.081],[-88.121,-32.168],[-88.283,-32.208],[-88.442,-32.247],[-88.546,-32.199],[-88.704,-32.238],[-88.808,-32.19],[-88.971,-32.229],[-89.075,-32.18],[-89.175,-32.132],[-89.337,-32.17],[-89.442,-32.121],[-89.6,-32.159],[-89.704,-32.111],[-89.808,-32.062],[-89.908,-32.013],[-89.954,-31.877],[-89.896,-31.79],[-89.837,-31.703],[-89.679,-31.665],[-89.621,-31.578],[-89.462,-31.54],[-89.404,-31.453],[-89.35,-31.366],[-89.292,-31.279],[-89.233,-31.192],[-89.179,-31.106],[-89.225,-30.97],[-89.167,-30.883],[-89.212,-30.747],[-89.258,-30.611],[-89.358,-30.562],[-89.458,-30.514],[-89.562,-30.464],[-89.663,-30.416],[-89.762,-30.366],[-89.921,-30.404],[-90.021,-30.355],[-90.179,-30.392],[-90.338,-30.429],[-90.496,-30.466],[-90.654,-30.503],[-90.754,-30.453],[-90.913,-30.489],[-91.012,-30.439],[-91.113,-30.389],[-91.212,-30.339],[-91.313,-30.289],[-91.413,-30.239],[-91.512,-30.188],[-91.671,-30.224],[-91.771,-30.173],[-91.929,-30.209],[-92.029,-30.158],[-92.187,-30.193],[-92.288,-30.142],[-92.387,-30.091],[-92.488,-30.04],[-92.525,-29.903],[-92.567,-29.766],[-92.608,-29.629],[-92.546,-29.543],[-92.587,-29.406],[-92.529,-29.32],[-92.567,-29.183],[-92.508,-29.097],[-92.55,-28.96],[-92.492,-28.874]],[[-84.413,-22.189],[-84.363,-22.101],[-84.217,-22.059],[-84.121,-22.106],[-84.025,-22.152],[-83.879,-22.11],[-83.783,-22.157],[-83.738,-22.291],[-83.788,-22.379],[-83.933,-22.421],[-83.983,-22.51],[-84.129,-22.552],[-84.275,-22.593],[-84.421,-22.635],[-84.471,-22.723],[-84.617,-22.764],[-84.808,-22.671],[-84.758,-22.583],[-84.708,-22.495],[-84.658,-22.407],[-84.512,-22.365],[-84.462,-22.277],[-84.413,-22.189]],[[-94.038,-34.732],[-93.975,-34.646],[-93.913,-34.561],[-93.746,-34.528],[-93.683,-34.442],[-93.517,-34.409],[-93.35,-34.375],[-93.183,-34.341],[-93.021,-34.307],[-92.917,-34.358],[-92.75,-34.323],[-92.687,-34.238],[-92.521,-34.203],[-92.462,-34.117],[-92.4,-34.031],[-92.233,-33.996],[-92.175,-33.91],[-92.113,-33.824],[-92.05,-33.738],[-91.992,-33.652],[-91.929,-33.566],[-91.767,-33.53],[-91.604,-33.494],[-91.5,-33.544],[-91.396,-33.595],[-91.292,-33.645],[-91.187,-33.695],[-91.083,-33.744],[-90.979,-33.794],[-90.817,-33.757],[-90.708,-33.807],[-90.604,-33.856],[-90.5,-33.906],[-90.338,-33.869],[-90.175,-33.831],[-90.008,-33.793],[-89.846,-33.756],[-89.787,-33.669],[-89.729,-33.582],[-89.671,-33.495],[-89.613,-33.408],[-89.45,-33.37],[-89.287,-33.331],[-89.183,-33.38],[-89.079,-33.428],[-88.975,-33.476],[-88.867,-33.524],[-88.762,-33.573],[-88.717,-33.708],[-88.771,-33.795],[-88.725,-33.93],[-88.675,-34.065],[-88.733,-34.152],[-88.683,-34.287],[-88.742,-34.374],[-88.8,-34.462],[-88.75,-34.597],[-88.808,-34.684],[-88.867,-34.771],[-88.817,-34.906],[-88.875,-34.993],[-88.933,-35.08],[-88.992,-35.167],[-89.05,-35.254],[-89.108,-35.341],[-89.167,-35.428],[-89.225,-35.516],[-89.392,-35.554],[-89.45,-35.641],[-89.508,-35.728],[-89.567,-35.815],[-89.738,-35.854],[-89.904,-35.892],[-89.962,-35.979],[-90.129,-36.017],[-90.3,-36.055],[-90.467,-36.092],[-90.633,-36.13],[-90.742,-36.081],[-90.913,-36.118],[-91.017,-36.068],[-91.067,-35.932],[-91.171,-35.883],[-91.279,-35.833],[-91.388,-35.783],[-91.492,-35.734],[-91.663,-35.77],[-91.767,-35.72],[-91.937,-35.756],[-92.104,-35.791],[-92.167,-35.877],[-92.229,-35.963],[-92.396,-35.999],[-92.567,-36.034],[-92.629,-36.12],[-92.796,-36.154],[-92.904,-36.104],[-93.012,-36.052],[-93.179,-36.087],[-93.288,-36.036],[-93.329,-35.899],[-93.433,-35.847],[-93.542,-35.796],[-93.583,-35.659],[-93.687,-35.607],[-93.792,-35.555],[-93.833,-35.418],[-93.937,-35.366],[-94.046,-35.314],[-94.083,-35.177],[-94.125,-35.039],[-94.063,-34.954],[-94.104,-34.817],[-94.038,-34.732]],[[-116.142,-52.376],[-116.025,-52.306],[-116.021,-52.165],[-115.904,-52.095],[-115.787,-52.025],[-115.558,-52.026],[-115.442,-51.956],[-115.325,-51.886],[-115.096,-51.886],[-114.867,-51.886],[-114.637,-51.886],[-114.525,-51.956],[-114.408,-52.026],[-114.292,-52.096],[-114.175,-52.166],[-114.175,-52.308],[-114.171,-52.449],[-114.283,-52.521],[-114.283,-52.662],[-114.4,-52.733],[-114.512,-52.804],[-114.629,-52.876],[-114.746,-52.946],[-114.863,-53.017],[-114.983,-53.088],[-115.1,-53.159],[-115.217,-53.229],[-115.337,-53.299],[-115.454,-53.37],[-115.575,-53.44],[-115.692,-53.51],[-115.813,-53.58],[-115.933,-53.65],[-116.054,-53.72],[-116.175,-53.789],[-116.296,-53.859],[-116.421,-53.928],[-116.542,-53.997],[-116.663,-54.067],[-116.904,-54.063],[-117.146,-54.059],[-117.387,-54.055],[-117.504,-53.982],[-117.496,-53.841],[-117.487,-53.699],[-117.363,-53.631],[-117.358,-53.49],[-117.233,-53.421],[-117.113,-53.353],[-117.104,-53.211],[-116.983,-53.143],[-116.863,-53.074],[-116.742,-53.005],[-116.625,-52.936],[-116.504,-52.867],[-116.5,-52.725],[-116.379,-52.656],[-116.262,-52.587],[-116.258,-52.445],[-116.142,-52.376]],[[160.633,-59.35],[160.808,-59.396],[160.983,-59.442],[161.158,-59.489],[161.333,-59.534],[161.421,-59.669],[161.504,-59.803],[161.417,-59.892],[161.325,-59.981],[161.233,-60.07],[160.963,-60.113],[160.871,-60.202],[160.596,-60.244],[160.325,-60.286],[160.229,-60.374],[159.954,-60.415],[159.683,-60.455],[159.404,-60.495],[159.129,-60.534],[158.954,-60.486],[158.875,-60.349],[158.796,-60.213],[158.896,-60.126],[158.996,-60.039],[159.092,-59.951],[159.187,-59.864],[159.283,-59.776],[159.554,-59.737],[159.65,-59.649],[159.742,-59.561],[159.838,-59.473],[159.929,-59.386],[160.196,-59.345],[160.463,-59.303],[160.633,-59.35]]]]}}]} \ No newline at end of file diff --git a/frontend/vendor/celestial/data/stars.6.json b/frontend/vendor/celestial/data/stars.6.json new file mode 100644 index 0000000..e427a4d --- /dev/null +++ b/frontend/vendor/celestial/data/stars.6.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","id":88,"properties":{"mag":5.71,"bv":"0.911"},"geometry":{"type":"Point","coordinates":[0.2691,-48.8099]}},{"type":"Feature","id":107,"properties":{"mag":5.53,"bv":"1.615"},"geometry":{"type":"Point","coordinates":[0.3338,-50.3374]}},{"type":"Feature","id":122,"properties":{"mag":4.78,"bv":"1.254"},"geometry":{"type":"Point","coordinates":[0.3988,-77.0657]}},{"type":"Feature","id":124,"properties":{"mag":5.58,"bv":"0.407"},"geometry":{"type":"Point","coordinates":[0.4042,61.2228]}},{"type":"Feature","id":145,"properties":{"mag":5.13,"bv":"-0.128"},"geometry":{"type":"Point","coordinates":[0.456,-3.0275]}},{"type":"Feature","id":154,"properties":{"mag":4.37,"bv":"1.631"},"geometry":{"type":"Point","coordinates":[0.4901,-6.0141]}},{"type":"Feature","id":171,"properties":{"mag":5.8,"bv":"0.690"},"geometry":{"type":"Point","coordinates":[0.5423,27.0823]}},{"type":"Feature","id":183,"properties":{"mag":5.04,"bv":"-0.150"},"geometry":{"type":"Point","coordinates":[0.583,-29.7204]}},{"type":"Feature","id":194,"properties":{"mag":5.7,"bv":"0.315"},"geometry":{"type":"Point","coordinates":[0.6238,8.4855]}},{"type":"Feature","id":207,"properties":{"mag":5.87,"bv":"1.073"},"geometry":{"type":"Point","coordinates":[0.6504,66.099]}},{"type":"Feature","id":301,"properties":{"mag":4.55,"bv":"-0.047"},"geometry":{"type":"Point","coordinates":[0.935,-17.336]}},{"type":"Feature","id":330,"properties":{"mag":5.9,"bv":"0.274"},"geometry":{"type":"Point","coordinates":[1.0569,62.2877]}},{"type":"Feature","id":343,"properties":{"mag":5.78,"bv":"1.084"},"geometry":{"type":"Point","coordinates":[1.0825,-16.529]}},{"type":"Feature","id":355,"properties":{"mag":4.99,"bv":"1.619"},"geometry":{"type":"Point","coordinates":[1.1255,-10.5095]}},{"type":"Feature","id":377,"properties":{"mag":5.59,"bv":"-0.100"},"geometry":{"type":"Point","coordinates":[1.1721,-71.4369]}},{"type":"Feature","id":379,"properties":{"mag":5.68,"bv":"1.051"},"geometry":{"type":"Point","coordinates":[1.1749,67.1664]}},{"type":"Feature","id":418,"properties":{"mag":5.8,"bv":"-0.067"},"geometry":{"type":"Point","coordinates":[1.2756,61.314]}},{"type":"Feature","id":443,"properties":{"mag":4.61,"bv":"1.029"},"geometry":{"type":"Point","coordinates":[1.3339,-5.7076]}},{"type":"Feature","id":476,"properties":{"mag":5.55,"bv":"0.901"},"geometry":{"type":"Point","coordinates":[1.4248,13.3963]}},{"type":"Feature","id":518,"properties":{"mag":5.98,"bv":"0.687"},"geometry":{"type":"Point","coordinates":[1.5659,58.4367]}},{"type":"Feature","id":522,"properties":{"mag":5.7,"bv":"0.519"},"geometry":{"type":"Point","coordinates":[1.5799,-49.0752]}},{"type":"Feature","id":531,"properties":{"mag":5.57,"bv":"-0.023"},"geometry":{"type":"Point","coordinates":[1.6106,64.1962]}},{"type":"Feature","id":636,"properties":{"mag":5.93,"bv":"0.141"},"geometry":{"type":"Point","coordinates":[1.9454,-22.5086]}},{"type":"Feature","id":655,"properties":{"mag":5.67,"bv":"1.119"},"geometry":{"type":"Point","coordinates":[2.0145,-33.5293]}},{"type":"Feature","id":671,"properties":{"mag":5.99,"bv":"1.034"},"geometry":{"type":"Point","coordinates":[2.0731,-8.8241]}},{"type":"Feature","id":677,"properties":{"mag":2.07,"bv":"-0.038"},"geometry":{"type":"Point","coordinates":[2.0969,29.0904]}},{"type":"Feature","id":729,"properties":{"mag":5.57,"bv":"1.043"},"geometry":{"type":"Point","coordinates":[2.2601,18.212]}},{"type":"Feature","id":746,"properties":{"mag":2.28,"bv":"0.380"},"geometry":{"type":"Point","coordinates":[2.2945,59.1498]}},{"type":"Feature","id":761,"properties":{"mag":5.42,"bv":"0.414"},"geometry":{"type":"Point","coordinates":[2.3378,-27.9879]}},{"type":"Feature","id":765,"properties":{"mag":3.88,"bv":"1.013"},"geometry":{"type":"Point","coordinates":[2.3527,-45.7474]}},{"type":"Feature","id":813,"properties":{"mag":5.54,"bv":"-0.064"},"geometry":{"type":"Point","coordinates":[2.5092,11.1458]}},{"type":"Feature","id":814,"properties":{"mag":5.29,"bv":"1.049"},"geometry":{"type":"Point","coordinates":[2.5091,-82.224]}},{"type":"Feature","id":840,"properties":{"mag":5.84,"bv":"0.973"},"geometry":{"type":"Point","coordinates":[2.5786,-5.2486]}},{"type":"Feature","id":841,"properties":{"mag":5.01,"bv":"0.405"},"geometry":{"type":"Point","coordinates":[2.5802,46.0723]}},{"type":"Feature","id":873,"properties":{"mag":5.84,"bv":"1.000"},"geometry":{"type":"Point","coordinates":[2.6785,-12.5799]}},{"type":"Feature","id":910,"properties":{"mag":4.89,"bv":"0.487"},"geometry":{"type":"Point","coordinates":[2.8161,-15.468]}},{"type":"Feature","id":930,"properties":{"mag":5.41,"bv":"1.346"},"geometry":{"type":"Point","coordinates":[2.8934,-27.7997]}},{"type":"Feature","id":950,"properties":{"mag":5.24,"bv":"0.459"},"geometry":{"type":"Point","coordinates":[2.9334,-35.1331]}},{"type":"Feature","id":983,"properties":{"mag":5.29,"bv":"1.478"},"geometry":{"type":"Point","coordinates":[3.0416,-17.9383]}},{"type":"Feature","id":1067,"properties":{"mag":2.83,"bv":"-0.190"},"geometry":{"type":"Point","coordinates":[3.309,15.1836]}},{"type":"Feature","id":1074,"properties":{"mag":5.78,"bv":"1.710"},"geometry":{"type":"Point","coordinates":[3.3318,-84.994]}},{"type":"Feature","id":1086,"properties":{"mag":5.71,"bv":"0.331"},"geometry":{"type":"Point","coordinates":[3.3785,41.0354]}},{"type":"Feature","id":1096,"properties":{"mag":5.94,"bv":"1.548"},"geometry":{"type":"Point","coordinates":[3.426,-26.0223]}},{"type":"Feature","id":1158,"properties":{"mag":5.13,"bv":"1.601"},"geometry":{"type":"Point","coordinates":[3.6151,-7.7805]}},{"type":"Feature","id":1168,"properties":{"mag":4.79,"bv":"1.572"},"geometry":{"type":"Point","coordinates":[3.6507,20.2067]}},{"type":"Feature","id":1170,"properties":{"mag":4.44,"bv":"1.640"},"geometry":{"type":"Point","coordinates":[3.6601,-18.9329]}},{"type":"Feature","id":1191,"properties":{"mag":5.77,"bv":"-0.084"},"geometry":{"type":"Point","coordinates":[3.7271,-9.5696]}},{"type":"Feature","id":1288,"properties":{"mag":5.66,"bv":"1.350"},"geometry":{"type":"Point","coordinates":[4.0369,-31.4464]}},{"type":"Feature","id":1354,"properties":{"mag":5.74,"bv":"0.898"},"geometry":{"type":"Point","coordinates":[4.2377,61.5332]}},{"type":"Feature","id":1366,"properties":{"mag":4.61,"bv":"0.059"},"geometry":{"type":"Point","coordinates":[4.2729,38.6816]}},{"type":"Feature","id":1372,"properties":{"mag":5.86,"bv":"-0.079"},"geometry":{"type":"Point","coordinates":[4.2877,47.9474]}},{"type":"Feature","id":1473,"properties":{"mag":4.51,"bv":"0.054"},"geometry":{"type":"Point","coordinates":[4.5819,36.7852]}},{"type":"Feature","id":1493,"properties":{"mag":5.88,"bv":"-0.014"},"geometry":{"type":"Point","coordinates":[4.6594,31.5172]}},{"type":"Feature","id":1562,"properties":{"mag":3.56,"bv":"1.214"},"geometry":{"type":"Point","coordinates":[4.857,-8.8239]}},{"type":"Feature","id":1599,"properties":{"mag":4.23,"bv":"0.576"},"geometry":{"type":"Point","coordinates":[5.0178,-64.8748]}},{"type":"Feature","id":1630,"properties":{"mag":5.89,"bv":"-0.098"},"geometry":{"type":"Point","coordinates":[5.1017,30.9356]}},{"type":"Feature","id":1645,"properties":{"mag":5.38,"bv":"1.343"},"geometry":{"type":"Point","coordinates":[5.1494,8.1903]}},{"type":"Feature","id":1647,"properties":{"mag":5.5,"bv":"-0.046"},"geometry":{"type":"Point","coordinates":[5.1627,-69.6249]}},{"type":"Feature","id":1657,"properties":{"mag":5.79,"bv":"1.595"},"geometry":{"type":"Point","coordinates":[5.1897,32.9112]}},{"type":"Feature","id":1686,"properties":{"mag":5.16,"bv":"0.442"},"geometry":{"type":"Point","coordinates":[5.2803,37.9686]}},{"type":"Feature","id":1706,"properties":{"mag":5.96,"bv":"1.397"},"geometry":{"type":"Point","coordinates":[5.3699,-77.4269]}},{"type":"Feature","id":1708,"properties":{"mag":5.18,"bv":"1.006"},"geometry":{"type":"Point","coordinates":[5.38,-28.9815]}},{"type":"Feature","id":1728,"properties":{"mag":5.61,"bv":"1.580"},"geometry":{"type":"Point","coordinates":[5.4428,-20.058]}},{"type":"Feature","id":1921,"properties":{"mag":5.58,"bv":"-0.110"},"geometry":{"type":"Point","coordinates":[6.0652,52.0199]}},{"type":"Feature","id":1960,"properties":{"mag":5.38,"bv":"0.008"},"geometry":{"type":"Point","coordinates":[6.1979,61.8311]}},{"type":"Feature","id":1982,"properties":{"mag":5.72,"bv":"-0.056"},"geometry":{"type":"Point","coordinates":[6.2767,53.0468]}},{"type":"Feature","id":2006,"properties":{"mag":5.77,"bv":"0.855"},"geometry":{"type":"Point","coordinates":[6.3509,1.9397]}},{"type":"Feature","id":2021,"properties":{"mag":2.82,"bv":"0.618"},"geometry":{"type":"Point","coordinates":[6.4378,-77.2542]}},{"type":"Feature","id":2072,"properties":{"mag":3.93,"bv":"0.175"},"geometry":{"type":"Point","coordinates":[6.5508,-43.6798]}},{"type":"Feature","id":2081,"properties":{"mag":2.4,"bv":"1.083"},"geometry":{"type":"Point","coordinates":[6.571,-42.306]}},{"type":"Feature","id":2159,"properties":{"mag":5.99,"bv":"1.022"},"geometry":{"type":"Point","coordinates":[6.8113,-25.5472]}},{"type":"Feature","id":2210,"properties":{"mag":4.86,"bv":"1.634"},"geometry":{"type":"Point","coordinates":[6.9821,-33.0072]}},{"type":"Feature","id":2219,"properties":{"mag":5.01,"bv":"1.584"},"geometry":{"type":"Point","coordinates":[7.0121,17.8931]}},{"type":"Feature","id":2225,"properties":{"mag":5.18,"bv":"0.043"},"geometry":{"type":"Point","coordinates":[7.0569,44.3945]}},{"type":"Feature","id":2240,"properties":{"mag":5.42,"bv":"1.556"},"geometry":{"type":"Point","coordinates":[7.1105,-39.915]}},{"type":"Feature","id":2353,"properties":{"mag":5.72,"bv":"1.545"},"geometry":{"type":"Point","coordinates":[7.5098,-3.9573]}},{"type":"Feature","id":2355,"properties":{"mag":5.2,"bv":"0.271"},"geometry":{"type":"Point","coordinates":[7.5307,29.7516]}},{"type":"Feature","id":2377,"properties":{"mag":5.94,"bv":"-0.003"},"geometry":{"type":"Point","coordinates":[7.5831,59.9776]}},{"type":"Feature","id":2381,"properties":{"mag":5.17,"bv":"0.128"},"geometry":{"type":"Point","coordinates":[7.5944,-23.7877]}},{"type":"Feature","id":2383,"properties":{"mag":5.67,"bv":"0.367"},"geometry":{"type":"Point","coordinates":[7.6088,-48.2149]}},{"type":"Feature","id":2472,"properties":{"mag":4.76,"bv":"0.018"},"geometry":{"type":"Point","coordinates":[7.8541,-48.8035]}},{"type":"Feature","id":2475,"properties":{"mag":5.88,"bv":"1.133"},"geometry":{"type":"Point","coordinates":[7.8568,33.5816]}},{"type":"Feature","id":2484,"properties":{"mag":4.36,"bv":"-0.064"},"geometry":{"type":"Point","coordinates":[7.8861,-62.9582]}},{"type":"Feature","id":2487,"properties":{"mag":4.53,"bv":"0.147"},"geometry":{"type":"Point","coordinates":[7.8895,-62.9656]}},{"type":"Feature","id":2497,"properties":{"mag":5.59,"bv":"1.163"},"geometry":{"type":"Point","coordinates":[7.9215,52.8395]}},{"type":"Feature","id":2505,"properties":{"mag":4.74,"bv":"-0.098"},"geometry":{"type":"Point","coordinates":[7.9432,54.5223]}},{"type":"Feature","id":2548,"properties":{"mag":5.69,"bv":"-0.014"},"geometry":{"type":"Point","coordinates":[8.0991,6.9555]}},{"type":"Feature","id":2568,"properties":{"mag":5.38,"bv":"1.069"},"geometry":{"type":"Point","coordinates":[8.1479,20.2943]}},{"type":"Feature","id":2578,"properties":{"mag":5.07,"bv":"0.038"},"geometry":{"type":"Point","coordinates":[8.1829,-63.0315]}},{"type":"Feature","id":2599,"properties":{"mag":4.17,"bv":"0.130"},"geometry":{"type":"Point","coordinates":[8.25,62.9318]}},{"type":"Feature","id":2611,"properties":{"mag":5.93,"bv":"1.037"},"geometry":{"type":"Point","coordinates":[8.2933,54.895]}},{"type":"Feature","id":2661,"properties":{"mag":5.55,"bv":"1.262"},"geometry":{"type":"Point","coordinates":[8.421,-29.5583]}},{"type":"Feature","id":2711,"properties":{"mag":5.57,"bv":"0.472"},"geometry":{"type":"Point","coordinates":[8.616,-52.3731]}},{"type":"Feature","id":2762,"properties":{"mag":5.2,"bv":"0.567"},"geometry":{"type":"Point","coordinates":[8.812,-3.5928]}},{"type":"Feature","id":2787,"properties":{"mag":5.94,"bv":"0.444"},"geometry":{"type":"Point","coordinates":[8.8868,-0.5056]}},{"type":"Feature","id":2802,"properties":{"mag":5.51,"bv":"0.461"},"geometry":{"type":"Point","coordinates":[8.9216,-48.0009]}},{"type":"Feature","id":2854,"properties":{"mag":5.08,"bv":"-0.098"},"geometry":{"type":"Point","coordinates":[9.0346,54.1685]}},{"type":"Feature","id":2876,"properties":{"mag":5.78,"bv":"0.294"},"geometry":{"type":"Point","coordinates":[9.1139,60.3262]}},{"type":"Feature","id":2900,"properties":{"mag":5.14,"bv":"1.587"},"geometry":{"type":"Point","coordinates":[9.1935,44.4886]}},{"type":"Feature","id":2903,"properties":{"mag":5.89,"bv":"-0.146"},"geometry":{"type":"Point","coordinates":[9.1971,15.2317]}},{"type":"Feature","id":2912,"properties":{"mag":4.34,"bv":"-0.123"},"geometry":{"type":"Point","coordinates":[9.2202,33.7193]}},{"type":"Feature","id":2920,"properties":{"mag":3.69,"bv":"-0.196"},"geometry":{"type":"Point","coordinates":[9.2429,53.8969]}},{"type":"Feature","id":2941,"properties":{"mag":5.57,"bv":"0.715"},"geometry":{"type":"Point","coordinates":[9.3363,-24.7673]}},{"type":"Feature","id":2942,"properties":{"mag":5.45,"bv":"0.886"},"geometry":{"type":"Point","coordinates":[9.3384,35.3995]}},{"type":"Feature","id":3031,"properties":{"mag":4.34,"bv":"0.871"},"geometry":{"type":"Point","coordinates":[9.6389,29.3118]}},{"type":"Feature","id":3083,"properties":{"mag":5.45,"bv":"1.644"},"geometry":{"type":"Point","coordinates":[9.7912,49.3546]}},{"type":"Feature","id":3092,"properties":{"mag":3.27,"bv":"1.268"},"geometry":{"type":"Point","coordinates":[9.832,30.861]}},{"type":"Feature","id":3093,"properties":{"mag":5.88,"bv":"0.850"},"geometry":{"type":"Point","coordinates":[9.8409,21.2505]}},{"type":"Feature","id":3137,"properties":{"mag":6,"bv":"1.142"},"geometry":{"type":"Point","coordinates":[9.9665,-44.7963]}},{"type":"Feature","id":3138,"properties":{"mag":5.36,"bv":"1.160"},"geometry":{"type":"Point","coordinates":[9.9815,21.4385]}},{"type":"Feature","id":3170,"properties":{"mag":5.89,"bv":"0.564"},"geometry":{"type":"Point","coordinates":[10.107,-59.4546]}},{"type":"Feature","id":3179,"properties":{"mag":2.24,"bv":"1.170"},"geometry":{"type":"Point","coordinates":[10.1268,56.5373]}},{"type":"Feature","id":3193,"properties":{"mag":5.9,"bv":"1.091"},"geometry":{"type":"Point","coordinates":[10.1766,-4.3518]}},{"type":"Feature","id":3231,"properties":{"mag":5.3,"bv":"0.891"},"geometry":{"type":"Point","coordinates":[10.2799,39.4587]}},{"type":"Feature","id":3245,"properties":{"mag":4.59,"bv":"0.953"},"geometry":{"type":"Point","coordinates":[10.3315,-46.085]}},{"type":"Feature","id":3277,"properties":{"mag":5.72,"bv":"0.131"},"geometry":{"type":"Point","coordinates":[10.4433,-56.5013]}},{"type":"Feature","id":3299,"properties":{"mag":5.83,"bv":"1.042"},"geometry":{"type":"Point","coordinates":[10.5143,66.1476]}},{"type":"Feature","id":3300,"properties":{"mag":4.8,"bv":"-0.105"},"geometry":{"type":"Point","coordinates":[10.5162,50.5125]}},{"type":"Feature","id":3330,"properties":{"mag":5.38,"bv":"0.515"},"geometry":{"type":"Point","coordinates":[10.6182,-65.468]}},{"type":"Feature","id":3352,"properties":{"mag":5.99,"bv":"1.318"},"geometry":{"type":"Point","coordinates":[10.6748,-60.2628]}},{"type":"Feature","id":3405,"properties":{"mag":4.36,"bv":"0.024"},"geometry":{"type":"Point","coordinates":[10.8385,-57.4631]}},{"type":"Feature","id":3414,"properties":{"mag":4.95,"bv":"0.170"},"geometry":{"type":"Point","coordinates":[10.867,47.0245]}},{"type":"Feature","id":3419,"properties":{"mag":2.04,"bv":"1.019"},"geometry":{"type":"Point","coordinates":[10.8974,-17.9866]}},{"type":"Feature","id":3455,"properties":{"mag":4.77,"bv":"0.998"},"geometry":{"type":"Point","coordinates":[11.0475,-10.6096]}},{"type":"Feature","id":3456,"properties":{"mag":5.9,"bv":"1.144"},"geometry":{"type":"Point","coordinates":[11.0504,-38.4217]}},{"type":"Feature","id":3478,"properties":{"mag":5.66,"bv":"-0.113"},"geometry":{"type":"Point","coordinates":[11.1091,47.864]}},{"type":"Feature","id":3504,"properties":{"mag":4.48,"bv":"-0.069"},"geometry":{"type":"Point","coordinates":[11.1813,48.2844]}},{"type":"Feature","id":3505,"properties":{"mag":5.22,"bv":"0.350"},"geometry":{"type":"Point","coordinates":[11.185,-22.0061]}},{"type":"Feature","id":3521,"properties":{"mag":5.94,"bv":"0.297"},"geometry":{"type":"Point","coordinates":[11.2377,-42.6766]}},{"type":"Feature","id":3544,"properties":{"mag":5.41,"bv":"0.022"},"geometry":{"type":"Point","coordinates":[11.3216,55.2214]}},{"type":"Feature","id":3572,"properties":{"mag":5.64,"bv":"0.078"},"geometry":{"type":"Point","coordinates":[11.4128,74.9881]}},{"type":"Feature","id":3583,"properties":{"mag":5.8,"bv":"0.635"},"geometry":{"type":"Point","coordinates":[11.44,-47.552]}},{"type":"Feature","id":3607,"properties":{"mag":5.49,"bv":"0.978"},"geometry":{"type":"Point","coordinates":[11.549,-22.5221]}},{"type":"Feature","id":3632,"properties":{"mag":5.36,"bv":"1.559"},"geometry":{"type":"Point","coordinates":[11.6373,15.4755]}},{"type":"Feature","id":3675,"properties":{"mag":5.51,"bv":"0.987"},"geometry":{"type":"Point","coordinates":[11.7561,11.9738]}},{"type":"Feature","id":3693,"properties":{"mag":4.08,"bv":"1.100"},"geometry":{"type":"Point","coordinates":[11.8347,24.2672]}},{"type":"Feature","id":3697,"properties":{"mag":5.98,"bv":"0.941"},"geometry":{"type":"Point","coordinates":[11.8485,6.741]}},{"type":"Feature","id":3717,"properties":{"mag":5.7,"bv":"1.300"},"geometry":{"type":"Point","coordinates":[11.9301,-18.0613]}},{"type":"Feature","id":3721,"properties":{"mag":5.42,"bv":"-0.066"},"geometry":{"type":"Point","coordinates":[11.9419,74.8476]}},{"type":"Feature","id":3741,"properties":{"mag":5.57,"bv":"-0.058"},"geometry":{"type":"Point","coordinates":[12.0044,-21.7225]}},{"type":"Feature","id":3750,"properties":{"mag":5.86,"bv":"1.010"},"geometry":{"type":"Point","coordinates":[12.0381,72.6745]}},{"type":"Feature","id":3760,"properties":{"mag":5.92,"bv":"1.104"},"geometry":{"type":"Point","coordinates":[12.0725,7.2999]}},{"type":"Feature","id":3765,"properties":{"mag":5.74,"bv":"0.890"},"geometry":{"type":"Point","coordinates":[12.0957,5.2806]}},{"type":"Feature","id":3781,"properties":{"mag":5.09,"bv":"1.345"},"geometry":{"type":"Point","coordinates":[12.1476,-74.9234]}},{"type":"Feature","id":3786,"properties":{"mag":4.44,"bv":"1.500"},"geometry":{"type":"Point","coordinates":[12.1706,7.5851]}},{"type":"Feature","id":3801,"properties":{"mag":4.9,"bv":"-0.091"},"geometry":{"type":"Point","coordinates":[12.2084,50.9682]}},{"type":"Feature","id":3810,"properties":{"mag":5.07,"bv":"0.502"},"geometry":{"type":"Point","coordinates":[12.2446,16.9406]}},{"type":"Feature","id":3821,"properties":{"mag":3.46,"bv":"0.587"},"geometry":{"type":"Point","coordinates":[12.2762,57.8152]}},{"type":"Feature","id":3834,"properties":{"mag":5.9,"bv":"0.944"},"geometry":{"type":"Point","coordinates":[12.3081,-24.1367]}},{"type":"Feature","id":3849,"properties":{"mag":5.59,"bv":"1.325"},"geometry":{"type":"Point","coordinates":[12.3567,-13.5613]}},{"type":"Feature","id":3881,"properties":{"mag":4.53,"bv":"-0.136"},"geometry":{"type":"Point","coordinates":[12.4535,41.0789]}},{"type":"Feature","id":3885,"properties":{"mag":5.55,"bv":"0.398"},"geometry":{"type":"Point","coordinates":[12.4715,27.7103]}},{"type":"Feature","id":3909,"properties":{"mag":5.17,"bv":"0.514"},"geometry":{"type":"Point","coordinates":[12.5316,-10.6443]}},{"type":"Feature","id":3949,"properties":{"mag":5.24,"bv":"0.356"},"geometry":{"type":"Point","coordinates":[12.6716,-50.9868]}},{"type":"Feature","id":3951,"properties":{"mag":5.35,"bv":"0.528"},"geometry":{"type":"Point","coordinates":[12.6817,64.2475]}},{"type":"Feature","id":4104,"properties":{"mag":5.47,"bv":"1.275"},"geometry":{"type":"Point","coordinates":[13.1693,-24.0058]}},{"type":"Feature","id":4147,"properties":{"mag":4.78,"bv":"1.550"},"geometry":{"type":"Point","coordinates":[13.2521,-1.1443]}},{"type":"Feature","id":4151,"properties":{"mag":4.8,"bv":"0.540"},"geometry":{"type":"Point","coordinates":[13.2675,61.124]}},{"type":"Feature","id":4200,"properties":{"mag":5.73,"bv":"1.574"},"geometry":{"type":"Point","coordinates":[13.4078,-62.8714]}},{"type":"Feature","id":4267,"properties":{"mag":5.8,"bv":"-0.016"},"geometry":{"type":"Point","coordinates":[13.6468,19.1884]}},{"type":"Feature","id":4283,"properties":{"mag":5.59,"bv":"0.105"},"geometry":{"type":"Point","coordinates":[13.7212,83.7074]}},{"type":"Feature","id":4288,"properties":{"mag":5.46,"bv":"1.012"},"geometry":{"type":"Point","coordinates":[13.7421,23.6283]}},{"type":"Feature","id":4292,"properties":{"mag":4.83,"bv":"1.216"},"geometry":{"type":"Point","coordinates":[13.7507,58.9727]}},{"type":"Feature","id":4293,"properties":{"mag":5.45,"bv":"1.095"},"geometry":{"type":"Point","coordinates":[13.7513,-69.5271]}},{"type":"Feature","id":4346,"properties":{"mag":5.88,"bv":"1.520"},"geometry":{"type":"Point","coordinates":[13.9267,-7.3471]}},{"type":"Feature","id":4371,"properties":{"mag":5.35,"bv":"1.505"},"geometry":{"type":"Point","coordinates":[14.0062,-11.2665]}},{"type":"Feature","id":4422,"properties":{"mag":4.62,"bv":"0.957"},"geometry":{"type":"Point","coordinates":[14.1663,59.1811]}},{"type":"Feature","id":4427,"properties":{"mag":2.15,"bv":"-0.046"},"geometry":{"type":"Point","coordinates":[14.1772,60.7167]}},{"type":"Feature","id":4436,"properties":{"mag":3.86,"bv":"0.130"},"geometry":{"type":"Point","coordinates":[14.1884,38.4993]}},{"type":"Feature","id":4440,"properties":{"mag":5.56,"bv":"-0.054"},"geometry":{"type":"Point","coordinates":[14.1957,60.3628]}},{"type":"Feature","id":4463,"properties":{"mag":4.4,"bv":"0.940"},"geometry":{"type":"Point","coordinates":[14.3017,23.4176]}},{"type":"Feature","id":4510,"properties":{"mag":5.44,"bv":"1.076"},"geometry":{"type":"Point","coordinates":[14.459,28.9922]}},{"type":"Feature","id":4552,"properties":{"mag":5.99,"bv":"1.000"},"geometry":{"type":"Point","coordinates":[14.5592,33.9509]}},{"type":"Feature","id":4572,"properties":{"mag":5.97,"bv":"-0.008"},"geometry":{"type":"Point","coordinates":[14.6294,66.3518]}},{"type":"Feature","id":4577,"properties":{"mag":4.3,"bv":"-0.154"},"geometry":{"type":"Point","coordinates":[14.6515,-29.3574]}},{"type":"Feature","id":4587,"properties":{"mag":5.62,"bv":"0.949"},"geometry":{"type":"Point","coordinates":[14.6828,-11.38]}},{"type":"Feature","id":4675,"properties":{"mag":5.69,"bv":"-0.010"},"geometry":{"type":"Point","coordinates":[15.0148,44.7132]}},{"type":"Feature","id":4770,"properties":{"mag":5.59,"bv":"1.185"},"geometry":{"type":"Point","coordinates":[15.3261,-38.9165]}},{"type":"Feature","id":4852,"properties":{"mag":5.5,"bv":"0.083"},"geometry":{"type":"Point","coordinates":[15.6101,-31.552]}},{"type":"Feature","id":4889,"properties":{"mag":5.5,"bv":"-0.043"},"geometry":{"type":"Point","coordinates":[15.7046,31.8043]}},{"type":"Feature","id":4890,"properties":{"mag":5.39,"bv":"0.900"},"geometry":{"type":"Point","coordinates":[15.705,-46.3973]}},{"type":"Feature","id":4903,"properties":{"mag":5.95,"bv":"0.161"},"geometry":{"type":"Point","coordinates":[15.7261,41.3452]}},{"type":"Feature","id":4906,"properties":{"mag":4.27,"bv":"0.952"},"geometry":{"type":"Point","coordinates":[15.7359,7.8901]}},{"type":"Feature","id":4914,"properties":{"mag":5.4,"bv":"1.106"},"geometry":{"type":"Point","coordinates":[15.7606,-4.8366]}},{"type":"Feature","id":4962,"properties":{"mag":5.92,"bv":"0.512"},"geometry":{"type":"Point","coordinates":[15.9042,61.0748]}},{"type":"Feature","id":4998,"properties":{"mag":5.99,"bv":"1.447"},"geometry":{"type":"Point","coordinates":[16.01,52.5022]}},{"type":"Feature","id":5021,"properties":{"mag":5.83,"bv":"0.569"},"geometry":{"type":"Point","coordinates":[16.081,61.5802]}},{"type":"Feature","id":5081,"properties":{"mag":5.64,"bv":"0.420"},"geometry":{"type":"Point","coordinates":[16.2723,14.9461]}},{"type":"Feature","id":5131,"properties":{"mag":5.33,"bv":"0.003"},"geometry":{"type":"Point","coordinates":[16.4206,21.4732]}},{"type":"Feature","id":5132,"properties":{"mag":5.55,"bv":"-0.048"},"geometry":{"type":"Point","coordinates":[16.4238,21.4654]}},{"type":"Feature","id":5164,"properties":{"mag":5.58,"bv":"0.009"},"geometry":{"type":"Point","coordinates":[16.5215,-9.8394]}},{"type":"Feature","id":5165,"properties":{"mag":3.32,"bv":"0.885"},"geometry":{"type":"Point","coordinates":[16.521,-46.7184]}},{"type":"Feature","id":5268,"properties":{"mag":5.36,"bv":"0.884"},"geometry":{"type":"Point","coordinates":[16.8278,-61.7753]}},{"type":"Feature","id":5296,"properties":{"mag":5.71,"bv":"0.446"},"geometry":{"type":"Point","coordinates":[16.9425,-9.7856]}},{"type":"Feature","id":5300,"properties":{"mag":5.21,"bv":"0.159"},"geometry":{"type":"Point","coordinates":[16.9494,-41.4869]}},{"type":"Feature","id":5310,"properties":{"mag":5.56,"bv":"0.121"},"geometry":{"type":"Point","coordinates":[16.9882,20.7391]}},{"type":"Feature","id":5317,"properties":{"mag":5.04,"bv":"0.109"},"geometry":{"type":"Point","coordinates":[17.0035,43.9421]}},{"type":"Feature","id":5336,"properties":{"mag":5.17,"bv":"0.704"},"geometry":{"type":"Point","coordinates":[17.0683,54.9203]}},{"type":"Feature","id":5346,"properties":{"mag":5.51,"bv":"0.334"},"geometry":{"type":"Point","coordinates":[17.0925,5.6498]}},{"type":"Feature","id":5348,"properties":{"mag":3.94,"bv":"-0.120"},"geometry":{"type":"Point","coordinates":[17.0962,-55.2458]}},{"type":"Feature","id":5361,"properties":{"mag":5.77,"bv":"-0.019"},"geometry":{"type":"Point","coordinates":[17.1394,58.2634]}},{"type":"Feature","id":5364,"properties":{"mag":3.46,"bv":"1.161"},"geometry":{"type":"Point","coordinates":[17.1475,-10.1823]}},{"type":"Feature","id":5372,"properties":{"mag":4.24,"bv":"1.213"},"geometry":{"type":"Point","coordinates":[17.187,86.2571]}},{"type":"Feature","id":5434,"properties":{"mag":4.26,"bv":"0.012"},"geometry":{"type":"Point","coordinates":[17.3755,47.2418]}},{"type":"Feature","id":5447,"properties":{"mag":2.07,"bv":"1.576"},"geometry":{"type":"Point","coordinates":[17.433,35.6206]}},{"type":"Feature","id":5454,"properties":{"mag":5.57,"bv":"0.697"},"geometry":{"type":"Point","coordinates":[17.455,19.6584]}},{"type":"Feature","id":5493,"properties":{"mag":5.67,"bv":"0.603"},"geometry":{"type":"Point","coordinates":[17.5781,42.0815]}},{"type":"Feature","id":5494,"properties":{"mag":5.81,"bv":"1.466"},"geometry":{"type":"Point","coordinates":[17.581,25.4578]}},{"type":"Feature","id":5510,"properties":{"mag":5.97,"bv":"1.491"},"geometry":{"type":"Point","coordinates":[17.6398,2.4457]}},{"type":"Feature","id":5518,"properties":{"mag":5.32,"bv":"-0.014"},"geometry":{"type":"Point","coordinates":[17.6638,68.7786]}},{"type":"Feature","id":5542,"properties":{"mag":4.34,"bv":"0.170"},"geometry":{"type":"Point","coordinates":[17.7757,55.1499]}},{"type":"Feature","id":5544,"properties":{"mag":5.15,"bv":"0.261"},"geometry":{"type":"Point","coordinates":[17.7782,31.4247]}},{"type":"Feature","id":5550,"properties":{"mag":5.8,"bv":"-0.095"},"geometry":{"type":"Point","coordinates":[17.7928,37.7241]}},{"type":"Feature","id":5566,"properties":{"mag":5.56,"bv":"-0.052"},"geometry":{"type":"Point","coordinates":[17.8565,64.2027]}},{"type":"Feature","id":5571,"properties":{"mag":4.66,"bv":"1.024"},"geometry":{"type":"Point","coordinates":[17.8634,21.0347]}},{"type":"Feature","id":5586,"properties":{"mag":4.51,"bv":"1.092"},"geometry":{"type":"Point","coordinates":[17.9152,30.0896]}},{"type":"Feature","id":5589,"properties":{"mag":5.57,"bv":"-0.072"},"geometry":{"type":"Point","coordinates":[17.9225,65.0189]}},{"type":"Feature","id":5594,"properties":{"mag":5.93,"bv":"1.403"},"geometry":{"type":"Point","coordinates":[17.9313,-2.2511]}},{"type":"Feature","id":5626,"properties":{"mag":5.6,"bv":"0.008"},"geometry":{"type":"Point","coordinates":[18.0701,79.674]}},{"type":"Feature","id":5661,"properties":{"mag":5.95,"bv":"0.281"},"geometry":{"type":"Point","coordinates":[18.1893,-37.8565]}},{"type":"Feature","id":5737,"properties":{"mag":5.21,"bv":"0.320"},"geometry":{"type":"Point","coordinates":[18.4329,7.5754]}},{"type":"Feature","id":5742,"properties":{"mag":4.67,"bv":"1.047"},"geometry":{"type":"Point","coordinates":[18.4373,24.5837]}},{"type":"Feature","id":5778,"properties":{"mag":5.97,"bv":"-0.082"},"geometry":{"type":"Point","coordinates":[18.5318,16.1335]}},{"type":"Feature","id":5799,"properties":{"mag":5.14,"bv":"0.448"},"geometry":{"type":"Point","coordinates":[18.6002,-7.9228]}},{"type":"Feature","id":5833,"properties":{"mag":5.7,"bv":"0.428"},"geometry":{"type":"Point","coordinates":[18.7049,-0.9738]}},{"type":"Feature","id":5862,"properties":{"mag":4.97,"bv":"0.571"},"geometry":{"type":"Point","coordinates":[18.7963,-45.5317]}},{"type":"Feature","id":5896,"properties":{"mag":4.25,"bv":"0.480"},"geometry":{"type":"Point","coordinates":[18.9423,-68.8759]}},{"type":"Feature","id":5926,"properties":{"mag":5.87,"bv":"2.042"},"geometry":{"type":"Point","coordinates":[19.0496,71.7438]}},{"type":"Feature","id":5951,"properties":{"mag":5.42,"bv":"0.888"},"geometry":{"type":"Point","coordinates":[19.1512,-2.5004]}},{"type":"Feature","id":6061,"properties":{"mag":5.13,"bv":"0.071"},"geometry":{"type":"Point","coordinates":[19.4498,3.6145]}},{"type":"Feature","id":6193,"properties":{"mag":4.74,"bv":"0.032"},"geometry":{"type":"Point","coordinates":[19.8666,27.2641]}},{"type":"Feature","id":6226,"properties":{"mag":5.87,"bv":"0.635"},"geometry":{"type":"Point","coordinates":[19.9512,-0.509]}},{"type":"Feature","id":6242,"properties":{"mag":4.95,"bv":"0.683"},"geometry":{"type":"Point","coordinates":[20.0205,58.2316]}},{"type":"Feature","id":6315,"properties":{"mag":5.23,"bv":"1.396"},"geometry":{"type":"Point","coordinates":[20.2807,28.7382]}},{"type":"Feature","id":6411,"properties":{"mag":4.87,"bv":"1.077"},"geometry":{"type":"Point","coordinates":[20.5851,45.5288]}},{"type":"Feature","id":6492,"properties":{"mag":5.97,"bv":"1.677"},"geometry":{"type":"Point","coordinates":[20.854,20.469]}},{"type":"Feature","id":6502,"properties":{"mag":5.84,"bv":"1.612"},"geometry":{"type":"Point","coordinates":[20.879,-30.9456]}},{"type":"Feature","id":6514,"properties":{"mag":5.6,"bv":"0.276"},"geometry":{"type":"Point","coordinates":[20.9192,37.7149]}},{"type":"Feature","id":6537,"properties":{"mag":3.6,"bv":"1.065"},"geometry":{"type":"Point","coordinates":[21.0059,-8.1833]}},{"type":"Feature","id":6564,"properties":{"mag":5.92,"bv":"0.407"},"geometry":{"type":"Point","coordinates":[21.0854,-6.9147]}},{"type":"Feature","id":6592,"properties":{"mag":5.42,"bv":"1.030"},"geometry":{"type":"Point","coordinates":[21.1699,-41.4925]}},{"type":"Feature","id":6631,"properties":{"mag":5.92,"bv":"1.561"},"geometry":{"type":"Point","coordinates":[21.2721,-64.3695]}},{"type":"Feature","id":6670,"properties":{"mag":4.9,"bv":"1.231"},"geometry":{"type":"Point","coordinates":[21.4051,-14.5988]}},{"type":"Feature","id":6686,"properties":{"mag":2.66,"bv":"0.160"},"geometry":{"type":"Point","coordinates":[21.454,60.2353]}},{"type":"Feature","id":6692,"properties":{"mag":4.72,"bv":"1.047"},"geometry":{"type":"Point","coordinates":[21.4834,68.13]}},{"type":"Feature","id":6706,"properties":{"mag":5.35,"bv":"0.395"},"geometry":{"type":"Point","coordinates":[21.5636,19.1723]}},{"type":"Feature","id":6711,"properties":{"mag":5.98,"bv":"0.520"},"geometry":{"type":"Point","coordinates":[21.5779,43.4577]}},{"type":"Feature","id":6732,"properties":{"mag":5.5,"bv":"1.106"},"geometry":{"type":"Point","coordinates":[21.6737,19.2404]}},{"type":"Feature","id":6748,"properties":{"mag":5.51,"bv":"0.321"},"geometry":{"type":"Point","coordinates":[21.7149,-13.0565]}},{"type":"Feature","id":6813,"properties":{"mag":4.83,"bv":"0.421"},"geometry":{"type":"Point","coordinates":[21.9141,45.4067]}},{"type":"Feature","id":6867,"properties":{"mag":3.41,"bv":"1.542"},"geometry":{"type":"Point","coordinates":[22.0914,-43.3182]}},{"type":"Feature","id":6960,"properties":{"mag":5.11,"bv":"0.028"},"geometry":{"type":"Point","coordinates":[22.4006,-21.6293]}},{"type":"Feature","id":6999,"properties":{"mag":5.27,"bv":"0.999"},"geometry":{"type":"Point","coordinates":[22.5254,47.0073]}},{"type":"Feature","id":7007,"properties":{"mag":4.84,"bv":"1.372"},"geometry":{"type":"Point","coordinates":[22.5463,6.1438]}},{"type":"Feature","id":7016,"properties":{"mag":5.92,"bv":"1.327"},"geometry":{"type":"Point","coordinates":[22.5954,-26.2079]}},{"type":"Feature","id":7078,"properties":{"mag":5.82,"bv":"0.489"},"geometry":{"type":"Point","coordinates":[22.8073,70.2646]}},{"type":"Feature","id":7083,"properties":{"mag":3.93,"bv":"0.972"},"geometry":{"type":"Point","coordinates":[22.8129,-49.0727]}},{"type":"Feature","id":7097,"properties":{"mag":3.62,"bv":"0.974"},"geometry":{"type":"Point","coordinates":[22.8709,15.3458]}},{"type":"Feature","id":7118,"properties":{"mag":5.79,"bv":"1.073"},"geometry":{"type":"Point","coordinates":[22.9302,-30.2831]}},{"type":"Feature","id":7213,"properties":{"mag":5.49,"bv":"1.021"},"geometry":{"type":"Point","coordinates":[23.2336,-36.8652]}},{"type":"Feature","id":7251,"properties":{"mag":5.69,"bv":"1.435"},"geometry":{"type":"Point","coordinates":[23.3571,58.3273]}},{"type":"Feature","id":7276,"properties":{"mag":5.75,"bv":"0.639"},"geometry":{"type":"Point","coordinates":[23.4285,-7.0253]}},{"type":"Feature","id":7294,"properties":{"mag":4.68,"bv":"0.991"},"geometry":{"type":"Point","coordinates":[23.4828,59.232]}},{"type":"Feature","id":7321,"properties":{"mag":5.9,"bv":"-0.067"},"geometry":{"type":"Point","coordinates":[23.5692,37.2371]}},{"type":"Feature","id":7345,"properties":{"mag":5.62,"bv":"0.066"},"geometry":{"type":"Point","coordinates":[23.6574,-15.6764]}},{"type":"Feature","id":7359,"properties":{"mag":5.9,"bv":"1.536"},"geometry":{"type":"Point","coordinates":[23.7044,18.4605]}},{"type":"Feature","id":7447,"properties":{"mag":5.95,"bv":"0.259"},"geometry":{"type":"Point","coordinates":[23.9782,17.4338]}},{"type":"Feature","id":7450,"properties":{"mag":5.41,"bv":"1.226"},"geometry":{"type":"Point","coordinates":[23.9957,-15.4002]}},{"type":"Feature","id":7463,"properties":{"mag":5.69,"bv":"0.335"},"geometry":{"type":"Point","coordinates":[24.0355,-29.9073]}},{"type":"Feature","id":7513,"properties":{"mag":4.1,"bv":"0.536"},"geometry":{"type":"Point","coordinates":[24.1993,41.4055]}},{"type":"Feature","id":7535,"properties":{"mag":5.54,"bv":"0.347"},"geometry":{"type":"Point","coordinates":[24.2747,12.1415]}},{"type":"Feature","id":7568,"properties":{"mag":5.66,"bv":"0.939"},"geometry":{"type":"Point","coordinates":[24.3667,-84.7696]}},{"type":"Feature","id":7588,"properties":{"mag":0.45,"bv":"-0.158"},"geometry":{"type":"Point","coordinates":[24.4285,-57.2368]}},{"type":"Feature","id":7601,"properties":{"mag":5.88,"bv":"0.620"},"geometry":{"type":"Point","coordinates":[24.4815,-82.975]}},{"type":"Feature","id":7607,"properties":{"mag":3.59,"bv":"1.275"},"geometry":{"type":"Point","coordinates":[24.4982,48.6282]}},{"type":"Feature","id":7617,"properties":{"mag":5.55,"bv":"1.388"},"geometry":{"type":"Point","coordinates":[24.5315,57.9776]}},{"type":"Feature","id":7643,"properties":{"mag":5.94,"bv":"1.045"},"geometry":{"type":"Point","coordinates":[24.6145,-36.5283]}},{"type":"Feature","id":7650,"properties":{"mag":5.28,"bv":"0.972"},"geometry":{"type":"Point","coordinates":[24.6288,73.04]}},{"type":"Feature","id":7679,"properties":{"mag":5.58,"bv":"0.346"},"geometry":{"type":"Point","coordinates":[24.7158,-21.2754]}},{"type":"Feature","id":7719,"properties":{"mag":5.01,"bv":"0.883"},"geometry":{"type":"Point","coordinates":[24.8375,44.3862]}},{"type":"Feature","id":7740,"properties":{"mag":5.98,"bv":"1.119"},"geometry":{"type":"Point","coordinates":[24.9201,16.4059]}},{"type":"Feature","id":7751,"properties":{"mag":5.76,"bv":"0.880"},"geometry":{"type":"Point","coordinates":[24.9481,-56.1964]}},{"type":"Feature","id":7818,"properties":{"mag":4.96,"bv":"-0.068"},"geometry":{"type":"Point","coordinates":[25.1451,40.577]}},{"type":"Feature","id":7825,"properties":{"mag":5.63,"bv":"0.214"},"geometry":{"type":"Point","coordinates":[25.1652,43.2977]}},{"type":"Feature","id":7884,"properties":{"mag":4.45,"bv":"1.347"},"geometry":{"type":"Point","coordinates":[25.3579,5.4876]}},{"type":"Feature","id":7906,"properties":{"mag":5.97,"bv":"1.015"},"geometry":{"type":"Point","coordinates":[25.4135,30.0471]}},{"type":"Feature","id":7916,"properties":{"mag":5.75,"bv":"0.443"},"geometry":{"type":"Point","coordinates":[25.4368,-11.3247]}},{"type":"Feature","id":7918,"properties":{"mag":4.96,"bv":"0.618"},"geometry":{"type":"Point","coordinates":[25.4464,42.6134]}},{"type":"Feature","id":7921,"properties":{"mag":5.7,"bv":"1.264"},"geometry":{"type":"Point","coordinates":[25.4499,-60.7893]}},{"type":"Feature","id":7941,"properties":{"mag":5.7,"bv":"-0.010"},"geometry":{"type":"Point","coordinates":[25.5125,-36.8323]}},{"type":"Feature","id":7943,"properties":{"mag":5.63,"bv":"-0.059"},"geometry":{"type":"Point","coordinates":[25.5145,35.2457]}},{"type":"Feature","id":7955,"properties":{"mag":5.25,"bv":"1.044"},"geometry":{"type":"Point","coordinates":[25.5358,-32.327]}},{"type":"Feature","id":7965,"properties":{"mag":5.57,"bv":"-0.049"},"geometry":{"type":"Point","coordinates":[25.5855,68.043]}},{"type":"Feature","id":7978,"properties":{"mag":5.52,"bv":"0.551"},"geometry":{"type":"Point","coordinates":[25.6221,-53.7408]}},{"type":"Feature","id":7981,"properties":{"mag":5.24,"bv":"0.836"},"geometry":{"type":"Point","coordinates":[25.624,20.2685]}},{"type":"Feature","id":7999,"properties":{"mag":4.98,"bv":"1.378"},"geometry":{"type":"Point","coordinates":[25.6813,-3.6902]}},{"type":"Feature","id":8016,"properties":{"mag":5.18,"bv":"-0.022"},"geometry":{"type":"Point","coordinates":[25.7328,70.6225]}},{"type":"Feature","id":8046,"properties":{"mag":5.78,"bv":"-0.010"},"geometry":{"type":"Point","coordinates":[25.8323,60.5513]}},{"type":"Feature","id":8068,"properties":{"mag":4.01,"bv":"-0.098"},"geometry":{"type":"Point","coordinates":[25.9152,50.6887]}},{"type":"Feature","id":8102,"properties":{"mag":3.49,"bv":"0.727"},"geometry":{"type":"Point","coordinates":[26.017,-15.9375]}},{"type":"Feature","id":8198,"properties":{"mag":4.26,"bv":"0.942"},"geometry":{"type":"Point","coordinates":[26.3485,9.1577]}},{"type":"Feature","id":8209,"properties":{"mag":5.29,"bv":"0.395"},"geometry":{"type":"Point","coordinates":[26.4115,-25.0526]}},{"type":"Feature","id":8230,"properties":{"mag":5.37,"bv":"1.517"},"geometry":{"type":"Point","coordinates":[26.4969,-5.7333]}},{"type":"Feature","id":8240,"properties":{"mag":5.49,"bv":"1.615"},"geometry":{"type":"Point","coordinates":[26.5249,-50.8163]}},{"type":"Feature","id":8241,"properties":{"mag":5.04,"bv":"0.031"},"geometry":{"type":"Point","coordinates":[26.5261,-53.522]}},{"type":"Feature","id":8362,"properties":{"mag":5.63,"bv":"0.804"},"geometry":{"type":"Point","coordinates":[26.9368,63.8525]}},{"type":"Feature","id":8387,"properties":{"mag":5.86,"bv":"-0.039"},"geometry":{"type":"Point","coordinates":[27.0456,16.9556]}},{"type":"Feature","id":8404,"properties":{"mag":5.91,"bv":"0.970"},"geometry":{"type":"Point","coordinates":[27.1084,3.6854]}},{"type":"Feature","id":8423,"properties":{"mag":5.94,"bv":"0.975"},"geometry":{"type":"Point","coordinates":[27.1622,37.9529]}},{"type":"Feature","id":8433,"properties":{"mag":5.78,"bv":"0.572"},"geometry":{"type":"Point","coordinates":[27.1732,32.6902]}},{"type":"Feature","id":8497,"properties":{"mag":4.66,"bv":"0.333"},"geometry":{"type":"Point","coordinates":[27.3963,-10.6864]}},{"type":"Feature","id":8544,"properties":{"mag":5.83,"bv":"0.743"},"geometry":{"type":"Point","coordinates":[27.5357,22.2753]}},{"type":"Feature","id":8588,"properties":{"mag":5.92,"bv":"0.302"},"geometry":{"type":"Point","coordinates":[27.7166,11.0434]}},{"type":"Feature","id":8593,"properties":{"mag":5.94,"bv":"0.154"},"geometry":{"type":"Point","coordinates":[27.7268,-50.2061]}},{"type":"Feature","id":8598,"properties":{"mag":5.96,"bv":"0.419"},"geometry":{"type":"Point","coordinates":[27.738,51.9334]}},{"type":"Feature","id":8645,"properties":{"mag":3.74,"bv":"1.136"},"geometry":{"type":"Point","coordinates":[27.8651,-10.335]}},{"type":"Feature","id":8704,"properties":{"mag":5.53,"bv":"-0.175"},"geometry":{"type":"Point","coordinates":[27.9972,55.1474]}},{"type":"Feature","id":8714,"properties":{"mag":5.7,"bv":"-0.067"},"geometry":{"type":"Point","coordinates":[28.039,50.7928]}},{"type":"Feature","id":8778,"properties":{"mag":5.78,"bv":"0.260"},"geometry":{"type":"Point","coordinates":[28.2171,-16.9292]}},{"type":"Feature","id":8796,"properties":{"mag":3.42,"bv":"0.488"},"geometry":{"type":"Point","coordinates":[28.2704,29.5788]}},{"type":"Feature","id":8814,"properties":{"mag":5.42,"bv":"1.311"},"geometry":{"type":"Point","coordinates":[28.3223,40.7298]}},{"type":"Feature","id":8832,"properties":{"mag":3.88,"bv":"-0.047"},"geometry":{"type":"Point","coordinates":[28.3826,19.2939]}},{"type":"Feature","id":8833,"properties":{"mag":4.61,"bv":"0.928"},"geometry":{"type":"Point","coordinates":[28.389,3.1875]}},{"type":"Feature","id":8837,"properties":{"mag":4.39,"bv":"1.597"},"geometry":{"type":"Point","coordinates":[28.4114,-46.3027]}},{"type":"Feature","id":8882,"properties":{"mag":5.12,"bv":"-0.060"},"geometry":{"type":"Point","coordinates":[28.5918,-42.4969]}},{"type":"Feature","id":8886,"properties":{"mag":3.35,"bv":"-0.150"},"geometry":{"type":"Point","coordinates":[28.5989,63.6701]}},{"type":"Feature","id":8903,"properties":{"mag":2.64,"bv":"0.165"},"geometry":{"type":"Point","coordinates":[28.66,20.808]}},{"type":"Feature","id":8928,"properties":{"mag":4.68,"bv":"0.931"},"geometry":{"type":"Point","coordinates":[28.7339,-67.6473]}},{"type":"Feature","id":8993,"properties":{"mag":5.76,"bv":"1.185"},"geometry":{"type":"Point","coordinates":[28.9627,23.5773]}},{"type":"Feature","id":9001,"properties":{"mag":5.89,"bv":"1.599"},"geometry":{"type":"Point","coordinates":[28.977,37.2778]}},{"type":"Feature","id":9007,"properties":{"mag":3.69,"bv":"0.844"},"geometry":{"type":"Point","coordinates":[28.9895,-51.6089]}},{"type":"Feature","id":9009,"properties":{"mag":4.97,"bv":"-0.084"},"geometry":{"type":"Point","coordinates":[29.0001,68.6852]}},{"type":"Feature","id":9021,"properties":{"mag":5.69,"bv":"1.060"},"geometry":{"type":"Point","coordinates":[29.039,37.2518]}},{"type":"Feature","id":9061,"properties":{"mag":4.92,"bv":"1.434"},"geometry":{"type":"Point","coordinates":[29.1675,-22.5268]}},{"type":"Feature","id":9095,"properties":{"mag":4.82,"bv":"0.864"},"geometry":{"type":"Point","coordinates":[29.292,-47.3853]}},{"type":"Feature","id":9110,"properties":{"mag":5.09,"bv":"0.921"},"geometry":{"type":"Point","coordinates":[29.3377,17.8175]}},{"type":"Feature","id":9132,"properties":{"mag":5.84,"bv":"1.576"},"geometry":{"type":"Point","coordinates":[29.4323,27.8044]}},{"type":"Feature","id":9153,"properties":{"mag":4.79,"bv":"0.290"},"geometry":{"type":"Point","coordinates":[29.4822,23.5961]}},{"type":"Feature","id":9222,"properties":{"mag":5.7,"bv":"1.005"},"geometry":{"type":"Point","coordinates":[29.6396,49.2044]}},{"type":"Feature","id":9236,"properties":{"mag":2.86,"bv":"0.290"},"geometry":{"type":"Point","coordinates":[29.6925,-61.5699]}},{"type":"Feature","id":9307,"properties":{"mag":5.89,"bv":"1.031"},"geometry":{"type":"Point","coordinates":[29.8987,21.0586]}},{"type":"Feature","id":9312,"properties":{"mag":5.29,"bv":"0.002"},"geometry":{"type":"Point","coordinates":[29.9085,64.6216]}},{"type":"Feature","id":9313,"properties":{"mag":5.57,"bv":"1.052"},"geometry":{"type":"Point","coordinates":[29.9117,-42.0305]}},{"type":"Feature","id":9326,"properties":{"mag":5.43,"bv":"1.640"},"geometry":{"type":"Point","coordinates":[29.9425,-20.8245]}},{"type":"Feature","id":9347,"properties":{"mag":3.99,"bv":"1.554"},"geometry":{"type":"Point","coordinates":[30.0013,-21.0778]}},{"type":"Feature","id":9353,"properties":{"mag":5.89,"bv":"0.610"},"geometry":{"type":"Point","coordinates":[30.0382,3.097]}},{"type":"Feature","id":9372,"properties":{"mag":5.43,"bv":"1.391"},"geometry":{"type":"Point","coordinates":[30.1118,-8.5239]}},{"type":"Feature","id":9440,"properties":{"mag":5.34,"bv":"0.883"},"geometry":{"type":"Point","coordinates":[30.3113,-30.0018]}},{"type":"Feature","id":9459,"properties":{"mag":5.15,"bv":"1.471"},"geometry":{"type":"Point","coordinates":[30.4266,-44.7135]}},{"type":"Feature","id":9480,"properties":{"mag":4.49,"bv":"0.164"},"geometry":{"type":"Point","coordinates":[30.4894,70.907]}},{"type":"Feature","id":9487,"properties":{"mag":3.82,"bv":"0.024"},"geometry":{"type":"Point","coordinates":[30.5118,2.7638]}},{"type":"Feature","id":9505,"properties":{"mag":4.99,"bv":"-0.071"},"geometry":{"type":"Point","coordinates":[30.5755,54.4875]}},{"type":"Feature","id":9533,"properties":{"mag":5.97,"bv":"1.584"},"geometry":{"type":"Point","coordinates":[30.6462,13.4767]}},{"type":"Feature","id":9564,"properties":{"mag":6,"bv":"0.029"},"geometry":{"type":"Point","coordinates":[30.7187,64.9015]}},{"type":"Feature","id":9570,"properties":{"mag":5.5,"bv":"0.029"},"geometry":{"type":"Point","coordinates":[30.7415,33.2841]}},{"type":"Feature","id":9572,"properties":{"mag":5.87,"bv":"0.966"},"geometry":{"type":"Point","coordinates":[30.744,-15.3059]}},{"type":"Feature","id":9573,"properties":{"mag":5.59,"bv":"0.325"},"geometry":{"type":"Point","coordinates":[30.7508,64.39]}},{"type":"Feature","id":9589,"properties":{"mag":5.42,"bv":"0.146"},"geometry":{"type":"Point","coordinates":[30.7985,0.1285]}},{"type":"Feature","id":9598,"properties":{"mag":3.95,"bv":"-0.002"},"geometry":{"type":"Point","coordinates":[30.8588,72.4213]}},{"type":"Feature","id":9621,"properties":{"mag":5.64,"bv":"0.537"},"geometry":{"type":"Point","coordinates":[30.9139,25.9355]}},{"type":"Feature","id":9622,"properties":{"mag":5.61,"bv":"1.589"},"geometry":{"type":"Point","coordinates":[30.9187,-4.1035]}},{"type":"Feature","id":9631,"properties":{"mag":5.96,"bv":"0.851"},"geometry":{"type":"Point","coordinates":[30.9507,-0.3403]}},{"type":"Feature","id":9640,"properties":{"mag":2.1,"bv":"1.370"},"geometry":{"type":"Point","coordinates":[30.9748,42.3297]}},{"type":"Feature","id":9677,"properties":{"mag":4.68,"bv":"-0.156"},"geometry":{"type":"Point","coordinates":[31.1227,-29.2968]}},{"type":"Feature","id":9727,"properties":{"mag":5.27,"bv":"0.345"},"geometry":{"type":"Point","coordinates":[31.2809,77.2813]}},{"type":"Feature","id":9763,"properties":{"mag":5.22,"bv":"0.954"},"geometry":{"type":"Point","coordinates":[31.3815,76.1151]}},{"type":"Feature","id":9836,"properties":{"mag":5.03,"bv":"0.121"},"geometry":{"type":"Point","coordinates":[31.6414,22.6483]}},{"type":"Feature","id":9884,"properties":{"mag":2.01,"bv":"1.151"},"geometry":{"type":"Point","coordinates":[31.7934,23.4624]}},{"type":"Feature","id":9977,"properties":{"mag":4.78,"bv":"0.120"},"geometry":{"type":"Point","coordinates":[32.1219,37.8591]}},{"type":"Feature","id":9990,"properties":{"mag":5.66,"bv":"0.595"},"geometry":{"type":"Point","coordinates":[32.1691,58.4236]}},{"type":"Feature","id":10035,"properties":{"mag":5.84,"bv":"1.197"},"geometry":{"type":"Point","coordinates":[32.2887,-43.5166]}},{"type":"Feature","id":10053,"properties":{"mag":4.98,"bv":"0.339"},"geometry":{"type":"Point","coordinates":[32.3556,25.9399]}},{"type":"Feature","id":10064,"properties":{"mag":3,"bv":"0.140"},"geometry":{"type":"Point","coordinates":[32.3859,34.9873]}},{"type":"Feature","id":10155,"properties":{"mag":5.68,"bv":"1.641"},"geometry":{"type":"Point","coordinates":[32.6567,19.5003]}},{"type":"Feature","id":10212,"properties":{"mag":5.64,"bv":"0.569"},"geometry":{"type":"Point","coordinates":[32.8378,8.5698]}},{"type":"Feature","id":10215,"properties":{"mag":6,"bv":"0.418"},"geometry":{"type":"Point","coordinates":[32.8426,-10.0522]}},{"type":"Feature","id":10234,"properties":{"mag":5.94,"bv":"0.967"},"geometry":{"type":"Point","coordinates":[32.8993,-1.8254]}},{"type":"Feature","id":10280,"properties":{"mag":4.94,"bv":"0.770"},"geometry":{"type":"Point","coordinates":[33.0928,30.3031]}},{"type":"Feature","id":10296,"properties":{"mag":5.96,"bv":"1.366"},"geometry":{"type":"Point","coordinates":[33.1564,24.1678]}},{"type":"Feature","id":10305,"properties":{"mag":5.65,"bv":"0.546"},"geometry":{"type":"Point","coordinates":[33.1981,-2.3936]}},{"type":"Feature","id":10306,"properties":{"mag":5.23,"bv":"0.457"},"geometry":{"type":"Point","coordinates":[33.2004,21.211]}},{"type":"Feature","id":10320,"properties":{"mag":5.27,"bv":"-0.013"},"geometry":{"type":"Point","coordinates":[33.227,-30.7238]}},{"type":"Feature","id":10324,"properties":{"mag":4.36,"bv":"0.878"},"geometry":{"type":"Point","coordinates":[33.25,8.8467]}},{"type":"Feature","id":10326,"properties":{"mag":5.86,"bv":"1.006"},"geometry":{"type":"Point","coordinates":[33.2541,-21.0001]}},{"type":"Feature","id":10328,"properties":{"mag":5.72,"bv":"1.551"},"geometry":{"type":"Point","coordinates":[33.2638,15.2799]}},{"type":"Feature","id":10340,"properties":{"mag":4.84,"bv":"1.476"},"geometry":{"type":"Point","coordinates":[33.3055,44.2317]}},{"type":"Feature","id":10366,"properties":{"mag":5.31,"bv":"0.926"},"geometry":{"type":"Point","coordinates":[33.4014,51.0658]}},{"type":"Feature","id":10418,"properties":{"mag":5.57,"bv":"1.556"},"geometry":{"type":"Point","coordinates":[33.5606,-67.8414]}},{"type":"Feature","id":10440,"properties":{"mag":5.91,"bv":"0.965"},"geometry":{"type":"Point","coordinates":[33.6331,-41.1668]}},{"type":"Feature","id":10513,"properties":{"mag":5.67,"bv":"1.306"},"geometry":{"type":"Point","coordinates":[33.8693,-67.7464]}},{"type":"Feature","id":10535,"properties":{"mag":5.57,"bv":"0.520"},"geometry":{"type":"Point","coordinates":[33.9282,25.043]}},{"type":"Feature","id":10540,"properties":{"mag":5.79,"bv":"0.439"},"geometry":{"type":"Point","coordinates":[33.9419,25.7829]}},{"type":"Feature","id":10559,"properties":{"mag":5.25,"bv":"-0.004"},"geometry":{"type":"Point","coordinates":[33.9845,33.3589]}},{"type":"Feature","id":10602,"properties":{"mag":3.56,"bv":"-0.120"},"geometry":{"type":"Point","coordinates":[34.1274,-51.5122]}},{"type":"Feature","id":10642,"properties":{"mag":5.51,"bv":"0.962"},"geometry":{"type":"Point","coordinates":[34.246,-6.4221]}},{"type":"Feature","id":10644,"properties":{"mag":4.84,"bv":"0.607"},"geometry":{"type":"Point","coordinates":[34.2635,34.2242]}},{"type":"Feature","id":10670,"properties":{"mag":4.03,"bv":"0.019"},"geometry":{"type":"Point","coordinates":[34.3286,33.8472]}},{"type":"Feature","id":10718,"properties":{"mag":5.75,"bv":"1.175"},"geometry":{"type":"Point","coordinates":[34.4995,57.8998]}},{"type":"Feature","id":10723,"properties":{"mag":5.6,"bv":"0.588"},"geometry":{"type":"Point","coordinates":[34.506,1.7578]}},{"type":"Feature","id":10729,"properties":{"mag":5.99,"bv":"1.039"},"geometry":{"type":"Point","coordinates":[34.5191,57.5163]}},{"type":"Feature","id":10732,"properties":{"mag":5.58,"bv":"0.011"},"geometry":{"type":"Point","coordinates":[34.5314,19.9012]}},{"type":"Feature","id":10793,"properties":{"mag":5.29,"bv":"0.037"},"geometry":{"type":"Point","coordinates":[34.7375,28.6427]}},{"type":"Feature","id":10819,"properties":{"mag":5.31,"bv":"0.006"},"geometry":{"type":"Point","coordinates":[34.82,47.38]}},{"type":"Feature","id":10871,"properties":{"mag":5.81,"bv":"1.570"},"geometry":{"type":"Point","coordinates":[34.9761,-55.9448]}},{"type":"Feature","id":10944,"properties":{"mag":5.57,"bv":"-0.089"},"geometry":{"type":"Point","coordinates":[35.2425,50.1515]}},{"type":"Feature","id":11001,"properties":{"mag":4.08,"bv":"0.034"},"geometry":{"type":"Point","coordinates":[35.4373,-68.6594]}},{"type":"Feature","id":11021,"properties":{"mag":5.29,"bv":"1.648"},"geometry":{"type":"Point","coordinates":[35.4859,0.3957]}},{"type":"Feature","id":11029,"properties":{"mag":5.43,"bv":"0.364"},"geometry":{"type":"Point","coordinates":[35.5064,-10.7775]}},{"type":"Feature","id":11033,"properties":{"mag":5.89,"bv":"1.231"},"geometry":{"type":"Point","coordinates":[35.5208,-17.6622]}},{"type":"Feature","id":11046,"properties":{"mag":5.42,"bv":"0.335"},"geometry":{"type":"Point","coordinates":[35.5517,-0.8849]}},{"type":"Feature","id":11060,"properties":{"mag":5.16,"bv":"0.369"},"geometry":{"type":"Point","coordinates":[35.5893,55.8457]}},{"type":"Feature","id":11072,"properties":{"mag":5.19,"bv":"0.608"},"geometry":{"type":"Point","coordinates":[35.6356,-23.8163]}},{"type":"Feature","id":11090,"properties":{"mag":5.81,"bv":"0.289"},"geometry":{"type":"Point","coordinates":[35.7096,41.3963]}},{"type":"Feature","id":11095,"properties":{"mag":5.99,"bv":"1.088"},"geometry":{"type":"Point","coordinates":[35.7179,-73.6458]}},{"type":"Feature","id":11102,"properties":{"mag":5.9,"bv":"0.213"},"geometry":{"type":"Point","coordinates":[35.7278,-51.0921]}},{"type":"Feature","id":11220,"properties":{"mag":5.19,"bv":"0.979"},"geometry":{"type":"Point","coordinates":[36.1038,50.0065]}},{"type":"Feature","id":11249,"properties":{"mag":5.48,"bv":"-0.098"},"geometry":{"type":"Point","coordinates":[36.2044,10.6106]}},{"type":"Feature","id":11258,"properties":{"mag":5.36,"bv":"0.395"},"geometry":{"type":"Point","coordinates":[36.2246,-60.3119]}},{"type":"Feature","id":11313,"properties":{"mag":4.73,"bv":"1.532"},"geometry":{"type":"Point","coordinates":[36.4059,50.2786]}},{"type":"Feature","id":11345,"properties":{"mag":4.88,"bv":"-0.027"},"geometry":{"type":"Point","coordinates":[36.4875,-12.2905]}},{"type":"Feature","id":11348,"properties":{"mag":5.88,"bv":"0.116"},"geometry":{"type":"Point","coordinates":[36.5015,-15.3412]}},{"type":"Feature","id":11381,"properties":{"mag":5.89,"bv":"1.247"},"geometry":{"type":"Point","coordinates":[36.6467,-20.0426]}},{"type":"Feature","id":11407,"properties":{"mag":4.24,"bv":"-0.136"},"geometry":{"type":"Point","coordinates":[36.7463,-47.7038]}},{"type":"Feature","id":11432,"properties":{"mag":5.55,"bv":"1.114"},"geometry":{"type":"Point","coordinates":[36.8657,31.8013]}},{"type":"Feature","id":11477,"properties":{"mag":5.13,"bv":"0.089"},"geometry":{"type":"Point","coordinates":[37.0071,-33.811]}},{"type":"Feature","id":11484,"properties":{"mag":4.3,"bv":"-0.053"},"geometry":{"type":"Point","coordinates":[37.0398,8.4601]}},{"type":"Feature","id":11486,"properties":{"mag":5.29,"bv":"0.311"},"geometry":{"type":"Point","coordinates":[37.0416,29.6693]}},{"type":"Feature","id":11548,"properties":{"mag":5.89,"bv":"0.591"},"geometry":{"type":"Point","coordinates":[37.2021,29.9318]}},{"type":"Feature","id":11569,"properties":{"mag":4.46,"bv":"0.153"},"geometry":{"type":"Point","coordinates":[37.2664,67.4025]}},{"type":"Feature","id":11670,"properties":{"mag":5.88,"bv":"0.412"},"geometry":{"type":"Point","coordinates":[37.6348,25.235]}},{"type":"Feature","id":11687,"properties":{"mag":6,"bv":"0.168"},"geometry":{"type":"Point","coordinates":[37.6883,0.2557]}},{"type":"Feature","id":11738,"properties":{"mag":5.27,"bv":"1.271"},"geometry":{"type":"Point","coordinates":[37.8754,2.2672]}},{"type":"Feature","id":11757,"properties":{"mag":5.27,"bv":"0.981"},"geometry":{"type":"Point","coordinates":[37.9189,-79.1094]}},{"type":"Feature","id":11767,"properties":{"mag":1.97,"bv":"0.636"},"geometry":{"type":"Point","coordinates":[37.9545,89.2641]}},{"type":"Feature","id":11783,"properties":{"mag":4.74,"bv":"0.454"},"geometry":{"type":"Point","coordinates":[38.0218,-15.2447]}},{"type":"Feature","id":11784,"properties":{"mag":5.15,"bv":"1.472"},"geometry":{"type":"Point","coordinates":[38.0257,36.1473]}},{"type":"Feature","id":11791,"properties":{"mag":5.36,"bv":"1.004"},"geometry":{"type":"Point","coordinates":[38.0393,-1.0349]}},{"type":"Feature","id":11840,"properties":{"mag":5.84,"bv":"1.083"},"geometry":{"type":"Point","coordinates":[38.2192,34.5424]}},{"type":"Feature","id":11843,"properties":{"mag":6,"bv":"0.572"},"geometry":{"type":"Point","coordinates":[38.2256,15.0346]}},{"type":"Feature","id":11867,"properties":{"mag":5.91,"bv":"1.064"},"geometry":{"type":"Point","coordinates":[38.2793,-34.65]}},{"type":"Feature","id":11918,"properties":{"mag":4.96,"bv":"-0.050"},"geometry":{"type":"Point","coordinates":[38.4613,-28.2323]}},{"type":"Feature","id":12002,"properties":{"mag":5.74,"bv":"1.393"},"geometry":{"type":"Point","coordinates":[38.6776,-7.8594]}},{"type":"Feature","id":12072,"properties":{"mag":5.72,"bv":"1.389"},"geometry":{"type":"Point","coordinates":[38.9114,37.3123]}},{"type":"Feature","id":12086,"properties":{"mag":5.38,"bv":"1.652"},"geometry":{"type":"Point","coordinates":[38.945,34.6876]}},{"type":"Feature","id":12093,"properties":{"mag":4.87,"bv":"0.880"},"geometry":{"type":"Point","coordinates":[38.9686,5.5932]}},{"type":"Feature","id":12107,"properties":{"mag":5.53,"bv":"1.607"},"geometry":{"type":"Point","coordinates":[39.0002,-7.8316]}},{"type":"Feature","id":12114,"properties":{"mag":5.79,"bv":"0.918"},"geometry":{"type":"Point","coordinates":[39.0204,6.8869]}},{"type":"Feature","id":12122,"properties":{"mag":5.74,"bv":"1.017"},"geometry":{"type":"Point","coordinates":[39.0386,-30.045]}},{"type":"Feature","id":12148,"properties":{"mag":5.81,"bv":"1.040"},"geometry":{"type":"Point","coordinates":[39.1461,7.73]}},{"type":"Feature","id":12153,"properties":{"mag":5.64,"bv":"0.516"},"geometry":{"type":"Point","coordinates":[39.158,12.4476]}},{"type":"Feature","id":12181,"properties":{"mag":5.91,"bv":"0.502"},"geometry":{"type":"Point","coordinates":[39.2383,38.7336]}},{"type":"Feature","id":12186,"properties":{"mag":5.78,"bv":"0.653"},"geometry":{"type":"Point","coordinates":[39.2442,-34.578]}},{"type":"Feature","id":12225,"properties":{"mag":5.3,"bv":"0.289"},"geometry":{"type":"Point","coordinates":[39.3515,-52.5431]}},{"type":"Feature","id":12239,"properties":{"mag":5.8,"bv":"1.561"},"geometry":{"type":"Point","coordinates":[39.4003,65.7453]}},{"type":"Feature","id":12247,"properties":{"mag":5.65,"bv":"1.021"},"geometry":{"type":"Point","coordinates":[39.4242,-3.3962]}},{"type":"Feature","id":12273,"properties":{"mag":5.17,"bv":"0.896"},"geometry":{"type":"Point","coordinates":[39.5085,72.8183]}},{"type":"Feature","id":12288,"properties":{"mag":5.84,"bv":"0.476"},"geometry":{"type":"Point","coordinates":[39.5778,-30.1941]}},{"type":"Feature","id":12332,"properties":{"mag":5.45,"bv":"0.168"},"geometry":{"type":"Point","coordinates":[39.7041,21.9614]}},{"type":"Feature","id":12387,"properties":{"mag":4.08,"bv":"-0.212"},"geometry":{"type":"Point","coordinates":[39.8707,0.3285]}},{"type":"Feature","id":12390,"properties":{"mag":4.83,"bv":"0.447"},"geometry":{"type":"Point","coordinates":[39.891,-11.8722]}},{"type":"Feature","id":12394,"properties":{"mag":4.12,"bv":"-0.061"},"geometry":{"type":"Point","coordinates":[39.8973,-68.2669]}},{"type":"Feature","id":12413,"properties":{"mag":4.74,"bv":"0.061"},"geometry":{"type":"Point","coordinates":[39.95,-42.8917]}},{"type":"Feature","id":12444,"properties":{"mag":5.79,"bv":"0.524"},"geometry":{"type":"Point","coordinates":[40.0518,-9.4529]}},{"type":"Feature","id":12484,"properties":{"mag":5.21,"bv":"0.411"},"geometry":{"type":"Point","coordinates":[40.1651,-54.5499]}},{"type":"Feature","id":12486,"properties":{"mag":4.11,"bv":"1.006"},"geometry":{"type":"Point","coordinates":[40.1668,-39.8554]}},{"type":"Feature","id":12489,"properties":{"mag":5.3,"bv":"0.081"},"geometry":{"type":"Point","coordinates":[40.1711,27.0609]}},{"type":"Feature","id":12530,"properties":{"mag":5.72,"bv":"0.511"},"geometry":{"type":"Point","coordinates":[40.3083,-0.6957]}},{"type":"Feature","id":12562,"properties":{"mag":5.98,"bv":"0.429"},"geometry":{"type":"Point","coordinates":[40.3922,-14.5493]}},{"type":"Feature","id":12608,"properties":{"mag":5.99,"bv":"0.917"},"geometry":{"type":"Point","coordinates":[40.5275,-38.3837]}},{"type":"Feature","id":12623,"properties":{"mag":4.91,"bv":"0.582"},"geometry":{"type":"Point","coordinates":[40.5621,40.1939]}},{"type":"Feature","id":12640,"properties":{"mag":5.74,"bv":"-0.017"},"geometry":{"type":"Point","coordinates":[40.5914,20.0115]}},{"type":"Feature","id":12653,"properties":{"mag":5.4,"bv":"0.561"},"geometry":{"type":"Point","coordinates":[40.6394,-50.8003]}},{"type":"Feature","id":12686,"properties":{"mag":5.85,"bv":"1.125"},"geometry":{"type":"Point","coordinates":[40.748,53.5261]}},{"type":"Feature","id":12692,"properties":{"mag":5.76,"bv":"-0.110"},"geometry":{"type":"Point","coordinates":[40.7618,55.106]}},{"type":"Feature","id":12706,"properties":{"mag":3.47,"bv":"0.093"},"geometry":{"type":"Point","coordinates":[40.8252,3.2358]}},{"type":"Feature","id":12719,"properties":{"mag":4.65,"bv":"-0.122"},"geometry":{"type":"Point","coordinates":[40.863,27.7071]}},{"type":"Feature","id":12768,"properties":{"mag":5.43,"bv":"0.904"},"geometry":{"type":"Point","coordinates":[41.0215,44.297]}},{"type":"Feature","id":12770,"properties":{"mag":4.24,"bv":"-0.122"},"geometry":{"type":"Point","coordinates":[41.0306,-13.8587]}},{"type":"Feature","id":12777,"properties":{"mag":4.1,"bv":"0.514"},"geometry":{"type":"Point","coordinates":[41.0499,49.2284]}},{"type":"Feature","id":12803,"properties":{"mag":5.78,"bv":"-0.024"},"geometry":{"type":"Point","coordinates":[41.1374,15.3119]}},{"type":"Feature","id":12821,"properties":{"mag":5.95,"bv":"0.136"},"geometry":{"type":"Point","coordinates":[41.2071,67.8246]}},{"type":"Feature","id":12828,"properties":{"mag":4.27,"bv":"0.311"},"geometry":{"type":"Point","coordinates":[41.2356,10.1141]}},{"type":"Feature","id":12832,"properties":{"mag":5.17,"bv":"0.234"},"geometry":{"type":"Point","coordinates":[41.2399,12.4458]}},{"type":"Feature","id":12843,"properties":{"mag":4.47,"bv":"0.481"},"geometry":{"type":"Point","coordinates":[41.2758,-18.5726]}},{"type":"Feature","id":12871,"properties":{"mag":5.73,"bv":"0.932"},"geometry":{"type":"Point","coordinates":[41.3645,-63.7046]}},{"type":"Feature","id":12876,"properties":{"mag":4.83,"bv":"0.058"},"geometry":{"type":"Point","coordinates":[41.386,-67.6166]}},{"type":"Feature","id":13055,"properties":{"mag":5.8,"bv":"1.300"},"geometry":{"type":"Point","coordinates":[41.9488,81.4485]}},{"type":"Feature","id":13061,"properties":{"mag":4.52,"bv":"1.112"},"geometry":{"type":"Point","coordinates":[41.9773,29.2471]}},{"type":"Feature","id":13108,"properties":{"mag":5.83,"bv":"1.216"},"geometry":{"type":"Point","coordinates":[42.1337,18.2838]}},{"type":"Feature","id":13121,"properties":{"mag":5.89,"bv":"-0.033"},"geometry":{"type":"Point","coordinates":[42.1913,25.1881]}},{"type":"Feature","id":13141,"properties":{"mag":5.25,"bv":"0.101"},"geometry":{"type":"Point","coordinates":[42.2562,-62.8065]}},{"type":"Feature","id":13147,"properties":{"mag":4.45,"bv":"0.981"},"geometry":{"type":"Point","coordinates":[42.2726,-32.4059]}},{"type":"Feature","id":13165,"properties":{"mag":5.26,"bv":"-0.066"},"geometry":{"type":"Point","coordinates":[42.3232,17.4643]}},{"type":"Feature","id":13202,"properties":{"mag":5.39,"bv":"0.013"},"geometry":{"type":"Point","coordinates":[42.4758,-27.942]}},{"type":"Feature","id":13209,"properties":{"mag":3.61,"bv":"-0.100"},"geometry":{"type":"Point","coordinates":[42.496,27.2605]}},{"type":"Feature","id":13225,"properties":{"mag":5.92,"bv":"0.899"},"geometry":{"type":"Point","coordinates":[42.5616,-35.8436]}},{"type":"Feature","id":13244,"properties":{"mag":4.76,"bv":"1.337"},"geometry":{"type":"Point","coordinates":[42.6186,-75.0669]}},{"type":"Feature","id":13254,"properties":{"mag":4.22,"bv":"0.343"},"geometry":{"type":"Point","coordinates":[42.6461,38.3186]}},{"type":"Feature","id":13265,"properties":{"mag":5.48,"bv":"1.259"},"geometry":{"type":"Point","coordinates":[42.6684,-35.6758]}},{"type":"Feature","id":13268,"properties":{"mag":3.77,"bv":"1.690"},"geometry":{"type":"Point","coordinates":[42.6742,55.8955]}},{"type":"Feature","id":13288,"properties":{"mag":4.76,"bv":"0.906"},"geometry":{"type":"Point","coordinates":[42.7597,-21.004]}},{"type":"Feature","id":13327,"properties":{"mag":5.52,"bv":"-0.099"},"geometry":{"type":"Point","coordinates":[42.8733,15.0821]}},{"type":"Feature","id":13328,"properties":{"mag":4.56,"bv":"1.554"},"geometry":{"type":"Point","coordinates":[42.8785,35.0597]}},{"type":"Feature","id":13339,"properties":{"mag":5.86,"bv":"0.903"},"geometry":{"type":"Point","coordinates":[42.9239,46.8419]}},{"type":"Feature","id":13367,"properties":{"mag":5.94,"bv":"0.700"},"geometry":{"type":"Point","coordinates":[42.9948,68.8885]}},{"type":"Feature","id":13473,"properties":{"mag":5.93,"bv":"0.437"},"geometry":{"type":"Point","coordinates":[43.3933,-38.437]}},{"type":"Feature","id":13479,"properties":{"mag":5.93,"bv":"1.041"},"geometry":{"type":"Point","coordinates":[43.3972,-22.3763]}},{"type":"Feature","id":13490,"properties":{"mag":5.34,"bv":"0.423"},"geometry":{"type":"Point","coordinates":[43.4276,38.3375]}},{"type":"Feature","id":13531,"properties":{"mag":3.93,"bv":"0.758"},"geometry":{"type":"Point","coordinates":[43.5644,52.7625]}},{"type":"Feature","id":13654,"properties":{"mag":5.76,"bv":"1.452"},"geometry":{"type":"Point","coordinates":[43.9521,18.3316]}},{"type":"Feature","id":13665,"properties":{"mag":5.59,"bv":"0.445"},"geometry":{"type":"Point","coordinates":[43.9872,61.5211]}},{"type":"Feature","id":13679,"properties":{"mag":5.97,"bv":"0.478"},"geometry":{"type":"Point","coordinates":[44.0574,8.3816]}},{"type":"Feature","id":13701,"properties":{"mag":3.89,"bv":"1.088"},"geometry":{"type":"Point","coordinates":[44.1069,-8.8981]}},{"type":"Feature","id":13702,"properties":{"mag":5.58,"bv":"0.471"},"geometry":{"type":"Point","coordinates":[44.109,18.0231]}},{"type":"Feature","id":13717,"properties":{"mag":5.16,"bv":"0.084"},"geometry":{"type":"Point","coordinates":[44.1559,-3.7123]}},{"type":"Feature","id":13775,"properties":{"mag":5.1,"bv":"-0.007"},"geometry":{"type":"Point","coordinates":[44.322,31.9342]}},{"type":"Feature","id":13782,"properties":{"mag":5.44,"bv":"0.238"},"geometry":{"type":"Point","coordinates":[44.349,-23.8622]}},{"type":"Feature","id":13834,"properties":{"mag":5.8,"bv":"0.415"},"geometry":{"type":"Point","coordinates":[44.5218,20.6687]}},{"type":"Feature","id":13835,"properties":{"mag":5.82,"bv":"1.334"},"geometry":{"type":"Point","coordinates":[44.5239,-23.606]}},{"type":"Feature","id":13847,"properties":{"mag":2.88,"bv":"0.128"},"geometry":{"type":"Point","coordinates":[44.5653,-40.3047]}},{"type":"Feature","id":13874,"properties":{"mag":5.22,"bv":"0.014"},"geometry":{"type":"Point","coordinates":[44.6753,-2.7829]}},{"type":"Feature","id":13879,"properties":{"mag":4.68,"bv":"0.065"},"geometry":{"type":"Point","coordinates":[44.6903,39.6627]}},{"type":"Feature","id":13884,"properties":{"mag":4.98,"bv":"0.126"},"geometry":{"type":"Point","coordinates":[44.6992,-64.0713]}},{"type":"Feature","id":13905,"properties":{"mag":4.94,"bv":"1.235"},"geometry":{"type":"Point","coordinates":[44.7653,35.1831]}},{"type":"Feature","id":13914,"properties":{"mag":4.63,"bv":"0.048"},"geometry":{"type":"Point","coordinates":[44.803,21.3404]}},{"type":"Feature","id":13942,"properties":{"mag":5.69,"bv":"0.427"},"geometry":{"type":"Point","coordinates":[44.9008,-25.2741]}},{"type":"Feature","id":13949,"properties":{"mag":5.89,"bv":"1.445"},"geometry":{"type":"Point","coordinates":[44.9162,41.0329]}},{"type":"Feature","id":13951,"properties":{"mag":5.56,"bv":"-0.072"},"geometry":{"type":"Point","coordinates":[44.9215,-2.465]}},{"type":"Feature","id":13954,"properties":{"mag":4.71,"bv":"-0.109"},"geometry":{"type":"Point","coordinates":[44.9288,8.9074]}},{"type":"Feature","id":13965,"properties":{"mag":5.47,"bv":"0.869"},"geometry":{"type":"Point","coordinates":[44.9575,47.2207]}},{"type":"Feature","id":14036,"properties":{"mag":5.93,"bv":"1.593"},"geometry":{"type":"Point","coordinates":[45.1839,10.8704]}},{"type":"Feature","id":14043,"properties":{"mag":5.24,"bv":"-0.049"},"geometry":{"type":"Point","coordinates":[45.2176,52.3517]}},{"type":"Feature","id":14060,"properties":{"mag":5.75,"bv":"1.043"},"geometry":{"type":"Point","coordinates":[45.2918,-7.663]}},{"type":"Feature","id":14086,"properties":{"mag":5.88,"bv":"0.794"},"geometry":{"type":"Point","coordinates":[45.4068,-28.0916]}},{"type":"Feature","id":14109,"properties":{"mag":5.91,"bv":"0.141"},"geometry":{"type":"Point","coordinates":[45.4756,26.4624]}},{"type":"Feature","id":14110,"properties":{"mag":5.84,"bv":"1.092"},"geometry":{"type":"Point","coordinates":[45.4838,-9.9614]}},{"type":"Feature","id":14131,"properties":{"mag":5.51,"bv":"-0.125"},"geometry":{"type":"Point","coordinates":[45.5644,-71.9025]}},{"type":"Feature","id":14135,"properties":{"mag":2.54,"bv":"1.630"},"geometry":{"type":"Point","coordinates":[45.5699,4.0897]}},{"type":"Feature","id":14143,"properties":{"mag":5.62,"bv":"-0.107"},"geometry":{"type":"Point","coordinates":[45.5938,4.3529]}},{"type":"Feature","id":14146,"properties":{"mag":4.08,"bv":"0.163"},"geometry":{"type":"Point","coordinates":[45.5979,-23.6245]}},{"type":"Feature","id":14168,"properties":{"mag":5.32,"bv":"0.941"},"geometry":{"type":"Point","coordinates":[45.6761,-7.6855]}},{"type":"Feature","id":14187,"properties":{"mag":5.81,"bv":"1.304"},"geometry":{"type":"Point","coordinates":[45.7328,-46.975]}},{"type":"Feature","id":14240,"properties":{"mag":5.12,"bv":"0.349"},"geometry":{"type":"Point","coordinates":[45.9034,-59.7378]}},{"type":"Feature","id":14293,"properties":{"mag":5.26,"bv":"0.193"},"geometry":{"type":"Point","coordinates":[46.0688,-7.6009]}},{"type":"Feature","id":14328,"properties":{"mag":2.91,"bv":"0.716"},"geometry":{"type":"Point","coordinates":[46.1991,53.5064]}},{"type":"Feature","id":14354,"properties":{"mag":3.32,"bv":"1.528"},"geometry":{"type":"Point","coordinates":[46.2941,38.8403]}},{"type":"Feature","id":14376,"properties":{"mag":5.45,"bv":"-0.031"},"geometry":{"type":"Point","coordinates":[46.3612,25.2552]}},{"type":"Feature","id":14382,"properties":{"mag":4.77,"bv":"1.018"},"geometry":{"type":"Point","coordinates":[46.385,56.7057]}},{"type":"Feature","id":14417,"properties":{"mag":5.49,"bv":"1.569"},"geometry":{"type":"Point","coordinates":[46.5327,79.4185]}},{"type":"Feature","id":14439,"properties":{"mag":5.64,"bv":"1.087"},"geometry":{"type":"Point","coordinates":[46.5987,13.1873]}},{"type":"Feature","id":14456,"properties":{"mag":5.23,"bv":"1.575"},"geometry":{"type":"Point","coordinates":[46.6396,-6.0886]}},{"type":"Feature","id":14502,"properties":{"mag":5.89,"bv":"-0.020"},"geometry":{"type":"Point","coordinates":[46.8292,64.0576]}},{"type":"Feature","id":14521,"properties":{"mag":5.67,"bv":"0.298"},"geometry":{"type":"Point","coordinates":[46.8839,-78.9892]}},{"type":"Feature","id":14576,"properties":{"mag":2.09,"bv":"-0.003"},"geometry":{"type":"Point","coordinates":[47.0422,40.9556]}},{"type":"Feature","id":14632,"properties":{"mag":4.05,"bv":"0.595"},"geometry":{"type":"Point","coordinates":[47.2667,49.6133]}},{"type":"Feature","id":14668,"properties":{"mag":3.79,"bv":"0.980"},"geometry":{"type":"Point","coordinates":[47.374,44.8575]}},{"type":"Feature","id":14677,"properties":{"mag":5.74,"bv":"0.115"},"geometry":{"type":"Point","coordinates":[47.4031,29.0771]}},{"type":"Feature","id":14764,"properties":{"mag":5.97,"bv":"-0.061"},"geometry":{"type":"Point","coordinates":[47.6616,11.8726]}},{"type":"Feature","id":14817,"properties":{"mag":4.61,"bv":"1.115"},"geometry":{"type":"Point","coordinates":[47.8224,39.6116]}},{"type":"Feature","id":14838,"properties":{"mag":4.35,"bv":"1.033"},"geometry":{"type":"Point","coordinates":[47.9074,19.7267]}},{"type":"Feature","id":14844,"properties":{"mag":5.92,"bv":"0.149"},"geometry":{"type":"Point","coordinates":[47.9278,81.4707]}},{"type":"Feature","id":14862,"properties":{"mag":4.85,"bv":"0.035"},"geometry":{"type":"Point","coordinates":[47.9845,74.3937]}},{"type":"Feature","id":14879,"properties":{"mag":3.8,"bv":"0.543"},"geometry":{"type":"Point","coordinates":[48.0189,-28.9876]}},{"type":"Feature","id":14893,"properties":{"mag":5.78,"bv":"-0.106"},"geometry":{"type":"Point","coordinates":[48.0594,27.257]}},{"type":"Feature","id":14913,"properties":{"mag":5.92,"bv":"0.440"},"geometry":{"type":"Point","coordinates":[48.1073,-44.4197]}},{"type":"Feature","id":14915,"properties":{"mag":5.55,"bv":"1.011"},"geometry":{"type":"Point","coordinates":[48.1099,6.6609]}},{"type":"Feature","id":14930,"properties":{"mag":5.71,"bv":"2.419"},"geometry":{"type":"Point","coordinates":[48.1382,-57.3215]}},{"type":"Feature","id":14954,"properties":{"mag":5.07,"bv":"0.575"},"geometry":{"type":"Point","coordinates":[48.1935,-1.1961]}},{"type":"Feature","id":15004,"properties":{"mag":5.93,"bv":"0.972"},"geometry":{"type":"Point","coordinates":[48.3495,48.177]}},{"type":"Feature","id":15110,"properties":{"mag":4.87,"bv":"-0.007"},"geometry":{"type":"Point","coordinates":[48.7254,21.0444]}},{"type":"Feature","id":15154,"properties":{"mag":5.61,"bv":"0.012"},"geometry":{"type":"Point","coordinates":[48.8352,30.5567]}},{"type":"Feature","id":15192,"properties":{"mag":5.79,"bv":"0.644"},"geometry":{"type":"Point","coordinates":[48.9499,57.1406]}},{"type":"Feature","id":15197,"properties":{"mag":4.8,"bv":"0.232"},"geometry":{"type":"Point","coordinates":[48.9584,-8.8197]}},{"type":"Feature","id":15201,"properties":{"mag":5.51,"bv":"0.438"},"geometry":{"type":"Point","coordinates":[48.9903,-77.3885]}},{"type":"Feature","id":15219,"properties":{"mag":5.04,"bv":"1.107"},"geometry":{"type":"Point","coordinates":[49.0508,50.9377]}},{"type":"Feature","id":15241,"properties":{"mag":5.98,"bv":"0.988"},"geometry":{"type":"Point","coordinates":[49.1466,32.184]}},{"type":"Feature","id":15305,"properties":{"mag":5.84,"bv":"1.228"},"geometry":{"type":"Point","coordinates":[49.3608,-47.7517]}},{"type":"Feature","id":15330,"properties":{"mag":5.53,"bv":"0.641"},"geometry":{"type":"Point","coordinates":[49.4423,-62.5753]}},{"type":"Feature","id":15334,"properties":{"mag":5.97,"bv":"0.056"},"geometry":{"type":"Point","coordinates":[49.4406,39.2834]}},{"type":"Feature","id":15338,"properties":{"mag":5.49,"bv":"-0.060"},"geometry":{"type":"Point","coordinates":[49.4473,44.025]}},{"type":"Feature","id":15357,"properties":{"mag":5.93,"bv":"0.337"},"geometry":{"type":"Point","coordinates":[49.5108,-28.7971]}},{"type":"Feature","id":15371,"properties":{"mag":5.24,"bv":"0.600"},"geometry":{"type":"Point","coordinates":[49.5534,-62.5064]}},{"type":"Feature","id":15382,"properties":{"mag":4.86,"bv":"0.904"},"geometry":{"type":"Point","coordinates":[49.5921,-22.5111]}},{"type":"Feature","id":15383,"properties":{"mag":5.62,"bv":"1.050"},"geometry":{"type":"Point","coordinates":[49.5934,-0.9303]}},{"type":"Feature","id":15404,"properties":{"mag":5.16,"bv":"-0.073"},"geometry":{"type":"Point","coordinates":[49.6573,50.2222]}},{"type":"Feature","id":15411,"properties":{"mag":5.72,"bv":"0.381"},"geometry":{"type":"Point","coordinates":[49.6715,-18.5598]}},{"type":"Feature","id":15416,"properties":{"mag":4.85,"bv":"1.491"},"geometry":{"type":"Point","coordinates":[49.6826,34.2227]}},{"type":"Feature","id":15444,"properties":{"mag":5.05,"bv":"-0.067"},"geometry":{"type":"Point","coordinates":[49.7818,50.095]}},{"type":"Feature","id":15457,"properties":{"mag":4.84,"bv":"0.681"},"geometry":{"type":"Point","coordinates":[49.8404,3.3702]}},{"type":"Feature","id":15474,"properties":{"mag":3.7,"bv":"1.614"},"geometry":{"type":"Point","coordinates":[49.8792,-21.7579]}},{"type":"Feature","id":15479,"properties":{"mag":5.63,"bv":"1.663"},"geometry":{"type":"Point","coordinates":[49.8954,-24.1229]}},{"type":"Feature","id":15510,"properties":{"mag":4.26,"bv":"0.711"},"geometry":{"type":"Point","coordinates":[49.9819,-43.0698]}},{"type":"Feature","id":15514,"properties":{"mag":5.91,"bv":"0.860"},"geometry":{"type":"Point","coordinates":[49.9825,27.0711]}},{"type":"Feature","id":15520,"properties":{"mag":4.74,"bv":"-0.108"},"geometry":{"type":"Point","coordinates":[49.997,65.6523]}},{"type":"Feature","id":15547,"properties":{"mag":5.44,"bv":"0.211"},"geometry":{"type":"Point","coordinates":[50.0823,77.7347]}},{"type":"Feature","id":15549,"properties":{"mag":4.47,"bv":"1.555"},"geometry":{"type":"Point","coordinates":[50.0848,29.0485]}},{"type":"Feature","id":15619,"properties":{"mag":5.7,"bv":"0.964"},"geometry":{"type":"Point","coordinates":[50.2783,3.6756]}},{"type":"Feature","id":15627,"properties":{"mag":5.27,"bv":"-0.067"},"geometry":{"type":"Point","coordinates":[50.3068,21.1471]}},{"type":"Feature","id":15643,"properties":{"mag":5.5,"bv":"0.885"},"geometry":{"type":"Point","coordinates":[50.35,-23.6351]}},{"type":"Feature","id":15648,"properties":{"mag":4.96,"bv":"0.051"},"geometry":{"type":"Point","coordinates":[50.3607,43.3297]}},{"type":"Feature","id":15669,"properties":{"mag":5.94,"bv":"0.468"},"geometry":{"type":"Point","coordinates":[50.4689,49.0709]}},{"type":"Feature","id":15696,"properties":{"mag":5.55,"bv":"1.100"},"geometry":{"type":"Point","coordinates":[50.5496,27.6076]}},{"type":"Feature","id":15737,"properties":{"mag":5.1,"bv":"1.231"},"geometry":{"type":"Point","coordinates":[50.6885,20.7421]}},{"type":"Feature","id":15770,"properties":{"mag":5.32,"bv":"-0.076"},"geometry":{"type":"Point","coordinates":[50.805,49.2133]}},{"type":"Feature","id":15861,"properties":{"mag":5.5,"bv":"1.190"},"geometry":{"type":"Point","coordinates":[51.077,24.7241]}},{"type":"Feature","id":15863,"properties":{"mag":1.79,"bv":"0.481"},"geometry":{"type":"Point","coordinates":[51.0807,49.8612]}},{"type":"Feature","id":15876,"properties":{"mag":5.78,"bv":"-0.001"},"geometry":{"type":"Point","coordinates":[51.1238,33.536]}},{"type":"Feature","id":15890,"properties":{"mag":5.13,"bv":"2.038"},"geometry":{"type":"Point","coordinates":[51.169,64.586]}},{"type":"Feature","id":15900,"properties":{"mag":3.61,"bv":"0.887"},"geometry":{"type":"Point","coordinates":[51.2033,9.0289]}},{"type":"Feature","id":15968,"properties":{"mag":5.96,"bv":"0.415"},"geometry":{"type":"Point","coordinates":[51.4011,-69.3364]}},{"type":"Feature","id":16029,"properties":{"mag":5.93,"bv":"0.934"},"geometry":{"type":"Point","coordinates":[51.5939,-27.3175]}},{"type":"Feature","id":16083,"properties":{"mag":3.73,"bv":"-0.082"},"geometry":{"type":"Point","coordinates":[51.7923,9.7327]}},{"type":"Feature","id":16112,"properties":{"mag":5.71,"bv":"1.284"},"geometry":{"type":"Point","coordinates":[51.8893,-35.6813]}},{"type":"Feature","id":16142,"properties":{"mag":5.74,"bv":"1.102"},"geometry":{"type":"Point","coordinates":[52.0039,-11.2866]}},{"type":"Feature","id":16147,"properties":{"mag":4.99,"bv":"-0.091"},"geometry":{"type":"Point","coordinates":[52.0128,49.0629]}},{"type":"Feature","id":16168,"properties":{"mag":5.72,"bv":"0.048"},"geometry":{"type":"Point","coordinates":[52.0862,33.8076]}},{"type":"Feature","id":16210,"properties":{"mag":5.58,"bv":"-0.054"},"geometry":{"type":"Point","coordinates":[52.218,49.8484]}},{"type":"Feature","id":16228,"properties":{"mag":4.21,"bv":"0.419"},"geometry":{"type":"Point","coordinates":[52.2672,59.9403]}},{"type":"Feature","id":16244,"properties":{"mag":4.67,"bv":"-0.096"},"geometry":{"type":"Point","coordinates":[52.3419,49.5089]}},{"type":"Feature","id":16245,"properties":{"mag":4.71,"bv":"0.410"},"geometry":{"type":"Point","coordinates":[52.3445,-62.9375]}},{"type":"Feature","id":16263,"properties":{"mag":5.57,"bv":"0.171"},"geometry":{"type":"Point","coordinates":[52.4001,-12.6747]}},{"type":"Feature","id":16281,"properties":{"mag":4.55,"bv":"0.489"},"geometry":{"type":"Point","coordinates":[52.4781,58.8787]}},{"type":"Feature","id":16285,"properties":{"mag":5.76,"bv":"0.205"},"geometry":{"type":"Point","coordinates":[52.4798,-42.6343]}},{"type":"Feature","id":16290,"properties":{"mag":5.68,"bv":"0.932"},"geometry":{"type":"Point","coordinates":[52.4954,-78.3518]}},{"type":"Feature","id":16292,"properties":{"mag":5.09,"bv":"0.022"},"geometry":{"type":"Point","coordinates":[52.5008,55.4518]}},{"type":"Feature","id":16322,"properties":{"mag":5.14,"bv":"-0.041"},"geometry":{"type":"Point","coordinates":[52.602,11.3364]}},{"type":"Feature","id":16335,"properties":{"mag":4.36,"bv":"1.367"},"geometry":{"type":"Point","coordinates":[52.6437,47.9952]}},{"type":"Feature","id":16339,"properties":{"mag":5.98,"bv":"0.116"},"geometry":{"type":"Point","coordinates":[52.654,-47.3751]}},{"type":"Feature","id":16340,"properties":{"mag":5.82,"bv":"-0.033"},"geometry":{"type":"Point","coordinates":[52.654,48.1036]}},{"type":"Feature","id":16341,"properties":{"mag":4.74,"bv":"-0.092"},"geometry":{"type":"Point","coordinates":[52.6544,-5.0751]}},{"type":"Feature","id":16358,"properties":{"mag":5.93,"bv":"0.953"},"geometry":{"type":"Point","coordinates":[52.6892,6.1887]}},{"type":"Feature","id":16368,"properties":{"mag":5.81,"bv":"-0.055"},"geometry":{"type":"Point","coordinates":[52.7154,-66.4897]}},{"type":"Feature","id":16369,"properties":{"mag":4.14,"bv":"1.112"},"geometry":{"type":"Point","coordinates":[52.7182,12.9367]}},{"type":"Feature","id":16470,"properties":{"mag":5.47,"bv":"-0.101"},"geometry":{"type":"Point","coordinates":[53.0358,48.0235]}},{"type":"Feature","id":16489,"properties":{"mag":5.62,"bv":"0.894"},"geometry":{"type":"Point","coordinates":[53.0839,84.911]}},{"type":"Feature","id":16499,"properties":{"mag":5.3,"bv":"0.398"},"geometry":{"type":"Point","coordinates":[53.1094,46.0569]}},{"type":"Feature","id":16509,"properties":{"mag":5.67,"bv":"1.101"},"geometry":{"type":"Point","coordinates":[53.145,-50.3786]}},{"type":"Feature","id":16511,"properties":{"mag":5.76,"bv":"-0.072"},"geometry":{"type":"Point","coordinates":[53.1498,9.3734]}},{"type":"Feature","id":16518,"properties":{"mag":5.91,"bv":"-0.084"},"geometry":{"type":"Point","coordinates":[53.1667,35.4617]}},{"type":"Feature","id":16537,"properties":{"mag":3.72,"bv":"0.881"},"geometry":{"type":"Point","coordinates":[53.2327,-9.4583]}},{"type":"Feature","id":16591,"properties":{"mag":5.79,"bv":"0.139"},"geometry":{"type":"Point","coordinates":[53.396,39.8995]}},{"type":"Feature","id":16599,"properties":{"mag":5.98,"bv":"0.114"},"geometry":{"type":"Point","coordinates":[53.4127,54.9749]}},{"type":"Feature","id":16611,"properties":{"mag":4.26,"bv":"-0.106"},"geometry":{"type":"Point","coordinates":[53.447,-21.6329]}},{"type":"Feature","id":16664,"properties":{"mag":5.95,"bv":"0.123"},"geometry":{"type":"Point","coordinates":[53.6109,24.4644]}},{"type":"Feature","id":16780,"properties":{"mag":5.56,"bv":"0.915"},"geometry":{"type":"Point","coordinates":[53.9903,-11.1938]}},{"type":"Feature","id":16803,"properties":{"mag":5.24,"bv":"-0.117"},"geometry":{"type":"Point","coordinates":[54.0726,-17.4671]}},{"type":"Feature","id":16826,"properties":{"mag":4.32,"bv":"-0.058"},"geometry":{"type":"Point","coordinates":[54.1224,48.1926]}},{"type":"Feature","id":16846,"properties":{"mag":5.82,"bv":"0.885"},"geometry":{"type":"Point","coordinates":[54.197,0.5878]}},{"type":"Feature","id":16852,"properties":{"mag":4.29,"bv":"0.575"},"geometry":{"type":"Point","coordinates":[54.2183,0.4017]}},{"type":"Feature","id":16870,"properties":{"mag":4.57,"bv":"1.023"},"geometry":{"type":"Point","coordinates":[54.2737,-40.2745]}},{"type":"Feature","id":16989,"properties":{"mag":5.86,"bv":"0.980"},"geometry":{"type":"Point","coordinates":[54.6219,-7.3919]}},{"type":"Feature","id":17027,"properties":{"mag":5.97,"bv":"0.921"},"geometry":{"type":"Point","coordinates":[54.7547,-5.6262]}},{"type":"Feature","id":17103,"properties":{"mag":5.55,"bv":"0.931"},"geometry":{"type":"Point","coordinates":[54.963,3.0569]}},{"type":"Feature","id":17167,"properties":{"mag":5.53,"bv":"-0.145"},"geometry":{"type":"Point","coordinates":[55.1597,-5.2107]}},{"type":"Feature","id":17203,"properties":{"mag":5.55,"bv":"-0.062"},"geometry":{"type":"Point","coordinates":[55.2827,37.5802]}},{"type":"Feature","id":17296,"properties":{"mag":5.06,"bv":"1.651"},"geometry":{"type":"Point","coordinates":[55.5389,63.2168]}},{"type":"Feature","id":17304,"properties":{"mag":4.99,"bv":"-0.159"},"geometry":{"type":"Point","coordinates":[55.5621,-31.9384]}},{"type":"Feature","id":17309,"properties":{"mag":5.68,"bv":"-0.016"},"geometry":{"type":"Point","coordinates":[55.579,19.7003]}},{"type":"Feature","id":17313,"properties":{"mag":4.97,"bv":"-0.048"},"geometry":{"type":"Point","coordinates":[55.5944,33.965]}},{"type":"Feature","id":17342,"properties":{"mag":5.74,"bv":"1.736"},"geometry":{"type":"Point","coordinates":[55.6781,59.9694]}},{"type":"Feature","id":17351,"properties":{"mag":4.59,"bv":"1.191"},"geometry":{"type":"Point","coordinates":[55.7086,-37.3135]}},{"type":"Feature","id":17358,"properties":{"mag":3.01,"bv":"-0.125"},"geometry":{"type":"Point","coordinates":[55.7313,47.7876]}},{"type":"Feature","id":17378,"properties":{"mag":3.52,"bv":"0.915"},"geometry":{"type":"Point","coordinates":[55.8121,-9.7634]}},{"type":"Feature","id":17395,"properties":{"mag":5.59,"bv":"0.216"},"geometry":{"type":"Point","coordinates":[55.891,-10.4857]}},{"type":"Feature","id":17440,"properties":{"mag":3.84,"bv":"1.133"},"geometry":{"type":"Point","coordinates":[56.0499,-64.8069]}},{"type":"Feature","id":17448,"properties":{"mag":3.84,"bv":"0.022"},"geometry":{"type":"Point","coordinates":[56.0797,32.2882]}},{"type":"Feature","id":17457,"properties":{"mag":5.24,"bv":"-0.088"},"geometry":{"type":"Point","coordinates":[56.1271,-1.1631]}},{"type":"Feature","id":17460,"properties":{"mag":5.6,"bv":"0.062"},"geometry":{"type":"Point","coordinates":[56.131,36.4601]}},{"type":"Feature","id":17489,"properties":{"mag":5.45,"bv":"-0.034"},"geometry":{"type":"Point","coordinates":[56.2009,24.2895]}},{"type":"Feature","id":17499,"properties":{"mag":3.72,"bv":"-0.105"},"geometry":{"type":"Point","coordinates":[56.2189,24.1133]}},{"type":"Feature","id":17506,"properties":{"mag":5.56,"bv":"1.411"},"geometry":{"type":"Point","coordinates":[56.2354,-0.2967]}},{"type":"Feature","id":17527,"properties":{"mag":5.66,"bv":"-0.064"},"geometry":{"type":"Point","coordinates":[56.2906,24.8393]}},{"type":"Feature","id":17529,"properties":{"mag":3.77,"bv":"0.425"},"geometry":{"type":"Point","coordinates":[56.2985,42.5785]}},{"type":"Feature","id":17531,"properties":{"mag":4.3,"bv":"-0.110"},"geometry":{"type":"Point","coordinates":[56.3021,24.4673]}},{"type":"Feature","id":17534,"properties":{"mag":5.72,"bv":"0.961"},"geometry":{"type":"Point","coordinates":[56.3162,-47.3595]}},{"type":"Feature","id":17563,"properties":{"mag":5.34,"bv":"-0.099"},"geometry":{"type":"Point","coordinates":[56.4185,6.05]}},{"type":"Feature","id":17573,"properties":{"mag":3.87,"bv":"-0.063"},"geometry":{"type":"Point","coordinates":[56.4567,24.3677]}},{"type":"Feature","id":17579,"properties":{"mag":5.76,"bv":"-0.036"},"geometry":{"type":"Point","coordinates":[56.477,24.5545]}},{"type":"Feature","id":17584,"properties":{"mag":5.66,"bv":"-0.080"},"geometry":{"type":"Point","coordinates":[56.4969,45.6819]}},{"type":"Feature","id":17585,"properties":{"mag":5.79,"bv":"0.347"},"geometry":{"type":"Point","coordinates":[56.5039,67.2016]}},{"type":"Feature","id":17587,"properties":{"mag":4.78,"bv":"0.747"},"geometry":{"type":"Point","coordinates":[56.5097,63.345]}},{"type":"Feature","id":17593,"properties":{"mag":4.43,"bv":"1.604"},"geometry":{"type":"Point","coordinates":[56.5356,-12.1016]}},{"type":"Feature","id":17595,"properties":{"mag":5.91,"bv":"0.992"},"geometry":{"type":"Point","coordinates":[56.539,6.8035]}},{"type":"Feature","id":17608,"properties":{"mag":4.14,"bv":"-0.051"},"geometry":{"type":"Point","coordinates":[56.5816,23.9484]}},{"type":"Feature","id":17618,"properties":{"mag":5.91,"bv":"0.110"},"geometry":{"type":"Point","coordinates":[56.6143,-29.3382]}},{"type":"Feature","id":17651,"properties":{"mag":4.22,"bv":"0.434"},"geometry":{"type":"Point","coordinates":[56.712,-23.2497]}},{"type":"Feature","id":17678,"properties":{"mag":3.26,"bv":"1.590"},"geometry":{"type":"Point","coordinates":[56.8098,-74.239]}},{"type":"Feature","id":17702,"properties":{"mag":2.85,"bv":"-0.086"},"geometry":{"type":"Point","coordinates":[56.8712,24.1051]}},{"type":"Feature","id":17717,"properties":{"mag":5.24,"bv":"0.075"},"geometry":{"type":"Point","coordinates":[56.9152,-23.8747]}},{"type":"Feature","id":17738,"properties":{"mag":5.52,"bv":"0.973"},"geometry":{"type":"Point","coordinates":[56.9835,-30.1679]}},{"type":"Feature","id":17771,"properties":{"mag":5.08,"bv":"-0.125"},"geometry":{"type":"Point","coordinates":[57.0678,11.1433]}},{"type":"Feature","id":17776,"properties":{"mag":5.44,"bv":"-0.067"},"geometry":{"type":"Point","coordinates":[57.0867,23.4212]}},{"type":"Feature","id":17797,"properties":{"mag":4.3,"bv":"-0.038"},"geometry":{"type":"Point","coordinates":[57.1495,-37.6202]}},{"type":"Feature","id":17798,"properties":{"mag":5.81,"bv":"1.602"},"geometry":{"type":"Point","coordinates":[57.1488,-20.903]}},{"type":"Feature","id":17805,"properties":{"mag":5.91,"bv":"1.224"},"geometry":{"type":"Point","coordinates":[57.1623,0.2279]}},{"type":"Feature","id":17846,"properties":{"mag":5.95,"bv":"0.279"},"geometry":{"type":"Point","coordinates":[57.2838,43.9631]}},{"type":"Feature","id":17847,"properties":{"mag":3.62,"bv":"-0.070"},"geometry":{"type":"Point","coordinates":[57.2906,24.0534]}},{"type":"Feature","id":17851,"properties":{"mag":5.05,"bv":"-0.082"},"geometry":{"type":"Point","coordinates":[57.2967,24.1367]}},{"type":"Feature","id":17854,"properties":{"mag":5.4,"bv":"0.096"},"geometry":{"type":"Point","coordinates":[57.3072,70.871]}},{"type":"Feature","id":17874,"properties":{"mag":4.17,"bv":"0.927"},"geometry":{"type":"Point","coordinates":[57.3635,-36.2003]}},{"type":"Feature","id":17884,"properties":{"mag":4.39,"bv":"1.870"},"geometry":{"type":"Point","coordinates":[57.3803,65.526]}},{"type":"Feature","id":17886,"properties":{"mag":5.14,"bv":"0.057"},"geometry":{"type":"Point","coordinates":[57.3862,33.0914]}},{"type":"Feature","id":17891,"properties":{"mag":5.82,"bv":"0.189"},"geometry":{"type":"Point","coordinates":[57.4025,63.297]}},{"type":"Feature","id":17932,"properties":{"mag":5.65,"bv":"0.779"},"geometry":{"type":"Point","coordinates":[57.5184,44.9679]}},{"type":"Feature","id":17954,"properties":{"mag":5.24,"bv":"0.231"},"geometry":{"type":"Point","coordinates":[57.5789,25.5794]}},{"type":"Feature","id":17959,"properties":{"mag":4.59,"bv":"0.064"},"geometry":{"type":"Point","coordinates":[57.5896,71.3323]}},{"type":"Feature","id":18081,"properties":{"mag":5.78,"bv":"-0.036"},"geometry":{"type":"Point","coordinates":[57.9738,34.3591]}},{"type":"Feature","id":18089,"properties":{"mag":5.66,"bv":"0.046"},"geometry":{"type":"Point","coordinates":[58.001,6.5349]}},{"type":"Feature","id":18141,"properties":{"mag":5.48,"bv":"-0.090"},"geometry":{"type":"Point","coordinates":[58.1736,-5.3613]}},{"type":"Feature","id":18170,"properties":{"mag":5.97,"bv":"0.354"},"geometry":{"type":"Point","coordinates":[58.2919,17.3271]}},{"type":"Feature","id":18199,"properties":{"mag":5.93,"bv":"1.220"},"geometry":{"type":"Point","coordinates":[58.3888,-46.8937]}},{"type":"Feature","id":18212,"properties":{"mag":5.76,"bv":"1.040"},"geometry":{"type":"Point","coordinates":[58.4113,48.6505]}},{"type":"Feature","id":18213,"properties":{"mag":5.11,"bv":"-0.133"},"geometry":{"type":"Point","coordinates":[58.4123,-34.7323]}},{"type":"Feature","id":18216,"properties":{"mag":4.64,"bv":"-0.136"},"geometry":{"type":"Point","coordinates":[58.4279,-24.6122]}},{"type":"Feature","id":18217,"properties":{"mag":5.8,"bv":"0.182"},"geometry":{"type":"Point","coordinates":[58.4304,57.9751]}},{"type":"Feature","id":18246,"properties":{"mag":2.84,"bv":"0.271"},"geometry":{"type":"Point","coordinates":[58.533,31.8836]}},{"type":"Feature","id":18255,"properties":{"mag":4.46,"bv":"0.672"},"geometry":{"type":"Point","coordinates":[58.5729,-2.9547]}},{"type":"Feature","id":18262,"properties":{"mag":5.7,"bv":"0.599"},"geometry":{"type":"Point","coordinates":[58.5965,-40.357]}},{"type":"Feature","id":18339,"properties":{"mag":5.99,"bv":"0.323"},"geometry":{"type":"Point","coordinates":[58.8172,-12.0991]}},{"type":"Feature","id":18396,"properties":{"mag":5.39,"bv":"-0.073"},"geometry":{"type":"Point","coordinates":[58.9924,47.8714]}},{"type":"Feature","id":18434,"properties":{"mag":5.49,"bv":"-0.058"},"geometry":{"type":"Point","coordinates":[59.1195,35.0809]}},{"type":"Feature","id":18453,"properties":{"mag":5.28,"bv":"0.425"},"geometry":{"type":"Point","coordinates":[59.1522,50.6954]}},{"type":"Feature","id":18471,"properties":{"mag":5.62,"bv":"0.345"},"geometry":{"type":"Point","coordinates":[59.217,22.478]}},{"type":"Feature","id":18488,"properties":{"mag":4.99,"bv":"1.435"},"geometry":{"type":"Point","coordinates":[59.2845,61.1089]}},{"type":"Feature","id":18505,"properties":{"mag":4.95,"bv":"-0.074"},"geometry":{"type":"Point","coordinates":[59.356,63.0723]}},{"type":"Feature","id":18532,"properties":{"mag":2.9,"bv":"-0.199"},"geometry":{"type":"Point","coordinates":[59.4635,40.0102]}},{"type":"Feature","id":18543,"properties":{"mag":2.97,"bv":"1.588"},"geometry":{"type":"Point","coordinates":[59.5074,-13.5085]}},{"type":"Feature","id":18597,"properties":{"mag":4.56,"bv":"1.590"},"geometry":{"type":"Point","coordinates":[59.6865,-61.4002]}},{"type":"Feature","id":18606,"properties":{"mag":5.85,"bv":"1.001"},"geometry":{"type":"Point","coordinates":[59.7183,-5.4699]}},{"type":"Feature","id":18614,"properties":{"mag":3.98,"bv":"0.016"},"geometry":{"type":"Point","coordinates":[59.7413,35.791]}},{"type":"Feature","id":18647,"properties":{"mag":5.61,"bv":"1.479"},"geometry":{"type":"Point","coordinates":[59.8755,-12.5744]}},{"type":"Feature","id":18673,"properties":{"mag":4.62,"bv":"-0.121"},"geometry":{"type":"Point","coordinates":[59.9812,-24.0162]}},{"type":"Feature","id":18723,"properties":{"mag":5.93,"bv":"0.036"},"geometry":{"type":"Point","coordinates":[60.1694,-30.4907]}},{"type":"Feature","id":18724,"properties":{"mag":3.41,"bv":"-0.099"},"geometry":{"type":"Point","coordinates":[60.1701,12.4903]}},{"type":"Feature","id":18735,"properties":{"mag":5.89,"bv":"0.319"},"geometry":{"type":"Point","coordinates":[60.2032,18.194]}},{"type":"Feature","id":18744,"properties":{"mag":4.48,"bv":"1.500"},"geometry":{"type":"Point","coordinates":[60.2242,-62.1593]}},{"type":"Feature","id":18772,"properties":{"mag":4.97,"bv":"1.386"},"geometry":{"type":"Point","coordinates":[60.3256,-61.0788]}},{"type":"Feature","id":18788,"properties":{"mag":5.28,"bv":"-0.133"},"geometry":{"type":"Point","coordinates":[60.3835,-1.5497]}},{"type":"Feature","id":18805,"properties":{"mag":5.67,"bv":"0.005"},"geometry":{"type":"Point","coordinates":[60.4422,9.998]}},{"type":"Feature","id":18859,"properties":{"mag":5.38,"bv":"0.516"},"geometry":{"type":"Point","coordinates":[60.6531,-0.2689]}},{"type":"Feature","id":18907,"properties":{"mag":3.91,"bv":"0.032"},"geometry":{"type":"Point","coordinates":[60.7891,5.9893]}},{"type":"Feature","id":18957,"properties":{"mag":5.32,"bv":"-0.080"},"geometry":{"type":"Point","coordinates":[60.9359,5.4356]}},{"type":"Feature","id":18975,"properties":{"mag":5.45,"bv":"0.371"},"geometry":{"type":"Point","coordinates":[60.9859,8.1973]}},{"type":"Feature","id":18993,"properties":{"mag":5.36,"bv":"0.505"},"geometry":{"type":"Point","coordinates":[61.0411,2.8269]}},{"type":"Feature","id":19009,"properties":{"mag":5.46,"bv":"0.813"},"geometry":{"type":"Point","coordinates":[61.0903,24.106]}},{"type":"Feature","id":19011,"properties":{"mag":5.62,"bv":"1.062"},"geometry":{"type":"Point","coordinates":[61.0946,-12.7923]}},{"type":"Feature","id":19018,"properties":{"mag":5,"bv":"0.495"},"geometry":{"type":"Point","coordinates":[61.1132,59.1555]}},{"type":"Feature","id":19038,"properties":{"mag":4.36,"bv":"1.064"},"geometry":{"type":"Point","coordinates":[61.1738,22.0819]}},{"type":"Feature","id":19076,"properties":{"mag":5.9,"bv":"0.620"},"geometry":{"type":"Point","coordinates":[61.3344,22.0089]}},{"type":"Feature","id":19095,"properties":{"mag":5.59,"bv":"0.324"},"geometry":{"type":"Point","coordinates":[61.406,-27.6518]}},{"type":"Feature","id":19129,"properties":{"mag":5.88,"bv":"1.543"},"geometry":{"type":"Point","coordinates":[61.5133,68.68]}},{"type":"Feature","id":19167,"properties":{"mag":4.25,"bv":"-0.011"},"geometry":{"type":"Point","coordinates":[61.646,50.3513]}},{"type":"Feature","id":19171,"properties":{"mag":5.18,"bv":"-0.124"},"geometry":{"type":"Point","coordinates":[61.6517,27.5999]}},{"type":"Feature","id":19205,"properties":{"mag":5.21,"bv":"0.359"},"geometry":{"type":"Point","coordinates":[61.7519,29.0013]}},{"type":"Feature","id":19284,"properties":{"mag":5.89,"bv":"1.497"},"geometry":{"type":"Point","coordinates":[61.9976,17.3399]}},{"type":"Feature","id":19335,"properties":{"mag":5.52,"bv":"0.520"},"geometry":{"type":"Point","coordinates":[62.1526,38.0397]}},{"type":"Feature","id":19343,"properties":{"mag":3.96,"bv":"-0.025"},"geometry":{"type":"Point","coordinates":[62.1654,47.7125]}},{"type":"Feature","id":19376,"properties":{"mag":5.94,"bv":"0.052"},"geometry":{"type":"Point","coordinates":[62.2565,13.3983]}},{"type":"Feature","id":19388,"properties":{"mag":5.51,"bv":"1.077"},"geometry":{"type":"Point","coordinates":[62.2915,19.6092]}},{"type":"Feature","id":19398,"properties":{"mag":5.45,"bv":"-0.147"},"geometry":{"type":"Point","coordinates":[62.3243,-16.3859]}},{"type":"Feature","id":19454,"properties":{"mag":5.84,"bv":"0.393"},"geometry":{"type":"Point","coordinates":[62.5068,86.6261]}},{"type":"Feature","id":19461,"properties":{"mag":5.1,"bv":"0.589"},"geometry":{"type":"Point","coordinates":[62.5114,80.6987]}},{"type":"Feature","id":19483,"properties":{"mag":5.44,"bv":"0.941"},"geometry":{"type":"Point","coordinates":[62.5938,-6.9239]}},{"type":"Feature","id":19511,"properties":{"mag":5.7,"bv":"1.057"},"geometry":{"type":"Point","coordinates":[62.699,-8.8198]}},{"type":"Feature","id":19513,"properties":{"mag":5.39,"bv":"0.352"},"geometry":{"type":"Point","coordinates":[62.7078,26.481]}},{"type":"Feature","id":19515,"properties":{"mag":4.93,"bv":"0.334"},"geometry":{"type":"Point","coordinates":[62.7108,-41.9936]}},{"type":"Feature","id":19525,"properties":{"mag":5.75,"bv":"1.412"},"geometry":{"type":"Point","coordinates":[62.7459,33.5868]}},{"type":"Feature","id":19554,"properties":{"mag":5.71,"bv":"0.360"},"geometry":{"type":"Point","coordinates":[62.8345,5.523]}},{"type":"Feature","id":19571,"properties":{"mag":5.8,"bv":"0.165"},"geometry":{"type":"Point","coordinates":[62.9008,-20.3562]}},{"type":"Feature","id":19587,"properties":{"mag":4.04,"bv":"0.327"},"geometry":{"type":"Point","coordinates":[62.9664,-6.8376]}},{"type":"Feature","id":19719,"properties":{"mag":5.29,"bv":"0.366"},"geometry":{"type":"Point","coordinates":[63.3879,7.716]}},{"type":"Feature","id":19740,"properties":{"mag":4.84,"bv":"0.799"},"geometry":{"type":"Point","coordinates":[63.4849,9.2638]}},{"type":"Feature","id":19747,"properties":{"mag":3.85,"bv":"1.085"},"geometry":{"type":"Point","coordinates":[63.5005,-42.2944]}},{"type":"Feature","id":19777,"properties":{"mag":4.87,"bv":"1.156"},"geometry":{"type":"Point","coordinates":[63.5987,-10.2563]}},{"type":"Feature","id":19780,"properties":{"mag":3.33,"bv":"0.915"},"geometry":{"type":"Point","coordinates":[63.6062,-62.4739]}},{"type":"Feature","id":19799,"properties":{"mag":5.22,"bv":"-0.085"},"geometry":{"type":"Point","coordinates":[63.651,10.0114]}},{"type":"Feature","id":19805,"properties":{"mag":5.45,"bv":"1.106"},"geometry":{"type":"Point","coordinates":[63.7023,-62.1918]}},{"type":"Feature","id":19811,"properties":{"mag":4.67,"bv":"1.007"},"geometry":{"type":"Point","coordinates":[63.7222,40.4837]}},{"type":"Feature","id":19812,"properties":{"mag":4.12,"bv":"0.935"},"geometry":{"type":"Point","coordinates":[63.7244,48.4093]}},{"type":"Feature","id":19849,"properties":{"mag":4.43,"bv":"0.820"},"geometry":{"type":"Point","coordinates":[63.818,-7.6529]}},{"type":"Feature","id":19860,"properties":{"mag":4.27,"bv":"-0.054"},"geometry":{"type":"Point","coordinates":[63.8836,8.8924]}},{"type":"Feature","id":19893,"properties":{"mag":4.26,"bv":"0.312"},"geometry":{"type":"Point","coordinates":[64.0066,-51.4866]}},{"type":"Feature","id":19921,"properties":{"mag":4.44,"bv":"1.078"},"geometry":{"type":"Point","coordinates":[64.121,-59.3022]}},{"type":"Feature","id":19949,"properties":{"mag":5.2,"bv":"0.052"},"geometry":{"type":"Point","coordinates":[64.1795,53.6118]}},{"type":"Feature","id":19968,"properties":{"mag":5.69,"bv":"-0.116"},"geometry":{"type":"Point","coordinates":[64.2231,61.85]}},{"type":"Feature","id":19983,"properties":{"mag":5.72,"bv":"1.108"},"geometry":{"type":"Point","coordinates":[64.2837,57.8604]}},{"type":"Feature","id":19990,"properties":{"mag":4.93,"bv":"0.259"},"geometry":{"type":"Point","coordinates":[64.3153,20.5786]}},{"type":"Feature","id":19996,"properties":{"mag":5.95,"bv":"1.078"},"geometry":{"type":"Point","coordinates":[64.3301,-6.4722]}},{"type":"Feature","id":20020,"properties":{"mag":5.88,"bv":"-0.061"},"geometry":{"type":"Point","coordinates":[64.4178,-63.2554]}},{"type":"Feature","id":20042,"properties":{"mag":3.55,"bv":"-0.108"},"geometry":{"type":"Point","coordinates":[64.4736,-33.7983]}},{"type":"Feature","id":20049,"properties":{"mag":5.67,"bv":"0.836"},"geometry":{"type":"Point","coordinates":[64.497,-80.214]}},{"type":"Feature","id":20070,"properties":{"mag":4.6,"bv":"0.043"},"geometry":{"type":"Point","coordinates":[64.5609,50.2955]}},{"type":"Feature","id":20075,"properties":{"mag":6,"bv":"1.597"},"geometry":{"type":"Point","coordinates":[64.567,-20.7153]}},{"type":"Feature","id":20087,"properties":{"mag":5.64,"bv":"0.277"},"geometry":{"type":"Point","coordinates":[64.5967,21.5793]}},{"type":"Feature","id":20156,"properties":{"mag":5.46,"bv":"0.235"},"geometry":{"type":"Point","coordinates":[64.8052,50.0487]}},{"type":"Feature","id":20161,"properties":{"mag":5.33,"bv":"1.066"},"geometry":{"type":"Point","coordinates":[64.8196,-44.2679]}},{"type":"Feature","id":20171,"properties":{"mag":5.5,"bv":"-0.069"},"geometry":{"type":"Point","coordinates":[64.8587,21.1423]}},{"type":"Feature","id":20186,"properties":{"mag":5.34,"bv":"-0.107"},"geometry":{"type":"Point","coordinates":[64.9029,21.7735]}},{"type":"Feature","id":20205,"properties":{"mag":3.65,"bv":"0.981"},"geometry":{"type":"Point","coordinates":[64.9483,15.6276]}},{"type":"Feature","id":20219,"properties":{"mag":5.58,"bv":"0.283"},"geometry":{"type":"Point","coordinates":[64.9904,14.0352]}},{"type":"Feature","id":20234,"properties":{"mag":5.55,"bv":"-0.031"},"geometry":{"type":"Point","coordinates":[65.048,50.9209]}},{"type":"Feature","id":20241,"properties":{"mag":5.95,"bv":"0.962"},"geometry":{"type":"Point","coordinates":[65.0601,41.8081]}},{"type":"Feature","id":20250,"properties":{"mag":4.97,"bv":"1.150"},"geometry":{"type":"Point","coordinates":[65.0884,27.3508]}},{"type":"Feature","id":20252,"properties":{"mag":4.93,"bv":"0.950"},"geometry":{"type":"Point","coordinates":[65.1027,34.5667]}},{"type":"Feature","id":20261,"properties":{"mag":5.26,"bv":"0.225"},"geometry":{"type":"Point","coordinates":[65.1513,15.0955]}},{"type":"Feature","id":20264,"properties":{"mag":5.38,"bv":"-0.027"},"geometry":{"type":"Point","coordinates":[65.1626,-20.6396]}},{"type":"Feature","id":20266,"properties":{"mag":5.26,"bv":"0.820"},"geometry":{"type":"Point","coordinates":[65.168,65.1404]}},{"type":"Feature","id":20268,"properties":{"mag":5.76,"bv":"0.914"},"geometry":{"type":"Point","coordinates":[65.1719,6.1308]}},{"type":"Feature","id":20271,"properties":{"mag":5.85,"bv":"-0.124"},"geometry":{"type":"Point","coordinates":[65.1785,-7.5925]}},{"type":"Feature","id":20297,"properties":{"mag":5.78,"bv":"0.359"},"geometry":{"type":"Point","coordinates":[65.2419,-81.5799]}},{"type":"Feature","id":20341,"properties":{"mag":5.86,"bv":"1.320"},"geometry":{"type":"Point","coordinates":[65.3627,-0.0982]}},{"type":"Feature","id":20354,"properties":{"mag":4.8,"bv":"-0.022"},"geometry":{"type":"Point","coordinates":[65.3882,46.4989]}},{"type":"Feature","id":20376,"properties":{"mag":5.4,"bv":"1.497"},"geometry":{"type":"Point","coordinates":[65.4485,60.7356]}},{"type":"Feature","id":20380,"properties":{"mag":5.91,"bv":"0.112"},"geometry":{"type":"Point","coordinates":[65.4659,56.5063]}},{"type":"Feature","id":20384,"properties":{"mag":5.24,"bv":"0.955"},"geometry":{"type":"Point","coordinates":[65.4722,-63.3864]}},{"type":"Feature","id":20400,"properties":{"mag":5.72,"bv":"0.315"},"geometry":{"type":"Point","coordinates":[65.5147,14.0772]}},{"type":"Feature","id":20417,"properties":{"mag":5.91,"bv":"1.660"},"geometry":{"type":"Point","coordinates":[65.5947,20.8214]}},{"type":"Feature","id":20430,"properties":{"mag":5.38,"bv":"-0.041"},"geometry":{"type":"Point","coordinates":[65.6456,25.6293]}},{"type":"Feature","id":20455,"properties":{"mag":3.77,"bv":"0.983"},"geometry":{"type":"Point","coordinates":[65.7337,17.5425]}},{"type":"Feature","id":20465,"properties":{"mag":5.81,"bv":"1.507"},"geometry":{"type":"Point","coordinates":[65.7736,-24.8922]}},{"type":"Feature","id":20484,"properties":{"mag":5.64,"bv":"0.310"},"geometry":{"type":"Point","coordinates":[65.8544,16.7773]}},{"type":"Feature","id":20493,"properties":{"mag":6,"bv":"0.029"},"geometry":{"type":"Point","coordinates":[65.8849,20.982]}},{"type":"Feature","id":20507,"properties":{"mag":5.17,"bv":"0.072"},"geometry":{"type":"Point","coordinates":[65.9202,-3.7455]}},{"type":"Feature","id":20522,"properties":{"mag":5.1,"bv":"0.074"},"geometry":{"type":"Point","coordinates":[65.9659,9.461]}},{"type":"Feature","id":20535,"properties":{"mag":3.97,"bv":"1.468"},"geometry":{"type":"Point","coordinates":[66.0092,-34.0168]}},{"type":"Feature","id":20542,"properties":{"mag":4.8,"bv":"0.154"},"geometry":{"type":"Point","coordinates":[66.024,17.4441]}},{"type":"Feature","id":20579,"properties":{"mag":5.73,"bv":"-0.054"},"geometry":{"type":"Point","coordinates":[66.1215,34.1308]}},{"type":"Feature","id":20591,"properties":{"mag":5.77,"bv":"0.400"},"geometry":{"type":"Point","coordinates":[66.1561,33.9597]}},{"type":"Feature","id":20614,"properties":{"mag":5.97,"bv":"0.378"},"geometry":{"type":"Point","coordinates":[66.238,19.042]}},{"type":"Feature","id":20619,"properties":{"mag":5.94,"bv":"1.533"},"geometry":{"type":"Point","coordinates":[66.2722,-61.2382]}},{"type":"Feature","id":20635,"properties":{"mag":4.21,"bv":"0.136"},"geometry":{"type":"Point","coordinates":[66.3424,22.2939]}},{"type":"Feature","id":20641,"properties":{"mag":5.27,"bv":"0.250"},"geometry":{"type":"Point","coordinates":[66.3542,22.2]}},{"type":"Feature","id":20648,"properties":{"mag":4.3,"bv":"0.049"},"geometry":{"type":"Point","coordinates":[66.3724,17.9279]}},{"type":"Feature","id":20704,"properties":{"mag":5.29,"bv":"0.986"},"geometry":{"type":"Point","coordinates":[66.5263,31.4389]}},{"type":"Feature","id":20711,"properties":{"mag":4.28,"bv":"0.263"},"geometry":{"type":"Point","coordinates":[66.5769,22.8136]}},{"type":"Feature","id":20713,"properties":{"mag":4.48,"bv":"0.262"},"geometry":{"type":"Point","coordinates":[66.5864,15.6183]}},{"type":"Feature","id":20732,"properties":{"mag":4.69,"bv":"0.979"},"geometry":{"type":"Point","coordinates":[66.6516,14.7138]}},{"type":"Feature","id":20776,"properties":{"mag":5.42,"bv":"1.179"},"geometry":{"type":"Point","coordinates":[66.7623,80.8242]}},{"type":"Feature","id":20789,"properties":{"mag":5.53,"bv":"-0.098"},"geometry":{"type":"Point","coordinates":[66.8227,22.9963]}},{"type":"Feature","id":20804,"properties":{"mag":5.87,"bv":"0.049"},"geometry":{"type":"Point","coordinates":[66.8699,11.2123]}},{"type":"Feature","id":20825,"properties":{"mag":5.74,"bv":"1.005"},"geometry":{"type":"Point","coordinates":[66.9418,-62.5212]}},{"type":"Feature","id":20842,"properties":{"mag":5.72,"bv":"0.270"},"geometry":{"type":"Point","coordinates":[67.0033,21.6199]}},{"type":"Feature","id":20860,"properties":{"mag":5.51,"bv":"-0.106"},"geometry":{"type":"Point","coordinates":[67.0553,83.8078]}},{"type":"Feature","id":20873,"properties":{"mag":5.9,"bv":"0.325"},"geometry":{"type":"Point","coordinates":[67.0975,14.741]}},{"type":"Feature","id":20877,"properties":{"mag":4.96,"bv":"1.137"},"geometry":{"type":"Point","coordinates":[67.1099,16.3597]}},{"type":"Feature","id":20884,"properties":{"mag":5.53,"bv":"-0.099"},"geometry":{"type":"Point","coordinates":[67.1338,1.3808]}},{"type":"Feature","id":20885,"properties":{"mag":3.84,"bv":"0.952"},"geometry":{"type":"Point","coordinates":[67.1437,15.9622]}},{"type":"Feature","id":20889,"properties":{"mag":3.53,"bv":"1.014"},"geometry":{"type":"Point","coordinates":[67.1542,19.1804]}},{"type":"Feature","id":20892,"properties":{"mag":5.95,"bv":"1.215"},"geometry":{"type":"Point","coordinates":[67.1627,-19.4589]}},{"type":"Feature","id":20894,"properties":{"mag":3.4,"bv":"0.179"},"geometry":{"type":"Point","coordinates":[67.1656,15.8709]}},{"type":"Feature","id":20901,"properties":{"mag":5.02,"bv":"0.215"},"geometry":{"type":"Point","coordinates":[67.209,13.0476]}},{"type":"Feature","id":20922,"properties":{"mag":5.61,"bv":"-0.202"},"geometry":{"type":"Point","coordinates":[67.2789,-13.0484]}},{"type":"Feature","id":20982,"properties":{"mag":5.47,"bv":"0.855"},"geometry":{"type":"Point","coordinates":[67.5015,83.3404]}},{"type":"Feature","id":20995,"properties":{"mag":5.58,"bv":"0.324"},"geometry":{"type":"Point","coordinates":[67.5358,15.6378]}},{"type":"Feature","id":21029,"properties":{"mag":4.78,"bv":"0.170"},"geometry":{"type":"Point","coordinates":[67.6401,16.194]}},{"type":"Feature","id":21036,"properties":{"mag":5.4,"bv":"0.263"},"geometry":{"type":"Point","coordinates":[67.6557,13.7244]}},{"type":"Feature","id":21039,"properties":{"mag":5.47,"bv":"0.258"},"geometry":{"type":"Point","coordinates":[67.662,15.6919]}},{"type":"Feature","id":21042,"properties":{"mag":5.95,"bv":"1.005"},"geometry":{"type":"Point","coordinates":[67.668,-35.6535]}},{"type":"Feature","id":21060,"properties":{"mag":5.07,"bv":"-0.194"},"geometry":{"type":"Point","coordinates":[67.7087,-44.9537]}},{"type":"Feature","id":21139,"properties":{"mag":4.91,"bv":"1.320"},"geometry":{"type":"Point","coordinates":[67.9694,-0.044]}},{"type":"Feature","id":21148,"properties":{"mag":5.78,"bv":"0.119"},"geometry":{"type":"Point","coordinates":[68.0077,53.9108]}},{"type":"Feature","id":21192,"properties":{"mag":5.76,"bv":"-0.117"},"geometry":{"type":"Point","coordinates":[68.1565,-3.2095]}},{"type":"Feature","id":21247,"properties":{"mag":5.94,"bv":"0.306"},"geometry":{"type":"Point","coordinates":[68.3778,72.5286]}},{"type":"Feature","id":21248,"properties":{"mag":4.49,"bv":"0.972"},"geometry":{"type":"Point","coordinates":[68.3773,-29.7665]}},{"type":"Feature","id":21253,"properties":{"mag":5.79,"bv":"1.028"},"geometry":{"type":"Point","coordinates":[68.3915,-62.8237]}},{"type":"Feature","id":21273,"properties":{"mag":4.65,"bv":"0.255"},"geometry":{"type":"Point","coordinates":[68.4622,14.8444]}},{"type":"Feature","id":21278,"properties":{"mag":5.71,"bv":"-0.128"},"geometry":{"type":"Point","coordinates":[68.478,-6.7389]}},{"type":"Feature","id":21281,"properties":{"mag":3.3,"bv":"-0.079"},"geometry":{"type":"Point","coordinates":[68.4991,-55.045]}},{"type":"Feature","id":21295,"properties":{"mag":5.67,"bv":"0.055"},"geometry":{"type":"Point","coordinates":[68.5344,5.5686]}},{"type":"Feature","id":21296,"properties":{"mag":5.2,"bv":"1.708"},"geometry":{"type":"Point","coordinates":[68.5485,-8.2314]}},{"type":"Feature","id":21297,"properties":{"mag":5.24,"bv":"1.465"},"geometry":{"type":"Point","coordinates":[68.549,-8.9703]}},{"type":"Feature","id":21323,"properties":{"mag":5.88,"bv":"-0.048"},"geometry":{"type":"Point","coordinates":[68.6583,28.9612]}},{"type":"Feature","id":21393,"properties":{"mag":3.81,"bv":"0.957"},"geometry":{"type":"Point","coordinates":[68.8877,-30.5623]}},{"type":"Feature","id":21402,"properties":{"mag":4.25,"bv":"0.184"},"geometry":{"type":"Point","coordinates":[68.9136,10.1608]}},{"type":"Feature","id":21421,"properties":{"mag":0.87,"bv":"1.538"},"geometry":{"type":"Point","coordinates":[68.9802,16.5093]}},{"type":"Feature","id":21444,"properties":{"mag":3.93,"bv":"-0.210"},"geometry":{"type":"Point","coordinates":[69.0798,-3.3525]}},{"type":"Feature","id":21452,"properties":{"mag":5.91,"bv":"-0.009"},"geometry":{"type":"Point","coordinates":[69.1008,64.2616]}},{"type":"Feature","id":21476,"properties":{"mag":4.25,"bv":"1.171"},"geometry":{"type":"Point","coordinates":[69.1726,41.2648]}},{"type":"Feature","id":21479,"properties":{"mag":5.59,"bv":"1.500"},"geometry":{"type":"Point","coordinates":[69.19,-62.0772]}},{"type":"Feature","id":21515,"properties":{"mag":5.32,"bv":"-0.107"},"geometry":{"type":"Point","coordinates":[69.307,0.9983]}},{"type":"Feature","id":21547,"properties":{"mag":5.22,"bv":"0.283"},"geometry":{"type":"Point","coordinates":[69.4005,-2.4735]}},{"type":"Feature","id":21588,"properties":{"mag":5.78,"bv":"0.312"},"geometry":{"type":"Point","coordinates":[69.5394,16.0333]}},{"type":"Feature","id":21589,"properties":{"mag":4.27,"bv":"0.122"},"geometry":{"type":"Point","coordinates":[69.5394,12.5108]}},{"type":"Feature","id":21594,"properties":{"mag":3.86,"bv":"1.082"},"geometry":{"type":"Point","coordinates":[69.5451,-14.304]}},{"type":"Feature","id":21604,"properties":{"mag":5.85,"bv":"-0.019"},"geometry":{"type":"Point","coordinates":[69.566,20.6847]}},{"type":"Feature","id":21644,"properties":{"mag":4.99,"bv":"0.074"},"geometry":{"type":"Point","coordinates":[69.7231,-12.1231]}},{"type":"Feature","id":21670,"properties":{"mag":5.38,"bv":"0.257"},"geometry":{"type":"Point","coordinates":[69.7757,7.871]}},{"type":"Feature","id":21673,"properties":{"mag":5.08,"bv":"0.141"},"geometry":{"type":"Point","coordinates":[69.7884,15.7998]}},{"type":"Feature","id":21683,"properties":{"mag":4.67,"bv":"0.147"},"geometry":{"type":"Point","coordinates":[69.8188,15.918]}},{"type":"Feature","id":21685,"properties":{"mag":5.46,"bv":"1.054"},"geometry":{"type":"Point","coordinates":[69.8321,-14.3592]}},{"type":"Feature","id":21727,"properties":{"mag":5.07,"bv":"1.079"},"geometry":{"type":"Point","coordinates":[69.9778,53.0795]}},{"type":"Feature","id":21730,"properties":{"mag":5.36,"bv":"0.331"},"geometry":{"type":"Point","coordinates":[69.992,53.473]}},{"type":"Feature","id":21735,"properties":{"mag":5.45,"bv":"-0.121"},"geometry":{"type":"Point","coordinates":[70.0142,12.1976]}},{"type":"Feature","id":21743,"properties":{"mag":5.56,"bv":"0.926"},"geometry":{"type":"Point","coordinates":[70.0283,-24.4824]}},{"type":"Feature","id":21763,"properties":{"mag":4.32,"bv":"1.599"},"geometry":{"type":"Point","coordinates":[70.1105,-19.6715]}},{"type":"Feature","id":21770,"properties":{"mag":4.44,"bv":"0.342"},"geometry":{"type":"Point","coordinates":[70.1405,-41.8638]}},{"type":"Feature","id":21819,"properties":{"mag":5.73,"bv":"0.018"},"geometry":{"type":"Point","coordinates":[70.3323,28.615]}},{"type":"Feature","id":21823,"properties":{"mag":5.66,"bv":"0.002"},"geometry":{"type":"Point","coordinates":[70.3505,48.3009]}},{"type":"Feature","id":21847,"properties":{"mag":5.97,"bv":"0.593"},"geometry":{"type":"Point","coordinates":[70.4594,38.2802]}},{"type":"Feature","id":21861,"properties":{"mag":5.04,"bv":"0.391"},"geometry":{"type":"Point","coordinates":[70.5145,-37.1443]}},{"type":"Feature","id":21881,"properties":{"mag":4.27,"bv":"-0.112"},"geometry":{"type":"Point","coordinates":[70.5613,22.9569]}},{"type":"Feature","id":21914,"properties":{"mag":5.3,"bv":"0.977"},"geometry":{"type":"Point","coordinates":[70.6934,-50.4813]}},{"type":"Feature","id":21928,"properties":{"mag":5.3,"bv":"0.028"},"geometry":{"type":"Point","coordinates":[70.7264,43.3651]}},{"type":"Feature","id":21949,"properties":{"mag":5.53,"bv":"-0.114"},"geometry":{"type":"Point","coordinates":[70.7665,-70.931]}},{"type":"Feature","id":21958,"properties":{"mag":5.66,"bv":"1.391"},"geometry":{"type":"Point","coordinates":[70.7887,-30.7656]}},{"type":"Feature","id":21972,"properties":{"mag":5.86,"bv":"0.013"},"geometry":{"type":"Point","coordinates":[70.84,49.9738]}},{"type":"Feature","id":21986,"properties":{"mag":5.98,"bv":"0.645"},"geometry":{"type":"Point","coordinates":[70.8948,-8.7943]}},{"type":"Feature","id":22024,"properties":{"mag":5.78,"bv":"-0.076"},"geometry":{"type":"Point","coordinates":[71.0222,-8.5036]}},{"type":"Feature","id":22028,"properties":{"mag":5.53,"bv":"0.025"},"geometry":{"type":"Point","coordinates":[71.0333,-18.6666]}},{"type":"Feature","id":22040,"properties":{"mag":5.28,"bv":"0.206"},"geometry":{"type":"Point","coordinates":[71.0881,-59.7327]}},{"type":"Feature","id":22044,"properties":{"mag":5.39,"bv":"0.251"},"geometry":{"type":"Point","coordinates":[71.1076,11.1461]}},{"type":"Feature","id":22086,"properties":{"mag":5.72,"bv":"1.476"},"geometry":{"type":"Point","coordinates":[71.2673,-21.2834]}},{"type":"Feature","id":22109,"properties":{"mag":4.01,"bv":"-0.148"},"geometry":{"type":"Point","coordinates":[71.3756,-3.2547]}},{"type":"Feature","id":22157,"properties":{"mag":5.35,"bv":"0.197"},"geometry":{"type":"Point","coordinates":[71.5073,11.7056]}},{"type":"Feature","id":22176,"properties":{"mag":5.99,"bv":"1.221"},"geometry":{"type":"Point","coordinates":[71.5701,18.7347]}},{"type":"Feature","id":22220,"properties":{"mag":5.99,"bv":"0.934"},"geometry":{"type":"Point","coordinates":[71.6853,40.3126]}},{"type":"Feature","id":22263,"properties":{"mag":5.49,"bv":"0.632"},"geometry":{"type":"Point","coordinates":[71.9012,-16.9345]}},{"type":"Feature","id":22287,"properties":{"mag":5.29,"bv":"0.246"},"geometry":{"type":"Point","coordinates":[72.0011,56.7572]}},{"type":"Feature","id":22325,"properties":{"mag":5.76,"bv":"0.537"},"geometry":{"type":"Point","coordinates":[72.1356,-16.3295]}},{"type":"Feature","id":22336,"properties":{"mag":5.77,"bv":"0.631"},"geometry":{"type":"Point","coordinates":[72.1516,-5.674]}},{"type":"Feature","id":22361,"properties":{"mag":5.96,"bv":"0.283"},"geometry":{"type":"Point","coordinates":[72.2098,75.9412]}},{"type":"Feature","id":22393,"properties":{"mag":5.57,"bv":"1.132"},"geometry":{"type":"Point","coordinates":[72.3035,31.4374]}},{"type":"Feature","id":22407,"properties":{"mag":5.84,"bv":"0.250"},"geometry":{"type":"Point","coordinates":[72.3295,32.5882]}},{"type":"Feature","id":22449,"properties":{"mag":3.19,"bv":"0.484"},"geometry":{"type":"Point","coordinates":[72.46,6.9613]}},{"type":"Feature","id":22453,"properties":{"mag":4.89,"bv":"1.447"},"geometry":{"type":"Point","coordinates":[72.4777,37.4883]}},{"type":"Feature","id":22479,"properties":{"mag":5.03,"bv":"0.992"},"geometry":{"type":"Point","coordinates":[72.5484,-16.2172]}},{"type":"Feature","id":22509,"properties":{"mag":4.35,"bv":"0.010"},"geometry":{"type":"Point","coordinates":[72.653,8.9002]}},{"type":"Feature","id":22531,"properties":{"mag":5.58,"bv":"0.341"},"geometry":{"type":"Point","coordinates":[72.7305,-53.4615]}},{"type":"Feature","id":22545,"properties":{"mag":5.64,"bv":"1.013"},"geometry":{"type":"Point","coordinates":[72.7889,48.7407]}},{"type":"Feature","id":22549,"properties":{"mag":3.68,"bv":"-0.157"},"geometry":{"type":"Point","coordinates":[72.8015,5.6051]}},{"type":"Feature","id":22565,"properties":{"mag":5.08,"bv":"0.214"},"geometry":{"type":"Point","coordinates":[72.8436,18.8399]}},{"type":"Feature","id":22573,"properties":{"mag":5.82,"bv":"0.105"},"geometry":{"type":"Point","coordinates":[72.8676,-34.9063]}},{"type":"Feature","id":22626,"properties":{"mag":5.47,"bv":"1.559"},"geometry":{"type":"Point","coordinates":[73.0217,63.5054]}},{"type":"Feature","id":22667,"properties":{"mag":4.71,"bv":"1.773"},"geometry":{"type":"Point","coordinates":[73.1332,14.2506]}},{"type":"Feature","id":22678,"properties":{"mag":4.79,"bv":"1.414"},"geometry":{"type":"Point","coordinates":[73.1583,36.7032]}},{"type":"Feature","id":22697,"properties":{"mag":5.97,"bv":"0.368"},"geometry":{"type":"Point","coordinates":[73.1963,27.8975]}},{"type":"Feature","id":22699,"properties":{"mag":5.68,"bv":"0.115"},"geometry":{"type":"Point","coordinates":[73.199,42.5866]}},{"type":"Feature","id":22701,"properties":{"mag":4.36,"bv":"0.257"},"geometry":{"type":"Point","coordinates":[73.2236,-5.4527]}},{"type":"Feature","id":22730,"properties":{"mag":5.33,"bv":"1.632"},"geometry":{"type":"Point","coordinates":[73.3449,2.5082]}},{"type":"Feature","id":22783,"properties":{"mag":4.26,"bv":"-0.008"},"geometry":{"type":"Point","coordinates":[73.5125,66.3427]}},{"type":"Feature","id":22797,"properties":{"mag":3.71,"bv":"-0.179"},"geometry":{"type":"Point","coordinates":[73.5629,2.4407]}},{"type":"Feature","id":22833,"properties":{"mag":5.18,"bv":"0.121"},"geometry":{"type":"Point","coordinates":[73.6954,11.426]}},{"type":"Feature","id":22834,"properties":{"mag":5.33,"bv":"1.214"},"geometry":{"type":"Point","coordinates":[73.6991,7.7791]}},{"type":"Feature","id":22840,"properties":{"mag":5.98,"bv":"-0.116"},"geometry":{"type":"Point","coordinates":[73.7113,0.4672]}},{"type":"Feature","id":22845,"properties":{"mag":4.64,"bv":"0.085"},"geometry":{"type":"Point","coordinates":[73.7239,10.1508]}},{"type":"Feature","id":22854,"properties":{"mag":5.52,"bv":"0.015"},"geometry":{"type":"Point","coordinates":[73.763,55.2591]}},{"type":"Feature","id":22860,"properties":{"mag":5.71,"bv":"0.953"},"geometry":{"type":"Point","coordinates":[73.7784,-16.7407]}},{"type":"Feature","id":22871,"properties":{"mag":5.47,"bv":"1.518"},"geometry":{"type":"Point","coordinates":[73.7967,-74.9369]}},{"type":"Feature","id":22881,"properties":{"mag":5.71,"bv":"0.874"},"geometry":{"type":"Point","coordinates":[73.8277,-16.4178]}},{"type":"Feature","id":22913,"properties":{"mag":5.79,"bv":"-0.085"},"geometry":{"type":"Point","coordinates":[73.959,15.0403]}},{"type":"Feature","id":22936,"properties":{"mag":5.75,"bv":"0.105"},"geometry":{"type":"Point","coordinates":[74.0295,52.8698]}},{"type":"Feature","id":22957,"properties":{"mag":4.06,"bv":"1.158"},"geometry":{"type":"Point","coordinates":[74.0928,13.5145]}},{"type":"Feature","id":22958,"properties":{"mag":5.5,"bv":"-0.123"},"geometry":{"type":"Point","coordinates":[74.1008,-5.1714]}},{"type":"Feature","id":23015,"properties":{"mag":2.69,"bv":"1.490"},"geometry":{"type":"Point","coordinates":[74.2484,33.1661]}},{"type":"Feature","id":23040,"properties":{"mag":4.43,"bv":"-0.017"},"geometry":{"type":"Point","coordinates":[74.3217,53.7521]}},{"type":"Feature","id":23043,"properties":{"mag":5.51,"bv":"1.304"},"geometry":{"type":"Point","coordinates":[74.3431,17.1537]}},{"type":"Feature","id":23068,"properties":{"mag":5.79,"bv":"1.109"},"geometry":{"type":"Point","coordinates":[74.4527,23.9486]}},{"type":"Feature","id":23088,"properties":{"mag":5.79,"bv":"0.018"},"geometry":{"type":"Point","coordinates":[74.5391,25.0504]}},{"type":"Feature","id":23123,"properties":{"mag":4.47,"bv":"1.369"},"geometry":{"type":"Point","coordinates":[74.6371,1.714]}},{"type":"Feature","id":23148,"properties":{"mag":5.84,"bv":"0.932"},"geometry":{"type":"Point","coordinates":[74.7124,-82.4705]}},{"type":"Feature","id":23166,"properties":{"mag":5.65,"bv":"0.447"},"geometry":{"type":"Point","coordinates":[74.7557,-16.376]}},{"type":"Feature","id":23179,"properties":{"mag":4.93,"bv":"0.037"},"geometry":{"type":"Point","coordinates":[74.8142,37.8902]}},{"type":"Feature","id":23221,"properties":{"mag":5.39,"bv":"0.797"},"geometry":{"type":"Point","coordinates":[74.9602,-10.2633]}},{"type":"Feature","id":23231,"properties":{"mag":4.78,"bv":"0.267"},"geometry":{"type":"Point","coordinates":[74.9822,-12.5374]}},{"type":"Feature","id":23261,"properties":{"mag":5.95,"bv":"0.415"},"geometry":{"type":"Point","coordinates":[75.0764,39.3947]}},{"type":"Feature","id":23265,"properties":{"mag":5.09,"bv":"1.304"},"geometry":{"type":"Point","coordinates":[75.0863,81.1941]}},{"type":"Feature","id":23362,"properties":{"mag":4.91,"bv":"-0.047"},"geometry":{"type":"Point","coordinates":[75.3566,-20.0519]}},{"type":"Feature","id":23364,"properties":{"mag":4.8,"bv":"-0.164"},"geometry":{"type":"Point","coordinates":[75.3598,-7.174]}},{"type":"Feature","id":23408,"properties":{"mag":5.91,"bv":"1.267"},"geometry":{"type":"Point","coordinates":[75.4598,0.7221]}},{"type":"Feature","id":23416,"properties":{"mag":3.03,"bv":"0.537"},"geometry":{"type":"Point","coordinates":[75.4922,43.8233]}},{"type":"Feature","id":23430,"properties":{"mag":5.01,"bv":"1.056"},"geometry":{"type":"Point","coordinates":[75.5409,-26.275]}},{"type":"Feature","id":23446,"properties":{"mag":5.92,"bv":"1.170"},"geometry":{"type":"Point","coordinates":[75.595,-31.7713]}},{"type":"Feature","id":23453,"properties":{"mag":3.69,"bv":"1.154"},"geometry":{"type":"Point","coordinates":[75.6195,41.0758]}},{"type":"Feature","id":23467,"properties":{"mag":5.3,"bv":"0.996"},"geometry":{"type":"Point","coordinates":[75.6792,-71.3143]}},{"type":"Feature","id":23474,"properties":{"mag":5.74,"bv":"1.188"},"geometry":{"type":"Point","coordinates":[75.6874,-22.7951]}},{"type":"Feature","id":23475,"properties":{"mag":5.86,"bv":"1.212"},"geometry":{"type":"Point","coordinates":[75.6891,-4.2101]}},{"type":"Feature","id":23482,"properties":{"mag":5.37,"bv":"0.421"},"geometry":{"type":"Point","coordinates":[75.7029,-49.1514]}},{"type":"Feature","id":23497,"properties":{"mag":4.62,"bv":"0.155"},"geometry":{"type":"Point","coordinates":[75.7739,21.59]}},{"type":"Feature","id":23522,"properties":{"mag":4.03,"bv":"0.921"},"geometry":{"type":"Point","coordinates":[75.8545,60.4422]}},{"type":"Feature","id":23554,"properties":{"mag":5.61,"bv":"0.094"},"geometry":{"type":"Point","coordinates":[75.972,-24.3882]}},{"type":"Feature","id":23595,"properties":{"mag":4.55,"bv":"1.177"},"geometry":{"type":"Point","coordinates":[76.1017,-35.483]}},{"type":"Feature","id":23607,"properties":{"mag":4.65,"bv":"-0.064"},"geometry":{"type":"Point","coordinates":[76.1423,15.4041]}},{"type":"Feature","id":23649,"properties":{"mag":5.05,"bv":"1.484"},"geometry":{"type":"Point","coordinates":[76.2417,-49.5778]}},{"type":"Feature","id":23668,"properties":{"mag":5.71,"bv":"1.166"},"geometry":{"type":"Point","coordinates":[76.3175,-26.1524]}},{"type":"Feature","id":23685,"properties":{"mag":3.19,"bv":"1.460"},"geometry":{"type":"Point","coordinates":[76.3653,-22.371]}},{"type":"Feature","id":23693,"properties":{"mag":4.71,"bv":"0.526"},"geometry":{"type":"Point","coordinates":[76.3777,-57.4727]}},{"type":"Feature","id":23734,"properties":{"mag":5.22,"bv":"-0.080"},"geometry":{"type":"Point","coordinates":[76.5352,58.9724]}},{"type":"Feature","id":23766,"properties":{"mag":6,"bv":"1.380"},"geometry":{"type":"Point","coordinates":[76.6238,61.1698]}},{"type":"Feature","id":23767,"properties":{"mag":3.18,"bv":"-0.148"},"geometry":{"type":"Point","coordinates":[76.6287,41.2345]}},{"type":"Feature","id":23783,"properties":{"mag":4.98,"bv":"0.343"},"geometry":{"type":"Point","coordinates":[76.6693,51.5977]}},{"type":"Feature","id":23794,"properties":{"mag":5.12,"bv":"-0.059"},"geometry":{"type":"Point","coordinates":[76.6902,-4.6552]}},{"type":"Feature","id":23831,"properties":{"mag":5.97,"bv":"0.606"},"geometry":{"type":"Point","coordinates":[76.854,-12.4913]}},{"type":"Feature","id":23835,"properties":{"mag":4.91,"bv":"0.657"},"geometry":{"type":"Point","coordinates":[76.8625,18.6451]}},{"type":"Feature","id":23840,"properties":{"mag":5.19,"bv":"1.646"},"geometry":{"type":"Point","coordinates":[76.8918,-63.3997]}},{"type":"Feature","id":23871,"properties":{"mag":5.28,"bv":"0.118"},"geometry":{"type":"Point","coordinates":[76.9517,20.4184]}},{"type":"Feature","id":23875,"properties":{"mag":2.78,"bv":"0.161"},"geometry":{"type":"Point","coordinates":[76.9624,-5.0864]}},{"type":"Feature","id":23879,"properties":{"mag":5.33,"bv":"0.338"},"geometry":{"type":"Point","coordinates":[76.9704,8.4984]}},{"type":"Feature","id":23883,"properties":{"mag":5.84,"bv":"0.168"},"geometry":{"type":"Point","coordinates":[76.981,21.7048]}},{"type":"Feature","id":23900,"properties":{"mag":5.5,"bv":"0.030"},"geometry":{"type":"Point","coordinates":[77.0276,24.2652]}},{"type":"Feature","id":23916,"properties":{"mag":5.8,"bv":"-0.059"},"geometry":{"type":"Point","coordinates":[77.0841,-8.6653]}},{"type":"Feature","id":23941,"properties":{"mag":5.11,"bv":"0.455"},"geometry":{"type":"Point","coordinates":[77.1821,-4.4562]}},{"type":"Feature","id":23972,"properties":{"mag":4.25,"bv":"-0.187"},"geometry":{"type":"Point","coordinates":[77.2866,-8.7541]}},{"type":"Feature","id":23983,"properties":{"mag":5.43,"bv":"0.249"},"geometry":{"type":"Point","coordinates":[77.3318,9.8296]}},{"type":"Feature","id":24010,"properties":{"mag":4.81,"bv":"0.313"},"geometry":{"type":"Point","coordinates":[77.4248,15.5972]}},{"type":"Feature","id":24019,"properties":{"mag":5.93,"bv":"0.311"},"geometry":{"type":"Point","coordinates":[77.4379,28.0305]}},{"type":"Feature","id":24109,"properties":{"mag":5.67,"bv":"0.452"},"geometry":{"type":"Point","coordinates":[77.6788,46.9621]}},{"type":"Feature","id":24162,"properties":{"mag":5.89,"bv":"0.462"},"geometry":{"type":"Point","coordinates":[77.8299,-2.4908]}},{"type":"Feature","id":24169,"properties":{"mag":5.6,"bv":"1.350"},"geometry":{"type":"Point","coordinates":[77.8453,-11.8491]}},{"type":"Feature","id":24197,"properties":{"mag":5.18,"bv":"1.525"},"geometry":{"type":"Point","coordinates":[77.9232,16.0457]}},{"type":"Feature","id":24203,"properties":{"mag":5.88,"bv":"0.662"},"geometry":{"type":"Point","coordinates":[77.939,1.037]}},{"type":"Feature","id":24244,"properties":{"mag":4.45,"bv":"-0.099"},"geometry":{"type":"Point","coordinates":[78.0746,-11.8692]}},{"type":"Feature","id":24254,"properties":{"mag":5.44,"bv":"-0.108"},"geometry":{"type":"Point","coordinates":[78.0936,73.9467]}},{"type":"Feature","id":24294,"properties":{"mag":5.9,"bv":"0.960"},"geometry":{"type":"Point","coordinates":[78.2005,-6.0572]}},{"type":"Feature","id":24305,"properties":{"mag":3.29,"bv":"-0.110"},"geometry":{"type":"Point","coordinates":[78.2329,-16.2055]}},{"type":"Feature","id":24327,"properties":{"mag":4.36,"bv":"-0.094"},"geometry":{"type":"Point","coordinates":[78.3078,-12.9413]}},{"type":"Feature","id":24331,"properties":{"mag":4.46,"bv":"1.166"},"geometry":{"type":"Point","coordinates":[78.3228,2.8613]}},{"type":"Feature","id":24340,"properties":{"mag":4.82,"bv":"0.189"},"geometry":{"type":"Point","coordinates":[78.3572,38.4845]}},{"type":"Feature","id":24372,"properties":{"mag":4.81,"bv":"1.274"},"geometry":{"type":"Point","coordinates":[78.4394,-67.1853]}},{"type":"Feature","id":24426,"properties":{"mag":5.75,"bv":"1.009"},"geometry":{"type":"Point","coordinates":[78.6202,-35.977]}},{"type":"Feature","id":24436,"properties":{"mag":0.18,"bv":"-0.030"},"geometry":{"type":"Point","coordinates":[78.6345,-8.2016]}},{"type":"Feature","id":24450,"properties":{"mag":5.5,"bv":"1.369"},"geometry":{"type":"Point","coordinates":[78.6835,5.1562]}},{"type":"Feature","id":24504,"properties":{"mag":5.01,"bv":"0.222"},"geometry":{"type":"Point","coordinates":[78.8516,32.6876]}},{"type":"Feature","id":24505,"properties":{"mag":5.06,"bv":"-0.067"},"geometry":{"type":"Point","coordinates":[78.8516,-26.9435]}},{"type":"Feature","id":24555,"properties":{"mag":5.52,"bv":"-0.012"},"geometry":{"type":"Point","coordinates":[79.0172,11.3414]}},{"type":"Feature","id":24575,"properties":{"mag":5.99,"bv":"0.199"},"geometry":{"type":"Point","coordinates":[79.0756,34.3123]}},{"type":"Feature","id":24608,"properties":{"mag":0.08,"bv":"0.795"},"geometry":{"type":"Point","coordinates":[79.1723,45.998]}},{"type":"Feature","id":24659,"properties":{"mag":4.81,"bv":"0.987"},"geometry":{"type":"Point","coordinates":[79.3712,-34.8952]}},{"type":"Feature","id":24674,"properties":{"mag":3.59,"bv":"-0.115"},"geometry":{"type":"Point","coordinates":[79.4016,-6.8444]}},{"type":"Feature","id":24679,"properties":{"mag":5.48,"bv":"0.932"},"geometry":{"type":"Point","coordinates":[79.4177,-13.5198]}},{"type":"Feature","id":24727,"properties":{"mag":4.54,"bv":"1.252"},"geometry":{"type":"Point","coordinates":[79.544,33.3716]}},{"type":"Feature","id":24732,"properties":{"mag":5.81,"bv":"-0.023"},"geometry":{"type":"Point","coordinates":[79.5552,73.2681]}},{"type":"Feature","id":24738,"properties":{"mag":5.55,"bv":"1.492"},"geometry":{"type":"Point","coordinates":[79.5654,42.7921]}},{"type":"Feature","id":24786,"properties":{"mag":5.96,"bv":"0.572"},"geometry":{"type":"Point","coordinates":[79.7103,-18.1301]}},{"type":"Feature","id":24799,"properties":{"mag":5.38,"bv":"-0.167"},"geometry":{"type":"Point","coordinates":[79.7501,33.7484]}},{"type":"Feature","id":24813,"properties":{"mag":4.69,"bv":"0.630"},"geometry":{"type":"Point","coordinates":[79.7853,40.0991]}},{"type":"Feature","id":24817,"properties":{"mag":5.34,"bv":"0.412"},"geometry":{"type":"Point","coordinates":[79.7967,2.5958]}},{"type":"Feature","id":24822,"properties":{"mag":4.96,"bv":"0.937"},"geometry":{"type":"Point","coordinates":[79.8192,22.0965]}},{"type":"Feature","id":24829,"properties":{"mag":5.44,"bv":"0.517"},"geometry":{"type":"Point","coordinates":[79.8422,-50.606]}},{"type":"Feature","id":24831,"properties":{"mag":5.98,"bv":"-0.022"},"geometry":{"type":"Point","coordinates":[79.8487,-27.3689]}},{"type":"Feature","id":24845,"properties":{"mag":4.29,"bv":"-0.235"},"geometry":{"type":"Point","coordinates":[79.8939,-13.1768]}},{"type":"Feature","id":24873,"properties":{"mag":5.29,"bv":"-0.104"},"geometry":{"type":"Point","coordinates":[79.9959,-12.3156]}},{"type":"Feature","id":24879,"properties":{"mag":5.05,"bv":"0.287"},"geometry":{"type":"Point","coordinates":[80.0038,33.9581]}},{"type":"Feature","id":24902,"properties":{"mag":5.46,"bv":"0.122"},"geometry":{"type":"Point","coordinates":[80.0611,41.0862]}},{"type":"Feature","id":24914,"properties":{"mag":5.64,"bv":"1.728"},"geometry":{"type":"Point","coordinates":[80.0942,62.6537]}},{"type":"Feature","id":24927,"properties":{"mag":4.7,"bv":"-0.048"},"geometry":{"type":"Point","coordinates":[80.1122,-21.2398]}},{"type":"Feature","id":25001,"properties":{"mag":5.66,"bv":"0.060"},"geometry":{"type":"Point","coordinates":[80.3029,29.5699]}},{"type":"Feature","id":25028,"properties":{"mag":5.68,"bv":"-0.125"},"geometry":{"type":"Point","coordinates":[80.3827,-0.4165]}},{"type":"Feature","id":25041,"properties":{"mag":5.78,"bv":"-0.114"},"geometry":{"type":"Point","coordinates":[80.4315,8.4286]}},{"type":"Feature","id":25044,"properties":{"mag":4.72,"bv":"-0.168"},"geometry":{"type":"Point","coordinates":[80.4406,-0.3825]}},{"type":"Feature","id":25045,"properties":{"mag":5.06,"bv":"0.662"},"geometry":{"type":"Point","coordinates":[80.4427,-24.773]}},{"type":"Feature","id":25048,"properties":{"mag":5.22,"bv":"-0.129"},"geometry":{"type":"Point","coordinates":[80.4517,41.8046]}},{"type":"Feature","id":25110,"properties":{"mag":5.08,"bv":"0.506"},"geometry":{"type":"Point","coordinates":[80.6397,79.2311]}},{"type":"Feature","id":25142,"properties":{"mag":4.99,"bv":"-0.096"},"geometry":{"type":"Point","coordinates":[80.7083,3.5445]}},{"type":"Feature","id":25143,"properties":{"mag":5.54,"bv":"0.127"},"geometry":{"type":"Point","coordinates":[80.7096,41.0293]}},{"type":"Feature","id":25187,"properties":{"mag":5.99,"bv":"-0.037"},"geometry":{"type":"Point","coordinates":[80.8271,-8.4156]}},{"type":"Feature","id":25194,"properties":{"mag":5.73,"bv":"1.626"},"geometry":{"type":"Point","coordinates":[80.8501,-39.6784]}},{"type":"Feature","id":25197,"properties":{"mag":5.24,"bv":"-0.011"},"geometry":{"type":"Point","coordinates":[80.866,57.5444]}},{"type":"Feature","id":25202,"properties":{"mag":5.25,"bv":"-0.219"},"geometry":{"type":"Point","coordinates":[80.8757,-13.9274]}},{"type":"Feature","id":25223,"properties":{"mag":5.69,"bv":"-0.208"},"geometry":{"type":"Point","coordinates":[80.9263,-0.1598]}},{"type":"Feature","id":25247,"properties":{"mag":4.13,"bv":"0.943"},"geometry":{"type":"Point","coordinates":[80.9868,-7.8081]}},{"type":"Feature","id":25278,"properties":{"mag":5,"bv":"0.544"},"geometry":{"type":"Point","coordinates":[81.1061,17.3835]}},{"type":"Feature","id":25280,"properties":{"mag":5.64,"bv":"-0.001"},"geometry":{"type":"Point","coordinates":[81.1187,-16.9758]}},{"type":"Feature","id":25281,"properties":{"mag":3.35,"bv":"-0.240"},"geometry":{"type":"Point","coordinates":[81.1192,-2.3971]}},{"type":"Feature","id":25282,"properties":{"mag":5.07,"bv":"0.961"},"geometry":{"type":"Point","coordinates":[81.1205,-0.8913]}},{"type":"Feature","id":25291,"properties":{"mag":5.94,"bv":"0.034"},"geometry":{"type":"Point","coordinates":[81.1605,31.1431]}},{"type":"Feature","id":25292,"properties":{"mag":5.02,"bv":"1.445"},"geometry":{"type":"Point","coordinates":[81.1631,37.3853]}},{"type":"Feature","id":25302,"properties":{"mag":4.89,"bv":"-0.200"},"geometry":{"type":"Point","coordinates":[81.1868,1.8464]}},{"type":"Feature","id":25329,"properties":{"mag":5.6,"bv":"1.543"},"geometry":{"type":"Point","coordinates":[81.2573,-10.3289]}},{"type":"Feature","id":25336,"properties":{"mag":1.64,"bv":"-0.224"},"geometry":{"type":"Point","coordinates":[81.2828,6.3497]}},{"type":"Feature","id":25397,"properties":{"mag":5.78,"bv":"0.441"},"geometry":{"type":"Point","coordinates":[81.4993,-19.6954]}},{"type":"Feature","id":25428,"properties":{"mag":1.65,"bv":"-0.130"},"geometry":{"type":"Point","coordinates":[81.573,28.6075]}},{"type":"Feature","id":25429,"properties":{"mag":5.14,"bv":"0.986"},"geometry":{"type":"Point","coordinates":[81.5803,-58.9125]}},{"type":"Feature","id":25471,"properties":{"mag":5.92,"bv":"0.138"},"geometry":{"type":"Point","coordinates":[81.7033,34.3918]}},{"type":"Feature","id":25473,"properties":{"mag":4.59,"bv":"-0.199"},"geometry":{"type":"Point","coordinates":[81.7093,3.0957]}},{"type":"Feature","id":25488,"properties":{"mag":5.86,"bv":"0.239"},"geometry":{"type":"Point","coordinates":[81.7722,-40.9435]}},{"type":"Feature","id":25492,"properties":{"mag":5.69,"bv":"0.175"},"geometry":{"type":"Point","coordinates":[81.7845,30.2086]}},{"type":"Feature","id":25499,"properties":{"mag":5.4,"bv":"-0.090"},"geometry":{"type":"Point","coordinates":[81.7921,17.9622]}},{"type":"Feature","id":25539,"properties":{"mag":4.88,"bv":"-0.140"},"geometry":{"type":"Point","coordinates":[81.9087,21.937]}},{"type":"Feature","id":25541,"properties":{"mag":5.08,"bv":"1.400"},"geometry":{"type":"Point","coordinates":[81.912,34.4759]}},{"type":"Feature","id":25555,"properties":{"mag":5.52,"bv":"0.015"},"geometry":{"type":"Point","coordinates":[81.94,15.8741]}},{"type":"Feature","id":25583,"properties":{"mag":5.77,"bv":"1.634"},"geometry":{"type":"Point","coordinates":[82.0067,17.2391]}},{"type":"Feature","id":25606,"properties":{"mag":2.81,"bv":"0.807"},"geometry":{"type":"Point","coordinates":[82.0613,-20.7594]}},{"type":"Feature","id":25608,"properties":{"mag":5.56,"bv":"0.026"},"geometry":{"type":"Point","coordinates":[82.0639,-37.2308]}},{"type":"Feature","id":25695,"properties":{"mag":5.47,"bv":"-0.042"},"geometry":{"type":"Point","coordinates":[82.3188,25.1502]}},{"type":"Feature","id":25708,"properties":{"mag":5.8,"bv":"1.149"},"geometry":{"type":"Point","coordinates":[82.3487,-3.4464]}},{"type":"Feature","id":25737,"properties":{"mag":4.71,"bv":"1.592"},"geometry":{"type":"Point","coordinates":[82.4333,-1.0922]}},{"type":"Feature","id":25751,"properties":{"mag":5.77,"bv":"-0.192"},"geometry":{"type":"Point","coordinates":[82.4782,1.7893]}},{"type":"Feature","id":25768,"properties":{"mag":5.46,"bv":"0.615"},"geometry":{"type":"Point","coordinates":[82.5395,-47.0777]}},{"type":"Feature","id":25769,"properties":{"mag":5.43,"bv":"1.704"},"geometry":{"type":"Point","coordinates":[82.5425,63.0672]}},{"type":"Feature","id":25790,"properties":{"mag":5.93,"bv":"0.103"},"geometry":{"type":"Point","coordinates":[82.609,15.3604]}},{"type":"Feature","id":25813,"properties":{"mag":4.2,"bv":"-0.143"},"geometry":{"type":"Point","coordinates":[82.696,5.9481]}},{"type":"Feature","id":25816,"properties":{"mag":5.99,"bv":"1.112"},"geometry":{"type":"Point","coordinates":[82.7027,41.462]}},{"type":"Feature","id":25853,"properties":{"mag":5.53,"bv":"0.012"},"geometry":{"type":"Point","coordinates":[82.7818,-20.8637]}},{"type":"Feature","id":25859,"properties":{"mag":3.86,"bv":"1.130"},"geometry":{"type":"Point","coordinates":[82.8031,-35.4705]}},{"type":"Feature","id":25861,"properties":{"mag":5.46,"bv":"-0.176"},"geometry":{"type":"Point","coordinates":[82.8106,3.2921]}},{"type":"Feature","id":25887,"properties":{"mag":5.86,"bv":"1.349"},"geometry":{"type":"Point","coordinates":[82.9,-45.9253]}},{"type":"Feature","id":25918,"properties":{"mag":5.18,"bv":"1.130"},"geometry":{"type":"Point","coordinates":[82.9709,-76.341]}},{"type":"Feature","id":25923,"properties":{"mag":4.62,"bv":"-0.261"},"geometry":{"type":"Point","coordinates":[82.9827,-7.3015]}},{"type":"Feature","id":25930,"properties":{"mag":2.25,"bv":"-0.175"},"geometry":{"type":"Point","coordinates":[83.0017,-0.2991]}},{"type":"Feature","id":25945,"properties":{"mag":4.32,"bv":"2.060"},"geometry":{"type":"Point","coordinates":[83.0531,18.5942]}},{"type":"Feature","id":25950,"properties":{"mag":5.5,"bv":"-0.004"},"geometry":{"type":"Point","coordinates":[83.0589,17.0581]}},{"type":"Feature","id":25980,"properties":{"mag":5.34,"bv":"-0.188"},"geometry":{"type":"Point","coordinates":[83.1723,-1.5918]}},{"type":"Feature","id":25984,"properties":{"mag":4.71,"bv":"0.281"},"geometry":{"type":"Point","coordinates":[83.182,32.192]}},{"type":"Feature","id":25985,"properties":{"mag":2.58,"bv":"0.211"},"geometry":{"type":"Point","coordinates":[83.1826,-17.8223]}},{"type":"Feature","id":25993,"properties":{"mag":5.45,"bv":"1.224"},"geometry":{"type":"Point","coordinates":[83.2142,-38.5134]}},{"type":"Feature","id":26001,"properties":{"mag":5.34,"bv":"1.039"},"geometry":{"type":"Point","coordinates":[83.2482,-64.2275]}},{"type":"Feature","id":26019,"properties":{"mag":5.75,"bv":"1.085"},"geometry":{"type":"Point","coordinates":[83.2808,-35.1394]}},{"type":"Feature","id":26063,"properties":{"mag":5.36,"bv":"-0.175"},"geometry":{"type":"Point","coordinates":[83.381,-1.1561]}},{"type":"Feature","id":26064,"properties":{"mag":5.67,"bv":"-0.022"},"geometry":{"type":"Point","coordinates":[83.3818,18.5402]}},{"type":"Feature","id":26069,"properties":{"mag":3.76,"bv":"0.640"},"geometry":{"type":"Point","coordinates":[83.4063,-62.4898]}},{"type":"Feature","id":26093,"properties":{"mag":5.6,"bv":"-0.118"},"geometry":{"type":"Point","coordinates":[83.4762,14.3056]}},{"type":"Feature","id":26108,"properties":{"mag":5.92,"bv":"1.535"},"geometry":{"type":"Point","coordinates":[83.5169,-1.4703]}},{"type":"Feature","id":26126,"properties":{"mag":5.32,"bv":"0.051"},"geometry":{"type":"Point","coordinates":[83.5699,3.7669]}},{"type":"Feature","id":26169,"properties":{"mag":5.79,"bv":"1.717"},"geometry":{"type":"Point","coordinates":[83.6866,-73.7413]}},{"type":"Feature","id":26176,"properties":{"mag":4.39,"bv":"-0.157"},"geometry":{"type":"Point","coordinates":[83.7052,9.4896]}},{"type":"Feature","id":26197,"properties":{"mag":5.67,"bv":"-0.228"},"geometry":{"type":"Point","coordinates":[83.7542,-6.0093]}},{"type":"Feature","id":26199,"properties":{"mag":4.78,"bv":"-0.248"},"geometry":{"type":"Point","coordinates":[83.7612,-6.002]}},{"type":"Feature","id":26207,"properties":{"mag":3.39,"bv":"-0.160"},"geometry":{"type":"Point","coordinates":[83.7845,9.9342]}},{"type":"Feature","id":26215,"properties":{"mag":5.6,"bv":"0.149"},"geometry":{"type":"Point","coordinates":[83.8052,10.2401]}},{"type":"Feature","id":26219,"properties":{"mag":5.76,"bv":"1.120"},"geometry":{"type":"Point","coordinates":[83.8145,-33.0797]}},{"type":"Feature","id":26220,"properties":{"mag":4.98,"bv":""},"geometry":{"type":"Point","coordinates":[83.8159,-5.3873]}},{"type":"Feature","id":26221,"properties":{"mag":5.13,"bv":"0.020"},"geometry":{"type":"Point","coordinates":[83.8186,-5.3897]}},{"type":"Feature","id":26235,"properties":{"mag":4.98,"bv":"-0.097"},"geometry":{"type":"Point","coordinates":[83.8454,-5.4161]}},{"type":"Feature","id":26237,"properties":{"mag":4.58,"bv":"-0.183"},"geometry":{"type":"Point","coordinates":[83.8465,-4.8384]}},{"type":"Feature","id":26241,"properties":{"mag":2.75,"bv":"-0.210"},"geometry":{"type":"Point","coordinates":[83.8583,-5.9099]}},{"type":"Feature","id":26248,"properties":{"mag":5.37,"bv":"-0.092"},"geometry":{"type":"Point","coordinates":[83.863,24.0396]}},{"type":"Feature","id":26268,"properties":{"mag":5.24,"bv":"0.269"},"geometry":{"type":"Point","coordinates":[83.9145,-4.8561]}},{"type":"Feature","id":26311,"properties":{"mag":1.69,"bv":"-0.184"},"geometry":{"type":"Point","coordinates":[84.0534,-1.2019]}},{"type":"Feature","id":26344,"properties":{"mag":5.74,"bv":"1.671"},"geometry":{"type":"Point","coordinates":[84.1467,54.4287]}},{"type":"Feature","id":26345,"properties":{"mag":5.71,"bv":"-0.212"},"geometry":{"type":"Point","coordinates":[84.1487,-6.0648]}},{"type":"Feature","id":26366,"properties":{"mag":4.09,"bv":"0.951"},"geometry":{"type":"Point","coordinates":[84.2266,9.2907]}},{"type":"Feature","id":26382,"properties":{"mag":5.53,"bv":"0.237"},"geometry":{"type":"Point","coordinates":[84.2656,17.0403]}},{"type":"Feature","id":26386,"properties":{"mag":5.97,"bv":"1.592"},"geometry":{"type":"Point","coordinates":[84.2683,11.035]}},{"type":"Feature","id":26394,"properties":{"mag":5.65,"bv":"0.600"},"geometry":{"type":"Point","coordinates":[84.2912,-80.4691]}},{"type":"Feature","id":26396,"properties":{"mag":5.83,"bv":"-0.075"},"geometry":{"type":"Point","coordinates":[84.2869,26.9245]}},{"type":"Feature","id":26451,"properties":{"mag":2.97,"bv":"-0.148"},"geometry":{"type":"Point","coordinates":[84.4112,21.1425]}},{"type":"Feature","id":26460,"properties":{"mag":5.28,"bv":"0.486"},"geometry":{"type":"Point","coordinates":[84.4359,-28.6897]}},{"type":"Feature","id":26487,"properties":{"mag":5.87,"bv":"-0.061"},"geometry":{"type":"Point","coordinates":[84.5047,7.5414]}},{"type":"Feature","id":26535,"properties":{"mag":5.96,"bv":"-0.216"},"geometry":{"type":"Point","coordinates":[84.6582,-6.574]}},{"type":"Feature","id":26536,"properties":{"mag":5.4,"bv":"0.450"},"geometry":{"type":"Point","coordinates":[84.6587,30.4924]}},{"type":"Feature","id":26545,"properties":{"mag":5.81,"bv":"-0.078"},"geometry":{"type":"Point","coordinates":[84.6814,-40.7073]}},{"type":"Feature","id":26549,"properties":{"mag":3.77,"bv":"-0.190"},"geometry":{"type":"Point","coordinates":[84.6865,-2.6001]}},{"type":"Feature","id":26563,"properties":{"mag":4.77,"bv":"0.139"},"geometry":{"type":"Point","coordinates":[84.7212,-7.2128]}},{"type":"Feature","id":26594,"properties":{"mag":4.5,"bv":"-0.098"},"geometry":{"type":"Point","coordinates":[84.7964,4.1215]}},{"type":"Feature","id":26606,"properties":{"mag":5.98,"bv":"0.144"},"geometry":{"type":"Point","coordinates":[84.8263,29.2152]}},{"type":"Feature","id":26624,"properties":{"mag":5.99,"bv":"0.294"},"geometry":{"type":"Point","coordinates":[84.8798,-3.5647]}},{"type":"Feature","id":26634,"properties":{"mag":2.65,"bv":"-0.120"},"geometry":{"type":"Point","coordinates":[84.9122,-34.0741]}},{"type":"Feature","id":26640,"properties":{"mag":5.18,"bv":"-0.150"},"geometry":{"type":"Point","coordinates":[84.9342,25.8971]}},{"type":"Feature","id":26649,"properties":{"mag":5.44,"bv":"0.913"},"geometry":{"type":"Point","coordinates":[84.9577,-32.6292]}},{"type":"Feature","id":26727,"properties":{"mag":1.74,"bv":"-0.199"},"geometry":{"type":"Point","coordinates":[85.1897,-1.9426]}},{"type":"Feature","id":26736,"properties":{"mag":4.95,"bv":"-0.197"},"geometry":{"type":"Point","coordinates":[85.2113,-1.1288]}},{"type":"Feature","id":26762,"properties":{"mag":5.93,"bv":"0.311"},"geometry":{"type":"Point","coordinates":[85.2733,0.3378]}},{"type":"Feature","id":26777,"properties":{"mag":4.84,"bv":"-0.125"},"geometry":{"type":"Point","coordinates":[85.3238,16.5341]}},{"type":"Feature","id":26865,"properties":{"mag":5.88,"bv":"0.080"},"geometry":{"type":"Point","coordinates":[85.5582,-22.3737]}},{"type":"Feature","id":26868,"properties":{"mag":5.29,"bv":"-0.032"},"geometry":{"type":"Point","coordinates":[85.5633,-34.6678]}},{"type":"Feature","id":26882,"properties":{"mag":5.62,"bv":"1.249"},"geometry":{"type":"Point","coordinates":[85.6102,65.6976]}},{"type":"Feature","id":26885,"properties":{"mag":4.9,"bv":"1.144"},"geometry":{"type":"Point","coordinates":[85.6193,1.4746]}},{"type":"Feature","id":26926,"properties":{"mag":5.97,"bv":"0.447"},"geometry":{"type":"Point","coordinates":[85.7246,-6.7962]}},{"type":"Feature","id":26966,"properties":{"mag":5.73,"bv":"-0.014"},"geometry":{"type":"Point","coordinates":[85.8403,-18.5575]}},{"type":"Feature","id":27072,"properties":{"mag":3.59,"bv":"0.481"},"geometry":{"type":"Point","coordinates":[86.1158,-22.4484]}},{"type":"Feature","id":27100,"properties":{"mag":4.34,"bv":"0.217"},"geometry":{"type":"Point","coordinates":[86.1932,-65.7355]}},{"type":"Feature","id":27196,"properties":{"mag":5.46,"bv":"0.030"},"geometry":{"type":"Point","coordinates":[86.4752,49.8263]}},{"type":"Feature","id":27204,"properties":{"mag":5.18,"bv":"-0.274"},"geometry":{"type":"Point","coordinates":[86.4996,-32.3064]}},{"type":"Feature","id":27243,"properties":{"mag":5.31,"bv":"1.040"},"geometry":{"type":"Point","coordinates":[86.6141,-46.5972]}},{"type":"Feature","id":27249,"properties":{"mag":5.93,"bv":"0.164"},"geometry":{"type":"Point","coordinates":[86.6266,56.1156]}},{"type":"Feature","id":27253,"properties":{"mag":5.95,"bv":"0.773"},"geometry":{"type":"Point","coordinates":[86.6455,1.1682]}},{"type":"Feature","id":27265,"properties":{"mag":6,"bv":"-0.061"},"geometry":{"type":"Point","coordinates":[86.6896,15.8225]}},{"type":"Feature","id":27280,"properties":{"mag":5.78,"bv":"0.888"},"geometry":{"type":"Point","coordinates":[86.7172,9.5223]}},{"type":"Feature","id":27288,"properties":{"mag":3.55,"bv":"0.104"},"geometry":{"type":"Point","coordinates":[86.7389,-14.822]}},{"type":"Feature","id":27316,"properties":{"mag":5.72,"bv":"0.077"},"geometry":{"type":"Point","coordinates":[86.8048,14.4883]}},{"type":"Feature","id":27321,"properties":{"mag":3.85,"bv":"0.171"},"geometry":{"type":"Point","coordinates":[86.8212,-51.0665]}},{"type":"Feature","id":27338,"properties":{"mag":5.47,"bv":"0.301"},"geometry":{"type":"Point","coordinates":[86.8592,17.7291]}},{"type":"Feature","id":27364,"properties":{"mag":5.28,"bv":"-0.156"},"geometry":{"type":"Point","coordinates":[86.9288,13.8996]}},{"type":"Feature","id":27366,"properties":{"mag":2.07,"bv":"-0.168"},"geometry":{"type":"Point","coordinates":[86.9391,-9.6696]}},{"type":"Feature","id":27386,"properties":{"mag":5.26,"bv":"0.234"},"geometry":{"type":"Point","coordinates":[87.001,6.4542]}},{"type":"Feature","id":27435,"properties":{"mag":5.97,"bv":"0.639"},"geometry":{"type":"Point","coordinates":[87.1456,-4.0946]}},{"type":"Feature","id":27468,"properties":{"mag":4.88,"bv":"1.021"},"geometry":{"type":"Point","coordinates":[87.254,24.5675]}},{"type":"Feature","id":27483,"properties":{"mag":4.51,"bv":"0.949"},"geometry":{"type":"Point","coordinates":[87.2935,39.1811]}},{"type":"Feature","id":27511,"properties":{"mag":4.89,"bv":"-0.068"},"geometry":{"type":"Point","coordinates":[87.3872,12.6513]}},{"type":"Feature","id":27517,"properties":{"mag":5.49,"bv":"0.870"},"geometry":{"type":"Point","coordinates":[87.4023,-14.4837]}},{"type":"Feature","id":27530,"properties":{"mag":4.5,"bv":"1.075"},"geometry":{"type":"Point","coordinates":[87.4569,-56.1667]}},{"type":"Feature","id":27533,"properties":{"mag":5.87,"bv":"0.055"},"geometry":{"type":"Point","coordinates":[87.4729,-22.9719]}},{"type":"Feature","id":27534,"properties":{"mag":5.1,"bv":"-0.128"},"geometry":{"type":"Point","coordinates":[87.473,-66.9012]}},{"type":"Feature","id":27549,"properties":{"mag":5.79,"bv":"0.876"},"geometry":{"type":"Point","coordinates":[87.5112,9.8712]}},{"type":"Feature","id":27560,"properties":{"mag":5.96,"bv":"1.361"},"geometry":{"type":"Point","coordinates":[87.5544,4.4234]}},{"type":"Feature","id":27566,"properties":{"mag":5.46,"bv":"-0.076"},"geometry":{"type":"Point","coordinates":[87.5699,-79.3614]}},{"type":"Feature","id":27581,"properties":{"mag":5.54,"bv":"1.006"},"geometry":{"type":"Point","coordinates":[87.6204,14.3056]}},{"type":"Feature","id":27588,"properties":{"mag":5.97,"bv":"0.953"},"geometry":{"type":"Point","coordinates":[87.6251,2.0247]}},{"type":"Feature","id":27621,"properties":{"mag":5.16,"bv":"0.960"},"geometry":{"type":"Point","coordinates":[87.7218,-52.1089]}},{"type":"Feature","id":27628,"properties":{"mag":3.12,"bv":"1.146"},"geometry":{"type":"Point","coordinates":[87.74,-35.7683]}},{"type":"Feature","id":27629,"properties":{"mag":5.6,"bv":"0.978"},"geometry":{"type":"Point","coordinates":[87.7421,27.9679]}},{"type":"Feature","id":27639,"properties":{"mag":4.72,"bv":"1.621"},"geometry":{"type":"Point","coordinates":[87.7602,37.3056]}},{"type":"Feature","id":27654,"properties":{"mag":3.76,"bv":"0.984"},"geometry":{"type":"Point","coordinates":[87.8304,-20.8791]}},{"type":"Feature","id":27658,"properties":{"mag":5.36,"bv":"-0.195"},"geometry":{"type":"Point","coordinates":[87.8416,-7.518]}},{"type":"Feature","id":27673,"properties":{"mag":3.97,"bv":"1.132"},"geometry":{"type":"Point","coordinates":[87.8725,39.1485]}},{"type":"Feature","id":27713,"properties":{"mag":5.95,"bv":"0.100"},"geometry":{"type":"Point","coordinates":[88.0322,-9.0419]}},{"type":"Feature","id":27737,"properties":{"mag":5.93,"bv":"0.656"},"geometry":{"type":"Point","coordinates":[88.0842,-57.1562]}},{"type":"Feature","id":27743,"properties":{"mag":5.6,"bv":"-0.053"},"geometry":{"type":"Point","coordinates":[88.0929,14.1718]}},{"type":"Feature","id":27747,"properties":{"mag":5.96,"bv":"0.549"},"geometry":{"type":"Point","coordinates":[88.0975,19.8678]}},{"type":"Feature","id":27750,"properties":{"mag":4.76,"bv":"1.382"},"geometry":{"type":"Point","coordinates":[88.1102,1.8551]}},{"type":"Feature","id":27766,"properties":{"mag":5.62,"bv":"1.046"},"geometry":{"type":"Point","coordinates":[88.1383,-37.6311]}},{"type":"Feature","id":27810,"properties":{"mag":4.88,"bv":"-0.154"},"geometry":{"type":"Point","coordinates":[88.2787,-33.8014]}},{"type":"Feature","id":27830,"properties":{"mag":4.56,"bv":"-0.008"},"geometry":{"type":"Point","coordinates":[88.3319,27.6123]}},{"type":"Feature","id":27890,"properties":{"mag":4.65,"bv":"1.022"},"geometry":{"type":"Point","coordinates":[88.5252,-63.0896]}},{"type":"Feature","id":27913,"properties":{"mag":4.39,"bv":"0.594"},"geometry":{"type":"Point","coordinates":[88.5958,20.2762]}},{"type":"Feature","id":27938,"properties":{"mag":5.62,"bv":"1.523"},"geometry":{"type":"Point","coordinates":[88.6818,-11.7742]}},{"type":"Feature","id":27939,"properties":{"mag":5.99,"bv":"1.328"},"geometry":{"type":"Point","coordinates":[88.6835,0.9686]}},{"type":"Feature","id":27947,"properties":{"mag":5.29,"bv":"0.295"},"geometry":{"type":"Point","coordinates":[88.7087,-52.6355]}},{"type":"Feature","id":27949,"properties":{"mag":4.96,"bv":"0.052"},"geometry":{"type":"Point","coordinates":[88.7116,55.7069]}},{"type":"Feature","id":27955,"properties":{"mag":5.55,"bv":"1.515"},"geometry":{"type":"Point","coordinates":[88.7187,-39.9579]}},{"type":"Feature","id":27965,"properties":{"mag":5.92,"bv":"-0.145"},"geometry":{"type":"Point","coordinates":[88.7362,19.7496]}},{"type":"Feature","id":27971,"properties":{"mag":5.2,"bv":"0.010"},"geometry":{"type":"Point","coordinates":[88.7409,59.8884]}},{"type":"Feature","id":27973,"properties":{"mag":5.9,"bv":"0.144"},"geometry":{"type":"Point","coordinates":[88.7458,31.7015]}},{"type":"Feature","id":27989,"properties":{"mag":0.45,"bv":"1.500"},"geometry":{"type":"Point","coordinates":[88.7929,7.4071]}},{"type":"Feature","id":28010,"properties":{"mag":4.97,"bv":"1.102"},"geometry":{"type":"Point","coordinates":[88.8747,-37.1207]}},{"type":"Feature","id":28011,"properties":{"mag":5.87,"bv":"1.173"},"geometry":{"type":"Point","coordinates":[88.8757,-4.6165]}},{"type":"Feature","id":28085,"properties":{"mag":5.95,"bv":"1.107"},"geometry":{"type":"Point","coordinates":[89.0595,-22.84]}},{"type":"Feature","id":28098,"properties":{"mag":5.52,"bv":"0.382"},"geometry":{"type":"Point","coordinates":[89.0873,-31.3824]}},{"type":"Feature","id":28103,"properties":{"mag":3.71,"bv":"0.337"},"geometry":{"type":"Point","coordinates":[89.1012,-14.1677]}},{"type":"Feature","id":28110,"properties":{"mag":5.97,"bv":"-0.038"},"geometry":{"type":"Point","coordinates":[89.1168,9.5094]}},{"type":"Feature","id":28139,"properties":{"mag":5.89,"bv":"1.111"},"geometry":{"type":"Point","coordinates":[89.206,11.5211]}},{"type":"Feature","id":28199,"properties":{"mag":4.36,"bv":"-0.165"},"geometry":{"type":"Point","coordinates":[89.3842,-35.2833]}},{"type":"Feature","id":28237,"properties":{"mag":4.81,"bv":"-0.088"},"geometry":{"type":"Point","coordinates":[89.4986,25.9539]}},{"type":"Feature","id":28271,"properties":{"mag":5.89,"bv":"0.223"},"geometry":{"type":"Point","coordinates":[89.6018,1.8371]}},{"type":"Feature","id":28287,"properties":{"mag":5.81,"bv":"1.061"},"geometry":{"type":"Point","coordinates":[89.6564,-44.0346]}},{"type":"Feature","id":28296,"properties":{"mag":5.21,"bv":"0.009"},"geometry":{"type":"Point","coordinates":[89.7065,0.553]}},{"type":"Feature","id":28302,"properties":{"mag":5.7,"bv":"0.874"},"geometry":{"type":"Point","coordinates":[89.7218,12.8083]}},{"type":"Feature","id":28325,"properties":{"mag":5.04,"bv":"0.189"},"geometry":{"type":"Point","coordinates":[89.768,-9.5583]}},{"type":"Feature","id":28328,"properties":{"mag":3.96,"bv":"1.146"},"geometry":{"type":"Point","coordinates":[89.7867,-42.8151]}},{"type":"Feature","id":28343,"properties":{"mag":5.9,"bv":"1.194"},"geometry":{"type":"Point","coordinates":[89.8407,49.9245]}},{"type":"Feature","id":28358,"properties":{"mag":3.72,"bv":"1.010"},"geometry":{"type":"Point","coordinates":[89.8818,54.2847]}},{"type":"Feature","id":28360,"properties":{"mag":1.9,"bv":"0.077"},"geometry":{"type":"Point","coordinates":[89.8822,44.9474]}},{"type":"Feature","id":28380,"properties":{"mag":2.65,"bv":"-0.083"},"geometry":{"type":"Point","coordinates":[89.9303,37.2126]}},{"type":"Feature","id":28404,"properties":{"mag":4.3,"bv":"1.701"},"geometry":{"type":"Point","coordinates":[89.9837,45.9367]}},{"type":"Feature","id":28413,"properties":{"mag":4.53,"bv":"1.202"},"geometry":{"type":"Point","coordinates":[90.014,-3.0743]}},{"type":"Feature","id":28484,"properties":{"mag":5.65,"bv":"0.207"},"geometry":{"type":"Point","coordinates":[90.2049,-51.2163]}},{"type":"Feature","id":28499,"properties":{"mag":5.71,"bv":"-0.007"},"geometry":{"type":"Point","coordinates":[90.244,47.9019]}},{"type":"Feature","id":28524,"properties":{"mag":5.54,"bv":"1.580"},"geometry":{"type":"Point","coordinates":[90.3179,-33.9118]}},{"type":"Feature","id":28562,"properties":{"mag":5.98,"bv":"1.437"},"geometry":{"type":"Point","coordinates":[90.4294,48.9594]}},{"type":"Feature","id":28574,"properties":{"mag":4.92,"bv":"-0.128"},"geometry":{"type":"Point","coordinates":[90.4601,-10.5979]}},{"type":"Feature","id":28614,"properties":{"mag":4.12,"bv":"0.170"},"geometry":{"type":"Point","coordinates":[90.5958,9.6473]}},{"type":"Feature","id":28675,"properties":{"mag":5.03,"bv":"1.335"},"geometry":{"type":"Point","coordinates":[90.815,-26.2845]}},{"type":"Feature","id":28691,"properties":{"mag":5.14,"bv":"-0.097"},"geometry":{"type":"Point","coordinates":[90.864,19.6906]}},{"type":"Feature","id":28716,"properties":{"mag":4.64,"bv":"0.236"},"geometry":{"type":"Point","coordinates":[90.9799,20.1385]}},{"type":"Feature","id":28734,"properties":{"mag":4.16,"bv":"0.835"},"geometry":{"type":"Point","coordinates":[91.0301,23.2633]}},{"type":"Feature","id":28744,"properties":{"mag":5.19,"bv":"-0.066"},"geometry":{"type":"Point","coordinates":[91.0563,-6.7089]}},{"type":"Feature","id":28756,"properties":{"mag":5.65,"bv":"-0.186"},"geometry":{"type":"Point","coordinates":[91.0844,-32.1724]}},{"type":"Feature","id":28790,"properties":{"mag":5.93,"bv":"0.493"},"geometry":{"type":"Point","coordinates":[91.1671,-45.0789]}},{"type":"Feature","id":28812,"properties":{"mag":5.67,"bv":"1.047"},"geometry":{"type":"Point","coordinates":[91.2424,5.42]}},{"type":"Feature","id":28814,"properties":{"mag":5.63,"bv":"1.041"},"geometry":{"type":"Point","coordinates":[91.2432,4.1587]}},{"type":"Feature","id":28816,"properties":{"mag":4.92,"bv":"0.196"},"geometry":{"type":"Point","coordinates":[91.2464,-16.4844]}},{"type":"Feature","id":28823,"properties":{"mag":5.9,"bv":"0.358"},"geometry":{"type":"Point","coordinates":[91.2641,42.9816]}},{"type":"Feature","id":28854,"properties":{"mag":5.88,"bv":"0.374"},"geometry":{"type":"Point","coordinates":[91.3626,-10.2426]}},{"type":"Feature","id":28855,"properties":{"mag":5.8,"bv":"0.027"},"geometry":{"type":"Point","coordinates":[91.3632,-35.5136]}},{"type":"Feature","id":28899,"properties":{"mag":5.79,"bv":"0.041"},"geometry":{"type":"Point","coordinates":[91.5231,-29.7586]}},{"type":"Feature","id":28909,"properties":{"mag":5.72,"bv":"-0.024"},"geometry":{"type":"Point","coordinates":[91.5391,-66.0396]}},{"type":"Feature","id":28910,"properties":{"mag":4.67,"bv":"0.046"},"geometry":{"type":"Point","coordinates":[91.5388,-14.9353]}},{"type":"Feature","id":28943,"properties":{"mag":5.46,"bv":"0.064"},"geometry":{"type":"Point","coordinates":[91.6337,-23.1108]}},{"type":"Feature","id":28946,"properties":{"mag":5.35,"bv":"0.251"},"geometry":{"type":"Point","coordinates":[91.6462,38.4826]}},{"type":"Feature","id":28949,"properties":{"mag":5.37,"bv":"-0.122"},"geometry":{"type":"Point","coordinates":[91.6614,-4.1938]}},{"type":"Feature","id":28984,"properties":{"mag":5.74,"bv":"1.584"},"geometry":{"type":"Point","coordinates":[91.7396,-21.8123]}},{"type":"Feature","id":28991,"properties":{"mag":5.04,"bv":"1.256"},"geometry":{"type":"Point","coordinates":[91.7641,-62.1546]}},{"type":"Feature","id":28992,"properties":{"mag":5.82,"bv":"-0.137"},"geometry":{"type":"Point","coordinates":[91.7653,-34.312]}},{"type":"Feature","id":29034,"properties":{"mag":5,"bv":"-0.095"},"geometry":{"type":"Point","coordinates":[91.8818,-37.2529]}},{"type":"Feature","id":29038,"properties":{"mag":4.42,"bv":"-0.164"},"geometry":{"type":"Point","coordinates":[91.893,14.7685]}},{"type":"Feature","id":29048,"properties":{"mag":5.28,"bv":"1.661"},"geometry":{"type":"Point","coordinates":[91.9235,-19.1659]}},{"type":"Feature","id":29064,"properties":{"mag":5.5,"bv":"0.007"},"geometry":{"type":"Point","coordinates":[91.9702,-42.154]}},{"type":"Feature","id":29134,"properties":{"mag":5.06,"bv":"-0.072"},"geometry":{"type":"Point","coordinates":[92.1844,-68.8434]}},{"type":"Feature","id":29150,"properties":{"mag":5.49,"bv":"-0.010"},"geometry":{"type":"Point","coordinates":[92.2411,-22.4274]}},{"type":"Feature","id":29151,"properties":{"mag":5.7,"bv":"0.067"},"geometry":{"type":"Point","coordinates":[92.2413,2.4997]}},{"type":"Feature","id":29196,"properties":{"mag":5.93,"bv":"1.626"},"geometry":{"type":"Point","coordinates":[92.3852,22.1903]}},{"type":"Feature","id":29205,"properties":{"mag":5.56,"bv":"1.150"},"geometry":{"type":"Point","coordinates":[92.3939,-14.5846]}},{"type":"Feature","id":29225,"properties":{"mag":5.75,"bv":"0.192"},"geometry":{"type":"Point","coordinates":[92.4333,23.1135]}},{"type":"Feature","id":29234,"properties":{"mag":5.71,"bv":"0.454"},"geometry":{"type":"Point","coordinates":[92.4498,-22.7743]}},{"type":"Feature","id":29246,"properties":{"mag":5.35,"bv":"1.096"},"geometry":{"type":"Point","coordinates":[92.4959,58.9357]}},{"type":"Feature","id":29263,"properties":{"mag":5.54,"bv":"1.665"},"geometry":{"type":"Point","coordinates":[92.5433,-40.3538]}},{"type":"Feature","id":29271,"properties":{"mag":5.08,"bv":"0.714"},"geometry":{"type":"Point","coordinates":[92.5603,-74.753]}},{"type":"Feature","id":29276,"properties":{"mag":4.72,"bv":"-0.229"},"geometry":{"type":"Point","coordinates":[92.5746,-54.9686]}},{"type":"Feature","id":29294,"properties":{"mag":5.72,"bv":"1.072"},"geometry":{"type":"Point","coordinates":[92.6445,-27.1543]}},{"type":"Feature","id":29353,"properties":{"mag":5.01,"bv":"1.599"},"geometry":{"type":"Point","coordinates":[92.8124,-65.5894]}},{"type":"Feature","id":29379,"properties":{"mag":5.83,"bv":"1.110"},"geometry":{"type":"Point","coordinates":[92.8846,24.4203]}},{"type":"Feature","id":29388,"properties":{"mag":5.78,"bv":"0.100"},"geometry":{"type":"Point","coordinates":[92.9025,48.711]}},{"type":"Feature","id":29417,"properties":{"mag":5.06,"bv":"-0.201"},"geometry":{"type":"Point","coordinates":[92.9659,-6.5503]}},{"type":"Feature","id":29426,"properties":{"mag":4.45,"bv":"-0.180"},"geometry":{"type":"Point","coordinates":[92.985,14.2088]}},{"type":"Feature","id":29433,"properties":{"mag":5.76,"bv":"-0.071"},"geometry":{"type":"Point","coordinates":[93.0056,19.7905]}},{"type":"Feature","id":29434,"properties":{"mag":4.95,"bv":"-0.149"},"geometry":{"type":"Point","coordinates":[93.0137,16.1304]}},{"type":"Feature","id":29451,"properties":{"mag":5.78,"bv":"1.646"},"geometry":{"type":"Point","coordinates":[93.0838,32.6934]}},{"type":"Feature","id":29490,"properties":{"mag":5.36,"bv":"1.344"},"geometry":{"type":"Point","coordinates":[93.2128,65.7184]}},{"type":"Feature","id":29575,"properties":{"mag":5.83,"bv":"0.910"},"geometry":{"type":"Point","coordinates":[93.476,-3.7414]}},{"type":"Feature","id":29616,"properties":{"mag":5.86,"bv":"0.253"},"geometry":{"type":"Point","coordinates":[93.6191,17.9064]}},{"type":"Feature","id":29629,"properties":{"mag":5.83,"bv":"-0.155"},"geometry":{"type":"Point","coordinates":[93.6529,-4.5685]}},{"type":"Feature","id":29650,"properties":{"mag":5.2,"bv":"0.430"},"geometry":{"type":"Point","coordinates":[93.712,19.1564]}},{"type":"Feature","id":29651,"properties":{"mag":3.99,"bv":"1.319"},"geometry":{"type":"Point","coordinates":[93.7139,-6.2748]}},{"type":"Feature","id":29655,"properties":{"mag":3.31,"bv":"1.600"},"geometry":{"type":"Point","coordinates":[93.7194,22.5068]}},{"type":"Feature","id":29678,"properties":{"mag":5.91,"bv":"-0.231"},"geometry":{"type":"Point","coordinates":[93.7853,13.8511]}},{"type":"Feature","id":29679,"properties":{"mag":5.88,"bv":"1.322"},"geometry":{"type":"Point","coordinates":[93.785,-20.2722]}},{"type":"Feature","id":29692,"properties":{"mag":5.99,"bv":"1.058"},"geometry":{"type":"Point","coordinates":[93.8238,-18.4772]}},{"type":"Feature","id":29696,"properties":{"mag":4.32,"bv":"1.021"},"geometry":{"type":"Point","coordinates":[93.8445,29.4981]}},{"type":"Feature","id":29704,"properties":{"mag":5.34,"bv":"-0.101"},"geometry":{"type":"Point","coordinates":[93.8547,16.1432]}},{"type":"Feature","id":29711,"properties":{"mag":5.99,"bv":"0.097"},"geometry":{"type":"Point","coordinates":[93.8736,-4.9147]}},{"type":"Feature","id":29716,"properties":{"mag":5.62,"bv":"0.506"},"geometry":{"type":"Point","coordinates":[93.8928,-0.5122]}},{"type":"Feature","id":29730,"properties":{"mag":5.37,"bv":"1.339"},"geometry":{"type":"Point","coordinates":[93.9189,59.999]}},{"type":"Feature","id":29735,"properties":{"mag":5,"bv":"-0.078"},"geometry":{"type":"Point","coordinates":[93.937,-13.7184]}},{"type":"Feature","id":29736,"properties":{"mag":5.44,"bv":"0.015"},"geometry":{"type":"Point","coordinates":[93.9374,12.5511]}},{"type":"Feature","id":29771,"properties":{"mag":5.97,"bv":"-0.167"},"geometry":{"type":"Point","coordinates":[94.032,-16.618]}},{"type":"Feature","id":29800,"properties":{"mag":5.04,"bv":"0.431"},"geometry":{"type":"Point","coordinates":[94.1109,12.2722]}},{"type":"Feature","id":29807,"properties":{"mag":4.37,"bv":"0.978"},"geometry":{"type":"Point","coordinates":[94.1381,-35.1405]}},{"type":"Feature","id":29808,"properties":{"mag":6,"bv":"0.163"},"geometry":{"type":"Point","coordinates":[94.1483,-39.2644]}},{"type":"Feature","id":29842,"properties":{"mag":5.54,"bv":"1.129"},"geometry":{"type":"Point","coordinates":[94.2551,-37.7374]}},{"type":"Feature","id":29850,"properties":{"mag":5.39,"bv":"0.106"},"geometry":{"type":"Point","coordinates":[94.2776,9.9424]}},{"type":"Feature","id":29852,"properties":{"mag":5.88,"bv":"0.139"},"geometry":{"type":"Point","coordinates":[94.2899,-37.2535]}},{"type":"Feature","id":29860,"properties":{"mag":5.7,"bv":"0.610"},"geometry":{"type":"Point","coordinates":[94.3172,5.1001]}},{"type":"Feature","id":29895,"properties":{"mag":5.15,"bv":"1.293"},"geometry":{"type":"Point","coordinates":[94.4238,-16.8159]}},{"type":"Feature","id":29919,"properties":{"mag":5.01,"bv":"1.843"},"geometry":{"type":"Point","coordinates":[94.4784,61.5153]}},{"type":"Feature","id":29941,"properties":{"mag":5.51,"bv":"-0.163"},"geometry":{"type":"Point","coordinates":[94.5572,-19.967]}},{"type":"Feature","id":29996,"properties":{"mag":5.36,"bv":"1.239"},"geometry":{"type":"Point","coordinates":[94.7108,-9.39]}},{"type":"Feature","id":29997,"properties":{"mag":4.76,"bv":"0.025"},"geometry":{"type":"Point","coordinates":[94.7116,69.3198]}},{"type":"Feature","id":30011,"properties":{"mag":5.79,"bv":"-0.155"},"geometry":{"type":"Point","coordinates":[94.7457,-20.9256]}},{"type":"Feature","id":30060,"properties":{"mag":4.44,"bv":"0.032"},"geometry":{"type":"Point","coordinates":[94.9058,59.011]}},{"type":"Feature","id":30069,"properties":{"mag":5.76,"bv":"-0.080"},"geometry":{"type":"Point","coordinates":[94.9207,-34.3966]}},{"type":"Feature","id":30073,"properties":{"mag":5.27,"bv":"-0.177"},"geometry":{"type":"Point","coordinates":[94.9283,-7.8229]}},{"type":"Feature","id":30093,"properties":{"mag":4.91,"bv":"1.613"},"geometry":{"type":"Point","coordinates":[94.9983,-2.9445]}},{"type":"Feature","id":30099,"properties":{"mag":5.67,"bv":"1.578"},"geometry":{"type":"Point","coordinates":[95.0176,14.6511]}},{"type":"Feature","id":30122,"properties":{"mag":3.02,"bv":"-0.160"},"geometry":{"type":"Point","coordinates":[95.0783,-30.0634]}},{"type":"Feature","id":30143,"properties":{"mag":5.55,"bv":"-0.182"},"geometry":{"type":"Point","coordinates":[95.151,-34.1441]}},{"type":"Feature","id":30214,"properties":{"mag":5.48,"bv":"0.002"},"geometry":{"type":"Point","coordinates":[95.353,-11.7732]}},{"type":"Feature","id":30247,"properties":{"mag":5.34,"bv":"0.448"},"geometry":{"type":"Point","coordinates":[95.4422,53.4522]}},{"type":"Feature","id":30277,"properties":{"mag":3.85,"bv":"0.858"},"geometry":{"type":"Point","coordinates":[95.5285,-33.4364]}},{"type":"Feature","id":30318,"properties":{"mag":6,"bv":"0.319"},"geometry":{"type":"Point","coordinates":[95.6516,12.5702]}},{"type":"Feature","id":30321,"properties":{"mag":5.56,"bv":"1.510"},"geometry":{"type":"Point","coordinates":[95.6595,-69.984]}},{"type":"Feature","id":30324,"properties":{"mag":1.98,"bv":"-0.240"},"geometry":{"type":"Point","coordinates":[95.6749,-17.9559]}},{"type":"Feature","id":30342,"properties":{"mag":5.6,"bv":"0.242"},"geometry":{"type":"Point","coordinates":[95.7326,-56.37]}},{"type":"Feature","id":30343,"properties":{"mag":2.87,"bv":"1.621"},"geometry":{"type":"Point","coordinates":[95.7401,22.5136]}},{"type":"Feature","id":30419,"properties":{"mag":4.39,"bv":"0.215"},"geometry":{"type":"Point","coordinates":[95.942,4.5929]}},{"type":"Feature","id":30436,"properties":{"mag":5.61,"bv":"1.561"},"geometry":{"type":"Point","coordinates":[95.983,-25.5776]}},{"type":"Feature","id":30438,"properties":{"mag":-0.62,"bv":"0.164"},"geometry":{"type":"Point","coordinates":[95.988,-52.6957]}},{"type":"Feature","id":30444,"properties":{"mag":5.62,"bv":"1.027"},"geometry":{"type":"Point","coordinates":[96.0042,-36.7078]}},{"type":"Feature","id":30457,"properties":{"mag":5.21,"bv":"1.230"},"geometry":{"type":"Point","coordinates":[96.043,-11.5301]}},{"type":"Feature","id":30463,"properties":{"mag":5.78,"bv":"-0.001"},"geometry":{"type":"Point","coordinates":[96.0577,-60.2813]}},{"type":"Feature","id":30520,"properties":{"mag":4.92,"bv":"1.905"},"geometry":{"type":"Point","coordinates":[96.2246,49.2879]}},{"type":"Feature","id":30545,"properties":{"mag":5.88,"bv":"0.564"},"geometry":{"type":"Point","coordinates":[96.3189,-0.9459]}},{"type":"Feature","id":30565,"properties":{"mag":5.37,"bv":"0.971"},"geometry":{"type":"Point","coordinates":[96.3693,-69.6903]}},{"type":"Feature","id":30591,"properties":{"mag":5.76,"bv":"-0.061"},"geometry":{"type":"Point","coordinates":[96.4319,-48.1769]}},{"type":"Feature","id":30651,"properties":{"mag":5.53,"bv":"0.238"},"geometry":{"type":"Point","coordinates":[96.6077,56.2851]}},{"type":"Feature","id":30666,"properties":{"mag":5.87,"bv":"0.070"},"geometry":{"type":"Point","coordinates":[96.6649,-1.5073]}},{"type":"Feature","id":30679,"properties":{"mag":5.21,"bv":"1.538"},"geometry":{"type":"Point","coordinates":[96.7036,58.4174]}},{"type":"Feature","id":30703,"properties":{"mag":5.82,"bv":"1.279"},"geometry":{"type":"Point","coordinates":[96.7672,-58.0021]}},{"type":"Feature","id":30717,"properties":{"mag":5.19,"bv":"1.186"},"geometry":{"type":"Point","coordinates":[96.8073,0.2992]}},{"type":"Feature","id":30720,"properties":{"mag":5.55,"bv":"1.376"},"geometry":{"type":"Point","coordinates":[96.815,-0.276]}},{"type":"Feature","id":30728,"properties":{"mag":5.55,"bv":"1.035"},"geometry":{"type":"Point","coordinates":[96.8352,2.9083]}},{"type":"Feature","id":30772,"properties":{"mag":5.06,"bv":"-0.175"},"geometry":{"type":"Point","coordinates":[96.9899,-4.7622]}},{"type":"Feature","id":30788,"properties":{"mag":4.47,"bv":"-0.169"},"geometry":{"type":"Point","coordinates":[97.0425,-32.5801]}},{"type":"Feature","id":30827,"properties":{"mag":5.75,"bv":"0.779"},"geometry":{"type":"Point","coordinates":[97.142,30.493]}},{"type":"Feature","id":30836,"properties":{"mag":5.76,"bv":"1.118"},"geometry":{"type":"Point","coordinates":[97.1559,-17.466]}},{"type":"Feature","id":30840,"properties":{"mag":5.74,"bv":"-0.160"},"geometry":{"type":"Point","coordinates":[97.1635,-32.3713]}},{"type":"Feature","id":30867,"properties":{"mag":3.76,"bv":"-0.113"},"geometry":{"type":"Point","coordinates":[97.2045,-7.0331]}},{"type":"Feature","id":30883,"properties":{"mag":4.13,"bv":"-0.115"},"geometry":{"type":"Point","coordinates":[97.2408,20.2121]}},{"type":"Feature","id":30932,"properties":{"mag":5.2,"bv":"1.087"},"geometry":{"type":"Point","coordinates":[97.3687,-56.8528]}},{"type":"Feature","id":30953,"properties":{"mag":5.28,"bv":"0.371"},"geometry":{"type":"Point","coordinates":[97.4544,-50.2391]}},{"type":"Feature","id":30972,"properties":{"mag":5.88,"bv":"1.448"},"geometry":{"type":"Point","coordinates":[97.5124,46.6856]}},{"type":"Feature","id":30986,"properties":{"mag":5.92,"bv":"1.373"},"geometry":{"type":"Point","coordinates":[97.547,-10.0815]}},{"type":"Feature","id":31037,"properties":{"mag":5.92,"bv":"-0.156"},"geometry":{"type":"Point","coordinates":[97.6929,-27.7696]}},{"type":"Feature","id":31039,"properties":{"mag":5.86,"bv":"0.934"},"geometry":{"type":"Point","coordinates":[97.6963,58.1626]}},{"type":"Feature","id":31072,"properties":{"mag":5.82,"bv":"0.813"},"geometry":{"type":"Point","coordinates":[97.8046,-35.2588]}},{"type":"Feature","id":31079,"properties":{"mag":5.58,"bv":"0.534"},"geometry":{"type":"Point","coordinates":[97.8263,-51.826]}},{"type":"Feature","id":31084,"properties":{"mag":5.16,"bv":"1.262"},"geometry":{"type":"Point","coordinates":[97.846,-12.392]}},{"type":"Feature","id":31119,"properties":{"mag":5.22,"bv":"0.185"},"geometry":{"type":"Point","coordinates":[97.9512,11.5444]}},{"type":"Feature","id":31121,"properties":{"mag":5.43,"bv":"1.373"},"geometry":{"type":"Point","coordinates":[97.9586,-8.1582]}},{"type":"Feature","id":31125,"properties":{"mag":4.34,"bv":"-0.245"},"geometry":{"type":"Point","coordinates":[97.964,-23.4184]}},{"type":"Feature","id":31137,"properties":{"mag":5.69,"bv":"-0.057"},"geometry":{"type":"Point","coordinates":[97.993,-58.7538]}},{"type":"Feature","id":31159,"properties":{"mag":5.88,"bv":"0.997"},"geometry":{"type":"Point","coordinates":[98.08,4.856]}},{"type":"Feature","id":31165,"properties":{"mag":5.25,"bv":"0.982"},"geometry":{"type":"Point","coordinates":[98.0891,-37.6967]}},{"type":"Feature","id":31167,"properties":{"mag":5.6,"bv":"0.256"},"geometry":{"type":"Point","coordinates":[98.0964,-5.8688]}},{"type":"Feature","id":31173,"properties":{"mag":5.82,"bv":"0.188"},"geometry":{"type":"Point","coordinates":[98.1133,32.4549]}},{"type":"Feature","id":31190,"properties":{"mag":5.73,"bv":"-0.180"},"geometry":{"type":"Point","coordinates":[98.1624,-32.0304]}},{"type":"Feature","id":31216,"properties":{"mag":4.47,"bv":"0.023"},"geometry":{"type":"Point","coordinates":[98.2259,7.333]}},{"type":"Feature","id":31277,"properties":{"mag":5.57,"bv":"1.105"},"geometry":{"type":"Point","coordinates":[98.4007,14.1552]}},{"type":"Feature","id":31278,"properties":{"mag":5.09,"bv":"-0.132"},"geometry":{"type":"Point","coordinates":[98.408,-1.2202]}},{"type":"Feature","id":31299,"properties":{"mag":5.42,"bv":"1.419"},"geometry":{"type":"Point","coordinates":[98.4562,-36.232]}},{"type":"Feature","id":31362,"properties":{"mag":5.62,"bv":"-0.085"},"geometry":{"type":"Point","coordinates":[98.6472,-32.7163]}},{"type":"Feature","id":31407,"properties":{"mag":4.35,"bv":"-0.021"},"geometry":{"type":"Point","coordinates":[98.7441,-52.9756]}},{"type":"Feature","id":31416,"properties":{"mag":4.54,"bv":"-0.035"},"geometry":{"type":"Point","coordinates":[98.7641,-22.9648]}},{"type":"Feature","id":31434,"properties":{"mag":5.26,"bv":"-0.008"},"geometry":{"type":"Point","coordinates":[98.8003,28.0223]}},{"type":"Feature","id":31446,"properties":{"mag":5.78,"bv":"0.004"},"geometry":{"type":"Point","coordinates":[98.8159,0.8902]}},{"type":"Feature","id":31448,"properties":{"mag":5.93,"bv":"1.508"},"geometry":{"type":"Point","coordinates":[98.8233,9.9883]}},{"type":"Feature","id":31457,"properties":{"mag":5.59,"bv":"-0.130"},"geometry":{"type":"Point","coordinates":[98.8509,-36.7799]}},{"type":"Feature","id":31564,"properties":{"mag":5.71,"bv":"0.848"},"geometry":{"type":"Point","coordinates":[99.0952,-18.6599]}},{"type":"Feature","id":31579,"properties":{"mag":5.4,"bv":"2.773"},"geometry":{"type":"Point","coordinates":[99.1368,38.4455]}},{"type":"Feature","id":31583,"properties":{"mag":5.52,"bv":"-0.082"},"geometry":{"type":"Point","coordinates":[99.1472,-5.2111]}},{"type":"Feature","id":31592,"properties":{"mag":3.95,"bv":"1.037"},"geometry":{"type":"Point","coordinates":[99.171,-19.2559]}},{"type":"Feature","id":31599,"properties":{"mag":5.95,"bv":"1.562"},"geometry":{"type":"Point","coordinates":[99.1942,-13.321]}},{"type":"Feature","id":31637,"properties":{"mag":5.72,"bv":"-0.112"},"geometry":{"type":"Point","coordinates":[99.3076,-36.9907]}},{"type":"Feature","id":31665,"properties":{"mag":5.87,"bv":"0.006"},"geometry":{"type":"Point","coordinates":[99.41,56.8575]}},{"type":"Feature","id":31676,"properties":{"mag":5.94,"bv":"0.899"},"geometry":{"type":"Point","coordinates":[99.4224,61.4812]}},{"type":"Feature","id":31681,"properties":{"mag":1.93,"bv":"0.001"},"geometry":{"type":"Point","coordinates":[99.4279,16.3993]}},{"type":"Feature","id":31685,"properties":{"mag":3.17,"bv":"-0.103"},"geometry":{"type":"Point","coordinates":[99.4403,-43.1959]}},{"type":"Feature","id":31688,"properties":{"mag":5.25,"bv":"1.177"},"geometry":{"type":"Point","coordinates":[99.4484,-32.3397]}},{"type":"Feature","id":31700,"properties":{"mag":4.42,"bv":"1.137"},"geometry":{"type":"Point","coordinates":[99.4726,-18.2375]}},{"type":"Feature","id":31737,"properties":{"mag":5.76,"bv":"-0.001"},"geometry":{"type":"Point","coordinates":[99.5959,28.9844]}},{"type":"Feature","id":31765,"properties":{"mag":5.05,"bv":"0.997"},"geometry":{"type":"Point","coordinates":[99.6568,-48.2202]}},{"type":"Feature","id":31771,"properties":{"mag":5.7,"bv":"1.367"},"geometry":{"type":"Point","coordinates":[99.6647,39.3909]}},{"type":"Feature","id":31789,"properties":{"mag":5.34,"bv":"-0.075"},"geometry":{"type":"Point","coordinates":[99.7049,39.9026]}},{"type":"Feature","id":31827,"properties":{"mag":4.82,"bv":"1.459"},"geometry":{"type":"Point","coordinates":[99.8197,-14.1458]}},{"type":"Feature","id":31832,"properties":{"mag":4.8,"bv":"1.236"},"geometry":{"type":"Point","coordinates":[99.8326,42.4889]}},{"type":"Feature","id":31870,"properties":{"mag":5.7,"bv":"1.134"},"geometry":{"type":"Point","coordinates":[99.9278,-30.4705]}},{"type":"Feature","id":31876,"properties":{"mag":5.99,"bv":"0.063"},"geometry":{"type":"Point","coordinates":[99.9488,12.9828]}},{"type":"Feature","id":31897,"properties":{"mag":5.61,"bv":"0.214"},"geometry":{"type":"Point","coordinates":[100.012,-80.8136]}},{"type":"Feature","id":31940,"properties":{"mag":5.75,"bv":"1.488"},"geometry":{"type":"Point","coordinates":[100.1203,77.9958]}},{"type":"Feature","id":31946,"properties":{"mag":5.88,"bv":"1.223"},"geometry":{"type":"Point","coordinates":[100.1344,71.7488]}},{"type":"Feature","id":31978,"properties":{"mag":4.66,"bv":"-0.233"},"geometry":{"type":"Point","coordinates":[100.2444,9.8958]}},{"type":"Feature","id":31992,"properties":{"mag":5.79,"bv":"-0.094"},"geometry":{"type":"Point","coordinates":[100.2727,0.4953]}},{"type":"Feature","id":32064,"properties":{"mag":5.21,"bv":"1.525"},"geometry":{"type":"Point","coordinates":[100.4849,-9.1675]}},{"type":"Feature","id":32104,"properties":{"mag":5.2,"bv":"0.063"},"geometry":{"type":"Point","coordinates":[100.6014,17.6453]}},{"type":"Feature","id":32173,"properties":{"mag":5.04,"bv":"1.479"},"geometry":{"type":"Point","coordinates":[100.7707,44.5244]}},{"type":"Feature","id":32226,"properties":{"mag":5.88,"bv":"-0.046"},"geometry":{"type":"Point","coordinates":[100.911,3.9325]}},{"type":"Feature","id":32246,"properties":{"mag":3.06,"bv":"1.377"},"geometry":{"type":"Point","coordinates":[100.983,25.1311]}},{"type":"Feature","id":32249,"properties":{"mag":4.49,"bv":"1.167"},"geometry":{"type":"Point","coordinates":[100.9971,13.228]}},{"type":"Feature","id":32292,"properties":{"mag":5.23,"bv":"-0.127"},"geometry":{"type":"Point","coordinates":[101.1186,-31.0705]}},{"type":"Feature","id":32311,"properties":{"mag":5.42,"bv":"1.445"},"geometry":{"type":"Point","coordinates":[101.1894,28.9709]}},{"type":"Feature","id":32349,"properties":{"mag":-1.44,"bv":"0.009"},"geometry":{"type":"Point","coordinates":[101.2872,-16.7161]}},{"type":"Feature","id":32362,"properties":{"mag":3.35,"bv":"0.443"},"geometry":{"type":"Point","coordinates":[101.3224,12.8956]}},{"type":"Feature","id":32366,"properties":{"mag":5.92,"bv":"0.491"},"geometry":{"type":"Point","coordinates":[101.3456,-31.7937]}},{"type":"Feature","id":32385,"properties":{"mag":5.62,"bv":"-0.138"},"geometry":{"type":"Point","coordinates":[101.38,-30.949]}},{"type":"Feature","id":32402,"properties":{"mag":5.81,"bv":"1.551"},"geometry":{"type":"Point","coordinates":[101.4738,-52.4097]}},{"type":"Feature","id":32411,"properties":{"mag":5.3,"bv":"0.075"},"geometry":{"type":"Point","coordinates":[101.4975,-14.7961]}},{"type":"Feature","id":32438,"properties":{"mag":4.86,"bv":"0.084"},"geometry":{"type":"Point","coordinates":[101.5589,59.4417]}},{"type":"Feature","id":32439,"properties":{"mag":5.44,"bv":"0.525"},"geometry":{"type":"Point","coordinates":[101.559,79.5648]}},{"type":"Feature","id":32463,"properties":{"mag":5.92,"bv":"-0.173"},"geometry":{"type":"Point","coordinates":[101.6351,8.5872]}},{"type":"Feature","id":32474,"properties":{"mag":5.66,"bv":"-0.048"},"geometry":{"type":"Point","coordinates":[101.6626,-10.1074]}},{"type":"Feature","id":32480,"properties":{"mag":5.24,"bv":"0.575"},"geometry":{"type":"Point","coordinates":[101.6847,43.5774]}},{"type":"Feature","id":32489,"properties":{"mag":5.34,"bv":"0.964"},"geometry":{"type":"Point","coordinates":[101.7063,57.1692]}},{"type":"Feature","id":32492,"properties":{"mag":5.28,"bv":"-0.024"},"geometry":{"type":"Point","coordinates":[101.7129,-14.426]}},{"type":"Feature","id":32494,"properties":{"mag":5.39,"bv":"1.330"},"geometry":{"type":"Point","coordinates":[101.7195,-51.2657]}},{"type":"Feature","id":32531,"properties":{"mag":5.6,"bv":"1.549"},"geometry":{"type":"Point","coordinates":[101.828,-55.54]}},{"type":"Feature","id":32533,"properties":{"mag":4.77,"bv":"1.396"},"geometry":{"type":"Point","coordinates":[101.8326,8.0373]}},{"type":"Feature","id":32537,"properties":{"mag":5.27,"bv":"-0.078"},"geometry":{"type":"Point","coordinates":[101.8392,-37.9297]}},{"type":"Feature","id":32558,"properties":{"mag":5.08,"bv":"1.795"},"geometry":{"type":"Point","coordinates":[101.9051,-8.9985]}},{"type":"Feature","id":32562,"properties":{"mag":5.22,"bv":"1.131"},"geometry":{"type":"Point","coordinates":[101.9149,48.7895]}},{"type":"Feature","id":32578,"properties":{"mag":4.48,"bv":"1.099"},"geometry":{"type":"Point","coordinates":[101.9652,2.4122]}},{"type":"Feature","id":32607,"properties":{"mag":3.24,"bv":"0.225"},"geometry":{"type":"Point","coordinates":[102.0477,-61.9414]}},{"type":"Feature","id":32609,"properties":{"mag":5.54,"bv":""},"geometry":{"type":"Point","coordinates":[102.0512,55.7042]}},{"type":"Feature","id":32617,"properties":{"mag":5.75,"bv":"0.292"},"geometry":{"type":"Point","coordinates":[102.0794,-1.3189]}},{"type":"Feature","id":32677,"properties":{"mag":5.39,"bv":"-0.096"},"geometry":{"type":"Point","coordinates":[102.2406,-15.1447]}},{"type":"Feature","id":32698,"properties":{"mag":5.75,"bv":"-0.098"},"geometry":{"type":"Point","coordinates":[102.3184,-2.272]}},{"type":"Feature","id":32740,"properties":{"mag":5.72,"bv":"1.298"},"geometry":{"type":"Point","coordinates":[102.4221,32.6068]}},{"type":"Feature","id":32753,"properties":{"mag":5.87,"bv":"-0.136"},"geometry":{"type":"Point","coordinates":[102.4577,16.2029]}},{"type":"Feature","id":32759,"properties":{"mag":3.5,"bv":"-0.116"},"geometry":{"type":"Point","coordinates":[102.4602,-32.5085]}},{"type":"Feature","id":32761,"properties":{"mag":4.41,"bv":"0.899"},"geometry":{"type":"Point","coordinates":[102.4638,-53.6224]}},{"type":"Feature","id":32765,"properties":{"mag":5.14,"bv":"0.460"},"geometry":{"type":"Point","coordinates":[102.4776,-46.6146]}},{"type":"Feature","id":32768,"properties":{"mag":2.94,"bv":"1.207"},"geometry":{"type":"Point","coordinates":[102.484,-50.6146]}},{"type":"Feature","id":32809,"properties":{"mag":5.77,"bv":"1.435"},"geometry":{"type":"Point","coordinates":[102.5907,-17.0846]}},{"type":"Feature","id":32810,"properties":{"mag":5.74,"bv":"0.094"},"geometry":{"type":"Point","coordinates":[102.5973,-31.7061]}},{"type":"Feature","id":32814,"properties":{"mag":5.68,"bv":"1.329"},"geometry":{"type":"Point","coordinates":[102.6062,13.4132]}},{"type":"Feature","id":32844,"properties":{"mag":4.99,"bv":"1.256"},"geometry":{"type":"Point","coordinates":[102.6914,41.7812]}},{"type":"Feature","id":32851,"properties":{"mag":5.78,"bv":"0.396"},"geometry":{"type":"Point","coordinates":[102.7076,-0.5409]}},{"type":"Feature","id":32855,"properties":{"mag":4.99,"bv":"1.379"},"geometry":{"type":"Point","coordinates":[102.7181,-34.3673]}},{"type":"Feature","id":32864,"properties":{"mag":5.14,"bv":"-0.152"},"geometry":{"type":"Point","coordinates":[102.7379,67.5719]}},{"type":"Feature","id":32912,"properties":{"mag":5.41,"bv":"-0.110"},"geometry":{"type":"Point","coordinates":[102.8624,-70.9634]}},{"type":"Feature","id":32921,"properties":{"mag":5.28,"bv":"-0.020"},"geometry":{"type":"Point","coordinates":[102.8877,21.7611]}},{"type":"Feature","id":32938,"properties":{"mag":5.94,"bv":"0.183"},"geometry":{"type":"Point","coordinates":[102.9268,-36.2303]}},{"type":"Feature","id":32968,"properties":{"mag":5.68,"bv":"1.467"},"geometry":{"type":"Point","coordinates":[102.9999,23.6017]}},{"type":"Feature","id":33018,"properties":{"mag":3.6,"bv":"0.102"},"geometry":{"type":"Point","coordinates":[103.1972,33.9613]}},{"type":"Feature","id":33024,"properties":{"mag":5.75,"bv":"0.270"},"geometry":{"type":"Point","coordinates":[103.2061,8.3804]}},{"type":"Feature","id":33048,"properties":{"mag":5.34,"bv":"0.675"},"geometry":{"type":"Point","coordinates":[103.271,59.4485]}},{"type":"Feature","id":33077,"properties":{"mag":5.65,"bv":"0.279"},"geometry":{"type":"Point","coordinates":[103.3284,-19.0328]}},{"type":"Feature","id":33092,"properties":{"mag":4.82,"bv":"-0.212"},"geometry":{"type":"Point","coordinates":[103.3871,-20.2243]}},{"type":"Feature","id":33104,"properties":{"mag":5.11,"bv":"-0.114"},"geometry":{"type":"Point","coordinates":[103.426,68.8883]}},{"type":"Feature","id":33152,"properties":{"mag":3.89,"bv":"1.740"},"geometry":{"type":"Point","coordinates":[103.5331,-24.1842]}},{"type":"Feature","id":33160,"properties":{"mag":4.08,"bv":"1.418"},"geometry":{"type":"Point","coordinates":[103.5475,-12.0386]}},{"type":"Feature","id":33184,"properties":{"mag":5.44,"bv":"0.167"},"geometry":{"type":"Point","coordinates":[103.6028,-1.127]}},{"type":"Feature","id":33202,"properties":{"mag":4.73,"bv":"0.321"},"geometry":{"type":"Point","coordinates":[103.661,13.1778]}},{"type":"Feature","id":33248,"properties":{"mag":5.8,"bv":"0.048"},"geometry":{"type":"Point","coordinates":[103.7614,-20.4049]}},{"type":"Feature","id":33277,"properties":{"mag":5.74,"bv":"0.573"},"geometry":{"type":"Point","coordinates":[103.8278,25.3757]}},{"type":"Feature","id":33302,"properties":{"mag":4.66,"bv":"0.374"},"geometry":{"type":"Point","coordinates":[103.906,-20.1365]}},{"type":"Feature","id":33316,"properties":{"mag":5.29,"bv":"-0.163"},"geometry":{"type":"Point","coordinates":[103.9455,-22.9414]}},{"type":"Feature","id":33345,"properties":{"mag":5,"bv":"1.182"},"geometry":{"type":"Point","coordinates":[104.0277,-14.0434]}},{"type":"Feature","id":33347,"properties":{"mag":4.36,"bv":"-0.063"},"geometry":{"type":"Point","coordinates":[104.0343,-17.0542]}},{"type":"Feature","id":33357,"properties":{"mag":4.94,"bv":"1.668"},"geometry":{"type":"Point","coordinates":[104.0666,-48.7211]}},{"type":"Feature","id":33372,"properties":{"mag":5.9,"bv":"-0.085"},"geometry":{"type":"Point","coordinates":[104.1076,9.9566]}},{"type":"Feature","id":33377,"properties":{"mag":5.85,"bv":"-0.079"},"geometry":{"type":"Point","coordinates":[104.1336,46.274]}},{"type":"Feature","id":33384,"properties":{"mag":5.45,"bv":"0.041"},"geometry":{"type":"Point","coordinates":[104.1436,-79.4202]}},{"type":"Feature","id":33415,"properties":{"mag":5.88,"bv":"1.093"},"geometry":{"type":"Point","coordinates":[104.2335,46.7054]}},{"type":"Feature","id":33421,"properties":{"mag":5.91,"bv":"0.878"},"geometry":{"type":"Point","coordinates":[104.2522,33.681]}},{"type":"Feature","id":33449,"properties":{"mag":4.35,"bv":"0.850"},"geometry":{"type":"Point","coordinates":[104.3192,58.4228]}},{"type":"Feature","id":33478,"properties":{"mag":5.45,"bv":"0.390"},"geometry":{"type":"Point","coordinates":[104.3913,-24.6308]}},{"type":"Feature","id":33485,"properties":{"mag":4.9,"bv":"0.027"},"geometry":{"type":"Point","coordinates":[104.4046,45.0941]}},{"type":"Feature","id":33558,"properties":{"mag":5.07,"bv":"-0.154"},"geometry":{"type":"Point","coordinates":[104.6046,-34.1117]}},{"type":"Feature","id":33575,"properties":{"mag":5.59,"bv":"-0.162"},"geometry":{"type":"Point","coordinates":[104.6496,-25.4142]}},{"type":"Feature","id":33579,"properties":{"mag":1.5,"bv":"-0.211"},"geometry":{"type":"Point","coordinates":[104.6565,-28.9721]}},{"type":"Feature","id":33603,"properties":{"mag":5.96,"bv":"1.056"},"geometry":{"type":"Point","coordinates":[104.7376,3.6024]}},{"type":"Feature","id":33682,"properties":{"mag":5.18,"bv":"1.396"},"geometry":{"type":"Point","coordinates":[104.9606,-67.9164]}},{"type":"Feature","id":33694,"properties":{"mag":4.55,"bv":"1.365"},"geometry":{"type":"Point","coordinates":[105.0168,76.9774]}},{"type":"Feature","id":33715,"properties":{"mag":5.73,"bv":"1.641"},"geometry":{"type":"Point","coordinates":[105.0659,16.079]}},{"type":"Feature","id":33729,"properties":{"mag":5.95,"bv":"-0.075"},"geometry":{"type":"Point","coordinates":[105.099,-8.4068]}},{"type":"Feature","id":33779,"properties":{"mag":5.14,"bv":"1.652"},"geometry":{"type":"Point","coordinates":[105.2145,-51.4026]}},{"type":"Feature","id":33804,"properties":{"mag":5.64,"bv":"-0.165"},"geometry":{"type":"Point","coordinates":[105.2748,-25.2156]}},{"type":"Feature","id":33827,"properties":{"mag":5.69,"bv":"1.337"},"geometry":{"type":"Point","coordinates":[105.3392,70.8083]}},{"type":"Feature","id":33856,"properties":{"mag":3.49,"bv":"1.729"},"geometry":{"type":"Point","coordinates":[105.4298,-27.9348]}},{"type":"Feature","id":33878,"properties":{"mag":5.22,"bv":"1.687"},"geometry":{"type":"Point","coordinates":[105.4849,-5.7221]}},{"type":"Feature","id":33914,"properties":{"mag":5.78,"bv":"1.140"},"geometry":{"type":"Point","coordinates":[105.5729,15.336]}},{"type":"Feature","id":33927,"properties":{"mag":5.2,"bv":"0.953"},"geometry":{"type":"Point","coordinates":[105.6033,24.2154]}},{"type":"Feature","id":33929,"properties":{"mag":5.96,"bv":"1.518"},"geometry":{"type":"Point","coordinates":[105.6064,17.7555]}},{"type":"Feature","id":33937,"properties":{"mag":5.86,"bv":"1.659"},"geometry":{"type":"Point","coordinates":[105.6387,16.6744]}},{"type":"Feature","id":33971,"properties":{"mag":4.99,"bv":"-0.195"},"geometry":{"type":"Point","coordinates":[105.7282,-4.2392]}},{"type":"Feature","id":33977,"properties":{"mag":3.02,"bv":"-0.077"},"geometry":{"type":"Point","coordinates":[105.7561,-23.8333]}},{"type":"Feature","id":34000,"properties":{"mag":5.5,"bv":"-0.125"},"geometry":{"type":"Point","coordinates":[105.8129,-59.1781]}},{"type":"Feature","id":34002,"properties":{"mag":5.96,"bv":"0.126"},"geometry":{"type":"Point","coordinates":[105.8246,9.1384]}},{"type":"Feature","id":34017,"properties":{"mag":5.93,"bv":"0.595"},"geometry":{"type":"Point","coordinates":[105.8769,29.3371]}},{"type":"Feature","id":34033,"properties":{"mag":5.14,"bv":"1.391"},"geometry":{"type":"Point","coordinates":[105.9086,10.9518]}},{"type":"Feature","id":34045,"properties":{"mag":4.11,"bv":"-0.112"},"geometry":{"type":"Point","coordinates":[105.9396,-15.6333]}},{"type":"Feature","id":34059,"properties":{"mag":4.92,"bv":"0.140"},"geometry":{"type":"Point","coordinates":[105.9734,-49.5839]}},{"type":"Feature","id":34065,"properties":{"mag":5.56,"bv":"0.624"},"geometry":{"type":"Point","coordinates":[105.9888,-43.608]}},{"type":"Feature","id":34081,"properties":{"mag":5.2,"bv":"0.198"},"geometry":{"type":"Point","coordinates":[106.0116,-42.3373]}},{"type":"Feature","id":34086,"properties":{"mag":5.63,"bv":"1.290"},"geometry":{"type":"Point","coordinates":[106.0219,-5.324]}},{"type":"Feature","id":34088,"properties":{"mag":4.01,"bv":"0.899"},"geometry":{"type":"Point","coordinates":[106.0272,20.5703]}},{"type":"Feature","id":34105,"properties":{"mag":5.14,"bv":"-0.032"},"geometry":{"type":"Point","coordinates":[106.0764,-56.7497]}},{"type":"Feature","id":34182,"properties":{"mag":6,"bv":"-0.027"},"geometry":{"type":"Point","coordinates":[106.3265,22.6375]}},{"type":"Feature","id":34215,"properties":{"mag":5.78,"bv":"1.513"},"geometry":{"type":"Point","coordinates":[106.4126,9.1858]}},{"type":"Feature","id":34267,"properties":{"mag":5.55,"bv":"0.909"},"geometry":{"type":"Point","coordinates":[106.5483,34.474]}},{"type":"Feature","id":34301,"properties":{"mag":5.41,"bv":"0.033"},"geometry":{"type":"Point","coordinates":[106.6699,-11.294]}},{"type":"Feature","id":34339,"properties":{"mag":5.8,"bv":"-0.158"},"geometry":{"type":"Point","coordinates":[106.7795,-40.8933]}},{"type":"Feature","id":34349,"properties":{"mag":5.96,"bv":"0.996"},"geometry":{"type":"Point","coordinates":[106.8054,-51.9683]}},{"type":"Feature","id":34358,"properties":{"mag":5.94,"bv":"1.507"},"geometry":{"type":"Point","coordinates":[106.8433,34.0093]}},{"type":"Feature","id":34360,"properties":{"mag":5.75,"bv":"-0.117"},"geometry":{"type":"Point","coordinates":[106.8441,-23.8407]}},{"type":"Feature","id":34387,"properties":{"mag":5.74,"bv":"1.176"},"geometry":{"type":"Point","coordinates":[106.9562,7.4712]}},{"type":"Feature","id":34440,"properties":{"mag":5.47,"bv":"1.020"},"geometry":{"type":"Point","coordinates":[107.0918,15.9307]}},{"type":"Feature","id":34444,"properties":{"mag":1.83,"bv":"0.671"},"geometry":{"type":"Point","coordinates":[107.0979,-26.3932]}},{"type":"Feature","id":34473,"properties":{"mag":5.68,"bv":"0.436"},"geometry":{"type":"Point","coordinates":[107.1765,-70.4971]}},{"type":"Feature","id":34481,"properties":{"mag":3.78,"bv":"1.006"},"geometry":{"type":"Point","coordinates":[107.1869,-70.4989]}},{"type":"Feature","id":34495,"properties":{"mag":4.83,"bv":"-0.179"},"geometry":{"type":"Point","coordinates":[107.2128,-39.6557]}},{"type":"Feature","id":34561,"properties":{"mag":6,"bv":"0.040"},"geometry":{"type":"Point","coordinates":[107.389,-16.2345]}},{"type":"Feature","id":34579,"properties":{"mag":5.69,"bv":"-0.158"},"geometry":{"type":"Point","coordinates":[107.4293,-25.231]}},{"type":"Feature","id":34622,"properties":{"mag":4.91,"bv":"1.020"},"geometry":{"type":"Point","coordinates":[107.557,-4.2371]}},{"type":"Feature","id":34624,"properties":{"mag":5.46,"bv":"0.998"},"geometry":{"type":"Point","coordinates":[107.5805,-27.4915]}},{"type":"Feature","id":34670,"properties":{"mag":5.12,"bv":"1.251"},"geometry":{"type":"Point","coordinates":[107.6978,-48.9321]}},{"type":"Feature","id":34693,"properties":{"mag":4.41,"bv":"1.261"},"geometry":{"type":"Point","coordinates":[107.7849,30.2452]}},{"type":"Feature","id":34722,"properties":{"mag":5.75,"bv":"0.130"},"geometry":{"type":"Point","coordinates":[107.8461,26.8566]}},{"type":"Feature","id":34724,"properties":{"mag":5.44,"bv":"0.310"},"geometry":{"type":"Point","coordinates":[107.8484,-0.3019]}},{"type":"Feature","id":34752,"properties":{"mag":4.91,"bv":"1.451"},"geometry":{"type":"Point","coordinates":[107.9139,39.3205]}},{"type":"Feature","id":34758,"properties":{"mag":5.84,"bv":"-0.038"},"geometry":{"type":"Point","coordinates":[107.9234,-20.8831]}},{"type":"Feature","id":34769,"properties":{"mag":4.15,"bv":"-0.005"},"geometry":{"type":"Point","coordinates":[107.9661,-0.4928]}},{"type":"Feature","id":34798,"properties":{"mag":5.91,"bv":"-0.170"},"geometry":{"type":"Point","coordinates":[108.0509,-25.9426]}},{"type":"Feature","id":34802,"properties":{"mag":5.3,"bv":"0.072"},"geometry":{"type":"Point","coordinates":[108.0659,-40.4988]}},{"type":"Feature","id":34817,"properties":{"mag":5.94,"bv":"-0.145"},"geometry":{"type":"Point","coordinates":[108.1076,-36.5444]}},{"type":"Feature","id":34819,"properties":{"mag":5.85,"bv":"0.397"},"geometry":{"type":"Point","coordinates":[108.1099,24.1286]}},{"type":"Feature","id":34834,"properties":{"mag":4.49,"bv":"0.324"},"geometry":{"type":"Point","coordinates":[108.1401,-46.7593]}},{"type":"Feature","id":34888,"properties":{"mag":5.77,"bv":"1.508"},"geometry":{"type":"Point","coordinates":[108.28,-11.2513]}},{"type":"Feature","id":34899,"properties":{"mag":4.87,"bv":"-0.003"},"geometry":{"type":"Point","coordinates":[108.3056,-45.1827]}},{"type":"Feature","id":34909,"properties":{"mag":5.07,"bv":"1.653"},"geometry":{"type":"Point","coordinates":[108.3428,16.159]}},{"type":"Feature","id":34912,"properties":{"mag":5.46,"bv":"1.640"},"geometry":{"type":"Point","coordinates":[108.3475,51.4287]}},{"type":"Feature","id":34914,"properties":{"mag":5.99,"bv":"1.481"},"geometry":{"type":"Point","coordinates":[108.3501,-22.6742]}},{"type":"Feature","id":34922,"properties":{"mag":4.42,"bv":"1.331"},"geometry":{"type":"Point","coordinates":[108.3847,-44.6397]}},{"type":"Feature","id":34975,"properties":{"mag":5.8,"bv":"1.585"},"geometry":{"type":"Point","coordinates":[108.5452,-3.9018]}},{"type":"Feature","id":34981,"properties":{"mag":4.42,"bv":"-0.170"},"geometry":{"type":"Point","coordinates":[108.5634,-26.3525]}},{"type":"Feature","id":34982,"properties":{"mag":5.9,"bv":"1.528"},"geometry":{"type":"Point","coordinates":[108.5647,-9.9475]}},{"type":"Feature","id":34987,"properties":{"mag":5.36,"bv":"1.193"},"geometry":{"type":"Point","coordinates":[108.5836,3.1114]}},{"type":"Feature","id":35005,"properties":{"mag":5.71,"bv":"1.007"},"geometry":{"type":"Point","coordinates":[108.6359,12.1158]}},{"type":"Feature","id":35020,"properties":{"mag":4.75,"bv":"-0.091"},"geometry":{"type":"Point","coordinates":[108.6589,-48.2719]}},{"type":"Feature","id":35025,"properties":{"mag":5.84,"bv":"1.554"},"geometry":{"type":"Point","coordinates":[108.6749,24.885]}},{"type":"Feature","id":35029,"properties":{"mag":5.72,"bv":"-0.109"},"geometry":{"type":"Point","coordinates":[108.6917,-46.8497]}},{"type":"Feature","id":35037,"properties":{"mag":4.01,"bv":"-0.150"},"geometry":{"type":"Point","coordinates":[108.7027,-26.7727]}},{"type":"Feature","id":35044,"properties":{"mag":5.58,"bv":"1.220"},"geometry":{"type":"Point","coordinates":[108.7132,-27.038]}},{"type":"Feature","id":35054,"properties":{"mag":5.95,"bv":"-0.146"},"geometry":{"type":"Point","coordinates":[108.7381,-41.4264]}},{"type":"Feature","id":35083,"properties":{"mag":5.36,"bv":"-0.155"},"geometry":{"type":"Point","coordinates":[108.8378,-30.6864]}},{"type":"Feature","id":35084,"properties":{"mag":5.96,"bv":"1.099"},"geometry":{"type":"Point","coordinates":[108.8384,-52.4992]}},{"type":"Feature","id":35120,"properties":{"mag":5.78,"bv":"1.537"},"geometry":{"type":"Point","coordinates":[108.9143,7.9777]}},{"type":"Feature","id":35127,"properties":{"mag":5.95,"bv":"1.173"},"geometry":{"type":"Point","coordinates":[108.9302,-10.5836]}},{"type":"Feature","id":35136,"properties":{"mag":5.54,"bv":"0.576"},"geometry":{"type":"Point","coordinates":[108.9589,47.24]}},{"type":"Feature","id":35146,"properties":{"mag":5.2,"bv":"1.081"},"geometry":{"type":"Point","coordinates":[108.9788,59.6375]}},{"type":"Feature","id":35152,"properties":{"mag":5.75,"bv":"1.605"},"geometry":{"type":"Point","coordinates":[108.9882,27.8974]}},{"type":"Feature","id":35180,"properties":{"mag":5.46,"bv":"0.079"},"geometry":{"type":"Point","coordinates":[109.0606,-15.5857]}},{"type":"Feature","id":35181,"properties":{"mag":5.64,"bv":"1.441"},"geometry":{"type":"Point","coordinates":[109.0645,-46.7745]}},{"type":"Feature","id":35202,"properties":{"mag":5.81,"bv":"-0.133"},"geometry":{"type":"Point","coordinates":[109.1327,-38.3189]}},{"type":"Feature","id":35205,"properties":{"mag":4.66,"bv":"1.589"},"geometry":{"type":"Point","coordinates":[109.1458,-27.8812]}},{"type":"Feature","id":35210,"properties":{"mag":4.83,"bv":"1.601"},"geometry":{"type":"Point","coordinates":[109.1535,-23.3156]}},{"type":"Feature","id":35226,"properties":{"mag":5.03,"bv":"-0.161"},"geometry":{"type":"Point","coordinates":[109.2059,-36.5926]}},{"type":"Feature","id":35228,"properties":{"mag":3.97,"bv":"0.760"},"geometry":{"type":"Point","coordinates":[109.2076,-67.9572]}},{"type":"Feature","id":35264,"properties":{"mag":2.71,"bv":"1.616"},"geometry":{"type":"Point","coordinates":[109.2857,-37.0975]}},{"type":"Feature","id":35304,"properties":{"mag":5.93,"bv":"1.259"},"geometry":{"type":"Point","coordinates":[109.3905,52.1311]}},{"type":"Feature","id":35341,"properties":{"mag":5.87,"bv":"0.181"},"geometry":{"type":"Point","coordinates":[109.5092,40.8834]}},{"type":"Feature","id":35347,"properties":{"mag":5.86,"bv":"-0.117"},"geometry":{"type":"Point","coordinates":[109.5177,-43.9868]}},{"type":"Feature","id":35350,"properties":{"mag":3.58,"bv":"0.106"},"geometry":{"type":"Point","coordinates":[109.5232,16.5404]}},{"type":"Feature","id":35363,"properties":{"mag":4.65,"bv":"-0.099"},"geometry":{"type":"Point","coordinates":[109.5766,-36.734]}},{"type":"Feature","id":35384,"properties":{"mag":5,"bv":"0.087"},"geometry":{"type":"Point","coordinates":[109.6332,49.4648]}},{"type":"Feature","id":35393,"properties":{"mag":5.24,"bv":"0.026"},"geometry":{"type":"Point","coordinates":[109.6396,-39.2103]}},{"type":"Feature","id":35406,"properties":{"mag":5.11,"bv":"-0.170"},"geometry":{"type":"Point","coordinates":[109.6591,-36.7427]}},{"type":"Feature","id":35412,"properties":{"mag":4.88,"bv":"-0.160"},"geometry":{"type":"Point","coordinates":[109.6682,-24.5587]}},{"type":"Feature","id":35415,"properties":{"mag":4.37,"bv":"-0.132"},"geometry":{"type":"Point","coordinates":[109.677,-24.9544]}},{"type":"Feature","id":35427,"properties":{"mag":5.29,"bv":"0.956"},"geometry":{"type":"Point","coordinates":[109.7136,-26.5859]}},{"type":"Feature","id":35476,"properties":{"mag":5.9,"bv":"1.069"},"geometry":{"type":"Point","coordinates":[109.8432,2.7407]}},{"type":"Feature","id":35487,"properties":{"mag":5.7,"bv":"0.346"},"geometry":{"type":"Point","coordinates":[109.8674,-16.3952]}},{"type":"Feature","id":35509,"properties":{"mag":5.91,"bv":"0.537"},"geometry":{"type":"Point","coordinates":[109.9485,7.1429]}},{"type":"Feature","id":35550,"properties":{"mag":3.5,"bv":"0.374"},"geometry":{"type":"Point","coordinates":[110.0307,21.9823]}},{"type":"Feature","id":35564,"properties":{"mag":5.5,"bv":"0.483"},"geometry":{"type":"Point","coordinates":[110.0893,-52.3115]}},{"type":"Feature","id":35589,"properties":{"mag":5.38,"bv":"-0.069"},"geometry":{"type":"Point","coordinates":[110.1617,-52.0859]}},{"type":"Feature","id":35611,"properties":{"mag":6,"bv":"-0.172"},"geometry":{"type":"Point","coordinates":[110.2288,-26.9638]}},{"type":"Feature","id":35615,"properties":{"mag":5.59,"bv":"0.971"},"geometry":{"type":"Point","coordinates":[110.2429,-14.3605]}},{"type":"Feature","id":35626,"properties":{"mag":5.87,"bv":"1.604"},"geometry":{"type":"Point","coordinates":[110.2681,-25.8916]}},{"type":"Feature","id":35643,"properties":{"mag":5.74,"bv":"0.342"},"geometry":{"type":"Point","coordinates":[110.3229,45.2282]}},{"type":"Feature","id":35699,"properties":{"mag":5.09,"bv":"1.528"},"geometry":{"type":"Point","coordinates":[110.4869,20.4437]}},{"type":"Feature","id":35710,"properties":{"mag":5.12,"bv":"1.082"},"geometry":{"type":"Point","coordinates":[110.5109,36.7606]}},{"type":"Feature","id":35712,"properties":{"mag":5.99,"bv":"-0.069"},"geometry":{"type":"Point","coordinates":[110.5145,0.1771]}},{"type":"Feature","id":35727,"properties":{"mag":4.94,"bv":"-0.039"},"geometry":{"type":"Point","coordinates":[110.5564,-19.0166]}},{"type":"Feature","id":35749,"properties":{"mag":5.83,"bv":"0.352"},"geometry":{"type":"Point","coordinates":[110.6058,-5.9828]}},{"type":"Feature","id":35785,"properties":{"mag":5.8,"bv":"-0.078"},"geometry":{"type":"Point","coordinates":[110.7169,55.2814]}},{"type":"Feature","id":35795,"properties":{"mag":5.4,"bv":"-0.161"},"geometry":{"type":"Point","coordinates":[110.7529,-31.9238]}},{"type":"Feature","id":35846,"properties":{"mag":5.04,"bv":"0.902"},"geometry":{"type":"Point","coordinates":[110.8688,25.0505]}},{"type":"Feature","id":35848,"properties":{"mag":5.37,"bv":"1.539"},"geometry":{"type":"Point","coordinates":[110.8708,-27.8343]}},{"type":"Feature","id":35855,"properties":{"mag":5.41,"bv":"-0.169"},"geometry":{"type":"Point","coordinates":[110.8829,-32.2021]}},{"type":"Feature","id":35904,"properties":{"mag":2.45,"bv":"-0.083"},"geometry":{"type":"Point","coordinates":[111.0238,-29.3031]}},{"type":"Feature","id":35907,"properties":{"mag":5.23,"bv":"1.249"},"geometry":{"type":"Point","coordinates":[111.0353,40.6724]}},{"type":"Feature","id":35941,"properties":{"mag":5.77,"bv":"0.368"},"geometry":{"type":"Point","coordinates":[111.1394,27.6379]}},{"type":"Feature","id":35951,"properties":{"mag":5.18,"bv":"-0.035"},"geometry":{"type":"Point","coordinates":[111.1674,-16.2015]}},{"type":"Feature","id":35957,"properties":{"mag":5.35,"bv":"1.071"},"geometry":{"type":"Point","coordinates":[111.1827,-31.8089]}},{"type":"Feature","id":35984,"properties":{"mag":5.8,"bv":"1.610"},"geometry":{"type":"Point","coordinates":[111.2379,51.8873]}},{"type":"Feature","id":35987,"properties":{"mag":5.37,"bv":"0.105"},"geometry":{"type":"Point","coordinates":[111.2424,11.6695]}},{"type":"Feature","id":35998,"properties":{"mag":5.79,"bv":"0.432"},"geometry":{"type":"Point","coordinates":[111.2846,-13.752]}},{"type":"Feature","id":36024,"properties":{"mag":5.79,"bv":"-0.103"},"geometry":{"type":"Point","coordinates":[111.3553,-25.2178]}},{"type":"Feature","id":36039,"properties":{"mag":5.54,"bv":"1.281"},"geometry":{"type":"Point","coordinates":[111.4087,-79.0942]}},{"type":"Feature","id":36041,"properties":{"mag":4.99,"bv":"0.991"},"geometry":{"type":"Point","coordinates":[111.4121,9.2761]}},{"type":"Feature","id":36046,"properties":{"mag":3.78,"bv":"1.024"},"geometry":{"type":"Point","coordinates":[111.4317,27.7981]}},{"type":"Feature","id":36055,"properties":{"mag":5.98,"bv":"0.901"},"geometry":{"type":"Point","coordinates":[111.4633,-5.775]}},{"type":"Feature","id":36114,"properties":{"mag":5.09,"bv":"1.038"},"geometry":{"type":"Point","coordinates":[111.591,-51.0185]}},{"type":"Feature","id":36143,"properties":{"mag":5.9,"bv":"-0.153"},"geometry":{"type":"Point","coordinates":[111.6769,-34.1407]}},{"type":"Feature","id":36145,"properties":{"mag":4.61,"bv":"-0.001"},"geometry":{"type":"Point","coordinates":[111.6785,49.2115]}},{"type":"Feature","id":36156,"properties":{"mag":5.94,"bv":"0.336"},"geometry":{"type":"Point","coordinates":[111.7347,20.2576]}},{"type":"Feature","id":36168,"properties":{"mag":5.65,"bv":"-0.134"},"geometry":{"type":"Point","coordinates":[111.7478,-23.086]}},{"type":"Feature","id":36186,"properties":{"mag":5.6,"bv":"0.314"},"geometry":{"type":"Point","coordinates":[111.7833,-17.8649]}},{"type":"Feature","id":36188,"properties":{"mag":2.89,"bv":"-0.097"},"geometry":{"type":"Point","coordinates":[111.7877,8.2893]}},{"type":"Feature","id":36236,"properties":{"mag":5.98,"bv":"-0.088"},"geometry":{"type":"Point","coordinates":[111.9289,-22.8592]}},{"type":"Feature","id":36238,"properties":{"mag":5.2,"bv":"0.455"},"geometry":{"type":"Point","coordinates":[111.9348,21.4452]}},{"type":"Feature","id":36251,"properties":{"mag":5.79,"bv":"0.583"},"geometry":{"type":"Point","coordinates":[111.9653,-11.5569]}},{"type":"Feature","id":36258,"properties":{"mag":5.55,"bv":"-0.048"},"geometry":{"type":"Point","coordinates":[111.9965,-29.1559]}},{"type":"Feature","id":36265,"properties":{"mag":5.22,"bv":"0.221"},"geometry":{"type":"Point","coordinates":[112.0086,6.942]}},{"type":"Feature","id":36284,"properties":{"mag":4.33,"bv":"1.425"},"geometry":{"type":"Point","coordinates":[112.0408,8.9255]}},{"type":"Feature","id":36345,"properties":{"mag":5.95,"bv":"-0.156"},"geometry":{"type":"Point","coordinates":[112.2131,-31.8484]}},{"type":"Feature","id":36348,"properties":{"mag":5.7,"bv":"-0.092"},"geometry":{"type":"Point","coordinates":[112.2145,48.1839]}},{"type":"Feature","id":36362,"properties":{"mag":5.78,"bv":"-0.185"},"geometry":{"type":"Point","coordinates":[112.2705,-31.4562]}},{"type":"Feature","id":36363,"properties":{"mag":5.41,"bv":"-0.148"},"geometry":{"type":"Point","coordinates":[112.2737,-38.8121]}},{"type":"Feature","id":36366,"properties":{"mag":4.16,"bv":"0.320"},"geometry":{"type":"Point","coordinates":[112.278,31.7846]}},{"type":"Feature","id":36377,"properties":{"mag":3.25,"bv":"1.509"},"geometry":{"type":"Point","coordinates":[112.3076,-43.3014]}},{"type":"Feature","id":36388,"properties":{"mag":5.6,"bv":"1.493"},"geometry":{"type":"Point","coordinates":[112.3278,-1.9053]}},{"type":"Feature","id":36393,"properties":{"mag":5.07,"bv":"0.120"},"geometry":{"type":"Point","coordinates":[112.3352,28.1183]}},{"type":"Feature","id":36396,"properties":{"mag":5.75,"bv":"1.616"},"geometry":{"type":"Point","coordinates":[112.3421,-10.3267]}},{"type":"Feature","id":36399,"properties":{"mag":5.86,"bv":"0.487"},"geometry":{"type":"Point","coordinates":[112.3568,-7.5512]}},{"type":"Feature","id":36425,"properties":{"mag":4.55,"bv":"1.276"},"geometry":{"type":"Point","coordinates":[112.4491,12.0066]}},{"type":"Feature","id":36429,"properties":{"mag":5.01,"bv":"1.117"},"geometry":{"type":"Point","coordinates":[112.4532,27.9161]}},{"type":"Feature","id":36431,"properties":{"mag":4.85,"bv":"0.243"},"geometry":{"type":"Point","coordinates":[112.4642,-23.0243]}},{"type":"Feature","id":36439,"properties":{"mag":5.35,"bv":"0.470"},"geometry":{"type":"Point","coordinates":[112.4832,49.6725]}},{"type":"Feature","id":36444,"properties":{"mag":5.87,"bv":"1.010"},"geometry":{"type":"Point","coordinates":[112.4988,-52.6512]}},{"type":"Feature","id":36496,"properties":{"mag":5.95,"bv":"1.585"},"geometry":{"type":"Point","coordinates":[112.6288,-54.3994]}},{"type":"Feature","id":36514,"properties":{"mag":4.65,"bv":"0.904"},"geometry":{"type":"Point","coordinates":[112.6775,-30.9623]}},{"type":"Feature","id":36528,"properties":{"mag":5.63,"bv":"1.100"},"geometry":{"type":"Point","coordinates":[112.7196,68.4656]}},{"type":"Feature","id":36547,"properties":{"mag":4.92,"bv":"1.633"},"geometry":{"type":"Point","coordinates":[112.7686,82.4115]}},{"type":"Feature","id":36616,"properties":{"mag":5.45,"bv":"1.126"},"geometry":{"type":"Point","coordinates":[112.9517,17.086]}},{"type":"Feature","id":36640,"properties":{"mag":5.9,"bv":"0.540"},"geometry":{"type":"Point","coordinates":[113.024,-8.8813]}},{"type":"Feature","id":36641,"properties":{"mag":5.24,"bv":"0.230"},"geometry":{"type":"Point","coordinates":[113.0248,1.9145]}},{"type":"Feature","id":36721,"properties":{"mag":5.84,"bv":"0.156"},"geometry":{"type":"Point","coordinates":[113.2907,-24.7107]}},{"type":"Feature","id":36723,"properties":{"mag":5.59,"bv":"0.321"},"geometry":{"type":"Point","coordinates":[113.2986,3.2904]}},{"type":"Feature","id":36732,"properties":{"mag":5.64,"bv":"1.121"},"geometry":{"type":"Point","coordinates":[113.3315,-19.4125]}},{"type":"Feature","id":36760,"properties":{"mag":5.27,"bv":"0.055"},"geometry":{"type":"Point","coordinates":[113.402,15.8267]}},{"type":"Feature","id":36773,"properties":{"mag":4.82,"bv":"1.362"},"geometry":{"type":"Point","coordinates":[113.4498,-14.5239]}},{"type":"Feature","id":36778,"properties":{"mag":5.42,"bv":"-0.078"},"geometry":{"type":"Point","coordinates":[113.4627,-36.3384]}},{"type":"Feature","id":36795,"properties":{"mag":4.44,"bv":"0.521"},"geometry":{"type":"Point","coordinates":[113.5133,-22.2961]}},{"type":"Feature","id":36812,"properties":{"mag":5.83,"bv":"-0.018"},"geometry":{"type":"Point","coordinates":[113.5662,3.3717]}},{"type":"Feature","id":36817,"properties":{"mag":5.06,"bv":"0.468"},"geometry":{"type":"Point","coordinates":[113.5776,-23.4737]}},{"type":"Feature","id":36848,"properties":{"mag":5.78,"bv":"1.045"},"geometry":{"type":"Point","coordinates":[113.645,-27.0123]}},{"type":"Feature","id":36850,"properties":{"mag":1.58,"bv":"0.034"},"geometry":{"type":"Point","coordinates":[113.6494,31.8883]}},{"type":"Feature","id":36896,"properties":{"mag":5.34,"bv":"1.010"},"geometry":{"type":"Point","coordinates":[113.7867,30.9609]}},{"type":"Feature","id":36917,"properties":{"mag":4.65,"bv":"-0.111"},"geometry":{"type":"Point","coordinates":[113.8454,-28.3693]}},{"type":"Feature","id":36942,"properties":{"mag":4.93,"bv":"1.373"},"geometry":{"type":"Point","coordinates":[113.9155,-52.5338]}},{"type":"Feature","id":36962,"properties":{"mag":4.06,"bv":"1.540"},"geometry":{"type":"Point","coordinates":[113.9806,26.8957]}},{"type":"Feature","id":36981,"properties":{"mag":5.66,"bv":"-0.067"},"geometry":{"type":"Point","coordinates":[114.0162,-14.4928]}},{"type":"Feature","id":37023,"properties":{"mag":5.66,"bv":"1.560"},"geometry":{"type":"Point","coordinates":[114.1318,46.1803]}},{"type":"Feature","id":37031,"properties":{"mag":5.89,"bv":"0.602"},"geometry":{"type":"Point","coordinates":[114.1446,5.8622]}},{"type":"Feature","id":37036,"properties":{"mag":5.69,"bv":"-0.165"},"geometry":{"type":"Point","coordinates":[114.171,-19.7023]}},{"type":"Feature","id":37043,"properties":{"mag":5.69,"bv":"-0.037"},"geometry":{"type":"Point","coordinates":[114.183,-48.8302]}},{"type":"Feature","id":37046,"properties":{"mag":5.93,"bv":"1.123"},"geometry":{"type":"Point","coordinates":[114.196,55.7551]}},{"type":"Feature","id":37088,"properties":{"mag":5.14,"bv":"0.442"},"geometry":{"type":"Point","coordinates":[114.3195,-4.111]}},{"type":"Feature","id":37096,"properties":{"mag":4.53,"bv":"-0.081"},"geometry":{"type":"Point","coordinates":[114.3421,-34.9685]}},{"type":"Feature","id":37140,"properties":{"mag":5.93,"bv":"0.221"},"geometry":{"type":"Point","coordinates":[114.4744,48.7738]}},{"type":"Feature","id":37173,"properties":{"mag":4.69,"bv":"-0.100"},"geometry":{"type":"Point","coordinates":[114.5752,-25.3648]}},{"type":"Feature","id":37174,"properties":{"mag":5.68,"bv":"0.683"},"geometry":{"type":"Point","coordinates":[114.5759,-48.6014]}},{"type":"Feature","id":37204,"properties":{"mag":5.58,"bv":"0.921"},"geometry":{"type":"Point","coordinates":[114.6369,35.0486]}},{"type":"Feature","id":37223,"properties":{"mag":5.78,"bv":"-0.148"},"geometry":{"type":"Point","coordinates":[114.6829,-36.4968]}},{"type":"Feature","id":37229,"properties":{"mag":3.8,"bv":"-0.159"},"geometry":{"type":"Point","coordinates":[114.7078,-26.8038]}},{"type":"Feature","id":37265,"properties":{"mag":4.89,"bv":"0.413"},"geometry":{"type":"Point","coordinates":[114.7914,34.5843]}},{"type":"Feature","id":37279,"properties":{"mag":0.4,"bv":"0.432"},"geometry":{"type":"Point","coordinates":[114.8255,5.225]}},{"type":"Feature","id":37297,"properties":{"mag":4.84,"bv":"-0.189"},"geometry":{"type":"Point","coordinates":[114.8639,-38.308]}},{"type":"Feature","id":37300,"properties":{"mag":5.04,"bv":"1.616"},"geometry":{"type":"Point","coordinates":[114.8691,17.6745]}},{"type":"Feature","id":37322,"properties":{"mag":5.73,"bv":"-0.125"},"geometry":{"type":"Point","coordinates":[114.9326,-38.1393]}},{"type":"Feature","id":37329,"properties":{"mag":5.76,"bv":"-0.071"},"geometry":{"type":"Point","coordinates":[114.9495,-38.2607]}},{"type":"Feature","id":37345,"properties":{"mag":5.99,"bv":"-0.040"},"geometry":{"type":"Point","coordinates":[114.9916,-37.5794]}},{"type":"Feature","id":37364,"properties":{"mag":5.92,"bv":"1.158"},"geometry":{"type":"Point","coordinates":[115.0564,-19.6609]}},{"type":"Feature","id":37369,"properties":{"mag":5.77,"bv":"1.654"},"geometry":{"type":"Point","coordinates":[115.0612,38.3445]}},{"type":"Feature","id":37379,"properties":{"mag":4.98,"bv":"1.543"},"geometry":{"type":"Point","coordinates":[115.0967,-15.2639]}},{"type":"Feature","id":37391,"properties":{"mag":5.05,"bv":"1.604"},"geometry":{"type":"Point","coordinates":[115.127,87.0201]}},{"type":"Feature","id":37428,"properties":{"mag":5.93,"bv":"1.561"},"geometry":{"type":"Point","coordinates":[115.2438,23.0185]}},{"type":"Feature","id":37441,"properties":{"mag":5.58,"bv":"1.011"},"geometry":{"type":"Point","coordinates":[115.3017,48.1315]}},{"type":"Feature","id":37447,"properties":{"mag":3.94,"bv":"1.022"},"geometry":{"type":"Point","coordinates":[115.3118,-9.5511]}},{"type":"Feature","id":37450,"properties":{"mag":5.41,"bv":"-0.130"},"geometry":{"type":"Point","coordinates":[115.3159,-38.5335]}},{"type":"Feature","id":37478,"properties":{"mag":5.95,"bv":"-0.032"},"geometry":{"type":"Point","coordinates":[115.3965,3.6248]}},{"type":"Feature","id":37504,"properties":{"mag":3.93,"bv":"1.033"},"geometry":{"type":"Point","coordinates":[115.4553,-72.6061]}},{"type":"Feature","id":37508,"properties":{"mag":5.79,"bv":"1.669"},"geometry":{"type":"Point","coordinates":[115.466,13.4805]}},{"type":"Feature","id":37521,"properties":{"mag":5.55,"bv":"1.642"},"geometry":{"type":"Point","coordinates":[115.5134,14.2085]}},{"type":"Feature","id":37590,"properties":{"mag":5.64,"bv":"0.990"},"geometry":{"type":"Point","coordinates":[115.7006,-26.3513]}},{"type":"Feature","id":37606,"properties":{"mag":5.04,"bv":"0.765"},"geometry":{"type":"Point","coordinates":[115.7379,-45.1731]}},{"type":"Feature","id":37609,"properties":{"mag":4.93,"bv":"0.104"},"geometry":{"type":"Point","coordinates":[115.7517,58.7104]}},{"type":"Feature","id":37623,"properties":{"mag":5.6,"bv":"-0.130"},"geometry":{"type":"Point","coordinates":[115.7999,-36.0501]}},{"type":"Feature","id":37629,"properties":{"mag":4.23,"bv":"1.118"},"geometry":{"type":"Point","coordinates":[115.828,28.8835]}},{"type":"Feature","id":37648,"properties":{"mag":4.63,"bv":"1.632"},"geometry":{"type":"Point","coordinates":[115.8849,-28.4109]}},{"type":"Feature","id":37664,"properties":{"mag":5.12,"bv":"1.104"},"geometry":{"type":"Point","coordinates":[115.9247,-40.9337]}},{"type":"Feature","id":37677,"properties":{"mag":3.94,"bv":"0.160"},"geometry":{"type":"Point","coordinates":[115.952,-28.9548]}},{"type":"Feature","id":37701,"properties":{"mag":5.31,"bv":"-0.001"},"geometry":{"type":"Point","coordinates":[116.0174,50.4338]}},{"type":"Feature","id":37704,"properties":{"mag":5.3,"bv":"1.535"},"geometry":{"type":"Point","coordinates":[116.0288,25.7842]}},{"type":"Feature","id":37710,"properties":{"mag":5.8,"bv":"0.320"},"geometry":{"type":"Point","coordinates":[116.0404,-36.0625]}},{"type":"Feature","id":37740,"properties":{"mag":3.57,"bv":"0.932"},"geometry":{"type":"Point","coordinates":[116.1119,24.398]}},{"type":"Feature","id":37751,"properties":{"mag":5.62,"bv":"-0.191"},"geometry":{"type":"Point","coordinates":[116.1424,-24.6741]}},{"type":"Feature","id":37752,"properties":{"mag":5.89,"bv":"-0.115"},"geometry":{"type":"Point","coordinates":[116.1424,-37.9429]}},{"type":"Feature","id":37819,"properties":{"mag":3.62,"bv":"1.706"},"geometry":{"type":"Point","coordinates":[116.3137,-37.9686]}},{"type":"Feature","id":37826,"properties":{"mag":1.16,"bv":"0.991"},"geometry":{"type":"Point","coordinates":[116.329,28.0262]}},{"type":"Feature","id":37853,"properties":{"mag":5.36,"bv":"0.589"},"geometry":{"type":"Point","coordinates":[116.3959,-34.1724]}},{"type":"Feature","id":37891,"properties":{"mag":5.03,"bv":"0.342"},"geometry":{"type":"Point","coordinates":[116.487,-14.5638]}},{"type":"Feature","id":37901,"properties":{"mag":5.49,"bv":"1.378"},"geometry":{"type":"Point","coordinates":[116.5091,-6.7725]}},{"type":"Feature","id":37908,"properties":{"mag":4.89,"bv":"1.425"},"geometry":{"type":"Point","coordinates":[116.531,18.51]}},{"type":"Feature","id":37915,"properties":{"mag":5.87,"bv":"-0.111"},"geometry":{"type":"Point","coordinates":[116.5439,-37.9337]}},{"type":"Feature","id":37921,"properties":{"mag":5.25,"bv":"0.018"},"geometry":{"type":"Point","coordinates":[116.5675,10.7683]}},{"type":"Feature","id":37946,"properties":{"mag":5.15,"bv":"1.588"},"geometry":{"type":"Point","coordinates":[116.6637,37.5174]}},{"type":"Feature","id":37949,"properties":{"mag":5.93,"bv":"1.183"},"geometry":{"type":"Point","coordinates":[116.667,65.4557]}},{"type":"Feature","id":37995,"properties":{"mag":5.9,"bv":"-0.180"},"geometry":{"type":"Point","coordinates":[116.8023,-22.5195]}},{"type":"Feature","id":38010,"properties":{"mag":5.07,"bv":"-0.112"},"geometry":{"type":"Point","coordinates":[116.8541,-38.5111]}},{"type":"Feature","id":38016,"properties":{"mag":5.14,"bv":"1.635"},"geometry":{"type":"Point","coordinates":[116.8763,33.4157]}},{"type":"Feature","id":38020,"properties":{"mag":5.22,"bv":"-0.151"},"geometry":{"type":"Point","coordinates":[116.8813,-46.6085]}},{"type":"Feature","id":38048,"properties":{"mag":5.48,"bv":"0.478"},"geometry":{"type":"Point","coordinates":[116.9863,-12.1927]}},{"type":"Feature","id":38070,"properties":{"mag":4.4,"bv":"-0.070"},"geometry":{"type":"Point","coordinates":[117.0215,-25.9372]}},{"type":"Feature","id":38089,"properties":{"mag":4.69,"bv":"1.039"},"geometry":{"type":"Point","coordinates":[117.084,-47.0777]}},{"type":"Feature","id":38146,"properties":{"mag":5.32,"bv":"0.751"},"geometry":{"type":"Point","coordinates":[117.257,-24.9122]}},{"type":"Feature","id":38152,"properties":{"mag":5.57,"bv":"1.116"},"geometry":{"type":"Point","coordinates":[117.278,-56.4104]}},{"type":"Feature","id":38159,"properties":{"mag":5.82,"bv":"-0.142"},"geometry":{"type":"Point","coordinates":[117.3036,-46.8577]}},{"type":"Feature","id":38160,"properties":{"mag":5.78,"bv":"0.428"},"geometry":{"type":"Point","coordinates":[117.3038,-60.2837]}},{"type":"Feature","id":38164,"properties":{"mag":4.1,"bv":"-0.160"},"geometry":{"type":"Point","coordinates":[117.3096,-46.3732]}},{"type":"Feature","id":38167,"properties":{"mag":5.94,"bv":"-0.051"},"geometry":{"type":"Point","coordinates":[117.311,-35.2433]}},{"type":"Feature","id":38170,"properties":{"mag":3.34,"bv":"1.218"},"geometry":{"type":"Point","coordinates":[117.3236,-24.8598]}},{"type":"Feature","id":38200,"properties":{"mag":5.61,"bv":"1.617"},"geometry":{"type":"Point","coordinates":[117.3975,-33.2889]}},{"type":"Feature","id":38210,"properties":{"mag":5.78,"bv":"-0.040"},"geometry":{"type":"Point","coordinates":[117.4208,-66.196]}},{"type":"Feature","id":38211,"properties":{"mag":5.17,"bv":"1.282"},"geometry":{"type":"Point","coordinates":[117.4217,-17.2284]}},{"type":"Feature","id":38253,"properties":{"mag":5.6,"bv":"1.446"},"geometry":{"type":"Point","coordinates":[117.5441,-9.1834]}},{"type":"Feature","id":38267,"properties":{"mag":5.89,"bv":"1.088"},"geometry":{"type":"Point","coordinates":[117.5993,-50.5095]}},{"type":"Feature","id":38373,"properties":{"mag":5.12,"bv":"-0.116"},"geometry":{"type":"Point","coordinates":[117.925,1.7669]}},{"type":"Feature","id":38375,"properties":{"mag":5.62,"bv":"0.956"},"geometry":{"type":"Point","coordinates":[117.9293,-21.1737]}},{"type":"Feature","id":38382,"properties":{"mag":5.16,"bv":"0.600"},"geometry":{"type":"Point","coordinates":[117.9429,-13.898]}},{"type":"Feature","id":38414,"properties":{"mag":3.71,"bv":"1.012"},"geometry":{"type":"Point","coordinates":[118.0543,-40.5758]}},{"type":"Feature","id":38423,"properties":{"mag":5.01,"bv":"0.470"},"geometry":{"type":"Point","coordinates":[118.0653,-34.7054]}},{"type":"Feature","id":38427,"properties":{"mag":5.69,"bv":"0.368"},"geometry":{"type":"Point","coordinates":[118.0787,-14.8462]}},{"type":"Feature","id":38438,"properties":{"mag":5.7,"bv":"-0.151"},"geometry":{"type":"Point","coordinates":[118.1239,-54.3672]}},{"type":"Feature","id":38455,"properties":{"mag":4.49,"bv":"-0.188"},"geometry":{"type":"Point","coordinates":[118.161,-38.8628]}},{"type":"Feature","id":38474,"properties":{"mag":5.76,"bv":"0.412"},"geometry":{"type":"Point","coordinates":[118.1994,-5.4283]}},{"type":"Feature","id":38497,"properties":{"mag":5.44,"bv":"1.161"},"geometry":{"type":"Point","coordinates":[118.2646,-36.3638]}},{"type":"Feature","id":38500,"properties":{"mag":4.63,"bv":"-0.228"},"geometry":{"type":"Point","coordinates":[118.2651,-49.613]}},{"type":"Feature","id":38518,"properties":{"mag":4.22,"bv":"-0.130"},"geometry":{"type":"Point","coordinates":[118.3257,-48.1029]}},{"type":"Feature","id":38538,"properties":{"mag":4.97,"bv":"0.098"},"geometry":{"type":"Point","coordinates":[118.3742,26.7658]}},{"type":"Feature","id":38593,"properties":{"mag":5.48,"bv":"-0.175"},"geometry":{"type":"Point","coordinates":[118.5459,-35.8773]}},{"type":"Feature","id":38639,"properties":{"mag":5.47,"bv":"1.462"},"geometry":{"type":"Point","coordinates":[118.6779,47.5646]}},{"type":"Feature","id":38656,"properties":{"mag":5.62,"bv":"1.298"},"geometry":{"type":"Point","coordinates":[118.7222,-57.3028]}},{"type":"Feature","id":38712,"properties":{"mag":5.86,"bv":"0.369"},"geometry":{"type":"Point","coordinates":[118.881,8.8628]}},{"type":"Feature","id":38722,"properties":{"mag":5.38,"bv":"-0.035"},"geometry":{"type":"Point","coordinates":[118.9162,19.884]}},{"type":"Feature","id":38783,"properties":{"mag":5.74,"bv":"1.554"},"geometry":{"type":"Point","coordinates":[119.0777,-60.5264]}},{"type":"Feature","id":38827,"properties":{"mag":3.46,"bv":"-0.177"},"geometry":{"type":"Point","coordinates":[119.1946,-52.9824]}},{"type":"Feature","id":38835,"properties":{"mag":4.2,"bv":"0.718"},"geometry":{"type":"Point","coordinates":[119.2147,-22.8801]}},{"type":"Feature","id":38846,"properties":{"mag":5.36,"bv":"-0.166"},"geometry":{"type":"Point","coordinates":[119.2408,-43.5004]}},{"type":"Feature","id":38848,"properties":{"mag":5.8,"bv":"1.285"},"geometry":{"type":"Point","coordinates":[119.2477,15.7903]}},{"type":"Feature","id":38872,"properties":{"mag":5.08,"bv":"-0.166"},"geometry":{"type":"Point","coordinates":[119.3268,-44.1099]}},{"type":"Feature","id":38901,"properties":{"mag":4.76,"bv":"0.151"},"geometry":{"type":"Point","coordinates":[119.4171,-30.3346]}},{"type":"Feature","id":38908,"properties":{"mag":5.59,"bv":"0.573"},"geometry":{"type":"Point","coordinates":[119.4455,-60.3031]}},{"type":"Feature","id":38917,"properties":{"mag":5.14,"bv":"1.263"},"geometry":{"type":"Point","coordinates":[119.4655,-45.5777]}},{"type":"Feature","id":38957,"properties":{"mag":4.47,"bv":"-0.180"},"geometry":{"type":"Point","coordinates":[119.5602,-49.2449]}},{"type":"Feature","id":38962,"properties":{"mag":5.3,"bv":"0.933"},"geometry":{"type":"Point","coordinates":[119.5861,2.2248]}},{"type":"Feature","id":38994,"properties":{"mag":5.77,"bv":"-0.082"},"geometry":{"type":"Point","coordinates":[119.7106,-60.8245]}},{"type":"Feature","id":39014,"properties":{"mag":5.98,"bv":"-0.143"},"geometry":{"type":"Point","coordinates":[119.7575,-45.2158]}},{"type":"Feature","id":39023,"properties":{"mag":5.09,"bv":"1.111"},"geometry":{"type":"Point","coordinates":[119.7738,-23.3104]}},{"type":"Feature","id":39061,"properties":{"mag":5.22,"bv":"0.400"},"geometry":{"type":"Point","coordinates":[119.8682,-39.2969]}},{"type":"Feature","id":39070,"properties":{"mag":5.19,"bv":"1.758"},"geometry":{"type":"Point","coordinates":[119.9064,-60.5871]}},{"type":"Feature","id":39079,"properties":{"mag":4.93,"bv":"1.205"},"geometry":{"type":"Point","coordinates":[119.934,-3.6796]}},{"type":"Feature","id":39095,"properties":{"mag":4.61,"bv":"0.087"},"geometry":{"type":"Point","coordinates":[119.9669,-18.3992]}},{"type":"Feature","id":39117,"properties":{"mag":5.37,"bv":"1.424"},"geometry":{"type":"Point","coordinates":[120.0489,73.9179]}},{"type":"Feature","id":39138,"properties":{"mag":4.81,"bv":"-0.173"},"geometry":{"type":"Point","coordinates":[120.0832,-63.5675]}},{"type":"Feature","id":39177,"properties":{"mag":5.6,"bv":"1.317"},"geometry":{"type":"Point","coordinates":[120.1971,17.3087]}},{"type":"Feature","id":39184,"properties":{"mag":5.87,"bv":"-0.134"},"geometry":{"type":"Point","coordinates":[120.2081,-54.1513]}},{"type":"Feature","id":39191,"properties":{"mag":5.87,"bv":"1.021"},"geometry":{"type":"Point","coordinates":[120.2328,25.3928]}},{"type":"Feature","id":39211,"properties":{"mag":4.69,"bv":"1.475"},"geometry":{"type":"Point","coordinates":[120.3056,-1.3926]}},{"type":"Feature","id":39213,"properties":{"mag":5.65,"bv":"0.013"},"geometry":{"type":"Point","coordinates":[120.3079,4.8798]}},{"type":"Feature","id":39221,"properties":{"mag":5.78,"bv":"0.421"},"geometry":{"type":"Point","coordinates":[120.3366,59.0474]}},{"type":"Feature","id":39236,"properties":{"mag":5.99,"bv":"-0.024"},"geometry":{"type":"Point","coordinates":[120.3762,16.4553]}},{"type":"Feature","id":39251,"properties":{"mag":5.9,"bv":"0.147"},"geometry":{"type":"Point","coordinates":[120.4064,-37.2837]}},{"type":"Feature","id":39311,"properties":{"mag":4.39,"bv":"1.252"},"geometry":{"type":"Point","coordinates":[120.5664,2.3346]}},{"type":"Feature","id":39360,"properties":{"mag":5.52,"bv":"-0.152"},"geometry":{"type":"Point","coordinates":[120.6866,-41.3098]}},{"type":"Feature","id":39380,"properties":{"mag":5.83,"bv":"1.225"},"geometry":{"type":"Point","coordinates":[120.7673,-32.4635]}},{"type":"Feature","id":39424,"properties":{"mag":4.94,"bv":"1.130"},"geometry":{"type":"Point","coordinates":[120.8795,27.7943]}},{"type":"Feature","id":39429,"properties":{"mag":2.21,"bv":"-0.269"},"geometry":{"type":"Point","coordinates":[120.896,-40.0031]}},{"type":"Feature","id":39487,"properties":{"mag":5.25,"bv":"1.882"},"geometry":{"type":"Point","coordinates":[121.0675,-32.6748]}},{"type":"Feature","id":39527,"properties":{"mag":5.96,"bv":"1.213"},"geometry":{"type":"Point","coordinates":[121.1767,-50.5904]}},{"type":"Feature","id":39538,"properties":{"mag":5.39,"bv":"-0.040"},"geometry":{"type":"Point","coordinates":[121.1961,79.4796]}},{"type":"Feature","id":39566,"properties":{"mag":5.52,"bv":"1.347"},"geometry":{"type":"Point","coordinates":[121.2655,-53.1079]}},{"type":"Feature","id":39567,"properties":{"mag":5.14,"bv":"0.018"},"geometry":{"type":"Point","coordinates":[121.2687,13.1182]}},{"type":"Feature","id":39659,"properties":{"mag":5.96,"bv":"1.652"},"geometry":{"type":"Point","coordinates":[121.5766,22.6355]}},{"type":"Feature","id":39690,"properties":{"mag":5.04,"bv":"1.488"},"geometry":{"type":"Point","coordinates":[121.6681,-45.266]}},{"type":"Feature","id":39734,"properties":{"mag":5.33,"bv":"0.100"},"geometry":{"type":"Point","coordinates":[121.8252,-20.5543]}},{"type":"Feature","id":39757,"properties":{"mag":2.83,"bv":"0.458"},"geometry":{"type":"Point","coordinates":[121.886,-24.3043]}},{"type":"Feature","id":39780,"properties":{"mag":5.3,"bv":"0.642"},"geometry":{"type":"Point","coordinates":[121.9411,21.5818]}},{"type":"Feature","id":39794,"properties":{"mag":4.35,"bv":"-0.113"},"geometry":{"type":"Point","coordinates":[121.9825,-68.6171]}},{"type":"Feature","id":39847,"properties":{"mag":4.78,"bv":"0.048"},"geometry":{"type":"Point","coordinates":[122.1144,51.5067]}},{"type":"Feature","id":39863,"properties":{"mag":4.36,"bv":"0.970"},"geometry":{"type":"Point","coordinates":[122.1485,-2.9838]}},{"type":"Feature","id":39903,"properties":{"mag":4.74,"bv":"0.437"},"geometry":{"type":"Point","coordinates":[122.2528,-61.3024]}},{"type":"Feature","id":39906,"properties":{"mag":4.4,"bv":"-0.160"},"geometry":{"type":"Point","coordinates":[122.2568,-19.245]}},{"type":"Feature","id":39919,"properties":{"mag":5.66,"bv":"-0.101"},"geometry":{"type":"Point","coordinates":[122.2896,-48.6844]}},{"type":"Feature","id":39943,"properties":{"mag":5.66,"bv":"-0.153"},"geometry":{"type":"Point","coordinates":[122.3689,-16.2489]}},{"type":"Feature","id":39953,"properties":{"mag":1.75,"bv":"-0.145"},"geometry":{"type":"Point","coordinates":[122.3831,-47.3366]}},{"type":"Feature","id":39957,"properties":{"mag":5.66,"bv":"0.204"},"geometry":{"type":"Point","coordinates":[122.3901,-56.0854]}},{"type":"Feature","id":39961,"properties":{"mag":5.2,"bv":"-0.173"},"geometry":{"type":"Point","coordinates":[122.3996,-44.1228]}},{"type":"Feature","id":39970,"properties":{"mag":5.23,"bv":"-0.199"},"geometry":{"type":"Point","coordinates":[122.4298,-47.9372]}},{"type":"Feature","id":39995,"properties":{"mag":5.91,"bv":"1.365"},"geometry":{"type":"Point","coordinates":[122.5157,58.2482]}},{"type":"Feature","id":40023,"properties":{"mag":5.73,"bv":"0.825"},"geometry":{"type":"Point","coordinates":[122.6133,25.5073]}},{"type":"Feature","id":40035,"properties":{"mag":5.53,"bv":"0.488"},"geometry":{"type":"Point","coordinates":[122.6659,-13.7992]}},{"type":"Feature","id":40077,"properties":{"mag":5.83,"bv":"-0.146"},"geometry":{"type":"Point","coordinates":[122.795,-48.462]}},{"type":"Feature","id":40084,"properties":{"mag":4.72,"bv":"0.939"},"geometry":{"type":"Point","coordinates":[122.8179,-12.927]}},{"type":"Feature","id":40091,"properties":{"mag":4.44,"bv":"1.590"},"geometry":{"type":"Point","coordinates":[122.8396,-39.6185]}},{"type":"Feature","id":40096,"properties":{"mag":4.73,"bv":"0.164"},"geometry":{"type":"Point","coordinates":[122.8579,-42.9873]}},{"type":"Feature","id":40107,"properties":{"mag":5.36,"bv":"0.892"},"geometry":{"type":"Point","coordinates":[122.8875,-7.7725]}},{"type":"Feature","id":40155,"properties":{"mag":5.77,"bv":"0.626"},"geometry":{"type":"Point","coordinates":[122.9999,-46.6444]}},{"type":"Feature","id":40167,"properties":{"mag":4.67,"bv":"0.531"},"geometry":{"type":"Point","coordinates":[123.053,17.6478]}},{"type":"Feature","id":40183,"properties":{"mag":6,"bv":"-0.113"},"geometry":{"type":"Point","coordinates":[123.1283,-46.2643]}},{"type":"Feature","id":40215,"properties":{"mag":5.34,"bv":"1.037"},"geometry":{"type":"Point","coordinates":[123.2033,68.4741]}},{"type":"Feature","id":40240,"properties":{"mag":5.62,"bv":"-0.073"},"geometry":{"type":"Point","coordinates":[123.2869,29.6565]}},{"type":"Feature","id":40259,"properties":{"mag":4.99,"bv":"1.066"},"geometry":{"type":"Point","coordinates":[123.3332,-15.7882]}},{"type":"Feature","id":40274,"properties":{"mag":4.78,"bv":"-0.110"},"geometry":{"type":"Point","coordinates":[123.373,-35.8995]}},{"type":"Feature","id":40282,"properties":{"mag":5.52,"bv":"1.651"},"geometry":{"type":"Point","coordinates":[123.3927,-50.1961]}},{"type":"Feature","id":40285,"properties":{"mag":5.14,"bv":"-0.139"},"geometry":{"type":"Point","coordinates":[123.4006,-46.9916]}},{"type":"Feature","id":40305,"properties":{"mag":5.88,"bv":"1.016"},"geometry":{"type":"Point","coordinates":[123.4591,56.4522]}},{"type":"Feature","id":40321,"properties":{"mag":5.09,"bv":"-0.184"},"geometry":{"type":"Point","coordinates":[123.493,-36.3223]}},{"type":"Feature","id":40326,"properties":{"mag":4.42,"bv":"1.170"},"geometry":{"type":"Point","coordinates":[123.5122,-40.3479]}},{"type":"Feature","id":40344,"properties":{"mag":5.77,"bv":"1.024"},"geometry":{"type":"Point","coordinates":[123.5552,-35.49]}},{"type":"Feature","id":40357,"properties":{"mag":5.86,"bv":"-0.176"},"geometry":{"type":"Point","coordinates":[123.5995,-45.8345]}},{"type":"Feature","id":40429,"properties":{"mag":5.16,"bv":"0.086"},"geometry":{"type":"Point","coordinates":[123.8163,-62.9156]}},{"type":"Feature","id":40526,"properties":{"mag":3.53,"bv":"1.481"},"geometry":{"type":"Point","coordinates":[124.1288,9.1855]}},{"type":"Feature","id":40646,"properties":{"mag":5.63,"bv":"0.182"},"geometry":{"type":"Point","coordinates":[124.4601,59.5711]}},{"type":"Feature","id":40678,"properties":{"mag":5.59,"bv":"1.246"},"geometry":{"type":"Point","coordinates":[124.5725,-35.4517]}},{"type":"Feature","id":40680,"properties":{"mag":5.06,"bv":"1.129"},"geometry":{"type":"Point","coordinates":[124.5784,-65.6132]}},{"type":"Feature","id":40693,"properties":{"mag":5.95,"bv":"0.754"},"geometry":{"type":"Point","coordinates":[124.5998,-12.6322]}},{"type":"Feature","id":40702,"properties":{"mag":4.05,"bv":"0.413"},"geometry":{"type":"Point","coordinates":[124.6315,-76.9197]}},{"type":"Feature","id":40706,"properties":{"mag":4.44,"bv":"0.222"},"geometry":{"type":"Point","coordinates":[124.6388,-36.6593]}},{"type":"Feature","id":40772,"properties":{"mag":5.73,"bv":"0.891"},"geometry":{"type":"Point","coordinates":[124.8215,62.5072]}},{"type":"Feature","id":40793,"properties":{"mag":5.55,"bv":"0.902"},"geometry":{"type":"Point","coordinates":[124.8845,75.7569]}},{"type":"Feature","id":40817,"properties":{"mag":5.33,"bv":"-0.063"},"geometry":{"type":"Point","coordinates":[124.954,-71.5149]}},{"type":"Feature","id":40834,"properties":{"mag":5.63,"bv":"-0.099"},"geometry":{"type":"Point","coordinates":[125.0022,-71.5054]}},{"type":"Feature","id":40843,"properties":{"mag":5.13,"bv":"0.487"},"geometry":{"type":"Point","coordinates":[125.0161,27.2177]}},{"type":"Feature","id":40866,"properties":{"mag":5.8,"bv":"1.137"},"geometry":{"type":"Point","coordinates":[125.0874,20.7477]}},{"type":"Feature","id":40875,"properties":{"mag":5.89,"bv":"0.421"},"geometry":{"type":"Point","coordinates":[125.1086,57.7433]}},{"type":"Feature","id":40881,"properties":{"mag":5.92,"bv":"-0.039"},"geometry":{"type":"Point","coordinates":[125.1339,24.0223]}},{"type":"Feature","id":40888,"properties":{"mag":4.34,"bv":"1.161"},"geometry":{"type":"Point","coordinates":[125.1606,-77.4845]}},{"type":"Feature","id":40889,"properties":{"mag":6,"bv":"1.537"},"geometry":{"type":"Point","coordinates":[125.168,72.4072]}},{"type":"Feature","id":40932,"properties":{"mag":5.96,"bv":"-0.092"},"geometry":{"type":"Point","coordinates":[125.3004,-57.9732]}},{"type":"Feature","id":40943,"properties":{"mag":5.18,"bv":"-0.187"},"geometry":{"type":"Point","coordinates":[125.3377,-36.4842]}},{"type":"Feature","id":40944,"properties":{"mag":5.58,"bv":"0.771"},"geometry":{"type":"Point","coordinates":[125.3384,-20.0791]}},{"type":"Feature","id":40945,"properties":{"mag":4.83,"bv":"1.419"},"geometry":{"type":"Point","coordinates":[125.3459,-33.0544]}},{"type":"Feature","id":40990,"properties":{"mag":5.71,"bv":"1.050"},"geometry":{"type":"Point","coordinates":[125.4775,-17.5863]}},{"type":"Feature","id":41003,"properties":{"mag":5.28,"bv":"0.014"},"geometry":{"type":"Point","coordinates":[125.5186,-73.4]}},{"type":"Feature","id":41037,"properties":{"mag":1.86,"bv":"1.196"},"geometry":{"type":"Point","coordinates":[125.6285,-59.5095]}},{"type":"Feature","id":41039,"properties":{"mag":4.79,"bv":"-0.146"},"geometry":{"type":"Point","coordinates":[125.6321,-48.4904]}},{"type":"Feature","id":41074,"properties":{"mag":5.88,"bv":"0.379"},"geometry":{"type":"Point","coordinates":[125.7081,-26.3482]}},{"type":"Feature","id":41075,"properties":{"mag":4.25,"bv":"1.550"},"geometry":{"type":"Point","coordinates":[125.7088,43.1881]}},{"type":"Feature","id":41080,"properties":{"mag":5.92,"bv":"1.635"},"geometry":{"type":"Point","coordinates":[125.7254,-7.5431]}},{"type":"Feature","id":41081,"properties":{"mag":5.89,"bv":"0.018"},"geometry":{"type":"Point","coordinates":[125.7298,-52.1237]}},{"type":"Feature","id":41117,"properties":{"mag":5.94,"bv":"0.175"},"geometry":{"type":"Point","coordinates":[125.841,18.3322]}},{"type":"Feature","id":41152,"properties":{"mag":5.52,"bv":"0.125"},"geometry":{"type":"Point","coordinates":[125.9521,53.2197]}},{"type":"Feature","id":41191,"properties":{"mag":5.67,"bv":"1.018"},"geometry":{"type":"Point","coordinates":[126.0826,-80.9142]}},{"type":"Feature","id":41211,"properties":{"mag":5.61,"bv":"0.478"},"geometry":{"type":"Point","coordinates":[126.1459,-3.7512]}},{"type":"Feature","id":41242,"properties":{"mag":5.67,"bv":"0.066"},"geometry":{"type":"Point","coordinates":[126.2299,-23.1537]}},{"type":"Feature","id":41250,"properties":{"mag":5.97,"bv":"-0.159"},"geometry":{"type":"Point","coordinates":[126.2384,-42.7698]}},{"type":"Feature","id":41260,"properties":{"mag":5.32,"bv":"1.476"},"geometry":{"type":"Point","coordinates":[126.2656,-24.0462]}},{"type":"Feature","id":41296,"properties":{"mag":5.18,"bv":"-0.164"},"geometry":{"type":"Point","coordinates":[126.3805,-51.7274]}},{"type":"Feature","id":41299,"properties":{"mag":5.74,"bv":"1.528"},"geometry":{"type":"Point","coordinates":[126.3981,2.1022]}},{"type":"Feature","id":41307,"properties":{"mag":3.91,"bv":"-0.012"},"geometry":{"type":"Point","coordinates":[126.4151,-3.9064]}},{"type":"Feature","id":41312,"properties":{"mag":3.77,"bv":"1.132"},"geometry":{"type":"Point","coordinates":[126.4341,-66.1369]}},{"type":"Feature","id":41321,"properties":{"mag":5.95,"bv":"0.971"},"geometry":{"type":"Point","coordinates":[126.465,-64.6006]}},{"type":"Feature","id":41323,"properties":{"mag":5.45,"bv":"-0.142"},"geometry":{"type":"Point","coordinates":[126.4663,-42.1531]}},{"type":"Feature","id":41325,"properties":{"mag":5.13,"bv":"0.934"},"geometry":{"type":"Point","coordinates":[126.4782,7.5645]}},{"type":"Feature","id":41328,"properties":{"mag":5.96,"bv":"0.167"},"geometry":{"type":"Point","coordinates":[126.4816,-14.9297]}},{"type":"Feature","id":41375,"properties":{"mag":5.6,"bv":"0.218"},"geometry":{"type":"Point","coordinates":[126.6134,-3.9875]}},{"type":"Feature","id":41377,"properties":{"mag":5.58,"bv":"1.421"},"geometry":{"type":"Point","coordinates":[126.6154,27.8936]}},{"type":"Feature","id":41395,"properties":{"mag":5.52,"bv":"1.167"},"geometry":{"type":"Point","coordinates":[126.6748,-12.5346]}},{"type":"Feature","id":41400,"properties":{"mag":5.56,"bv":"1.608"},"geometry":{"type":"Point","coordinates":[126.6831,12.6546]}},{"type":"Feature","id":41451,"properties":{"mag":5.51,"bv":"-0.024"},"geometry":{"type":"Point","coordinates":[126.8198,-70.0935]}},{"type":"Feature","id":41483,"properties":{"mag":5.08,"bv":"0.256"},"geometry":{"type":"Point","coordinates":[126.9024,-53.0885]}},{"type":"Feature","id":41515,"properties":{"mag":5.75,"bv":"-0.151"},"geometry":{"type":"Point","coordinates":[126.9976,-35.1138]}},{"type":"Feature","id":41578,"properties":{"mag":5.94,"bv":"0.201"},"geometry":{"type":"Point","coordinates":[127.1556,14.2108]}},{"type":"Feature","id":41616,"properties":{"mag":5.33,"bv":"-0.140"},"geometry":{"type":"Point","coordinates":[127.2698,-47.9289]}},{"type":"Feature","id":41621,"properties":{"mag":5.82,"bv":"-0.160"},"geometry":{"type":"Point","coordinates":[127.2815,-44.1604]}},{"type":"Feature","id":41639,"properties":{"mag":5.03,"bv":"-0.168"},"geometry":{"type":"Point","coordinates":[127.3645,-44.7248]}},{"type":"Feature","id":41674,"properties":{"mag":5.98,"bv":"-0.127"},"geometry":{"type":"Point","coordinates":[127.4401,-46.3317]}},{"type":"Feature","id":41676,"properties":{"mag":5.89,"bv":"0.972"},"geometry":{"type":"Point","coordinates":[127.4425,67.2974]}},{"type":"Feature","id":41704,"properties":{"mag":3.35,"bv":"0.856"},"geometry":{"type":"Point","coordinates":[127.5661,60.7182]}},{"type":"Feature","id":41723,"properties":{"mag":5.61,"bv":"1.509"},"geometry":{"type":"Point","coordinates":[127.6192,-32.1593]}},{"type":"Feature","id":41816,"properties":{"mag":5.71,"bv":"0.327"},"geometry":{"type":"Point","coordinates":[127.8772,24.0811]}},{"type":"Feature","id":41817,"properties":{"mag":5.42,"bv":"-0.061"},"geometry":{"type":"Point","coordinates":[127.8788,-19.5775]}},{"type":"Feature","id":41822,"properties":{"mag":5.33,"bv":"1.567"},"geometry":{"type":"Point","coordinates":[127.8989,18.0944]}},{"type":"Feature","id":41861,"properties":{"mag":5.68,"bv":"0.582"},"geometry":{"type":"Point","coordinates":[128.0207,-53.2119]}},{"type":"Feature","id":41909,"properties":{"mag":5.33,"bv":"1.252"},"geometry":{"type":"Point","coordinates":[128.1771,20.4412]}},{"type":"Feature","id":41935,"properties":{"mag":5.88,"bv":"1.106"},"geometry":{"type":"Point","coordinates":[128.2291,38.0164]}},{"type":"Feature","id":42001,"properties":{"mag":5.92,"bv":"-0.114"},"geometry":{"type":"Point","coordinates":[128.4101,-38.8488]}},{"type":"Feature","id":42008,"properties":{"mag":5.89,"bv":"1.066"},"geometry":{"type":"Point","coordinates":[128.4312,4.757]}},{"type":"Feature","id":42028,"properties":{"mag":5.8,"bv":"0.007"},"geometry":{"type":"Point","coordinates":[128.5067,-2.1516]}},{"type":"Feature","id":42080,"properties":{"mag":5.47,"bv":"0.207"},"geometry":{"type":"Point","coordinates":[128.6505,65.1452]}},{"type":"Feature","id":42088,"properties":{"mag":5.01,"bv":"1.304"},"geometry":{"type":"Point","coordinates":[128.6817,-49.9442]}},{"type":"Feature","id":42090,"properties":{"mag":5.76,"bv":"0.051"},"geometry":{"type":"Point","coordinates":[128.6829,36.4196]}},{"type":"Feature","id":42129,"properties":{"mag":5.27,"bv":"-0.133"},"geometry":{"type":"Point","coordinates":[128.8148,-58.2247]}},{"type":"Feature","id":42134,"properties":{"mag":4.84,"bv":"0.981"},"geometry":{"type":"Point","coordinates":[128.8321,-58.0092]}},{"type":"Feature","id":42146,"properties":{"mag":5.72,"bv":"-0.004"},"geometry":{"type":"Point","coordinates":[128.8675,-7.9823]}},{"type":"Feature","id":42147,"properties":{"mag":5.95,"bv":"0.393"},"geometry":{"type":"Point","coordinates":[128.8696,-26.8435]}},{"type":"Feature","id":42172,"properties":{"mag":5.91,"bv":"0.530"},"geometry":{"type":"Point","coordinates":[128.9624,6.6202]}},{"type":"Feature","id":42177,"properties":{"mag":5.79,"bv":"-0.132"},"geometry":{"type":"Point","coordinates":[128.9668,-50.9697]}},{"type":"Feature","id":42265,"properties":{"mag":5.92,"bv":"0.083"},"geometry":{"type":"Point","coordinates":[129.274,9.6556]}},{"type":"Feature","id":42286,"properties":{"mag":5.45,"bv":"1.013"},"geometry":{"type":"Point","coordinates":[129.3285,-62.8535]}},{"type":"Feature","id":42312,"properties":{"mag":4.11,"bv":"0.109"},"geometry":{"type":"Point","coordinates":[129.411,-42.9891]}},{"type":"Feature","id":42313,"properties":{"mag":4.14,"bv":"0.003"},"geometry":{"type":"Point","coordinates":[129.414,5.7038]}},{"type":"Feature","id":42334,"properties":{"mag":5.24,"bv":"-0.030"},"geometry":{"type":"Point","coordinates":[129.4673,-26.255]}},{"type":"Feature","id":42365,"properties":{"mag":5.96,"bv":"1.111"},"geometry":{"type":"Point","coordinates":[129.5791,32.802]}},{"type":"Feature","id":42372,"properties":{"mag":5.66,"bv":"0.964"},"geometry":{"type":"Point","coordinates":[129.5924,53.4015]}},{"type":"Feature","id":42402,"properties":{"mag":4.45,"bv":"1.216"},"geometry":{"type":"Point","coordinates":[129.6893,3.3414]}},{"type":"Feature","id":42425,"properties":{"mag":5.19,"bv":"0.013"},"geometry":{"type":"Point","coordinates":[129.7715,-70.3867]}},{"type":"Feature","id":42430,"properties":{"mag":5.05,"bv":"0.720"},"geometry":{"type":"Point","coordinates":[129.7829,-22.6619]}},{"type":"Feature","id":42438,"properties":{"mag":5.63,"bv":"0.618"},"geometry":{"type":"Point","coordinates":[129.7988,65.0209]}},{"type":"Feature","id":42452,"properties":{"mag":5.91,"bv":"1.167"},"geometry":{"type":"Point","coordinates":[129.8234,52.7116]}},{"type":"Feature","id":42459,"properties":{"mag":5.45,"bv":"-0.132"},"geometry":{"type":"Point","coordinates":[129.8493,-53.4398]}},{"type":"Feature","id":42483,"properties":{"mag":4.86,"bv":"0.900"},"geometry":{"type":"Point","coordinates":[129.927,-29.5611]}},{"type":"Feature","id":42504,"properties":{"mag":5.18,"bv":"-0.147"},"geometry":{"type":"Point","coordinates":[129.99,-53.0547]}},{"type":"Feature","id":42509,"properties":{"mag":4.98,"bv":"1.415"},"geometry":{"type":"Point","coordinates":[130.0061,-12.4754]}},{"type":"Feature","id":42515,"properties":{"mag":3.97,"bv":"0.936"},"geometry":{"type":"Point","coordinates":[130.0256,-35.3084]}},{"type":"Feature","id":42527,"properties":{"mag":4.59,"bv":"1.179"},"geometry":{"type":"Point","coordinates":[130.0534,64.3279]}},{"type":"Feature","id":42535,"properties":{"mag":5.56,"bv":"-0.125"},"geometry":{"type":"Point","coordinates":[130.0728,-53.0154]}},{"type":"Feature","id":42536,"properties":{"mag":3.6,"bv":"-0.168"},"geometry":{"type":"Point","coordinates":[130.0733,-52.9219]}},{"type":"Feature","id":42540,"properties":{"mag":5.2,"bv":"-0.027"},"geometry":{"type":"Point","coordinates":[130.0799,-40.2639]}},{"type":"Feature","id":42564,"properties":{"mag":5.67,"bv":"1.664"},"geometry":{"type":"Point","coordinates":[130.1469,-45.1911]}},{"type":"Feature","id":42568,"properties":{"mag":4.31,"bv":"-0.117"},"geometry":{"type":"Point","coordinates":[130.1543,-59.761]}},{"type":"Feature","id":42570,"properties":{"mag":3.77,"bv":"0.670"},"geometry":{"type":"Point","coordinates":[130.1565,-46.6487]}},{"type":"Feature","id":42604,"properties":{"mag":5.35,"bv":"0.993"},"geometry":{"type":"Point","coordinates":[130.2545,45.834]}},{"type":"Feature","id":42614,"properties":{"mag":5.9,"bv":"-0.186"},"geometry":{"type":"Point","coordinates":[130.2722,-48.9227]}},{"type":"Feature","id":42624,"properties":{"mag":4.74,"bv":"0.137"},"geometry":{"type":"Point","coordinates":[130.3047,-47.3171]}},{"type":"Feature","id":42637,"properties":{"mag":5.46,"bv":"-0.101"},"geometry":{"type":"Point","coordinates":[130.3313,-78.9634]}},{"type":"Feature","id":42662,"properties":{"mag":4.87,"bv":"1.063"},"geometry":{"type":"Point","coordinates":[130.4306,-15.9434]}},{"type":"Feature","id":42679,"properties":{"mag":5.2,"bv":"0.171"},"geometry":{"type":"Point","coordinates":[130.4871,-45.4107]}},{"type":"Feature","id":42712,"properties":{"mag":5.48,"bv":"-0.172"},"geometry":{"type":"Point","coordinates":[130.5675,-48.0991]}},{"type":"Feature","id":42715,"properties":{"mag":5.49,"bv":"-0.127"},"geometry":{"type":"Point","coordinates":[130.5791,-53.1001]}},{"type":"Feature","id":42726,"properties":{"mag":4.83,"bv":"-0.173"},"geometry":{"type":"Point","coordinates":[130.6058,-53.114]}},{"type":"Feature","id":42795,"properties":{"mag":5.62,"bv":"0.435"},"geometry":{"type":"Point","coordinates":[130.8014,12.6809]}},{"type":"Feature","id":42799,"properties":{"mag":4.3,"bv":"-0.192"},"geometry":{"type":"Point","coordinates":[130.8061,3.3987]}},{"type":"Feature","id":42806,"properties":{"mag":4.66,"bv":"0.010"},"geometry":{"type":"Point","coordinates":[130.8214,21.4685]}},{"type":"Feature","id":42828,"properties":{"mag":3.68,"bv":"-0.180"},"geometry":{"type":"Point","coordinates":[130.8981,-33.1864]}},{"type":"Feature","id":42834,"properties":{"mag":5.15,"bv":"-0.197"},"geometry":{"type":"Point","coordinates":[130.9178,-49.8228]}},{"type":"Feature","id":42835,"properties":{"mag":4.63,"bv":"0.840"},"geometry":{"type":"Point","coordinates":[130.9182,-7.2337]}},{"type":"Feature","id":42884,"properties":{"mag":4.05,"bv":"0.874"},"geometry":{"type":"Point","coordinates":[131.0998,-42.6493]}},{"type":"Feature","id":42911,"properties":{"mag":3.94,"bv":"1.083"},"geometry":{"type":"Point","coordinates":[131.1712,18.1543]}},{"type":"Feature","id":42913,"properties":{"mag":1.93,"bv":"0.043"},"geometry":{"type":"Point","coordinates":[131.1759,-54.7088]}},{"type":"Feature","id":42917,"properties":{"mag":5.63,"bv":"-0.069"},"geometry":{"type":"Point","coordinates":[131.1877,10.0817]}},{"type":"Feature","id":42923,"properties":{"mag":5.74,"bv":"-0.139"},"geometry":{"type":"Point","coordinates":[131.2164,-37.1472]}},{"type":"Feature","id":43012,"properties":{"mag":5.79,"bv":"1.595"},"geometry":{"type":"Point","coordinates":[131.4798,-79.5044]}},{"type":"Feature","id":43023,"properties":{"mag":3.87,"bv":"0.015"},"geometry":{"type":"Point","coordinates":[131.5069,-46.0415]}},{"type":"Feature","id":43026,"properties":{"mag":5.7,"bv":"1.097"},"geometry":{"type":"Point","coordinates":[131.5103,-2.0487]}},{"type":"Feature","id":43067,"properties":{"mag":4.32,"bv":"0.900"},"geometry":{"type":"Point","coordinates":[131.5939,-13.5477]}},{"type":"Feature","id":43082,"properties":{"mag":5.43,"bv":"0.238"},"geometry":{"type":"Point","coordinates":[131.6273,-45.9125]}},{"type":"Feature","id":43103,"properties":{"mag":4.03,"bv":"1.007"},"geometry":{"type":"Point","coordinates":[131.6743,28.7599]}},{"type":"Feature","id":43105,"properties":{"mag":4.5,"bv":"-0.169"},"geometry":{"type":"Point","coordinates":[131.6773,-56.7698]}},{"type":"Feature","id":43109,"properties":{"mag":3.38,"bv":"0.685"},"geometry":{"type":"Point","coordinates":[131.6938,6.4188]}},{"type":"Feature","id":43121,"properties":{"mag":5.89,"bv":"0.120"},"geometry":{"type":"Point","coordinates":[131.7334,12.11]}},{"type":"Feature","id":43142,"properties":{"mag":5.28,"bv":"0.058"},"geometry":{"type":"Point","coordinates":[131.8124,-1.897]}},{"type":"Feature","id":43148,"properties":{"mag":5.71,"bv":"0.554"},"geometry":{"type":"Point","coordinates":[131.8285,-46.1554]}},{"type":"Feature","id":43234,"properties":{"mag":4.35,"bv":"-0.044"},"geometry":{"type":"Point","coordinates":[132.1082,5.8378]}},{"type":"Feature","id":43305,"properties":{"mag":5.3,"bv":"-0.080"},"geometry":{"type":"Point","coordinates":[132.3405,-3.443]}},{"type":"Feature","id":43325,"properties":{"mag":5.47,"bv":"0.066"},"geometry":{"type":"Point","coordinates":[132.4132,-40.3202]}},{"type":"Feature","id":43347,"properties":{"mag":4.94,"bv":"0.043"},"geometry":{"type":"Point","coordinates":[132.4485,-45.3079]}},{"type":"Feature","id":43352,"properties":{"mag":5.19,"bv":"0.876"},"geometry":{"type":"Point","coordinates":[132.4646,-32.7805]}},{"type":"Feature","id":43370,"properties":{"mag":5.86,"bv":"0.948"},"geometry":{"type":"Point","coordinates":[132.5093,-29.463]}},{"type":"Feature","id":43392,"properties":{"mag":6,"bv":"-0.114"},"geometry":{"type":"Point","coordinates":[132.5876,-42.0898]}},{"type":"Feature","id":43409,"properties":{"mag":4.02,"bv":"1.272"},"geometry":{"type":"Point","coordinates":[132.633,-27.7098]}},{"type":"Feature","id":43413,"properties":{"mag":5.09,"bv":"-0.205"},"geometry":{"type":"Point","coordinates":[132.6394,-46.5292]}},{"type":"Feature","id":43414,"properties":{"mag":5.34,"bv":"0.423"},"geometry":{"type":"Point","coordinates":[132.6451,-66.793]}},{"type":"Feature","id":43496,"properties":{"mag":5.55,"bv":"0.150"},"geometry":{"type":"Point","coordinates":[132.8934,-7.1772]}},{"type":"Feature","id":43499,"properties":{"mag":5.59,"bv":"-0.102"},"geometry":{"type":"Point","coordinates":[132.9021,-57.6336]}},{"type":"Feature","id":43531,"properties":{"mag":5.15,"bv":"0.971"},"geometry":{"type":"Point","coordinates":[132.9868,43.7266]}},{"type":"Feature","id":43550,"properties":{"mag":5.98,"bv":"1.251"},"geometry":{"type":"Point","coordinates":[133.0418,42.0027]}},{"type":"Feature","id":43553,"properties":{"mag":5.96,"bv":"1.233"},"geometry":{"type":"Point","coordinates":[133.049,45.3128]}},{"type":"Feature","id":43584,"properties":{"mag":5.67,"bv":"0.224"},"geometry":{"type":"Point","coordinates":[133.1443,32.4742]}},{"type":"Feature","id":43587,"properties":{"mag":5.96,"bv":"0.869"},"geometry":{"type":"Point","coordinates":[133.1492,28.3308]}},{"type":"Feature","id":43589,"properties":{"mag":5.92,"bv":"-0.148"},"geometry":{"type":"Point","coordinates":[133.1609,-48.3591]}},{"type":"Feature","id":43603,"properties":{"mag":5.79,"bv":"1.508"},"geometry":{"type":"Point","coordinates":[133.2001,-38.7241]}},{"type":"Feature","id":43644,"properties":{"mag":5.72,"bv":"0.305"},"geometry":{"type":"Point","coordinates":[133.344,61.9623]}},{"type":"Feature","id":43669,"properties":{"mag":5.78,"bv":"-0.088"},"geometry":{"type":"Point","coordinates":[133.4527,-60.3539]}},{"type":"Feature","id":43671,"properties":{"mag":5.31,"bv":"0.275"},"geometry":{"type":"Point","coordinates":[133.4608,-47.5208]}},{"type":"Feature","id":43721,"properties":{"mag":5.4,"bv":"1.050"},"geometry":{"type":"Point","coordinates":[133.5614,30.5791]}},{"type":"Feature","id":43783,"properties":{"mag":3.84,"bv":"-0.104"},"geometry":{"type":"Point","coordinates":[133.7618,-60.6446]}},{"type":"Feature","id":43797,"properties":{"mag":5.7,"bv":"0.481"},"geometry":{"type":"Point","coordinates":[133.7991,-54.9658]}},{"type":"Feature","id":43798,"properties":{"mag":5.75,"bv":"1.327"},"geometry":{"type":"Point","coordinates":[133.8018,-18.2412]}},{"type":"Feature","id":43813,"properties":{"mag":3.11,"bv":"0.978"},"geometry":{"type":"Point","coordinates":[133.8484,5.9456]}},{"type":"Feature","id":43825,"properties":{"mag":4.87,"bv":"0.142"},"geometry":{"type":"Point","coordinates":[133.8815,-27.6819]}},{"type":"Feature","id":43834,"properties":{"mag":5.23,"bv":"1.000"},"geometry":{"type":"Point","coordinates":[133.9153,27.9275]}},{"type":"Feature","id":43851,"properties":{"mag":5.44,"bv":"1.462"},"geometry":{"type":"Point","coordinates":[133.9815,11.626]}},{"type":"Feature","id":43878,"properties":{"mag":4.68,"bv":"-0.115"},"geometry":{"type":"Point","coordinates":[134.0803,-52.7235]}},{"type":"Feature","id":43894,"properties":{"mag":5.9,"bv":"0.378"},"geometry":{"type":"Point","coordinates":[134.1271,40.2015]}},{"type":"Feature","id":43899,"properties":{"mag":5.95,"bv":"1.544"},"geometry":{"type":"Point","coordinates":[134.1422,-16.7087]}},{"type":"Feature","id":43903,"properties":{"mag":5.57,"bv":"0.877"},"geometry":{"type":"Point","coordinates":[134.156,64.6038]}},{"type":"Feature","id":43908,"properties":{"mag":5.43,"bv":"0.306"},"geometry":{"type":"Point","coordinates":[134.1708,-85.6632]}},{"type":"Feature","id":43923,"properties":{"mag":5.72,"bv":"1.125"},"geometry":{"type":"Point","coordinates":[134.2081,45.6316]}},{"type":"Feature","id":43932,"properties":{"mag":5.44,"bv":"0.181"},"geometry":{"type":"Point","coordinates":[134.2358,32.9104]}},{"type":"Feature","id":43937,"properties":{"mag":4.93,"bv":"-0.182"},"geometry":{"type":"Point","coordinates":[134.2434,-59.2293]}},{"type":"Feature","id":43970,"properties":{"mag":5.22,"bv":"0.149"},"geometry":{"type":"Point","coordinates":[134.3123,15.3228]}},{"type":"Feature","id":44001,"properties":{"mag":5.68,"bv":"0.209"},"geometry":{"type":"Point","coordinates":[134.3967,15.5813]}},{"type":"Feature","id":44024,"properties":{"mag":5.88,"bv":"1.060"},"geometry":{"type":"Point","coordinates":[134.4815,-48.5729]}},{"type":"Feature","id":44066,"properties":{"mag":4.26,"bv":"0.141"},"geometry":{"type":"Point","coordinates":[134.6218,11.8577]}},{"type":"Feature","id":44075,"properties":{"mag":5.8,"bv":"0.521"},"geometry":{"type":"Point","coordinates":[134.6831,-16.1327]}},{"type":"Feature","id":44093,"properties":{"mag":5.17,"bv":"0.268"},"geometry":{"type":"Point","coordinates":[134.7181,-47.2347]}},{"type":"Feature","id":44127,"properties":{"mag":3.12,"bv":"0.223"},"geometry":{"type":"Point","coordinates":[134.8019,48.0418]}},{"type":"Feature","id":44143,"properties":{"mag":5.17,"bv":"0.417"},"geometry":{"type":"Point","coordinates":[134.8508,-59.0837]}},{"type":"Feature","id":44154,"properties":{"mag":5.23,"bv":"0.913"},"geometry":{"type":"Point","coordinates":[134.8861,32.4186]}},{"type":"Feature","id":44191,"properties":{"mag":4.45,"bv":"0.646"},"geometry":{"type":"Point","coordinates":[135.0225,-41.2536]}},{"type":"Feature","id":44248,"properties":{"mag":3.96,"bv":"0.463"},"geometry":{"type":"Point","coordinates":[135.1599,41.7829]}},{"type":"Feature","id":44256,"properties":{"mag":5.8,"bv":"1.211"},"geometry":{"type":"Point","coordinates":[135.1906,-60.9638]}},{"type":"Feature","id":44283,"properties":{"mag":5.89,"bv":"1.634"},"geometry":{"type":"Point","coordinates":[135.2855,-68.6839]}},{"type":"Feature","id":44299,"properties":{"mag":5.56,"bv":"-0.135"},"geometry":{"type":"Point","coordinates":[135.3369,-41.8643]}},{"type":"Feature","id":44307,"properties":{"mag":5.89,"bv":"0.088"},"geometry":{"type":"Point","coordinates":[135.3505,32.2523]}},{"type":"Feature","id":44337,"properties":{"mag":5.23,"bv":"-0.120"},"geometry":{"type":"Point","coordinates":[135.4357,-52.1887]}},{"type":"Feature","id":44356,"properties":{"mag":5.64,"bv":"1.163"},"geometry":{"type":"Point","coordinates":[135.4916,-0.4827]}},{"type":"Feature","id":44382,"properties":{"mag":4,"bv":"0.145"},"geometry":{"type":"Point","coordinates":[135.6116,-66.3961]}},{"type":"Feature","id":44390,"properties":{"mag":4.74,"bv":"1.542"},"geometry":{"type":"Point","coordinates":[135.6362,67.6296]}},{"type":"Feature","id":44405,"properties":{"mag":5.45,"bv":"-0.041"},"geometry":{"type":"Point","coordinates":[135.6844,24.4529]}},{"type":"Feature","id":44406,"properties":{"mag":5.85,"bv":"1.100"},"geometry":{"type":"Point","coordinates":[135.6867,7.2983]}},{"type":"Feature","id":44471,"properties":{"mag":3.57,"bv":"0.007"},"geometry":{"type":"Point","coordinates":[135.9064,47.1565]}},{"type":"Feature","id":44504,"properties":{"mag":5.74,"bv":"0.034"},"geometry":{"type":"Point","coordinates":[136.0017,54.2839]}},{"type":"Feature","id":44511,"properties":{"mag":3.75,"bv":"1.174"},"geometry":{"type":"Point","coordinates":[136.0387,-47.0977]}},{"type":"Feature","id":44599,"properties":{"mag":4.47,"bv":"0.607"},"geometry":{"type":"Point","coordinates":[136.2867,-72.6027]}},{"type":"Feature","id":44613,"properties":{"mag":5.48,"bv":"0.475"},"geometry":{"type":"Point","coordinates":[136.3504,48.5303]}},{"type":"Feature","id":44626,"properties":{"mag":4.66,"bv":"-0.149"},"geometry":{"type":"Point","coordinates":[136.4099,-70.5385]}},{"type":"Feature","id":44659,"properties":{"mag":4.99,"bv":"1.189"},"geometry":{"type":"Point","coordinates":[136.4932,5.0923]}},{"type":"Feature","id":44700,"properties":{"mag":4.56,"bv":"1.037"},"geometry":{"type":"Point","coordinates":[136.6324,38.4522]}},{"type":"Feature","id":44798,"properties":{"mag":5.23,"bv":"-0.092"},"geometry":{"type":"Point","coordinates":[136.9367,10.6682]}},{"type":"Feature","id":44816,"properties":{"mag":2.23,"bv":"1.665"},"geometry":{"type":"Point","coordinates":[136.999,-43.4326]}},{"type":"Feature","id":44818,"properties":{"mag":5.42,"bv":"0.888"},"geometry":{"type":"Point","coordinates":[137.0002,29.6542]}},{"type":"Feature","id":44824,"properties":{"mag":4.62,"bv":"1.594"},"geometry":{"type":"Point","coordinates":[137.012,-25.8585]}},{"type":"Feature","id":44857,"properties":{"mag":5.15,"bv":"1.514"},"geometry":{"type":"Point","coordinates":[137.0979,66.8732]}},{"type":"Feature","id":44883,"properties":{"mag":5.6,"bv":"-0.057"},"geometry":{"type":"Point","coordinates":[137.1757,-8.5895]}},{"type":"Feature","id":44892,"properties":{"mag":5.95,"bv":"0.654"},"geometry":{"type":"Point","coordinates":[137.1972,26.6291]}},{"type":"Feature","id":44897,"properties":{"mag":5.95,"bv":"0.585"},"geometry":{"type":"Point","coordinates":[137.2128,33.8822]}},{"type":"Feature","id":44901,"properties":{"mag":4.46,"bv":"0.288"},"geometry":{"type":"Point","coordinates":[137.2177,51.6046]}},{"type":"Feature","id":44923,"properties":{"mag":5.73,"bv":"0.000"},"geometry":{"type":"Point","coordinates":[137.2675,-18.3285]}},{"type":"Feature","id":44936,"properties":{"mag":5.76,"bv":"0.937"},"geometry":{"type":"Point","coordinates":[137.298,-12.3577]}},{"type":"Feature","id":44946,"properties":{"mag":5.16,"bv":"0.970"},"geometry":{"type":"Point","coordinates":[137.3397,22.0454]}},{"type":"Feature","id":44961,"properties":{"mag":5.47,"bv":"1.002"},"geometry":{"type":"Point","coordinates":[137.3982,-8.7876]}},{"type":"Feature","id":45001,"properties":{"mag":5.59,"bv":"0.179"},"geometry":{"type":"Point","coordinates":[137.485,-30.3654]}},{"type":"Feature","id":45038,"properties":{"mag":4.8,"bv":"0.489"},"geometry":{"type":"Point","coordinates":[137.5981,67.134]}},{"type":"Feature","id":45075,"properties":{"mag":4.67,"bv":"0.381"},"geometry":{"type":"Point","coordinates":[137.7294,63.5136]}},{"type":"Feature","id":45080,"properties":{"mag":3.43,"bv":"-0.190"},"geometry":{"type":"Point","coordinates":[137.742,-58.9669]}},{"type":"Feature","id":45085,"properties":{"mag":4.99,"bv":"0.222"},"geometry":{"type":"Point","coordinates":[137.7683,-44.8679]}},{"type":"Feature","id":45101,"properties":{"mag":3.96,"bv":"-0.180"},"geometry":{"type":"Point","coordinates":[137.8197,-62.317]}},{"type":"Feature","id":45122,"properties":{"mag":5.78,"bv":"-0.218"},"geometry":{"type":"Point","coordinates":[137.8891,-46.5839]}},{"type":"Feature","id":45158,"properties":{"mag":5.72,"bv":"0.977"},"geometry":{"type":"Point","coordinates":[137.9947,-19.7476]}},{"type":"Feature","id":45189,"properties":{"mag":5.56,"bv":"-0.107"},"geometry":{"type":"Point","coordinates":[138.1272,-43.6133]}},{"type":"Feature","id":45219,"properties":{"mag":5.54,"bv":"0.846"},"geometry":{"type":"Point","coordinates":[138.2318,-59.4139]}},{"type":"Feature","id":45238,"properties":{"mag":1.67,"bv":"0.070"},"geometry":{"type":"Point","coordinates":[138.2999,-69.7172]}},{"type":"Feature","id":45270,"properties":{"mag":5.92,"bv":"-0.051"},"geometry":{"type":"Point","coordinates":[138.3936,-47.3384]}},{"type":"Feature","id":45290,"properties":{"mag":5.3,"bv":"-0.130"},"geometry":{"type":"Point","coordinates":[138.4509,43.2178]}},{"type":"Feature","id":45314,"properties":{"mag":5.85,"bv":"-0.113"},"geometry":{"type":"Point","coordinates":[138.5342,-44.1458]}},{"type":"Feature","id":45328,"properties":{"mag":5.26,"bv":"0.980"},"geometry":{"type":"Point","coordinates":[138.575,-55.5696]}},{"type":"Feature","id":45333,"properties":{"mag":5.18,"bv":"0.605"},"geometry":{"type":"Point","coordinates":[138.5856,61.4233]}},{"type":"Feature","id":45336,"properties":{"mag":3.89,"bv":"-0.060"},"geometry":{"type":"Point","coordinates":[138.5911,2.3143]}},{"type":"Feature","id":45344,"properties":{"mag":5.24,"bv":"-0.137"},"geometry":{"type":"Point","coordinates":[138.602,-43.2275]}},{"type":"Feature","id":45386,"properties":{"mag":5.85,"bv":"0.827"},"geometry":{"type":"Point","coordinates":[138.7382,-37.6024]}},{"type":"Feature","id":45410,"properties":{"mag":5.36,"bv":"1.319"},"geometry":{"type":"Point","coordinates":[138.8077,14.9415]}},{"type":"Feature","id":45412,"properties":{"mag":5.98,"bv":"0.839"},"geometry":{"type":"Point","coordinates":[138.8094,34.6335]}},{"type":"Feature","id":45439,"properties":{"mag":4.92,"bv":"1.084"},"geometry":{"type":"Point","coordinates":[138.903,-38.5699]}},{"type":"Feature","id":45448,"properties":{"mag":4.63,"bv":"0.473"},"geometry":{"type":"Point","coordinates":[138.9378,-37.4131]}},{"type":"Feature","id":45455,"properties":{"mag":5.28,"bv":"1.568"},"geometry":{"type":"Point","coordinates":[138.9574,56.7414]}},{"type":"Feature","id":45461,"properties":{"mag":5.93,"bv":"0.179"},"geometry":{"type":"Point","coordinates":[138.9691,72.9463]}},{"type":"Feature","id":45493,"properties":{"mag":4.8,"bv":"0.199"},"geometry":{"type":"Point","coordinates":[139.0472,54.0219]}},{"type":"Feature","id":45496,"properties":{"mag":4.34,"bv":"1.602"},"geometry":{"type":"Point","coordinates":[139.0503,-57.5415]}},{"type":"Feature","id":45505,"properties":{"mag":5.12,"bv":"1.636"},"geometry":{"type":"Point","coordinates":[139.096,-44.2657]}},{"type":"Feature","id":45526,"properties":{"mag":5.49,"bv":"-0.081"},"geometry":{"type":"Point","coordinates":[139.1724,-8.7448]}},{"type":"Feature","id":45527,"properties":{"mag":5.24,"bv":"1.172"},"geometry":{"type":"Point","coordinates":[139.1739,-6.3531]}},{"type":"Feature","id":45544,"properties":{"mag":5.31,"bv":"1.166"},"geometry":{"type":"Point","coordinates":[139.2378,-39.4015]}},{"type":"Feature","id":45556,"properties":{"mag":2.21,"bv":"0.189"},"geometry":{"type":"Point","coordinates":[139.2725,-59.2752]}},{"type":"Feature","id":45559,"properties":{"mag":5.83,"bv":"1.049"},"geometry":{"type":"Point","coordinates":[139.2822,-14.5741]}},{"type":"Feature","id":45571,"properties":{"mag":5.38,"bv":"0.415"},"geometry":{"type":"Point","coordinates":[139.3218,-68.6896]}},{"type":"Feature","id":45581,"properties":{"mag":5.28,"bv":"0.021"},"geometry":{"type":"Point","coordinates":[139.3549,-74.8943]}},{"type":"Feature","id":45585,"properties":{"mag":5.86,"bv":"-0.024"},"geometry":{"type":"Point","coordinates":[139.3649,-74.7346]}},{"type":"Feature","id":45590,"properties":{"mag":5.96,"bv":"0.063"},"geometry":{"type":"Point","coordinates":[139.3799,46.8172]}},{"type":"Feature","id":45631,"properties":{"mag":5.26,"bv":"-0.062"},"geometry":{"type":"Point","coordinates":[139.5245,-51.0509]}},{"type":"Feature","id":45661,"properties":{"mag":5.94,"bv":"0.177"},"geometry":{"type":"Point","coordinates":[139.608,35.3641]}},{"type":"Feature","id":45675,"properties":{"mag":5.83,"bv":"0.474"},"geometry":{"type":"Point","coordinates":[139.6765,-51.5607]}},{"type":"Feature","id":45688,"properties":{"mag":3.82,"bv":"0.066"},"geometry":{"type":"Point","coordinates":[139.711,36.8026]}},{"type":"Feature","id":45743,"properties":{"mag":5.79,"bv":"1.285"},"geometry":{"type":"Point","coordinates":[139.8881,-15.8347]}},{"type":"Feature","id":45751,"properties":{"mag":4.77,"bv":"0.927"},"geometry":{"type":"Point","coordinates":[139.9433,-11.9749]}},{"type":"Feature","id":45811,"properties":{"mag":4.8,"bv":"0.913"},"geometry":{"type":"Point","coordinates":[140.1209,-9.5557]}},{"type":"Feature","id":45856,"properties":{"mag":4.79,"bv":"0.926"},"geometry":{"type":"Point","coordinates":[140.2367,-62.4046]}},{"type":"Feature","id":45860,"properties":{"mag":3.14,"bv":"1.550"},"geometry":{"type":"Point","coordinates":[140.2638,34.3926]}},{"type":"Feature","id":45902,"properties":{"mag":4.71,"bv":"1.633"},"geometry":{"type":"Point","coordinates":[140.3733,-25.9654]}},{"type":"Feature","id":45915,"properties":{"mag":5.79,"bv":"1.511"},"geometry":{"type":"Point","coordinates":[140.4304,56.6992]}},{"type":"Feature","id":45920,"properties":{"mag":5.61,"bv":"0.190"},"geometry":{"type":"Point","coordinates":[140.4585,-55.5147]}},{"type":"Feature","id":45924,"properties":{"mag":5.56,"bv":"1.637"},"geometry":{"type":"Point","coordinates":[140.4624,-42.1949]}},{"type":"Feature","id":45941,"properties":{"mag":2.47,"bv":"-0.141"},"geometry":{"type":"Point","coordinates":[140.5284,-55.0107]}},{"type":"Feature","id":45962,"properties":{"mag":5.74,"bv":"0.903"},"geometry":{"type":"Point","coordinates":[140.6,-46.0474]}},{"type":"Feature","id":46026,"properties":{"mag":4.71,"bv":"0.892"},"geometry":{"type":"Point","coordinates":[140.801,-28.8339]}},{"type":"Feature","id":46101,"properties":{"mag":5.99,"bv":"1.060"},"geometry":{"type":"Point","coordinates":[141.0229,-61.6489]}},{"type":"Feature","id":46107,"properties":{"mag":5.34,"bv":"0.454"},"geometry":{"type":"Point","coordinates":[141.0384,-80.7869]}},{"type":"Feature","id":46146,"properties":{"mag":4.47,"bv":"1.222"},"geometry":{"type":"Point","coordinates":[141.1636,26.1823]}},{"type":"Feature","id":46221,"properties":{"mag":5.6,"bv":"1.523"},"geometry":{"type":"Point","coordinates":[141.3501,-5.1174]}},{"type":"Feature","id":46225,"properties":{"mag":5.77,"bv":"0.137"},"geometry":{"type":"Point","coordinates":[141.3635,-61.9505]}},{"type":"Feature","id":46283,"properties":{"mag":5.09,"bv":"-0.102"},"geometry":{"type":"Point","coordinates":[141.5748,-53.3789]}},{"type":"Feature","id":46358,"properties":{"mag":5.46,"bv":"1.079"},"geometry":{"type":"Point","coordinates":[141.7763,-71.6019]}},{"type":"Feature","id":46371,"properties":{"mag":4.72,"bv":"1.154"},"geometry":{"type":"Point","coordinates":[141.8267,-22.3438]}},{"type":"Feature","id":46390,"properties":{"mag":1.99,"bv":"1.440"},"geometry":{"type":"Point","coordinates":[141.8968,-8.6586]}},{"type":"Feature","id":46404,"properties":{"mag":5.38,"bv":"0.642"},"geometry":{"type":"Point","coordinates":[141.9449,-6.0712]}},{"type":"Feature","id":46454,"properties":{"mag":5.4,"bv":"0.605"},"geometry":{"type":"Point","coordinates":[142.1142,9.0568]}},{"type":"Feature","id":46457,"properties":{"mag":5.72,"bv":"1.045"},"geometry":{"type":"Point","coordinates":[142.1216,8.1883]}},{"type":"Feature","id":46460,"properties":{"mag":5.9,"bv":"0.012"},"geometry":{"type":"Point","coordinates":[142.1273,-66.7019]}},{"type":"Feature","id":46471,"properties":{"mag":5.4,"bv":"0.993"},"geometry":{"type":"Point","coordinates":[142.1666,45.6015]}},{"type":"Feature","id":46482,"properties":{"mag":5.91,"bv":"1.102"},"geometry":{"type":"Point","coordinates":[142.1963,-62.2731]}},{"type":"Feature","id":46509,"properties":{"mag":4.59,"bv":"0.411"},"geometry":{"type":"Point","coordinates":[142.2871,-2.769]}},{"type":"Feature","id":46511,"properties":{"mag":5.66,"bv":"1.587"},"geometry":{"type":"Point","coordinates":[142.3027,-20.7491]}},{"type":"Feature","id":46515,"properties":{"mag":4.51,"bv":"1.408"},"geometry":{"type":"Point","coordinates":[142.3113,-35.9513]}},{"type":"Feature","id":46578,"properties":{"mag":5.49,"bv":"1.345"},"geometry":{"type":"Point","coordinates":[142.4771,-26.5896]}},{"type":"Feature","id":46594,"properties":{"mag":5.45,"bv":"-0.078"},"geometry":{"type":"Point","coordinates":[142.5213,-51.5172]}},{"type":"Feature","id":46618,"properties":{"mag":5.86,"bv":"1.193"},"geometry":{"type":"Point","coordinates":[142.5937,-15.5774]}},{"type":"Feature","id":46620,"properties":{"mag":5.88,"bv":"1.676"},"geometry":{"type":"Point","coordinates":[142.5976,-58.3618]}},{"type":"Feature","id":46651,"properties":{"mag":3.6,"bv":"0.371"},"geometry":{"type":"Point","coordinates":[142.675,-40.4668]}},{"type":"Feature","id":46652,"properties":{"mag":5.87,"bv":"1.032"},"geometry":{"type":"Point","coordinates":[142.6801,33.6557]}},{"type":"Feature","id":46657,"properties":{"mag":5.75,"bv":"0.066"},"geometry":{"type":"Point","coordinates":[142.6921,-31.8892]}},{"type":"Feature","id":46701,"properties":{"mag":3.16,"bv":"1.538"},"geometry":{"type":"Point","coordinates":[142.8055,-57.0344]}},{"type":"Feature","id":46733,"properties":{"mag":3.65,"bv":"0.360"},"geometry":{"type":"Point","coordinates":[142.8821,63.0619]}},{"type":"Feature","id":46734,"properties":{"mag":5.91,"bv":"0.258"},"geometry":{"type":"Point","coordinates":[142.884,-31.8718]}},{"type":"Feature","id":46735,"properties":{"mag":5.39,"bv":"1.543"},"geometry":{"type":"Point","coordinates":[142.885,35.1033]}},{"type":"Feature","id":46736,"properties":{"mag":5.86,"bv":"1.287"},"geometry":{"type":"Point","coordinates":[142.8877,-35.7148]}},{"type":"Feature","id":46741,"properties":{"mag":5.46,"bv":"1.556"},"geometry":{"type":"Point","coordinates":[142.9011,-73.0809]}},{"type":"Feature","id":46750,"properties":{"mag":4.32,"bv":"1.541"},"geometry":{"type":"Point","coordinates":[142.9301,22.968]}},{"type":"Feature","id":46771,"properties":{"mag":4.99,"bv":"1.046"},"geometry":{"type":"Point","coordinates":[142.9864,11.2998]}},{"type":"Feature","id":46774,"properties":{"mag":5.07,"bv":"1.364"},"geometry":{"type":"Point","coordinates":[142.9899,9.7158]}},{"type":"Feature","id":46776,"properties":{"mag":4.54,"bv":"0.109"},"geometry":{"type":"Point","coordinates":[142.9955,-1.1847]}},{"type":"Feature","id":46811,"properties":{"mag":5.35,"bv":"0.897"},"geometry":{"type":"Point","coordinates":[143.0803,-40.6493]}},{"type":"Feature","id":46813,"properties":{"mag":5.74,"bv":"0.135"},"geometry":{"type":"Point","coordinates":[143.085,-19.4003]}},{"type":"Feature","id":46853,"properties":{"mag":3.17,"bv":"0.475"},"geometry":{"type":"Point","coordinates":[143.2143,51.6773]}},{"type":"Feature","id":46859,"properties":{"mag":5.95,"bv":"1.501"},"geometry":{"type":"Point","coordinates":[143.2324,-13.5168]}},{"type":"Feature","id":46880,"properties":{"mag":5.02,"bv":"1.023"},"geometry":{"type":"Point","coordinates":[143.3019,-21.1157]}},{"type":"Feature","id":46897,"properties":{"mag":5.92,"bv":"0.023"},"geometry":{"type":"Point","coordinates":[143.3585,-22.8639]}},{"type":"Feature","id":46914,"properties":{"mag":5.12,"bv":"-0.114"},"geometry":{"type":"Point","coordinates":[143.4356,-49.0051]}},{"type":"Feature","id":46928,"properties":{"mag":5.07,"bv":"-0.139"},"geometry":{"type":"Point","coordinates":[143.4724,-80.9413]}},{"type":"Feature","id":46950,"properties":{"mag":5.01,"bv":"-0.180"},"geometry":{"type":"Point","coordinates":[143.5366,-51.2553]}},{"type":"Feature","id":46952,"properties":{"mag":4.54,"bv":"0.914"},"geometry":{"type":"Point","coordinates":[143.5558,36.3976]}},{"type":"Feature","id":46974,"properties":{"mag":4.08,"bv":"-0.013"},"geometry":{"type":"Point","coordinates":[143.611,-59.2298]}},{"type":"Feature","id":46977,"properties":{"mag":4.54,"bv":"0.781"},"geometry":{"type":"Point","coordinates":[143.6202,69.8303]}},{"type":"Feature","id":46982,"properties":{"mag":5.56,"bv":"1.159"},"geometry":{"type":"Point","coordinates":[143.636,-5.9149]}},{"type":"Feature","id":47006,"properties":{"mag":4.47,"bv":"0.027"},"geometry":{"type":"Point","coordinates":[143.706,52.0515]}},{"type":"Feature","id":47013,"properties":{"mag":5.77,"bv":"0.530"},"geometry":{"type":"Point","coordinates":[143.723,72.2057]}},{"type":"Feature","id":47029,"properties":{"mag":4.81,"bv":"0.992"},"geometry":{"type":"Point","coordinates":[143.766,39.6215]}},{"type":"Feature","id":47080,"properties":{"mag":5.4,"bv":"0.770"},"geometry":{"type":"Point","coordinates":[143.9146,35.8101]}},{"type":"Feature","id":47168,"properties":{"mag":5.57,"bv":"1.594"},"geometry":{"type":"Point","coordinates":[144.1786,31.1617]}},{"type":"Feature","id":47175,"properties":{"mag":4.34,"bv":"0.173"},"geometry":{"type":"Point","coordinates":[144.2064,-49.355]}},{"type":"Feature","id":47187,"properties":{"mag":5.68,"bv":"1.116"},"geometry":{"type":"Point","coordinates":[144.2509,-25.2968]}},{"type":"Feature","id":47189,"properties":{"mag":5.73,"bv":"1.223"},"geometry":{"type":"Point","coordinates":[144.2608,16.438]}},{"type":"Feature","id":47193,"properties":{"mag":4.28,"bv":"1.488"},"geometry":{"type":"Point","coordinates":[144.272,81.3264]}},{"type":"Feature","id":47199,"properties":{"mag":5.62,"bv":"1.023"},"geometry":{"type":"Point","coordinates":[144.2912,-32.1786]}},{"type":"Feature","id":47204,"properties":{"mag":5.44,"bv":"0.137"},"geometry":{"type":"Point","coordinates":[144.3027,-53.6685]}},{"type":"Feature","id":47205,"properties":{"mag":5,"bv":"1.051"},"geometry":{"type":"Point","coordinates":[144.3028,6.8358]}},{"type":"Feature","id":47224,"properties":{"mag":5.96,"bv":"1.118"},"geometry":{"type":"Point","coordinates":[144.3683,-36.096]}},{"type":"Feature","id":47267,"properties":{"mag":5.51,"bv":"0.985"},"geometry":{"type":"Point","coordinates":[144.5061,-43.1909]}},{"type":"Feature","id":47300,"properties":{"mag":5.28,"bv":"0.223"},"geometry":{"type":"Point","coordinates":[144.5907,40.2398]}},{"type":"Feature","id":47310,"properties":{"mag":4.68,"bv":"1.310"},"geometry":{"type":"Point","coordinates":[144.6137,4.6493]}},{"type":"Feature","id":47391,"properties":{"mag":4.51,"bv":"-0.070"},"geometry":{"type":"Point","coordinates":[144.8375,-61.3281]}},{"type":"Feature","id":47401,"properties":{"mag":5.96,"bv":"1.528"},"geometry":{"type":"Point","coordinates":[144.8661,67.2722]}},{"type":"Feature","id":47431,"properties":{"mag":3.9,"bv":"1.313"},"geometry":{"type":"Point","coordinates":[144.964,-1.1428]}},{"type":"Feature","id":47452,"properties":{"mag":5.07,"bv":"-0.149"},"geometry":{"type":"Point","coordinates":[145.0765,-14.3323]}},{"type":"Feature","id":47479,"properties":{"mag":5.3,"bv":"0.195"},"geometry":{"type":"Point","coordinates":[145.1773,-57.9836]}},{"type":"Feature","id":47498,"properties":{"mag":5.8,"bv":"1.083"},"geometry":{"type":"Point","coordinates":[145.2591,-57.2595]}},{"type":"Feature","id":47508,"properties":{"mag":3.52,"bv":"0.516"},"geometry":{"type":"Point","coordinates":[145.2876,9.8923]}},{"type":"Feature","id":47522,"properties":{"mag":4.76,"bv":"-0.117"},"geometry":{"type":"Point","coordinates":[145.3209,-23.5915]}},{"type":"Feature","id":47544,"properties":{"mag":5.9,"bv":"1.579"},"geometry":{"type":"Point","coordinates":[145.3963,31.2778]}},{"type":"Feature","id":47559,"properties":{"mag":5.99,"bv":"-0.119"},"geometry":{"type":"Point","coordinates":[145.4497,-55.2138]}},{"type":"Feature","id":47570,"properties":{"mag":5.61,"bv":"0.951"},"geometry":{"type":"Point","coordinates":[145.5014,39.7579]}},{"type":"Feature","id":47592,"properties":{"mag":4.93,"bv":"0.534"},"geometry":{"type":"Point","coordinates":[145.5601,-23.9156]}},{"type":"Feature","id":47594,"properties":{"mag":5.72,"bv":"1.131"},"geometry":{"type":"Point","coordinates":[145.5618,69.2375]}},{"type":"Feature","id":47654,"properties":{"mag":5.15,"bv":"1.029"},"geometry":{"type":"Point","coordinates":[145.7383,72.2526]}},{"type":"Feature","id":47701,"properties":{"mag":5.64,"bv":"0.111"},"geometry":{"type":"Point","coordinates":[145.8886,29.9745]}},{"type":"Feature","id":47717,"properties":{"mag":5.56,"bv":"-0.042"},"geometry":{"type":"Point","coordinates":[145.926,-53.8913]}},{"type":"Feature","id":47723,"properties":{"mag":5.36,"bv":"1.610"},"geometry":{"type":"Point","coordinates":[145.9329,14.0217]}},{"type":"Feature","id":47758,"properties":{"mag":4.78,"bv":"0.516"},"geometry":{"type":"Point","coordinates":[146.0504,-27.7695]}},{"type":"Feature","id":47854,"properties":{"mag":3.69,"bv":"1.010"},"geometry":{"type":"Point","coordinates":[146.3117,-62.5079]}},{"type":"Feature","id":47908,"properties":{"mag":2.97,"bv":"0.808"},"geometry":{"type":"Point","coordinates":[146.4628,23.7743]}},{"type":"Feature","id":47943,"properties":{"mag":5.8,"bv":"1.639"},"geometry":{"type":"Point","coordinates":[146.5419,6.7086]}},{"type":"Feature","id":47956,"properties":{"mag":5.43,"bv":"0.901"},"geometry":{"type":"Point","coordinates":[146.586,-76.7761]}},{"type":"Feature","id":47959,"properties":{"mag":5.67,"bv":"1.489"},"geometry":{"type":"Point","coordinates":[146.5972,11.81]}},{"type":"Feature","id":47960,"properties":{"mag":5.65,"bv":"0.342"},"geometry":{"type":"Point","coordinates":[146.5984,1.7856]}},{"type":"Feature","id":47963,"properties":{"mag":5.58,"bv":"-0.176"},"geometry":{"type":"Point","coordinates":[146.6265,-44.7551]}},{"type":"Feature","id":47965,"properties":{"mag":5.09,"bv":"1.594"},"geometry":{"type":"Point","coordinates":[146.6319,57.1281]}},{"type":"Feature","id":48002,"properties":{"mag":2.92,"bv":"0.273"},"geometry":{"type":"Point","coordinates":[146.7755,-65.072]}},{"type":"Feature","id":48113,"properties":{"mag":5.08,"bv":"0.619"},"geometry":{"type":"Point","coordinates":[147.1474,46.021]}},{"type":"Feature","id":48191,"properties":{"mag":5.95,"bv":"1.245"},"geometry":{"type":"Point","coordinates":[147.367,-37.1868]}},{"type":"Feature","id":48224,"properties":{"mag":5.09,"bv":"-0.098"},"geometry":{"type":"Point","coordinates":[147.4881,-45.7327]}},{"type":"Feature","id":48287,"properties":{"mag":5.72,"bv":"1.085"},"geometry":{"type":"Point","coordinates":[147.6747,-46.9339]}},{"type":"Feature","id":48310,"properties":{"mag":5.56,"bv":"1.316"},"geometry":{"type":"Point","coordinates":[147.7316,-62.7451]}},{"type":"Feature","id":48319,"properties":{"mag":3.78,"bv":"0.291"},"geometry":{"type":"Point","coordinates":[147.7473,59.0387]}},{"type":"Feature","id":48339,"properties":{"mag":5.79,"bv":"1.354"},"geometry":{"type":"Point","coordinates":[147.8003,-59.4258]}},{"type":"Feature","id":48348,"properties":{"mag":5.62,"bv":"1.166"},"geometry":{"type":"Point","coordinates":[147.8322,-46.1939]}},{"type":"Feature","id":48356,"properties":{"mag":4.11,"bv":"0.918"},"geometry":{"type":"Point","coordinates":[147.8696,-14.8466]}},{"type":"Feature","id":48374,"properties":{"mag":4.58,"bv":"1.172"},"geometry":{"type":"Point","coordinates":[147.9194,-46.5476]}},{"type":"Feature","id":48390,"properties":{"mag":5.29,"bv":"0.229"},"geometry":{"type":"Point","coordinates":[147.971,24.3954]}},{"type":"Feature","id":48402,"properties":{"mag":4.55,"bv":"0.038"},"geometry":{"type":"Point","coordinates":[148.0265,54.0643]}},{"type":"Feature","id":48437,"properties":{"mag":5.07,"bv":"0.038"},"geometry":{"type":"Point","coordinates":[148.1268,-8.105]}},{"type":"Feature","id":48455,"properties":{"mag":3.88,"bv":"1.222"},"geometry":{"type":"Point","coordinates":[148.1909,26.007]}},{"type":"Feature","id":48519,"properties":{"mag":5.9,"bv":"1.662"},"geometry":{"type":"Point","coordinates":[148.4289,5.9586]}},{"type":"Feature","id":48527,"properties":{"mag":5.95,"bv":"-0.152"},"geometry":{"type":"Point","coordinates":[148.4587,-51.1467]}},{"type":"Feature","id":48559,"properties":{"mag":4.87,"bv":"1.199"},"geometry":{"type":"Point","coordinates":[148.5513,-25.9323]}},{"type":"Feature","id":48561,"properties":{"mag":5.72,"bv":"-0.114"},"geometry":{"type":"Point","coordinates":[148.5736,-45.2835]}},{"type":"Feature","id":48613,"properties":{"mag":5.71,"bv":"0.006"},"geometry":{"type":"Point","coordinates":[148.7135,-50.244]}},{"type":"Feature","id":48615,"properties":{"mag":4.94,"bv":"1.559"},"geometry":{"type":"Point","coordinates":[148.7175,-19.0094]}},{"type":"Feature","id":48682,"properties":{"mag":5.27,"bv":"0.086"},"geometry":{"type":"Point","coordinates":[148.9292,49.8198]}},{"type":"Feature","id":48734,"properties":{"mag":5.85,"bv":"1.129"},"geometry":{"type":"Point","coordinates":[149.1082,8.9332]}},{"type":"Feature","id":48748,"properties":{"mag":5.83,"bv":"1.202"},"geometry":{"type":"Point","coordinates":[149.1479,-33.4185]}},{"type":"Feature","id":48774,"properties":{"mag":3.52,"bv":"-0.067"},"geometry":{"type":"Point","coordinates":[149.2156,-54.5678]}},{"type":"Feature","id":48802,"properties":{"mag":5.97,"bv":"0.895"},"geometry":{"type":"Point","coordinates":[149.3067,57.4182]}},{"type":"Feature","id":48833,"properties":{"mag":5.11,"bv":"0.481"},"geometry":{"type":"Point","coordinates":[149.4211,41.0556]}},{"type":"Feature","id":48883,"properties":{"mag":5.26,"bv":"-0.035"},"geometry":{"type":"Point","coordinates":[149.5557,12.4448]}},{"type":"Feature","id":48893,"properties":{"mag":5.86,"bv":"1.155"},"geometry":{"type":"Point","coordinates":[149.5949,72.8795]}},{"type":"Feature","id":48926,"properties":{"mag":5.23,"bv":"0.300"},"geometry":{"type":"Point","coordinates":[149.7178,-35.891]}},{"type":"Feature","id":48982,"properties":{"mag":5.75,"bv":"1.059"},"geometry":{"type":"Point","coordinates":[149.9009,29.6452]}},{"type":"Feature","id":49005,"properties":{"mag":5.5,"bv":"1.487"},"geometry":{"type":"Point","coordinates":[149.9654,56.8118]}},{"type":"Feature","id":49029,"properties":{"mag":4.68,"bv":"1.589"},"geometry":{"type":"Point","coordinates":[150.0534,8.0442]}},{"type":"Feature","id":49065,"properties":{"mag":5.53,"bv":"0.035"},"geometry":{"type":"Point","coordinates":[150.1825,-82.2147]}},{"type":"Feature","id":49081,"properties":{"mag":5.37,"bv":"0.676"},"geometry":{"type":"Point","coordinates":[150.2527,31.9237]}},{"type":"Feature","id":49164,"properties":{"mag":5.93,"bv":"0.263"},"geometry":{"type":"Point","coordinates":[150.5004,-60.4209]}},{"type":"Feature","id":49220,"properties":{"mag":5.68,"bv":"-0.178"},"geometry":{"type":"Point","coordinates":[150.704,21.9493]}},{"type":"Feature","id":49339,"properties":{"mag":5.7,"bv":"0.303"},"geometry":{"type":"Point","coordinates":[151.0873,-24.2855]}},{"type":"Feature","id":49363,"properties":{"mag":5.71,"bv":"0.507"},"geometry":{"type":"Point","coordinates":[151.1513,53.8917]}},{"type":"Feature","id":49402,"properties":{"mag":4.6,"bv":"-0.087"},"geometry":{"type":"Point","coordinates":[151.2811,-13.0646]}},{"type":"Feature","id":49485,"properties":{"mag":5.06,"bv":"0.880"},"geometry":{"type":"Point","coordinates":[151.5467,-47.37]}},{"type":"Feature","id":49569,"properties":{"mag":5.59,"bv":"1.490"},"geometry":{"type":"Point","coordinates":[151.7896,-17.1417]}},{"type":"Feature","id":49583,"properties":{"mag":3.48,"bv":"-0.031"},"geometry":{"type":"Point","coordinates":[151.8331,16.7627]}},{"type":"Feature","id":49593,"properties":{"mag":4.49,"bv":"0.190"},"geometry":{"type":"Point","coordinates":[151.8573,35.2447]}},{"type":"Feature","id":49637,"properties":{"mag":4.39,"bv":"1.448"},"geometry":{"type":"Point","coordinates":[151.9761,9.9975]}},{"type":"Feature","id":49641,"properties":{"mag":4.48,"bv":"-0.032"},"geometry":{"type":"Point","coordinates":[151.9845,-0.3716]}},{"type":"Feature","id":49669,"properties":{"mag":1.36,"bv":"-0.087"},"geometry":{"type":"Point","coordinates":[152.093,11.9672]}},{"type":"Feature","id":49698,"properties":{"mag":5.26,"bv":"0.973"},"geometry":{"type":"Point","coordinates":[152.1781,-65.8154]}},{"type":"Feature","id":49712,"properties":{"mag":4.85,"bv":"-0.120"},"geometry":{"type":"Point","coordinates":[152.2343,-51.8113]}},{"type":"Feature","id":49764,"properties":{"mag":5.8,"bv":"0.015"},"geometry":{"type":"Point","coordinates":[152.3757,-68.6828]}},{"type":"Feature","id":49809,"properties":{"mag":5.3,"bv":"0.368"},"geometry":{"type":"Point","coordinates":[152.5245,-12.8159]}},{"type":"Feature","id":49812,"properties":{"mag":5.91,"bv":"0.026"},"geometry":{"type":"Point","coordinates":[152.5314,-8.4082]}},{"type":"Feature","id":49841,"properties":{"mag":3.61,"bv":"1.007"},"geometry":{"type":"Point","coordinates":[152.647,-12.3541]}},{"type":"Feature","id":49844,"properties":{"mag":5.98,"bv":"1.239"},"geometry":{"type":"Point","coordinates":[152.6572,-41.7152]}},{"type":"Feature","id":49865,"properties":{"mag":5.64,"bv":"1.304"},"geometry":{"type":"Point","coordinates":[152.7328,-8.4185]}},{"type":"Feature","id":49893,"properties":{"mag":5.86,"bv":"1.282"},"geometry":{"type":"Point","coordinates":[152.8032,37.4019]}},{"type":"Feature","id":49934,"properties":{"mag":5.7,"bv":"-0.118"},"geometry":{"type":"Point","coordinates":[152.9436,-58.0605]}},{"type":"Feature","id":50027,"properties":{"mag":5.77,"bv":"1.178"},"geometry":{"type":"Point","coordinates":[153.2015,4.6147]}},{"type":"Feature","id":50070,"properties":{"mag":5.27,"bv":"0.257"},"geometry":{"type":"Point","coordinates":[153.3452,-51.233]}},{"type":"Feature","id":50078,"properties":{"mag":5.78,"bv":"0.136"},"geometry":{"type":"Point","coordinates":[153.3666,-51.7558]}},{"type":"Feature","id":50083,"properties":{"mag":5.15,"bv":"0.217"},"geometry":{"type":"Point","coordinates":[153.3776,-66.3728]}},{"type":"Feature","id":50099,"properties":{"mag":3.29,"bv":"-0.074"},"geometry":{"type":"Point","coordinates":[153.4342,-70.0379]}},{"type":"Feature","id":50103,"properties":{"mag":5.91,"bv":"1.204"},"geometry":{"type":"Point","coordinates":[153.4413,-40.3461]}},{"type":"Feature","id":50191,"properties":{"mag":3.85,"bv":"0.051"},"geometry":{"type":"Point","coordinates":[153.684,-42.1219]}},{"type":"Feature","id":50241,"properties":{"mag":5.59,"bv":"1.520"},"geometry":{"type":"Point","coordinates":[153.8815,-43.1124]}},{"type":"Feature","id":50303,"properties":{"mag":5.49,"bv":"0.020"},"geometry":{"type":"Point","coordinates":[154.0601,29.3105]}},{"type":"Feature","id":50319,"properties":{"mag":5.95,"bv":"0.655"},"geometry":{"type":"Point","coordinates":[154.1345,23.5031]}},{"type":"Feature","id":50333,"properties":{"mag":5.42,"bv":"1.650"},"geometry":{"type":"Point","coordinates":[154.1697,13.7283]}},{"type":"Feature","id":50335,"properties":{"mag":3.43,"bv":"0.307"},"geometry":{"type":"Point","coordinates":[154.1726,23.4173]}},{"type":"Feature","id":50336,"properties":{"mag":5.84,"bv":"1.206"},"geometry":{"type":"Point","coordinates":[154.174,25.3707]}},{"type":"Feature","id":50371,"properties":{"mag":3.39,"bv":"1.541"},"geometry":{"type":"Point","coordinates":[154.2707,-61.3323]}},{"type":"Feature","id":50372,"properties":{"mag":3.45,"bv":"0.029"},"geometry":{"type":"Point","coordinates":[154.2741,42.9144]}},{"type":"Feature","id":50384,"properties":{"mag":5.81,"bv":"0.500"},"geometry":{"type":"Point","coordinates":[154.3106,23.1062]}},{"type":"Feature","id":50414,"properties":{"mag":5.25,"bv":"0.336"},"geometry":{"type":"Point","coordinates":[154.4075,-8.0689]}},{"type":"Feature","id":50448,"properties":{"mag":5.74,"bv":"0.163"},"geometry":{"type":"Point","coordinates":[154.5084,65.1084]}},{"type":"Feature","id":50456,"properties":{"mag":5.52,"bv":"0.277"},"geometry":{"type":"Point","coordinates":[154.5316,-28.992]}},{"type":"Feature","id":50480,"properties":{"mag":5.97,"bv":"-0.063"},"geometry":{"type":"Point","coordinates":[154.6177,-41.6685]}},{"type":"Feature","id":50493,"properties":{"mag":5.8,"bv":"0.481"},"geometry":{"type":"Point","coordinates":[154.658,-56.1104]}},{"type":"Feature","id":50520,"properties":{"mag":5.66,"bv":"0.042"},"geometry":{"type":"Point","coordinates":[154.7711,-64.6763]}},{"type":"Feature","id":50546,"properties":{"mag":6,"bv":"1.022"},"geometry":{"type":"Point","coordinates":[154.8616,48.3968]}},{"type":"Feature","id":50555,"properties":{"mag":4.59,"bv":"1.600"},"geometry":{"type":"Point","coordinates":[154.9031,-55.0293]}},{"type":"Feature","id":50564,"properties":{"mag":4.78,"bv":"0.452"},"geometry":{"type":"Point","coordinates":[154.934,19.4709]}},{"type":"Feature","id":50583,"properties":{"mag":2.01,"bv":"1.128"},"geometry":{"type":"Point","coordinates":[154.9931,19.8415]}},{"type":"Feature","id":50609,"properties":{"mag":5.66,"bv":"1.667"},"geometry":{"type":"Point","coordinates":[155.0696,-47.6991]}},{"type":"Feature","id":50676,"properties":{"mag":4.5,"bv":"-0.102"},"geometry":{"type":"Point","coordinates":[155.2283,-56.0432]}},{"type":"Feature","id":50685,"properties":{"mag":5.88,"bv":"0.241"},"geometry":{"type":"Point","coordinates":[155.2639,68.7477]}},{"type":"Feature","id":50786,"properties":{"mag":5.73,"bv":"0.531"},"geometry":{"type":"Point","coordinates":[155.544,41.2295]}},{"type":"Feature","id":50799,"properties":{"mag":4.82,"bv":"1.095"},"geometry":{"type":"Point","coordinates":[155.5816,-41.65]}},{"type":"Feature","id":50801,"properties":{"mag":3.06,"bv":"1.603"},"geometry":{"type":"Point","coordinates":[155.5823,41.4995]}},{"type":"Feature","id":50847,"properties":{"mag":4.97,"bv":"-0.128"},"geometry":{"type":"Point","coordinates":[155.7423,-66.9015]}},{"type":"Feature","id":50860,"properties":{"mag":5.89,"bv":"0.147"},"geometry":{"type":"Point","coordinates":[155.7764,33.9081]}},{"type":"Feature","id":50885,"properties":{"mag":5.93,"bv":"-0.048"},"geometry":{"type":"Point","coordinates":[155.8603,-4.074]}},{"type":"Feature","id":50888,"properties":{"mag":5.34,"bv":"0.251"},"geometry":{"type":"Point","coordinates":[155.8721,-38.0098]}},{"type":"Feature","id":50933,"properties":{"mag":4.94,"bv":"-0.052"},"geometry":{"type":"Point","coordinates":[156.0327,65.5664]}},{"type":"Feature","id":50935,"properties":{"mag":5.52,"bv":"1.186"},"geometry":{"type":"Point","coordinates":[156.0358,33.7185]}},{"type":"Feature","id":50954,"properties":{"mag":3.99,"bv":"0.369"},"geometry":{"type":"Point","coordinates":[156.0988,-74.0316]}},{"type":"Feature","id":50993,"properties":{"mag":5.93,"bv":"0.315"},"geometry":{"type":"Point","coordinates":[156.2476,-58.5763]}},{"type":"Feature","id":51008,"properties":{"mag":5.61,"bv":"1.630"},"geometry":{"type":"Point","coordinates":[156.3133,8.7848]}},{"type":"Feature","id":51046,"properties":{"mag":5.6,"bv":"1.528"},"geometry":{"type":"Point","coordinates":[156.4345,-7.0598]}},{"type":"Feature","id":51056,"properties":{"mag":4.72,"bv":"0.260"},"geometry":{"type":"Point","coordinates":[156.4784,33.7961]}},{"type":"Feature","id":51069,"properties":{"mag":3.83,"bv":"1.456"},"geometry":{"type":"Point","coordinates":[156.5226,-16.8363]}},{"type":"Feature","id":51140,"properties":{"mag":5.58,"bv":"1.556"},"geometry":{"type":"Point","coordinates":[156.7038,-54.8773]}},{"type":"Feature","id":51172,"properties":{"mag":4.28,"bv":"1.429"},"geometry":{"type":"Point","coordinates":[156.7879,-31.0678]}},{"type":"Feature","id":51192,"properties":{"mag":4.65,"bv":"0.474"},"geometry":{"type":"Point","coordinates":[156.852,-57.6388]}},{"type":"Feature","id":51194,"properties":{"mag":6,"bv":"0.091"},"geometry":{"type":"Point","coordinates":[156.8553,-65.7047]}},{"type":"Feature","id":51200,"properties":{"mag":6,"bv":"0.166"},"geometry":{"type":"Point","coordinates":[156.8668,41.601]}},{"type":"Feature","id":51232,"properties":{"mag":3.81,"bv":"0.317"},"geometry":{"type":"Point","coordinates":[156.9697,-58.7394]}},{"type":"Feature","id":51233,"properties":{"mag":4.2,"bv":"0.908"},"geometry":{"type":"Point","coordinates":[156.9708,36.7072]}},{"type":"Feature","id":51313,"properties":{"mag":5.27,"bv":"1.856"},"geometry":{"type":"Point","coordinates":[157.2191,-64.1723]}},{"type":"Feature","id":51362,"properties":{"mag":5.19,"bv":"-0.050"},"geometry":{"type":"Point","coordinates":[157.3696,-2.7391]}},{"type":"Feature","id":51364,"properties":{"mag":5.58,"bv":"1.420"},"geometry":{"type":"Point","coordinates":[157.3707,-29.6638]}},{"type":"Feature","id":51376,"properties":{"mag":5.57,"bv":"-0.041"},"geometry":{"type":"Point","coordinates":[157.3974,-30.6071]}},{"type":"Feature","id":51384,"properties":{"mag":5.52,"bv":"0.244"},"geometry":{"type":"Point","coordinates":[157.4228,84.252]}},{"type":"Feature","id":51420,"properties":{"mag":5.79,"bv":"0.087"},"geometry":{"type":"Point","coordinates":[157.5269,38.9251]}},{"type":"Feature","id":51437,"properties":{"mag":5.08,"bv":"-0.138"},"geometry":{"type":"Point","coordinates":[157.5728,-0.637]}},{"type":"Feature","id":51438,"properties":{"mag":4.72,"bv":"0.042"},"geometry":{"type":"Point","coordinates":[157.5839,-71.9928]}},{"type":"Feature","id":51459,"properties":{"mag":4.82,"bv":"0.541"},"geometry":{"type":"Point","coordinates":[157.6566,55.9805]}},{"type":"Feature","id":51491,"properties":{"mag":5.59,"bv":"-0.028"},"geometry":{"type":"Point","coordinates":[157.7493,-13.5885]}},{"type":"Feature","id":51495,"properties":{"mag":4.94,"bv":"1.677"},"geometry":{"type":"Point","coordinates":[157.7586,-73.2215]}},{"type":"Feature","id":51502,"properties":{"mag":5.25,"bv":"0.399"},"geometry":{"type":"Point","coordinates":[157.7694,82.5586]}},{"type":"Feature","id":51523,"properties":{"mag":4.89,"bv":"0.500"},"geometry":{"type":"Point","coordinates":[157.8409,-53.7155]}},{"type":"Feature","id":51556,"properties":{"mag":5.9,"bv":"0.114"},"geometry":{"type":"Point","coordinates":[157.9641,32.3796]}},{"type":"Feature","id":51561,"properties":{"mag":5.76,"bv":"-0.194"},"geometry":{"type":"Point","coordinates":[157.9893,-45.0667]}},{"type":"Feature","id":51576,"properties":{"mag":3.3,"bv":"-0.089"},"geometry":{"type":"Point","coordinates":[158.0061,-61.6853]}},{"type":"Feature","id":51585,"properties":{"mag":5.43,"bv":"1.696"},"geometry":{"type":"Point","coordinates":[158.0491,14.1373]}},{"type":"Feature","id":51610,"properties":{"mag":5.91,"bv":"0.920"},"geometry":{"type":"Point","coordinates":[158.14,-44.6185]}},{"type":"Feature","id":51623,"properties":{"mag":5.98,"bv":"0.290"},"geometry":{"type":"Point","coordinates":[158.1992,-58.6667]}},{"type":"Feature","id":51624,"properties":{"mag":3.84,"bv":"-0.148"},"geometry":{"type":"Point","coordinates":[158.2028,9.3066]}},{"type":"Feature","id":51635,"properties":{"mag":5.02,"bv":"1.045"},"geometry":{"type":"Point","coordinates":[158.2369,-47.0034]}},{"type":"Feature","id":51658,"properties":{"mag":4.72,"bv":"0.222"},"geometry":{"type":"Point","coordinates":[158.3079,40.4256]}},{"type":"Feature","id":51685,"properties":{"mag":5.57,"bv":"0.029"},"geometry":{"type":"Point","coordinates":[158.3788,34.9887]}},{"type":"Feature","id":51718,"properties":{"mag":5.08,"bv":"1.596"},"geometry":{"type":"Point","coordinates":[158.5037,-23.7452]}},{"type":"Feature","id":51775,"properties":{"mag":5.07,"bv":"0.921"},"geometry":{"type":"Point","coordinates":[158.7001,6.9537]}},{"type":"Feature","id":51802,"properties":{"mag":5.67,"bv":"0.059"},"geometry":{"type":"Point","coordinates":[158.759,8.6504]}},{"type":"Feature","id":51808,"properties":{"mag":4.86,"bv":"0.957"},"geometry":{"type":"Point","coordinates":[158.7728,75.7129]}},{"type":"Feature","id":51814,"properties":{"mag":5.16,"bv":"0.349"},"geometry":{"type":"Point","coordinates":[158.7904,57.0826]}},{"type":"Feature","id":51821,"properties":{"mag":5.5,"bv":"3.015"},"geometry":{"type":"Point","coordinates":[158.8035,-39.5626]}},{"type":"Feature","id":51839,"properties":{"mag":4.11,"bv":"1.580"},"geometry":{"type":"Point","coordinates":[158.8671,-78.6078]}},{"type":"Feature","id":51849,"properties":{"mag":4.45,"bv":"1.604"},"geometry":{"type":"Point","coordinates":[158.8971,-57.5576]}},{"type":"Feature","id":51912,"properties":{"mag":5.08,"bv":"1.172"},"geometry":{"type":"Point","coordinates":[159.0855,-59.5644]}},{"type":"Feature","id":51933,"properties":{"mag":5.71,"bv":"0.528"},"geometry":{"type":"Point","coordinates":[159.1349,-12.2301]}},{"type":"Feature","id":51979,"properties":{"mag":4.87,"bv":"1.626"},"geometry":{"type":"Point","coordinates":[159.3072,-27.4126]}},{"type":"Feature","id":51986,"properties":{"mag":3.84,"bv":"0.300"},"geometry":{"type":"Point","coordinates":[159.3256,-48.2256]}},{"type":"Feature","id":52004,"properties":{"mag":5.47,"bv":"0.500"},"geometry":{"type":"Point","coordinates":[159.3628,-58.7333]}},{"type":"Feature","id":52009,"properties":{"mag":4.89,"bv":"2.800"},"geometry":{"type":"Point","coordinates":[159.3886,-13.3845]}},{"type":"Feature","id":52043,"properties":{"mag":5.89,"bv":"-0.128"},"geometry":{"type":"Point","coordinates":[159.511,-57.2563]}},{"type":"Feature","id":52085,"properties":{"mag":4.91,"bv":"0.922"},"geometry":{"type":"Point","coordinates":[159.6456,-16.8766]}},{"type":"Feature","id":52098,"properties":{"mag":4.68,"bv":"0.823"},"geometry":{"type":"Point","coordinates":[159.6801,31.9762]}},{"type":"Feature","id":52102,"properties":{"mag":4.69,"bv":"1.562"},"geometry":{"type":"Point","coordinates":[159.6875,-59.183]}},{"type":"Feature","id":52127,"properties":{"mag":5.96,"bv":"1.692"},"geometry":{"type":"Point","coordinates":[159.7484,-58.8169]}},{"type":"Feature","id":52136,"properties":{"mag":5.55,"bv":"1.270"},"geometry":{"type":"Point","coordinates":[159.7736,53.6683]}},{"type":"Feature","id":52139,"properties":{"mag":5.84,"bv":"0.595"},"geometry":{"type":"Point","coordinates":[159.7818,37.91]}},{"type":"Feature","id":52154,"properties":{"mag":4.29,"bv":"1.025"},"geometry":{"type":"Point","coordinates":[159.8266,-55.6033]}},{"type":"Feature","id":52221,"properties":{"mag":5.51,"bv":"-0.158"},"geometry":{"type":"Point","coordinates":[160.0477,-65.1002]}},{"type":"Feature","id":52338,"properties":{"mag":5.74,"bv":"1.315"},"geometry":{"type":"Point","coordinates":[160.4511,68.4435]}},{"type":"Feature","id":52340,"properties":{"mag":5.97,"bv":"-0.071"},"geometry":{"type":"Point","coordinates":[160.4647,-79.7833]}},{"type":"Feature","id":52353,"properties":{"mag":5.12,"bv":"1.207"},"geometry":{"type":"Point","coordinates":[160.4856,65.7163]}},{"type":"Feature","id":52370,"properties":{"mag":4.76,"bv":"-0.139"},"geometry":{"type":"Point","coordinates":[160.5588,-64.4664]}},{"type":"Feature","id":52405,"properties":{"mag":5.36,"bv":"0.213"},"geometry":{"type":"Point","coordinates":[160.669,-59.2158]}},{"type":"Feature","id":52407,"properties":{"mag":5.63,"bv":"0.006"},"geometry":{"type":"Point","coordinates":[160.6799,-32.7157]}},{"type":"Feature","id":52419,"properties":{"mag":2.74,"bv":"-0.220"},"geometry":{"type":"Point","coordinates":[160.7392,-64.3945]}},{"type":"Feature","id":52422,"properties":{"mag":5.51,"bv":"0.160"},"geometry":{"type":"Point","coordinates":[160.7578,26.3256]}},{"type":"Feature","id":52425,"properties":{"mag":5.01,"bv":"1.406"},"geometry":{"type":"Point","coordinates":[160.7668,69.0762]}},{"type":"Feature","id":52452,"properties":{"mag":5.77,"bv":"1.168"},"geometry":{"type":"Point","coordinates":[160.8372,4.7477]}},{"type":"Feature","id":52457,"properties":{"mag":5.08,"bv":"0.042"},"geometry":{"type":"Point","coordinates":[160.854,23.1884]}},{"type":"Feature","id":52468,"properties":{"mag":4.58,"bv":"1.700"},"geometry":{"type":"Point","coordinates":[160.8845,-60.5666]}},{"type":"Feature","id":52469,"properties":{"mag":5.18,"bv":"0.324"},"geometry":{"type":"Point","coordinates":[160.887,46.2039]}},{"type":"Feature","id":52478,"properties":{"mag":5.79,"bv":"-0.038"},"geometry":{"type":"Point","coordinates":[160.9306,57.1992]}},{"type":"Feature","id":52487,"properties":{"mag":5.74,"bv":"0.012"},"geometry":{"type":"Point","coordinates":[160.9633,-64.249]}},{"type":"Feature","id":52502,"properties":{"mag":4.8,"bv":"-0.134"},"geometry":{"type":"Point","coordinates":[161.0288,-63.9611]}},{"type":"Feature","id":52577,"properties":{"mag":5.95,"bv":"2.382"},"geometry":{"type":"Point","coordinates":[161.2668,67.4114]}},{"type":"Feature","id":52595,"properties":{"mag":5.46,"bv":"0.957"},"geometry":{"type":"Point","coordinates":[161.318,-80.4696]}},{"type":"Feature","id":52633,"properties":{"mag":4.45,"bv":"-0.188"},"geometry":{"type":"Point","coordinates":[161.4458,-80.5402]}},{"type":"Feature","id":52638,"properties":{"mag":5.36,"bv":"-0.050"},"geometry":{"type":"Point","coordinates":[161.4662,30.6823]}},{"type":"Feature","id":52678,"properties":{"mag":5.33,"bv":"-0.096"},"geometry":{"type":"Point","coordinates":[161.569,-64.5146]}},{"type":"Feature","id":52686,"properties":{"mag":5.5,"bv":"1.134"},"geometry":{"type":"Point","coordinates":[161.6023,18.8915]}},{"type":"Feature","id":52689,"properties":{"mag":5.49,"bv":"0.908"},"geometry":{"type":"Point","coordinates":[161.6053,14.1946]}},{"type":"Feature","id":52701,"properties":{"mag":5.23,"bv":"-0.077"},"geometry":{"type":"Point","coordinates":[161.6233,-64.2632]}},{"type":"Feature","id":52727,"properties":{"mag":2.69,"bv":"0.901"},"geometry":{"type":"Point","coordinates":[161.6924,-49.4203]}},{"type":"Feature","id":52736,"properties":{"mag":4.87,"bv":"-0.149"},"geometry":{"type":"Point","coordinates":[161.7134,-64.3835]}},{"type":"Feature","id":52737,"properties":{"mag":5.44,"bv":"0.112"},"geometry":{"type":"Point","coordinates":[161.7169,-17.2969]}},{"type":"Feature","id":52742,"properties":{"mag":5.14,"bv":"-0.080"},"geometry":{"type":"Point","coordinates":[161.7395,-56.7572]}},{"type":"Feature","id":52827,"properties":{"mag":5.98,"bv":"0.274"},"geometry":{"type":"Point","coordinates":[162.0225,-59.9192]}},{"type":"Feature","id":52841,"properties":{"mag":5.87,"bv":"0.028"},"geometry":{"type":"Point","coordinates":[162.0588,-31.6879]}},{"type":"Feature","id":52863,"properties":{"mag":5.92,"bv":"1.608"},"geometry":{"type":"Point","coordinates":[162.169,-1.9589]}},{"type":"Feature","id":52911,"properties":{"mag":5.32,"bv":"0.035"},"geometry":{"type":"Point","coordinates":[162.3143,10.5452]}},{"type":"Feature","id":52922,"properties":{"mag":5.85,"bv":"0.008"},"geometry":{"type":"Point","coordinates":[162.3518,-59.3238]}},{"type":"Feature","id":52943,"properties":{"mag":3.11,"bv":"1.232"},"geometry":{"type":"Point","coordinates":[162.4062,-16.1936]}},{"type":"Feature","id":52948,"properties":{"mag":5.85,"bv":"1.074"},"geometry":{"type":"Point","coordinates":[162.4312,-9.8527]}},{"type":"Feature","id":52965,"properties":{"mag":5.61,"bv":"0.038"},"geometry":{"type":"Point","coordinates":[162.4876,-34.0582]}},{"type":"Feature","id":52980,"properties":{"mag":5.8,"bv":"0.156"},"geometry":{"type":"Point","coordinates":[162.5752,-8.8978]}},{"type":"Feature","id":53035,"properties":{"mag":5.95,"bv":"1.475"},"geometry":{"type":"Point","coordinates":[162.7725,-3.0927]}},{"type":"Feature","id":53043,"properties":{"mag":5.66,"bv":"1.132"},"geometry":{"type":"Point","coordinates":[162.7959,56.5823]}},{"type":"Feature","id":53064,"properties":{"mag":5.57,"bv":"1.160"},"geometry":{"type":"Point","coordinates":[162.8488,59.3201]}},{"type":"Feature","id":53154,"properties":{"mag":5.26,"bv":"0.130"},"geometry":{"type":"Point","coordinates":[163.1285,-57.2404]}},{"type":"Feature","id":53229,"properties":{"mag":3.79,"bv":"1.040"},"geometry":{"type":"Point","coordinates":[163.3279,34.2149]}},{"type":"Feature","id":53252,"properties":{"mag":5.23,"bv":"0.480"},"geometry":{"type":"Point","coordinates":[163.373,-20.1387]}},{"type":"Feature","id":53253,"properties":{"mag":3.78,"bv":"0.945"},"geometry":{"type":"Point","coordinates":[163.3736,-58.8532]}},{"type":"Feature","id":53257,"properties":{"mag":5.91,"bv":"1.010"},"geometry":{"type":"Point","coordinates":[163.3779,69.8539]}},{"type":"Feature","id":53261,"properties":{"mag":5.12,"bv":"1.355"},"geometry":{"type":"Point","coordinates":[163.3935,54.5851]}},{"type":"Feature","id":53272,"properties":{"mag":5.99,"bv":"-0.020"},"geometry":{"type":"Point","coordinates":[163.4253,-70.7203]}},{"type":"Feature","id":53273,"properties":{"mag":5.45,"bv":"0.966"},"geometry":{"type":"Point","coordinates":[163.4321,-2.1292]}},{"type":"Feature","id":53295,"properties":{"mag":4.66,"bv":"-0.039"},"geometry":{"type":"Point","coordinates":[163.4948,43.19]}},{"type":"Feature","id":53316,"properties":{"mag":5.65,"bv":"0.832"},"geometry":{"type":"Point","coordinates":[163.5741,-13.758]}},{"type":"Feature","id":53334,"properties":{"mag":5.95,"bv":"1.736"},"geometry":{"type":"Point","coordinates":[163.6233,-61.8266]}},{"type":"Feature","id":53377,"properties":{"mag":5.73,"bv":"1.032"},"geometry":{"type":"Point","coordinates":[163.7424,34.0348]}},{"type":"Feature","id":53394,"properties":{"mag":5.93,"bv":"1.065"},"geometry":{"type":"Point","coordinates":[163.8218,-60.517]}},{"type":"Feature","id":53417,"properties":{"mag":4.3,"bv":"0.016"},"geometry":{"type":"Point","coordinates":[163.9033,24.7497]}},{"type":"Feature","id":53423,"properties":{"mag":5.91,"bv":"0.425"},"geometry":{"type":"Point","coordinates":[163.9267,0.7369]}},{"type":"Feature","id":53426,"properties":{"mag":5.02,"bv":"1.101"},"geometry":{"type":"Point","coordinates":[163.9349,33.5069]}},{"type":"Feature","id":53449,"properties":{"mag":5.91,"bv":"1.256"},"geometry":{"type":"Point","coordinates":[164.0061,6.1854]}},{"type":"Feature","id":53502,"properties":{"mag":4.6,"bv":"1.006"},"geometry":{"type":"Point","coordinates":[164.1794,-37.1378]}},{"type":"Feature","id":53530,"properties":{"mag":5.9,"bv":"0.173"},"geometry":{"type":"Point","coordinates":[164.2827,-50.765]}},{"type":"Feature","id":53699,"properties":{"mag":5.7,"bv":"0.374"},"geometry":{"type":"Point","coordinates":[164.8073,-33.7376]}},{"type":"Feature","id":53721,"properties":{"mag":5.03,"bv":"0.624"},"geometry":{"type":"Point","coordinates":[164.8666,40.4303]}},{"type":"Feature","id":53723,"properties":{"mag":5.88,"bv":"1.600"},"geometry":{"type":"Point","coordinates":[164.8789,-16.3537]}},{"type":"Feature","id":53726,"properties":{"mag":5.99,"bv":"1.595"},"geometry":{"type":"Point","coordinates":[164.8866,36.0931]}},{"type":"Feature","id":53740,"properties":{"mag":4.08,"bv":"1.079"},"geometry":{"type":"Point","coordinates":[164.9436,-18.2988]}},{"type":"Feature","id":53762,"properties":{"mag":5.81,"bv":"-0.064"},"geometry":{"type":"Point","coordinates":[164.9974,-43.8071]}},{"type":"Feature","id":53773,"properties":{"mag":4.37,"bv":"0.116"},"geometry":{"type":"Point","coordinates":[165.0386,-42.2259]}},{"type":"Feature","id":53778,"properties":{"mag":5.86,"bv":"1.501"},"geometry":{"type":"Point","coordinates":[165.0487,-14.0834]}},{"type":"Feature","id":53781,"properties":{"mag":5.47,"bv":"1.466"},"geometry":{"type":"Point","coordinates":[165.0613,45.5263]}},{"type":"Feature","id":53807,"properties":{"mag":4.84,"bv":"1.144"},"geometry":{"type":"Point","coordinates":[165.1402,3.6175]}},{"type":"Feature","id":53824,"properties":{"mag":4.98,"bv":"0.166"},"geometry":{"type":"Point","coordinates":[165.1867,6.1014]}},{"type":"Feature","id":53838,"properties":{"mag":5.06,"bv":"0.255"},"geometry":{"type":"Point","coordinates":[165.2101,39.2121]}},{"type":"Feature","id":53907,"properties":{"mag":4.73,"bv":"1.593"},"geometry":{"type":"Point","coordinates":[165.457,-2.4846]}},{"type":"Feature","id":53910,"properties":{"mag":2.34,"bv":"0.033"},"geometry":{"type":"Point","coordinates":[165.4603,56.3824]}},{"type":"Feature","id":53954,"properties":{"mag":4.42,"bv":"0.053"},"geometry":{"type":"Point","coordinates":[165.5824,20.1798]}},{"type":"Feature","id":54029,"properties":{"mag":5.51,"bv":"0.938"},"geometry":{"type":"Point","coordinates":[165.812,-11.3035]}},{"type":"Feature","id":54049,"properties":{"mag":5.95,"bv":"1.218"},"geometry":{"type":"Point","coordinates":[165.9025,-0.0008]}},{"type":"Feature","id":54061,"properties":{"mag":1.81,"bv":"1.061"},"geometry":{"type":"Point","coordinates":[165.932,61.751]}},{"type":"Feature","id":54137,"properties":{"mag":5.67,"bv":"0.256"},"geometry":{"type":"Point","coordinates":[166.13,-47.6791]}},{"type":"Feature","id":54173,"properties":{"mag":5.43,"bv":"0.021"},"geometry":{"type":"Point","coordinates":[166.2258,-35.8047]}},{"type":"Feature","id":54182,"properties":{"mag":4.62,"bv":"0.332"},"geometry":{"type":"Point","coordinates":[166.2543,7.336]}},{"type":"Feature","id":54204,"properties":{"mag":4.92,"bv":"0.369"},"geometry":{"type":"Point","coordinates":[166.3329,-27.2936]}},{"type":"Feature","id":54255,"properties":{"mag":5.69,"bv":"-0.067"},"geometry":{"type":"Point","coordinates":[166.4899,-27.2879]}},{"type":"Feature","id":54301,"properties":{"mag":4.62,"bv":"0.988"},"geometry":{"type":"Point","coordinates":[166.6351,-62.4241]}},{"type":"Feature","id":54327,"properties":{"mag":5.58,"bv":"-0.070"},"geometry":{"type":"Point","coordinates":[166.7079,-70.8779]}},{"type":"Feature","id":54336,"properties":{"mag":5.52,"bv":"0.955"},"geometry":{"type":"Point","coordinates":[166.7259,1.9555]}},{"type":"Feature","id":54360,"properties":{"mag":5.15,"bv":"0.029"},"geometry":{"type":"Point","coordinates":[166.8195,-42.6387]}},{"type":"Feature","id":54461,"properties":{"mag":5.11,"bv":"0.195"},"geometry":{"type":"Point","coordinates":[167.1417,-61.9472]}},{"type":"Feature","id":54463,"properties":{"mag":3.93,"bv":"1.225"},"geometry":{"type":"Point","coordinates":[167.1475,-58.975]}},{"type":"Feature","id":54477,"properties":{"mag":5.43,"bv":"0.069"},"geometry":{"type":"Point","coordinates":[167.1833,-28.0807]}},{"type":"Feature","id":54487,"properties":{"mag":5.7,"bv":"0.081"},"geometry":{"type":"Point","coordinates":[167.2045,24.6585]}},{"type":"Feature","id":54522,"properties":{"mag":5.71,"bv":"1.400"},"geometry":{"type":"Point","coordinates":[167.3295,36.3094]}},{"type":"Feature","id":54537,"properties":{"mag":5.89,"bv":"1.564"},"geometry":{"type":"Point","coordinates":[167.4104,43.2077]}},{"type":"Feature","id":54539,"properties":{"mag":3,"bv":"1.144"},"geometry":{"type":"Point","coordinates":[167.4159,44.4985]}},{"type":"Feature","id":54561,"properties":{"mag":5.79,"bv":"0.027"},"geometry":{"type":"Point","coordinates":[167.4725,-32.3675]}},{"type":"Feature","id":54682,"properties":{"mag":4.46,"bv":"0.025"},"geometry":{"type":"Point","coordinates":[167.9145,-22.8258]}},{"type":"Feature","id":54746,"properties":{"mag":5.37,"bv":"0.175"},"geometry":{"type":"Point","coordinates":[168.1377,-49.101]}},{"type":"Feature","id":54751,"properties":{"mag":4.59,"bv":"0.541"},"geometry":{"type":"Point","coordinates":[168.1501,-60.3176]}},{"type":"Feature","id":54767,"properties":{"mag":5.22,"bv":"-0.082"},"geometry":{"type":"Point","coordinates":[168.1884,-64.1698]}},{"type":"Feature","id":54811,"properties":{"mag":5.77,"bv":"1.661"},"geometry":{"type":"Point","coordinates":[168.3112,-44.3722]}},{"type":"Feature","id":54829,"properties":{"mag":5.74,"bv":"-0.106"},"geometry":{"type":"Point","coordinates":[168.3783,-59.6193]}},{"type":"Feature","id":54840,"properties":{"mag":5.75,"bv":"1.309"},"geometry":{"type":"Point","coordinates":[168.4141,-53.2318]}},{"type":"Feature","id":54849,"properties":{"mag":5.4,"bv":"-0.020"},"geometry":{"type":"Point","coordinates":[168.4398,-0.0695]}},{"type":"Feature","id":54863,"properties":{"mag":5.79,"bv":"1.128"},"geometry":{"type":"Point","coordinates":[168.5076,8.0607]}},{"type":"Feature","id":54872,"properties":{"mag":2.56,"bv":"0.128"},"geometry":{"type":"Point","coordinates":[168.5271,20.5237]}},{"type":"Feature","id":54879,"properties":{"mag":3.33,"bv":"-0.003"},"geometry":{"type":"Point","coordinates":[168.56,15.4296]}},{"type":"Feature","id":54951,"properties":{"mag":4.56,"bv":"1.657"},"geometry":{"type":"Point","coordinates":[168.801,23.0955]}},{"type":"Feature","id":55016,"properties":{"mag":5.31,"bv":"1.189"},"geometry":{"type":"Point","coordinates":[168.9662,13.3076]}},{"type":"Feature","id":55084,"properties":{"mag":4.45,"bv":"0.210"},"geometry":{"type":"Point","coordinates":[169.1654,-3.6516]}},{"type":"Feature","id":55086,"properties":{"mag":5.88,"bv":"1.102"},"geometry":{"type":"Point","coordinates":[169.1744,49.4763]}},{"type":"Feature","id":55137,"properties":{"mag":5.18,"bv":"1.511"},"geometry":{"type":"Point","coordinates":[169.3225,2.0106]}},{"type":"Feature","id":55203,"properties":{"mag":3.79,"bv":"0.606"},"geometry":{"type":"Point","coordinates":[169.5468,31.5308]}},{"type":"Feature","id":55219,"properties":{"mag":3.49,"bv":"1.400"},"geometry":{"type":"Point","coordinates":[169.6197,33.0943]}},{"type":"Feature","id":55249,"properties":{"mag":5.9,"bv":"1.040"},"geometry":{"type":"Point","coordinates":[169.729,1.6504]}},{"type":"Feature","id":55266,"properties":{"mag":4.76,"bv":"0.113"},"geometry":{"type":"Point","coordinates":[169.7829,38.1856]}},{"type":"Feature","id":55280,"properties":{"mag":5.99,"bv":"0.471"},"geometry":{"type":"Point","coordinates":[169.8185,-64.5825]}},{"type":"Feature","id":55282,"properties":{"mag":3.56,"bv":"1.112"},"geometry":{"type":"Point","coordinates":[169.8352,-14.7785]}},{"type":"Feature","id":55425,"properties":{"mag":3.9,"bv":"-0.157"},"geometry":{"type":"Point","coordinates":[170.2517,-54.491]}},{"type":"Feature","id":55434,"properties":{"mag":4.05,"bv":"-0.058"},"geometry":{"type":"Point","coordinates":[170.2841,6.0293]}},{"type":"Feature","id":55560,"properties":{"mag":4.99,"bv":"0.998"},"geometry":{"type":"Point","coordinates":[170.7066,43.4827]}},{"type":"Feature","id":55581,"properties":{"mag":5.82,"bv":"-0.004"},"geometry":{"type":"Point","coordinates":[170.7839,-56.7794]}},{"type":"Feature","id":55588,"properties":{"mag":5,"bv":"1.464"},"geometry":{"type":"Point","coordinates":[170.8028,-36.1648]}},{"type":"Feature","id":55597,"properties":{"mag":5.09,"bv":"-0.061"},"geometry":{"type":"Point","coordinates":[170.8392,-64.9547]}},{"type":"Feature","id":55598,"properties":{"mag":5.08,"bv":"0.439"},"geometry":{"type":"Point","coordinates":[170.8412,-18.78]}},{"type":"Feature","id":55642,"properties":{"mag":4,"bv":"0.423"},"geometry":{"type":"Point","coordinates":[170.9811,10.5295]}},{"type":"Feature","id":55650,"properties":{"mag":5.39,"bv":"0.938"},"geometry":{"type":"Point","coordinates":[171.0097,1.4078]}},{"type":"Feature","id":55657,"properties":{"mag":5.55,"bv":"0.017"},"geometry":{"type":"Point","coordinates":[171.0464,-72.2566]}},{"type":"Feature","id":55687,"properties":{"mag":4.81,"bv":"1.556"},"geometry":{"type":"Point","coordinates":[171.1525,-10.8593]}},{"type":"Feature","id":55705,"properties":{"mag":4.06,"bv":"0.216"},"geometry":{"type":"Point","coordinates":[171.2205,-17.684]}},{"type":"Feature","id":55716,"properties":{"mag":5.8,"bv":"1.376"},"geometry":{"type":"Point","coordinates":[171.2455,11.4303]}},{"type":"Feature","id":55756,"properties":{"mag":5.21,"bv":"0.979"},"geometry":{"type":"Point","coordinates":[171.3727,-36.0631]}},{"type":"Feature","id":55763,"properties":{"mag":5.87,"bv":"1.503"},"geometry":{"type":"Point","coordinates":[171.3879,-37.7476]}},{"type":"Feature","id":55765,"properties":{"mag":5.58,"bv":"0.390"},"geometry":{"type":"Point","coordinates":[171.4016,16.4565]}},{"type":"Feature","id":55779,"properties":{"mag":5.18,"bv":"0.495"},"geometry":{"type":"Point","coordinates":[171.4298,-63.9725]}},{"type":"Feature","id":55797,"properties":{"mag":5.73,"bv":"0.988"},"geometry":{"type":"Point","coordinates":[171.488,55.8505]}},{"type":"Feature","id":55831,"properties":{"mag":5.22,"bv":"-0.077"},"geometry":{"type":"Point","coordinates":[171.6476,-61.1152]}},{"type":"Feature","id":55849,"properties":{"mag":5.8,"bv":"0.517"},"geometry":{"type":"Point","coordinates":[171.6969,-53.1599]}},{"type":"Feature","id":55874,"properties":{"mag":5.93,"bv":"0.490"},"geometry":{"type":"Point","coordinates":[171.7897,-12.3567]}},{"type":"Feature","id":55945,"properties":{"mag":4.95,"bv":"1.000"},"geometry":{"type":"Point","coordinates":[171.9843,2.8563]}},{"type":"Feature","id":56000,"properties":{"mag":5.14,"bv":"-0.028"},"geometry":{"type":"Point","coordinates":[172.1462,-42.6742]}},{"type":"Feature","id":56034,"properties":{"mag":5.3,"bv":"0.019"},"geometry":{"type":"Point","coordinates":[172.2672,39.337]}},{"type":"Feature","id":56035,"properties":{"mag":5.83,"bv":"0.382"},"geometry":{"type":"Point","coordinates":[172.269,61.7784]}},{"type":"Feature","id":56078,"properties":{"mag":5.77,"bv":"0.067"},"geometry":{"type":"Point","coordinates":[172.4109,-24.464]}},{"type":"Feature","id":56080,"properties":{"mag":5.74,"bv":"1.371"},"geometry":{"type":"Point","coordinates":[172.4244,15.4133]}},{"type":"Feature","id":56127,"properties":{"mag":4.77,"bv":"1.529"},"geometry":{"type":"Point","coordinates":[172.5787,-3.0035]}},{"type":"Feature","id":56146,"properties":{"mag":5.54,"bv":"1.056"},"geometry":{"type":"Point","coordinates":[172.621,18.4098]}},{"type":"Feature","id":56148,"properties":{"mag":5.94,"bv":"0.524"},"geometry":{"type":"Point","coordinates":[172.6297,43.1732]}},{"type":"Feature","id":56211,"properties":{"mag":3.82,"bv":"1.613"},"geometry":{"type":"Point","coordinates":[172.8509,69.3311]}},{"type":"Feature","id":56243,"properties":{"mag":5.07,"bv":"1.026"},"geometry":{"type":"Point","coordinates":[172.942,-59.4421]}},{"type":"Feature","id":56250,"properties":{"mag":5.12,"bv":"0.432"},"geometry":{"type":"Point","coordinates":[172.9533,-59.5156]}},{"type":"Feature","id":56280,"properties":{"mag":4.93,"bv":"0.540"},"geometry":{"type":"Point","coordinates":[173.0683,-29.261]}},{"type":"Feature","id":56287,"properties":{"mag":5.89,"bv":"1.136"},"geometry":{"type":"Point","coordinates":[173.0833,-66.9618]}},{"type":"Feature","id":56290,"properties":{"mag":5.46,"bv":"0.515"},"geometry":{"type":"Point","coordinates":[173.0864,61.0825]}},{"type":"Feature","id":56318,"properties":{"mag":5.94,"bv":"1.380"},"geometry":{"type":"Point","coordinates":[173.1981,-7.8275]}},{"type":"Feature","id":56319,"properties":{"mag":5.64,"bv":"1.578"},"geometry":{"type":"Point","coordinates":[173.2003,-40.4362]}},{"type":"Feature","id":56332,"properties":{"mag":5.13,"bv":"1.581"},"geometry":{"type":"Point","coordinates":[173.2255,-31.0872]}},{"type":"Feature","id":56343,"properties":{"mag":3.54,"bv":"0.947"},"geometry":{"type":"Point","coordinates":[173.2505,-31.8576]}},{"type":"Feature","id":56391,"properties":{"mag":5.39,"bv":"0.117"},"geometry":{"type":"Point","coordinates":[173.405,-40.5866]}},{"type":"Feature","id":56445,"properties":{"mag":5.76,"bv":"0.480"},"geometry":{"type":"Point","coordinates":[173.5915,3.0602]}},{"type":"Feature","id":56452,"properties":{"mag":5.96,"bv":"0.811"},"geometry":{"type":"Point","coordinates":[173.6229,-32.8313]}},{"type":"Feature","id":56473,"properties":{"mag":5.95,"bv":"-0.156"},"geometry":{"type":"Point","coordinates":[173.677,16.7969]}},{"type":"Feature","id":56480,"properties":{"mag":4.62,"bv":"-0.077"},"geometry":{"type":"Point","coordinates":[173.6902,-54.2641]}},{"type":"Feature","id":56497,"properties":{"mag":5.5,"bv":"1.041"},"geometry":{"type":"Point","coordinates":[173.7369,-49.1365]}},{"type":"Feature","id":56510,"properties":{"mag":5.63,"bv":"1.032"},"geometry":{"type":"Point","coordinates":[173.7704,54.7854]}},{"type":"Feature","id":56518,"properties":{"mag":5.64,"bv":"1.682"},"geometry":{"type":"Point","coordinates":[173.8053,-47.3726]}},{"type":"Feature","id":56561,"properties":{"mag":3.11,"bv":"-0.044"},"geometry":{"type":"Point","coordinates":[173.9454,-63.0198]}},{"type":"Feature","id":56573,"properties":{"mag":5.26,"bv":"0.257"},"geometry":{"type":"Point","coordinates":[173.9816,-47.6416]}},{"type":"Feature","id":56583,"properties":{"mag":5.19,"bv":"0.974"},"geometry":{"type":"Point","coordinates":[174.0117,69.323]}},{"type":"Feature","id":56601,"properties":{"mag":5.8,"bv":"0.248"},"geometry":{"type":"Point","coordinates":[174.0748,27.7814]}},{"type":"Feature","id":56606,"properties":{"mag":5.84,"bv":"-0.102"},"geometry":{"type":"Point","coordinates":[174.0932,-61.0524]}},{"type":"Feature","id":56620,"properties":{"mag":5.71,"bv":"1.020"},"geometry":{"type":"Point","coordinates":[174.1456,-33.5701]}},{"type":"Feature","id":56633,"properties":{"mag":4.7,"bv":"-0.073"},"geometry":{"type":"Point","coordinates":[174.1705,-9.8022]}},{"type":"Feature","id":56647,"properties":{"mag":4.3,"bv":"0.983"},"geometry":{"type":"Point","coordinates":[174.2372,-0.8237]}},{"type":"Feature","id":56656,"properties":{"mag":5.14,"bv":"1.105"},"geometry":{"type":"Point","coordinates":[174.2522,-61.2834]}},{"type":"Feature","id":56675,"properties":{"mag":5.64,"bv":"0.362"},"geometry":{"type":"Point","coordinates":[174.3151,-75.8965]}},{"type":"Feature","id":56700,"properties":{"mag":5.46,"bv":"1.230"},"geometry":{"type":"Point","coordinates":[174.3916,-47.7473]}},{"type":"Feature","id":56727,"properties":{"mag":5.94,"bv":"1.013"},"geometry":{"type":"Point","coordinates":[174.4516,-67.6204]}},{"type":"Feature","id":56754,"properties":{"mag":5.15,"bv":"-0.040"},"geometry":{"type":"Point","coordinates":[174.5304,-61.8266]}},{"type":"Feature","id":56770,"properties":{"mag":5.56,"bv":"0.348"},"geometry":{"type":"Point","coordinates":[174.5857,43.6254]}},{"type":"Feature","id":56779,"properties":{"mag":5.24,"bv":"1.499"},"geometry":{"type":"Point","coordinates":[174.615,8.1343]}},{"type":"Feature","id":56802,"properties":{"mag":5.48,"bv":"0.520"},"geometry":{"type":"Point","coordinates":[174.6667,-13.2019]}},{"type":"Feature","id":56862,"properties":{"mag":5.01,"bv":"0.804"},"geometry":{"type":"Point","coordinates":[174.8733,-65.3978]}},{"type":"Feature","id":56922,"properties":{"mag":4.7,"bv":"-0.070"},"geometry":{"type":"Point","coordinates":[175.0533,-34.7447]}},{"type":"Feature","id":56970,"properties":{"mag":5.95,"bv":"1.670"},"geometry":{"type":"Point","coordinates":[175.177,-53.9686]}},{"type":"Feature","id":56975,"properties":{"mag":5.26,"bv":"0.984"},"geometry":{"type":"Point","coordinates":[175.1961,21.3527]}},{"type":"Feature","id":56986,"properties":{"mag":4.93,"bv":"1.111"},"geometry":{"type":"Point","coordinates":[175.2235,-62.0901]}},{"type":"Feature","id":56997,"properties":{"mag":5.31,"bv":"0.723"},"geometry":{"type":"Point","coordinates":[175.2626,34.2016]}},{"type":"Feature","id":57013,"properties":{"mag":5.54,"bv":"0.044"},"geometry":{"type":"Point","coordinates":[175.3325,-43.0957]}},{"type":"Feature","id":57029,"properties":{"mag":5.73,"bv":"0.440"},"geometry":{"type":"Point","coordinates":[175.3927,31.7461]}},{"type":"Feature","id":57047,"properties":{"mag":5.2,"bv":"1.475"},"geometry":{"type":"Point","coordinates":[175.4331,-32.4994]}},{"type":"Feature","id":57111,"properties":{"mag":5.32,"bv":"1.267"},"geometry":{"type":"Point","coordinates":[175.6182,66.7449]}},{"type":"Feature","id":57165,"properties":{"mag":5.98,"bv":"1.449"},"geometry":{"type":"Point","coordinates":[175.8633,-37.1902]}},{"type":"Feature","id":57175,"properties":{"mag":5,"bv":"0.784"},"geometry":{"type":"Point","coordinates":[175.88,-62.4894]}},{"type":"Feature","id":57283,"properties":{"mag":4.71,"bv":"0.958"},"geometry":{"type":"Point","coordinates":[176.1907,-18.3507]}},{"type":"Feature","id":57328,"properties":{"mag":4.84,"bv":"0.174"},"geometry":{"type":"Point","coordinates":[176.321,8.2581]}},{"type":"Feature","id":57363,"properties":{"mag":3.63,"bv":"0.160"},"geometry":{"type":"Point","coordinates":[176.4017,-66.7288]}},{"type":"Feature","id":57371,"properties":{"mag":5.28,"bv":"-0.118"},"geometry":{"type":"Point","coordinates":[176.4332,-45.6901]}},{"type":"Feature","id":57380,"properties":{"mag":4.04,"bv":"1.501"},"geometry":{"type":"Point","coordinates":[176.4648,6.5294]}},{"type":"Feature","id":57399,"properties":{"mag":3.69,"bv":"1.181"},"geometry":{"type":"Point","coordinates":[176.5126,47.7794]}},{"type":"Feature","id":57439,"properties":{"mag":4.11,"bv":"0.895"},"geometry":{"type":"Point","coordinates":[176.6284,-61.1784]}},{"type":"Feature","id":57443,"properties":{"mag":4.89,"bv":"0.664"},"geometry":{"type":"Point","coordinates":[176.6295,-40.5004]}},{"type":"Feature","id":57477,"properties":{"mag":5.27,"bv":"1.276"},"geometry":{"type":"Point","coordinates":[176.7318,55.6282]}},{"type":"Feature","id":57512,"properties":{"mag":5.42,"bv":"1.664"},"geometry":{"type":"Point","coordinates":[176.8298,-57.6965]}},{"type":"Feature","id":57562,"properties":{"mag":5.31,"bv":"0.038"},"geometry":{"type":"Point","coordinates":[176.9788,8.2459]}},{"type":"Feature","id":57565,"properties":{"mag":4.5,"bv":"0.547"},"geometry":{"type":"Point","coordinates":[176.9964,20.2189]}},{"type":"Feature","id":57581,"properties":{"mag":4.75,"bv":"1.522"},"geometry":{"type":"Point","coordinates":[177.0606,-66.8149]}},{"type":"Feature","id":57606,"properties":{"mag":5.9,"bv":"0.303"},"geometry":{"type":"Point","coordinates":[177.1613,14.2842]}},{"type":"Feature","id":57613,"properties":{"mag":5.1,"bv":"1.594"},"geometry":{"type":"Point","coordinates":[177.1878,-26.7498]}},{"type":"Feature","id":57632,"properties":{"mag":2.14,"bv":"0.090"},"geometry":{"type":"Point","coordinates":[177.2649,14.5721]}},{"type":"Feature","id":57669,"properties":{"mag":4.3,"bv":"-0.149"},"geometry":{"type":"Point","coordinates":[177.4211,-63.7885]}},{"type":"Feature","id":57670,"properties":{"mag":5.73,"bv":"0.467"},"geometry":{"type":"Point","coordinates":[177.4238,34.9318]}},{"type":"Feature","id":57696,"properties":{"mag":4.98,"bv":"1.360"},"geometry":{"type":"Point","coordinates":[177.4859,-70.2258]}},{"type":"Feature","id":57741,"properties":{"mag":5.68,"bv":"0.233"},"geometry":{"type":"Point","coordinates":[177.6137,-62.6494]}},{"type":"Feature","id":57757,"properties":{"mag":3.59,"bv":"0.518"},"geometry":{"type":"Point","coordinates":[177.6738,1.7647]}},{"type":"Feature","id":57791,"properties":{"mag":5.62,"bv":"1.058"},"geometry":{"type":"Point","coordinates":[177.7593,-5.3333]}},{"type":"Feature","id":57803,"properties":{"mag":4.47,"bv":"1.283"},"geometry":{"type":"Point","coordinates":[177.7862,-45.1735]}},{"type":"Feature","id":57841,"properties":{"mag":5.85,"bv":"0.554"},"geometry":{"type":"Point","coordinates":[177.9234,-30.8348]}},{"type":"Feature","id":57851,"properties":{"mag":4.89,"bv":"-0.123"},"geometry":{"type":"Point","coordinates":[177.9634,-65.2059]}},{"type":"Feature","id":57870,"properties":{"mag":5.56,"bv":"0.069"},"geometry":{"type":"Point","coordinates":[178.0428,-56.9877]}},{"type":"Feature","id":57936,"properties":{"mag":4.29,"bv":"-0.100"},"geometry":{"type":"Point","coordinates":[178.2272,-33.9081]}},{"type":"Feature","id":58001,"properties":{"mag":2.41,"bv":"0.044"},"geometry":{"type":"Point","coordinates":[178.4577,53.6948]}},{"type":"Feature","id":58082,"properties":{"mag":5.26,"bv":"0.883"},"geometry":{"type":"Point","coordinates":[178.6772,-25.7139]}},{"type":"Feature","id":58103,"properties":{"mag":5.89,"bv":"0.210"},"geometry":{"type":"Point","coordinates":[178.75,-63.2792]}},{"type":"Feature","id":58110,"properties":{"mag":5.58,"bv":"0.937"},"geometry":{"type":"Point","coordinates":[178.7631,8.4439]}},{"type":"Feature","id":58158,"properties":{"mag":5.93,"bv":"1.499"},"geometry":{"type":"Point","coordinates":[178.9172,-28.4771]}},{"type":"Feature","id":58159,"properties":{"mag":5.53,"bv":"0.116"},"geometry":{"type":"Point","coordinates":[178.9189,15.6468]}},{"type":"Feature","id":58181,"properties":{"mag":5.83,"bv":"1.101"},"geometry":{"type":"Point","coordinates":[178.9934,56.5986]}},{"type":"Feature","id":58188,"properties":{"mag":5.17,"bv":"-0.022"},"geometry":{"type":"Point","coordinates":[179.004,-17.1508]}},{"type":"Feature","id":58326,"properties":{"mag":5.59,"bv":"-0.152"},"geometry":{"type":"Point","coordinates":[179.4167,-62.4487]}},{"type":"Feature","id":58379,"properties":{"mag":5.44,"bv":"-0.062"},"geometry":{"type":"Point","coordinates":[179.5634,-56.3173]}},{"type":"Feature","id":58427,"properties":{"mag":5.59,"bv":"0.174"},"geometry":{"type":"Point","coordinates":[179.6986,-64.3396]}},{"type":"Feature","id":58460,"properties":{"mag":5.95,"bv":"1.153"},"geometry":{"type":"Point","coordinates":[179.8231,33.167]}},{"type":"Feature","id":58484,"properties":{"mag":4.88,"bv":"-0.054"},"geometry":{"type":"Point","coordinates":[179.9066,-78.2218]}},{"type":"Feature","id":58510,"properties":{"mag":5.36,"bv":"-0.001"},"geometry":{"type":"Point","coordinates":[179.9871,3.6552]}},{"type":"Feature","id":58576,"properties":{"mag":5.54,"bv":"0.760"},"geometry":{"type":"Point","coordinates":[-179.8148,-10.446]}},{"type":"Feature","id":58587,"properties":{"mag":5.28,"bv":"-0.192"},"geometry":{"type":"Point","coordinates":[-179.7868,-19.659]}},{"type":"Feature","id":58590,"properties":{"mag":4.65,"bv":"0.122"},"geometry":{"type":"Point","coordinates":[-179.7817,6.6143]}},{"type":"Feature","id":58654,"properties":{"mag":5.59,"bv":"1.019"},"geometry":{"type":"Point","coordinates":[-179.5855,36.0421]}},{"type":"Feature","id":58684,"properties":{"mag":5.22,"bv":"0.283"},"geometry":{"type":"Point","coordinates":[-179.4717,43.0456]}},{"type":"Feature","id":58720,"properties":{"mag":5.89,"bv":"-0.080"},"geometry":{"type":"Point","coordinates":[-179.3429,-69.1923]}},{"type":"Feature","id":58758,"properties":{"mag":4.32,"bv":"0.280"},"geometry":{"type":"Point","coordinates":[-179.2437,-63.3129]}},{"type":"Feature","id":58803,"properties":{"mag":5.15,"bv":"0.417"},"geometry":{"type":"Point","coordinates":[-179.0851,-42.4341]}},{"type":"Feature","id":58858,"properties":{"mag":5.89,"bv":"0.248"},"geometry":{"type":"Point","coordinates":[-178.9308,21.4592]}},{"type":"Feature","id":58867,"properties":{"mag":4.72,"bv":"-0.081"},"geometry":{"type":"Point","coordinates":[-178.9199,-63.1657]}},{"type":"Feature","id":58884,"properties":{"mag":5.34,"bv":"-0.012"},"geometry":{"type":"Point","coordinates":[-178.838,-68.3289]}},{"type":"Feature","id":58905,"properties":{"mag":5.04,"bv":"1.491"},"geometry":{"type":"Point","coordinates":[-178.8064,-76.5191]}},{"type":"Feature","id":58921,"properties":{"mag":5.95,"bv":"1.691"},"geometry":{"type":"Point","coordinates":[-178.7616,-60.9683]}},{"type":"Feature","id":58948,"properties":{"mag":4.12,"bv":"0.967"},"geometry":{"type":"Point","coordinates":[-178.6978,8.733]}},{"type":"Feature","id":58952,"properties":{"mag":5.78,"bv":"1.029"},"geometry":{"type":"Point","coordinates":[-178.687,76.9057]}},{"type":"Feature","id":59050,"properties":{"mag":5.95,"bv":"0.613"},"geometry":{"type":"Point","coordinates":[-178.4041,-65.7095]}},{"type":"Feature","id":59072,"properties":{"mag":4.14,"bv":"0.353"},"geometry":{"type":"Point","coordinates":[-178.2796,-64.6137]}},{"type":"Feature","id":59151,"properties":{"mag":5.17,"bv":"1.278"},"geometry":{"type":"Point","coordinates":[-178.0422,-75.367]}},{"type":"Feature","id":59173,"properties":{"mag":4.46,"bv":"-0.163"},"geometry":{"type":"Point","coordinates":[-177.9782,-50.6613]}},{"type":"Feature","id":59184,"properties":{"mag":5.34,"bv":"-0.010"},"geometry":{"type":"Point","coordinates":[-177.9387,-48.6925]}},{"type":"Feature","id":59196,"properties":{"mag":2.58,"bv":"-0.128"},"geometry":{"type":"Point","coordinates":[-177.9104,-50.7224]}},{"type":"Feature","id":59199,"properties":{"mag":4.02,"bv":"0.334"},"geometry":{"type":"Point","coordinates":[-177.8966,-24.7289]}},{"type":"Feature","id":59229,"properties":{"mag":5.75,"bv":"0.240"},"geometry":{"type":"Point","coordinates":[-177.7758,-44.326]}},{"type":"Feature","id":59232,"properties":{"mag":5.51,"bv":"-0.097"},"geometry":{"type":"Point","coordinates":[-177.7725,-41.2316]}},{"type":"Feature","id":59285,"properties":{"mag":5.95,"bv":"1.120"},"geometry":{"type":"Point","coordinates":[-177.5779,1.8979]}},{"type":"Feature","id":59309,"properties":{"mag":5.72,"bv":"0.352"},"geometry":{"type":"Point","coordinates":[-177.4858,5.807]}},{"type":"Feature","id":59316,"properties":{"mag":3.02,"bv":"1.326"},"geometry":{"type":"Point","coordinates":[-177.4688,-22.6198]}},{"type":"Feature","id":59384,"properties":{"mag":6,"bv":"1.618"},"geometry":{"type":"Point","coordinates":[-177.2501,81.7098]}},{"type":"Feature","id":59394,"properties":{"mag":5.45,"bv":"0.055"},"geometry":{"type":"Point","coordinates":[-177.234,-23.6024]}},{"type":"Feature","id":59449,"properties":{"mag":3.97,"bv":"-0.156"},"geometry":{"type":"Point","coordinates":[-177.087,-52.3685]}},{"type":"Feature","id":59468,"properties":{"mag":5.66,"bv":"1.401"},"geometry":{"type":"Point","coordinates":[-177.0368,25.8703]}},{"type":"Feature","id":59501,"properties":{"mag":5.6,"bv":"0.961"},"geometry":{"type":"Point","coordinates":[-176.9613,20.5421]}},{"type":"Feature","id":59504,"properties":{"mag":5.14,"bv":"0.358"},"geometry":{"type":"Point","coordinates":[-176.9502,77.6162]}},{"type":"Feature","id":59517,"properties":{"mag":5.91,"bv":"0.253"},"geometry":{"type":"Point","coordinates":[-176.9084,-62.9508]}},{"type":"Feature","id":59607,"properties":{"mag":5.77,"bv":"-0.144"},"geometry":{"type":"Point","coordinates":[-176.6457,-38.9292]}},{"type":"Feature","id":59608,"properties":{"mag":5.85,"bv":"0.262"},"geometry":{"type":"Point","coordinates":[-176.6419,10.2623]}},{"type":"Feature","id":59654,"properties":{"mag":5.31,"bv":"1.400"},"geometry":{"type":"Point","coordinates":[-176.4888,-45.7239]}},{"type":"Feature","id":59728,"properties":{"mag":5.82,"bv":"1.052"},"geometry":{"type":"Point","coordinates":[-176.2517,-20.8442]}},{"type":"Feature","id":59746,"properties":{"mag":5.72,"bv":"1.179"},"geometry":{"type":"Point","coordinates":[-176.2146,70.2]}},{"type":"Feature","id":59747,"properties":{"mag":2.79,"bv":"-0.193"},"geometry":{"type":"Point","coordinates":[-176.2137,-58.7489]}},{"type":"Feature","id":59774,"properties":{"mag":3.32,"bv":"0.077"},"geometry":{"type":"Point","coordinates":[-176.1435,57.0326]}},{"type":"Feature","id":59803,"properties":{"mag":2.58,"bv":"-0.107"},"geometry":{"type":"Point","coordinates":[-176.0485,-17.5419]}},{"type":"Feature","id":59819,"properties":{"mag":5.09,"bv":"0.068"},"geometry":{"type":"Point","coordinates":[-175.9992,14.8991]}},{"type":"Feature","id":59831,"properties":{"mag":5.69,"bv":"1.586"},"geometry":{"type":"Point","coordinates":[-175.9685,40.6602]}},{"type":"Feature","id":59847,"properties":{"mag":4.93,"bv":"0.957"},"geometry":{"type":"Point","coordinates":[-175.9144,23.9454]}},{"type":"Feature","id":59856,"properties":{"mag":4.99,"bv":"1.140"},"geometry":{"type":"Point","coordinates":[-175.8744,33.0615]}},{"type":"Feature","id":59920,"properties":{"mag":5.8,"bv":"1.330"},"geometry":{"type":"Point","coordinates":[-175.6267,53.1913]}},{"type":"Feature","id":59923,"properties":{"mag":5.71,"bv":"0.160"},"geometry":{"type":"Point","coordinates":[-175.6226,28.9372]}},{"type":"Feature","id":59929,"properties":{"mag":4.06,"bv":"1.603"},"geometry":{"type":"Point","coordinates":[-175.6072,-67.9607]}},{"type":"Feature","id":60000,"properties":{"mag":4.24,"bv":"-0.123"},"geometry":{"type":"Point","coordinates":[-175.4132,-79.3122]}},{"type":"Feature","id":60009,"properties":{"mag":4.06,"bv":"-0.168"},"geometry":{"type":"Point","coordinates":[-175.3906,-64.0031]}},{"type":"Feature","id":60030,"properties":{"mag":5.9,"bv":"0.168"},"geometry":{"type":"Point","coordinates":[-175.332,-0.7872]}},{"type":"Feature","id":60044,"properties":{"mag":5.47,"bv":"0.054"},"geometry":{"type":"Point","coordinates":[-175.2917,75.1606]}},{"type":"Feature","id":60059,"properties":{"mag":5.01,"bv":"1.600"},"geometry":{"type":"Point","coordinates":[-175.251,-55.143]}},{"type":"Feature","id":60122,"properties":{"mag":5.28,"bv":"1.623"},"geometry":{"type":"Point","coordinates":[-175.047,48.9841]}},{"type":"Feature","id":60129,"properties":{"mag":3.89,"bv":"0.026"},"geometry":{"type":"Point","coordinates":[-175.0235,-0.6668]}},{"type":"Feature","id":60157,"properties":{"mag":5.94,"bv":"0.824"},"geometry":{"type":"Point","coordinates":[-174.9551,-22.1757]}},{"type":"Feature","id":60170,"properties":{"mag":5.52,"bv":"1.091"},"geometry":{"type":"Point","coordinates":[-174.918,26.6195]}},{"type":"Feature","id":60172,"properties":{"mag":4.97,"bv":"1.172"},"geometry":{"type":"Point","coordinates":[-174.9126,3.3126]}},{"type":"Feature","id":60189,"properties":{"mag":5.2,"bv":"-0.090"},"geometry":{"type":"Point","coordinates":[-174.8598,-22.2159]}},{"type":"Feature","id":60202,"properties":{"mag":4.72,"bv":"1.010"},"geometry":{"type":"Point","coordinates":[-174.8207,17.7929]}},{"type":"Feature","id":60212,"properties":{"mag":5.54,"bv":"1.452"},"geometry":{"type":"Point","coordinates":[-174.788,57.8641]}},{"type":"Feature","id":60221,"properties":{"mag":5.14,"bv":"1.048"},"geometry":{"type":"Point","coordinates":[-174.7679,-13.5657]}},{"type":"Feature","id":60260,"properties":{"mag":3.59,"bv":"1.389"},"geometry":{"type":"Point","coordinates":[-174.66,-60.4011]}},{"type":"Feature","id":60308,"properties":{"mag":5.91,"bv":"1.533"},"geometry":{"type":"Point","coordinates":[-174.5107,-56.3744]}},{"type":"Feature","id":60320,"properties":{"mag":5.15,"bv":"0.195"},"geometry":{"type":"Point","coordinates":[-174.4694,-67.5221]}},{"type":"Feature","id":60329,"properties":{"mag":5.73,"bv":"1.038"},"geometry":{"type":"Point","coordinates":[-174.4499,-68.3073]}},{"type":"Feature","id":60351,"properties":{"mag":4.78,"bv":"0.515"},"geometry":{"type":"Point","coordinates":[-174.3737,25.8462]}},{"type":"Feature","id":60379,"properties":{"mag":5.38,"bv":"-0.098"},"geometry":{"type":"Point","coordinates":[-174.294,-57.6761]}},{"type":"Feature","id":60425,"properties":{"mag":5.66,"bv":"1.153"},"geometry":{"type":"Point","coordinates":[-174.1601,-24.8407]}},{"type":"Feature","id":60449,"properties":{"mag":5.32,"bv":"-0.066"},"geometry":{"type":"Point","coordinates":[-174.1024,-35.4127]}},{"type":"Feature","id":60463,"properties":{"mag":5.79,"bv":"-0.064"},"geometry":{"type":"Point","coordinates":[-174.0636,-38.9114]}},{"type":"Feature","id":60485,"properties":{"mag":4.76,"bv":"0.877"},"geometry":{"type":"Point","coordinates":[-173.9938,51.5623]}},{"type":"Feature","id":60514,"properties":{"mag":5.17,"bv":"0.082"},"geometry":{"type":"Point","coordinates":[-173.9228,26.0986]}},{"type":"Feature","id":60584,"properties":{"mag":5.82,"bv":"1.622"},"geometry":{"type":"Point","coordinates":[-173.7366,56.7778]}},{"type":"Feature","id":60595,"properties":{"mag":5.95,"bv":"0.043"},"geometry":{"type":"Point","coordinates":[-173.701,-11.6106]}},{"type":"Feature","id":60610,"properties":{"mag":5.71,"bv":"-0.066"},"geometry":{"type":"Point","coordinates":[-173.6594,-35.1864]}},{"type":"Feature","id":60646,"properties":{"mag":5.01,"bv":"0.955"},"geometry":{"type":"Point","coordinates":[-173.5378,39.0186]}},{"type":"Feature","id":60697,"properties":{"mag":4.92,"bv":"0.277"},"geometry":{"type":"Point","coordinates":[-173.3997,27.2682]}},{"type":"Feature","id":60710,"properties":{"mag":4.82,"bv":"-0.141"},"geometry":{"type":"Point","coordinates":[-173.3677,-51.4506]}},{"type":"Feature","id":60718,"properties":{"mag":0.77,"bv":"-0.243"},"geometry":{"type":"Point","coordinates":[-173.3504,-63.0991]}},{"type":"Feature","id":60735,"properties":{"mag":5.56,"bv":"0.007"},"geometry":{"type":"Point","coordinates":[-173.2846,-32.8301]}},{"type":"Feature","id":60742,"properties":{"mag":4.35,"bv":"1.128"},"geometry":{"type":"Point","coordinates":[-173.2655,28.2684]}},{"type":"Feature","id":60746,"properties":{"mag":4.98,"bv":"0.088"},"geometry":{"type":"Point","coordinates":[-173.2529,26.8257]}},{"type":"Feature","id":60781,"properties":{"mag":5.38,"bv":"1.543"},"geometry":{"type":"Point","coordinates":[-173.1298,-58.9918]}},{"type":"Feature","id":60795,"properties":{"mag":5.68,"bv":"1.582"},"geometry":{"type":"Point","coordinates":[-173.1037,55.7127]}},{"type":"Feature","id":60823,"properties":{"mag":3.91,"bv":"-0.192"},"geometry":{"type":"Point","coordinates":[-172.9901,-50.2306]}},{"type":"Feature","id":60855,"properties":{"mag":5.45,"bv":"-0.073"},"geometry":{"type":"Point","coordinates":[-172.9064,-39.0412]}},{"type":"Feature","id":60904,"properties":{"mag":5.29,"bv":"-0.056"},"geometry":{"type":"Point","coordinates":[-172.7721,25.9129]}},{"type":"Feature","id":60941,"properties":{"mag":5.47,"bv":"0.445"},"geometry":{"type":"Point","coordinates":[-172.6373,24.1089]}},{"type":"Feature","id":60957,"properties":{"mag":5.68,"bv":"0.093"},"geometry":{"type":"Point","coordinates":[-172.5698,20.8961]}},{"type":"Feature","id":60965,"properties":{"mag":2.94,"bv":"-0.012"},"geometry":{"type":"Point","coordinates":[-172.5339,-16.5154]}},{"type":"Feature","id":60969,"properties":{"mag":5.78,"bv":"1.572"},"geometry":{"type":"Point","coordinates":[-172.5242,-56.5249]}},{"type":"Feature","id":60978,"properties":{"mag":5.37,"bv":"0.205"},"geometry":{"type":"Point","coordinates":[-172.5111,58.4057]}},{"type":"Feature","id":60979,"properties":{"mag":6,"bv":"1.515"},"geometry":{"type":"Point","coordinates":[-172.5088,-41.7359]}},{"type":"Feature","id":60998,"properties":{"mag":5.01,"bv":"1.621"},"geometry":{"type":"Point","coordinates":[-172.4723,69.2011]}},{"type":"Feature","id":61015,"properties":{"mag":5.63,"bv":"1.670"},"geometry":{"type":"Point","coordinates":[-172.4273,-23.6964]}},{"type":"Feature","id":61071,"properties":{"mag":5.47,"bv":"0.056"},"geometry":{"type":"Point","coordinates":[-172.2477,24.5672]}},{"type":"Feature","id":61084,"properties":{"mag":1.59,"bv":"1.600"},"geometry":{"type":"Point","coordinates":[-172.2085,-57.1132]}},{"type":"Feature","id":61136,"properties":{"mag":5.49,"bv":"0.622"},"geometry":{"type":"Point","coordinates":[-172.082,-59.4239]}},{"type":"Feature","id":61158,"properties":{"mag":5.96,"bv":"0.263"},"geometry":{"type":"Point","coordinates":[-172.0162,-63.5058]}},{"type":"Feature","id":61174,"properties":{"mag":4.3,"bv":"0.388"},"geometry":{"type":"Point","coordinates":[-171.9824,-16.196]}},{"type":"Feature","id":61181,"properties":{"mag":5.88,"bv":"1.078"},"geometry":{"type":"Point","coordinates":[-171.9584,-73.0011]}},{"type":"Feature","id":61199,"properties":{"mag":3.84,"bv":"-0.157"},"geometry":{"type":"Point","coordinates":[-171.8833,-72.133]}},{"type":"Feature","id":61212,"properties":{"mag":5.74,"bv":"0.376"},"geometry":{"type":"Point","coordinates":[-171.85,-13.8591]}},{"type":"Feature","id":61281,"properties":{"mag":3.85,"bv":"-0.116"},"geometry":{"type":"Point","coordinates":[-171.6294,69.7882]}},{"type":"Feature","id":61296,"properties":{"mag":5.58,"bv":"0.861"},"geometry":{"type":"Point","coordinates":[-171.6073,-12.8302]}},{"type":"Feature","id":61309,"properties":{"mag":5.42,"bv":"1.011"},"geometry":{"type":"Point","coordinates":[-171.5878,33.2476]}},{"type":"Feature","id":61317,"properties":{"mag":4.24,"bv":"0.588"},"geometry":{"type":"Point","coordinates":[-171.5644,41.3575]}},{"type":"Feature","id":61318,"properties":{"mag":5.48,"bv":"-0.035"},"geometry":{"type":"Point","coordinates":[-171.5552,-9.4521]}},{"type":"Feature","id":61359,"properties":{"mag":2.65,"bv":"0.893"},"geometry":{"type":"Point","coordinates":[-171.4032,-23.3968]}},{"type":"Feature","id":61379,"properties":{"mag":5.76,"bv":"0.683"},"geometry":{"type":"Point","coordinates":[-171.3234,-44.673]}},{"type":"Feature","id":61384,"properties":{"mag":4.95,"bv":"1.312"},"geometry":{"type":"Point","coordinates":[-171.3166,70.0218]}},{"type":"Feature","id":61394,"properties":{"mag":4.8,"bv":"0.012"},"geometry":{"type":"Point","coordinates":[-171.2872,22.6293]}},{"type":"Feature","id":61418,"properties":{"mag":5.03,"bv":"1.152"},"geometry":{"type":"Point","coordinates":[-171.2177,18.3771]}},{"type":"Feature","id":61420,"properties":{"mag":5.86,"bv":"1.242"},"geometry":{"type":"Point","coordinates":[-171.216,21.8814]}},{"type":"Feature","id":61468,"properties":{"mag":5.12,"bv":"0.224"},"geometry":{"type":"Point","coordinates":[-171.0603,-41.0219]}},{"type":"Feature","id":61498,"properties":{"mag":5.78,"bv":"0.003"},"geometry":{"type":"Point","coordinates":[-170.9957,-39.8695]}},{"type":"Feature","id":61558,"properties":{"mag":5.88,"bv":"0.072"},"geometry":{"type":"Point","coordinates":[-170.8027,-5.8319]}},{"type":"Feature","id":61571,"properties":{"mag":5.7,"bv":"1.436"},"geometry":{"type":"Point","coordinates":[-170.7569,17.0895]}},{"type":"Feature","id":61585,"properties":{"mag":2.69,"bv":"-0.176"},"geometry":{"type":"Point","coordinates":[-170.7041,-69.1356]}},{"type":"Feature","id":61621,"properties":{"mag":5.41,"bv":"0.334"},"geometry":{"type":"Point","coordinates":[-170.5738,-27.1389]}},{"type":"Feature","id":61622,"properties":{"mag":3.85,"bv":"0.049"},"geometry":{"type":"Point","coordinates":[-170.5743,-48.5413]}},{"type":"Feature","id":61658,"properties":{"mag":5.68,"bv":"1.592"},"geometry":{"type":"Point","coordinates":[-170.4066,1.8547]}},{"type":"Feature","id":61688,"properties":{"mag":6,"bv":"0.310"},"geometry":{"type":"Point","coordinates":[-170.3141,-18.2501]}},{"type":"Feature","id":61720,"properties":{"mag":5.86,"bv":"1.207"},"geometry":{"type":"Point","coordinates":[-170.2356,-30.4224]}},{"type":"Feature","id":61724,"properties":{"mag":5.49,"bv":"0.978"},"geometry":{"type":"Point","coordinates":[-170.2195,21.0626]}},{"type":"Feature","id":61740,"properties":{"mag":4.66,"bv":"1.240"},"geometry":{"type":"Point","coordinates":[-170.1885,-7.9956]}},{"type":"Feature","id":61789,"properties":{"mag":4.63,"bv":"-0.082"},"geometry":{"type":"Point","coordinates":[-170.0311,-39.9873]}},{"type":"Feature","id":61910,"properties":{"mag":5.17,"bv":"0.432"},"geometry":{"type":"Point","coordinates":[-169.6835,-13.0139]}},{"type":"Feature","id":61916,"properties":{"mag":5.84,"bv":"1.475"},"geometry":{"type":"Point","coordinates":[-169.6542,-46.1456]}},{"type":"Feature","id":61932,"properties":{"mag":2.2,"bv":"-0.023"},"geometry":{"type":"Point","coordinates":[-169.6207,-48.9599]}},{"type":"Feature","id":61941,"properties":{"mag":2.74,"bv":"0.368"},"geometry":{"type":"Point","coordinates":[-169.5848,-1.4494]}},{"type":"Feature","id":61960,"properties":{"mag":4.88,"bv":"0.076"},"geometry":{"type":"Point","coordinates":[-169.5289,10.2356]}},{"type":"Feature","id":61966,"properties":{"mag":4.91,"bv":"-0.044"},"geometry":{"type":"Point","coordinates":[-169.5143,-59.6858]}},{"type":"Feature","id":61968,"properties":{"mag":5.57,"bv":"0.002"},"geometry":{"type":"Point","coordinates":[-169.512,6.8066]}},{"type":"Feature","id":62012,"properties":{"mag":4.66,"bv":"1.075"},"geometry":{"type":"Point","coordinates":[-169.3523,-48.8131]}},{"type":"Feature","id":62027,"properties":{"mag":5.27,"bv":"0.195"},"geometry":{"type":"Point","coordinates":[-169.2906,-63.0586]}},{"type":"Feature","id":62058,"properties":{"mag":5.99,"bv":"-0.074"},"geometry":{"type":"Point","coordinates":[-169.2118,-56.1762]}},{"type":"Feature","id":62103,"properties":{"mag":5.91,"bv":"0.850"},"geometry":{"type":"Point","coordinates":[-169.0915,-1.577]}},{"type":"Feature","id":62131,"properties":{"mag":5.46,"bv":"1.346"},"geometry":{"type":"Point","coordinates":[-168.9978,-28.324]}},{"type":"Feature","id":62207,"properties":{"mag":5.95,"bv":"0.557"},"geometry":{"type":"Point","coordinates":[-168.7525,39.2789]}},{"type":"Feature","id":62223,"properties":{"mag":5.42,"bv":"2.994"},"geometry":{"type":"Point","coordinates":[-168.7174,45.4403]}},{"type":"Feature","id":62267,"properties":{"mag":5.22,"bv":"0.322"},"geometry":{"type":"Point","coordinates":[-168.5956,7.6733]}},{"type":"Feature","id":62268,"properties":{"mag":4.69,"bv":"1.049"},"geometry":{"type":"Point","coordinates":[-168.5915,-60.9813]}},{"type":"Feature","id":62322,"properties":{"mag":3.04,"bv":"-0.178"},"geometry":{"type":"Point","coordinates":[-168.43,-68.1081]}},{"type":"Feature","id":62325,"properties":{"mag":5.65,"bv":"0.989"},"geometry":{"type":"Point","coordinates":[-168.4061,9.5397]}},{"type":"Feature","id":62327,"properties":{"mag":4.62,"bv":"-0.150"},"geometry":{"type":"Point","coordinates":[-168.4054,-56.4888]}},{"type":"Feature","id":62356,"properties":{"mag":5.12,"bv":"1.346"},"geometry":{"type":"Point","coordinates":[-168.3385,16.5777]}},{"type":"Feature","id":62360,"properties":{"mag":5.87,"bv":"1.326"},"geometry":{"type":"Point","coordinates":[-168.3074,-33.3155]}},{"type":"Feature","id":62402,"properties":{"mag":5.88,"bv":"0.215"},"geometry":{"type":"Point","coordinates":[-168.171,62.7812]}},{"type":"Feature","id":62423,"properties":{"mag":5.43,"bv":"1.567"},"geometry":{"type":"Point","coordinates":[-168.1069,66.7903]}},{"type":"Feature","id":62434,"properties":{"mag":1.25,"bv":"-0.238"},"geometry":{"type":"Point","coordinates":[-168.0697,-59.6888]}},{"type":"Feature","id":62500,"properties":{"mag":5.65,"bv":"0.947"},"geometry":{"type":"Point","coordinates":[-167.8906,-27.5974]}},{"type":"Feature","id":62512,"properties":{"mag":5.83,"bv":"0.467"},"geometry":{"type":"Point","coordinates":[-167.8356,60.3198]}},{"type":"Feature","id":62541,"properties":{"mag":5.71,"bv":"0.024"},"geometry":{"type":"Point","coordinates":[-167.7741,14.1226]}},{"type":"Feature","id":62561,"properties":{"mag":5.92,"bv":"0.015"},"geometry":{"type":"Point","coordinates":[-167.7222,83.4178]}},{"type":"Feature","id":62572,"properties":{"mag":5.38,"bv":"0.033"},"geometry":{"type":"Point","coordinates":[-167.6931,83.4129]}},{"type":"Feature","id":62576,"properties":{"mag":5.76,"bv":"0.051"},"geometry":{"type":"Point","coordinates":[-167.6773,27.5524]}},{"type":"Feature","id":62608,"properties":{"mag":5.55,"bv":"1.154"},"geometry":{"type":"Point","coordinates":[-167.5626,-71.9863]}},{"type":"Feature","id":62641,"properties":{"mag":5.87,"bv":"0.170"},"geometry":{"type":"Point","coordinates":[-167.4552,37.5169]}},{"type":"Feature","id":62683,"properties":{"mag":4.9,"bv":"-0.031"},"geometry":{"type":"Point","coordinates":[-167.3285,-33.9993]}},{"type":"Feature","id":62703,"properties":{"mag":5.7,"bv":"0.127"},"geometry":{"type":"Point","coordinates":[-167.2588,-52.7874]}},{"type":"Feature","id":62732,"properties":{"mag":5.71,"bv":"0.344"},"geometry":{"type":"Point","coordinates":[-167.1751,-60.3298]}},{"type":"Feature","id":62763,"properties":{"mag":4.93,"bv":"0.681"},"geometry":{"type":"Point","coordinates":[-167.0753,27.5407]}},{"type":"Feature","id":62786,"properties":{"mag":5.99,"bv":"-0.098"},"geometry":{"type":"Point","coordinates":[-167.0128,-39.6804]}},{"type":"Feature","id":62861,"properties":{"mag":5.91,"bv":"1.309"},"geometry":{"type":"Point","coordinates":[-166.7326,-54.9525]}},{"type":"Feature","id":62867,"properties":{"mag":4.33,"bv":"1.344"},"geometry":{"type":"Point","coordinates":[-166.7212,-48.9433]}},{"type":"Feature","id":62886,"properties":{"mag":4.89,"bv":"0.904"},"geometry":{"type":"Point","coordinates":[-166.6761,21.2449]}},{"type":"Feature","id":62894,"properties":{"mag":5.75,"bv":"0.295"},"geometry":{"type":"Point","coordinates":[-166.6588,-60.3285]}},{"type":"Feature","id":62896,"properties":{"mag":4.25,"bv":"0.224"},"geometry":{"type":"Point","coordinates":[-166.6408,-40.1789]}},{"type":"Feature","id":62931,"properties":{"mag":5.89,"bv":"0.200"},"geometry":{"type":"Point","coordinates":[-166.5462,-60.3762]}},{"type":"Feature","id":62956,"properties":{"mag":1.76,"bv":"-0.022"},"geometry":{"type":"Point","coordinates":[-166.4927,55.9598]}},{"type":"Feature","id":62983,"properties":{"mag":6,"bv":"0.068"},"geometry":{"type":"Point","coordinates":[-166.4223,-11.6486]}},{"type":"Feature","id":62985,"properties":{"mag":4.77,"bv":"1.590"},"geometry":{"type":"Point","coordinates":[-166.4118,-9.539]}},{"type":"Feature","id":63003,"properties":{"mag":4.03,"bv":"-0.180"},"geometry":{"type":"Point","coordinates":[-166.3516,-57.1779]}},{"type":"Feature","id":63005,"properties":{"mag":5.08,"bv":"-0.089"},"geometry":{"type":"Point","coordinates":[-166.3463,-57.1687]}},{"type":"Feature","id":63007,"properties":{"mag":4.62,"bv":"-0.153"},"geometry":{"type":"Point","coordinates":[-166.3367,-59.1467]}},{"type":"Feature","id":63024,"properties":{"mag":5.75,"bv":"1.451"},"geometry":{"type":"Point","coordinates":[-166.2645,47.1967]}},{"type":"Feature","id":63031,"properties":{"mag":5.45,"bv":"0.991"},"geometry":{"type":"Point","coordinates":[-166.255,-85.1234]}},{"type":"Feature","id":63033,"properties":{"mag":5.89,"bv":"0.633"},"geometry":{"type":"Point","coordinates":[-166.2562,-44.152]}},{"type":"Feature","id":63066,"properties":{"mag":5.46,"bv":"1.668"},"geometry":{"type":"Point","coordinates":[-166.169,-42.9157]}},{"type":"Feature","id":63076,"properties":{"mag":5.23,"bv":"0.303"},"geometry":{"type":"Point","coordinates":[-166.131,65.4385]}},{"type":"Feature","id":63090,"properties":{"mag":3.39,"bv":"1.571"},"geometry":{"type":"Point","coordinates":[-166.0991,3.3975]}},{"type":"Feature","id":63117,"properties":{"mag":5.34,"bv":"0.010"},"geometry":{"type":"Point","coordinates":[-166.0119,-56.8358]}},{"type":"Feature","id":63121,"properties":{"mag":5.61,"bv":"0.337"},"geometry":{"type":"Point","coordinates":[-165.9981,38.3149]}},{"type":"Feature","id":63125,"properties":{"mag":2.89,"bv":"-0.115"},"geometry":{"type":"Point","coordinates":[-165.9931,38.3184]}},{"type":"Feature","id":63143,"properties":{"mag":5.84,"bv":"0.204"},"geometry":{"type":"Point","coordinates":[-165.9268,54.0995]}},{"type":"Feature","id":63165,"properties":{"mag":5.93,"bv":"1.115"},"geometry":{"type":"Point","coordinates":[-165.868,-72.1852]}},{"type":"Feature","id":63210,"properties":{"mag":5.17,"bv":"-0.066"},"geometry":{"type":"Point","coordinates":[-165.7319,-51.1988]}},{"type":"Feature","id":63340,"properties":{"mag":6,"bv":"1.030"},"geometry":{"type":"Point","coordinates":[-165.3028,75.4725]}},{"type":"Feature","id":63355,"properties":{"mag":4.76,"bv":"1.568"},"geometry":{"type":"Point","coordinates":[-165.269,17.4094]}},{"type":"Feature","id":63414,"properties":{"mag":5.79,"bv":"0.203"},"geometry":{"type":"Point","coordinates":[-165.0853,-3.8119]}},{"type":"Feature","id":63432,"properties":{"mag":5.37,"bv":"1.282"},"geometry":{"type":"Point","coordinates":[-165.0205,66.5973]}},{"type":"Feature","id":63462,"properties":{"mag":4.88,"bv":"1.165"},"geometry":{"type":"Point","coordinates":[-164.9314,30.785]}},{"type":"Feature","id":63494,"properties":{"mag":5.99,"bv":"1.119"},"geometry":{"type":"Point","coordinates":[-164.8502,-3.3685]}},{"type":"Feature","id":63503,"properties":{"mag":4.93,"bv":"0.368"},"geometry":{"type":"Point","coordinates":[-164.8179,56.3663]}},{"type":"Feature","id":63533,"properties":{"mag":5.97,"bv":"0.971"},"geometry":{"type":"Point","coordinates":[-164.7099,17.1231]}},{"type":"Feature","id":63608,"properties":{"mag":2.85,"bv":"0.934"},"geometry":{"type":"Point","coordinates":[-164.4558,10.9592]}},{"type":"Feature","id":63613,"properties":{"mag":3.61,"bv":"1.190"},"geometry":{"type":"Point","coordinates":[-164.4322,-71.5489]}},{"type":"Feature","id":63688,"properties":{"mag":5.93,"bv":"0.002"},"geometry":{"type":"Point","coordinates":[-164.2278,-71.4757]}},{"type":"Feature","id":63724,"properties":{"mag":4.83,"bv":"0.029"},"geometry":{"type":"Point","coordinates":[-164.1112,-49.5273]}},{"type":"Feature","id":63738,"properties":{"mag":5.58,"bv":"0.554"},"geometry":{"type":"Point","coordinates":[-164.0579,-20.5835]}},{"type":"Feature","id":63901,"properties":{"mag":5.2,"bv":"-0.059"},"geometry":{"type":"Point","coordinates":[-163.5649,35.7989]}},{"type":"Feature","id":63916,"properties":{"mag":5.64,"bv":"1.135"},"geometry":{"type":"Point","coordinates":[-163.5322,45.2685]}},{"type":"Feature","id":63945,"properties":{"mag":4.71,"bv":"-0.148"},"geometry":{"type":"Point","coordinates":[-163.4304,-48.4633]}},{"type":"Feature","id":63948,"properties":{"mag":6,"bv":"0.393"},"geometry":{"type":"Point","coordinates":[-163.4115,21.1534]}},{"type":"Feature","id":63950,"properties":{"mag":5.53,"bv":"1.461"},"geometry":{"type":"Point","coordinates":[-163.4058,22.6162]}},{"type":"Feature","id":63972,"properties":{"mag":5.59,"bv":"1.050"},"geometry":{"type":"Point","coordinates":[-163.3538,-41.5884]}},{"type":"Feature","id":64003,"properties":{"mag":5.63,"bv":"0.050"},"geometry":{"type":"Point","coordinates":[-163.2739,-35.862]}},{"type":"Feature","id":64004,"properties":{"mag":4.27,"bv":"-0.182"},"geometry":{"type":"Point","coordinates":[-163.2723,-49.9062]}},{"type":"Feature","id":64022,"properties":{"mag":4.8,"bv":"1.482"},"geometry":{"type":"Point","coordinates":[-163.2053,27.6247]}},{"type":"Feature","id":64033,"properties":{"mag":5.98,"bv":"0.435"},"geometry":{"type":"Point","coordinates":[-163.1488,-59.8605]}},{"type":"Feature","id":64053,"properties":{"mag":5.7,"bv":"-0.061"},"geometry":{"type":"Point","coordinates":[-163.0905,-53.4598]}},{"type":"Feature","id":64078,"properties":{"mag":5.15,"bv":"1.138"},"geometry":{"type":"Point","coordinates":[-163.0258,-10.7404]}},{"type":"Feature","id":64094,"properties":{"mag":5.44,"bv":"-0.033"},"geometry":{"type":"Point","coordinates":[-162.9702,-65.306]}},{"type":"Feature","id":64122,"properties":{"mag":5.57,"bv":"1.178"},"geometry":{"type":"Point","coordinates":[-162.8647,-8.9844]}},{"type":"Feature","id":64166,"properties":{"mag":4.94,"bv":"1.048"},"geometry":{"type":"Point","coordinates":[-162.7364,-23.1181]}},{"type":"Feature","id":64179,"properties":{"mag":5.79,"bv":"1.025"},"geometry":{"type":"Point","coordinates":[-162.6982,10.0225]}},{"type":"Feature","id":64224,"properties":{"mag":5.95,"bv":"1.490"},"geometry":{"type":"Point","coordinates":[-162.5613,-10.3293]}},{"type":"Feature","id":64226,"properties":{"mag":5.91,"bv":"1.450"},"geometry":{"type":"Point","coordinates":[-162.5506,16.8486]}},{"type":"Feature","id":64238,"properties":{"mag":4.38,"bv":"-0.008"},"geometry":{"type":"Point","coordinates":[-162.5125,-5.539]}},{"type":"Feature","id":64241,"properties":{"mag":4.32,"bv":"0.455"},"geometry":{"type":"Point","coordinates":[-162.503,17.5294]}},{"type":"Feature","id":64246,"properties":{"mag":5.91,"bv":"0.294"},"geometry":{"type":"Point","coordinates":[-162.4866,38.499]}},{"type":"Feature","id":64332,"properties":{"mag":5.78,"bv":"0.521"},"geometry":{"type":"Point","coordinates":[-162.213,-42.2329]}},{"type":"Feature","id":64348,"properties":{"mag":5.24,"bv":"1.049"},"geometry":{"type":"Point","coordinates":[-162.1533,-43.3686]}},{"type":"Feature","id":64390,"properties":{"mag":5.92,"bv":"0.415"},"geometry":{"type":"Point","coordinates":[-162.0357,-69.942]}},{"type":"Feature","id":64394,"properties":{"mag":4.23,"bv":"0.572"},"geometry":{"type":"Point","coordinates":[-162.0317,27.8782]}},{"type":"Feature","id":64407,"properties":{"mag":5.04,"bv":"0.460"},"geometry":{"type":"Point","coordinates":[-161.9852,-16.1986]}},{"type":"Feature","id":64408,"properties":{"mag":4.85,"bv":"0.693"},"geometry":{"type":"Point","coordinates":[-161.9867,-37.803]}},{"type":"Feature","id":64425,"properties":{"mag":4.58,"bv":"-0.073"},"geometry":{"type":"Point","coordinates":[-161.9267,-59.9206]}},{"type":"Feature","id":64445,"properties":{"mag":5.76,"bv":"1.499"},"geometry":{"type":"Point","coordinates":[-161.8628,11.5561]}},{"type":"Feature","id":64466,"properties":{"mag":5.91,"bv":"0.048"},"geometry":{"type":"Point","coordinates":[-161.7967,-66.2267]}},{"type":"Feature","id":64515,"properties":{"mag":5.9,"bv":"-0.011"},"geometry":{"type":"Point","coordinates":[-161.6527,-50.6998]}},{"type":"Feature","id":64540,"properties":{"mag":4.94,"bv":"1.061"},"geometry":{"type":"Point","coordinates":[-161.5711,40.1529]}},{"type":"Feature","id":64577,"properties":{"mag":5.31,"bv":"0.862"},"geometry":{"type":"Point","coordinates":[-161.4546,-19.9309]}},{"type":"Feature","id":64580,"properties":{"mag":5.91,"bv":"1.084"},"geometry":{"type":"Point","coordinates":[-161.4496,-58.6839]}},{"type":"Feature","id":64583,"properties":{"mag":4.9,"bv":"0.489"},"geometry":{"type":"Point","coordinates":[-161.4369,-59.1032]}},{"type":"Feature","id":64587,"properties":{"mag":5.84,"bv":"1.040"},"geometry":{"type":"Point","coordinates":[-161.4278,-78.4475]}},{"type":"Feature","id":64607,"properties":{"mag":5.64,"bv":"1.514"},"geometry":{"type":"Point","coordinates":[-161.3697,11.3317]}},{"type":"Feature","id":64623,"properties":{"mag":5.84,"bv":"1.061"},"geometry":{"type":"Point","coordinates":[-161.3197,-48.957]}},{"type":"Feature","id":64661,"properties":{"mag":4.79,"bv":"-0.078"},"geometry":{"type":"Point","coordinates":[-161.1877,-67.8946]}},{"type":"Feature","id":64692,"properties":{"mag":5.77,"bv":"0.198"},"geometry":{"type":"Point","coordinates":[-161.1169,40.8552]}},{"type":"Feature","id":64725,"properties":{"mag":5.21,"bv":"1.011"},"geometry":{"type":"Point","coordinates":[-161.0051,-19.9431]}},{"type":"Feature","id":64792,"properties":{"mag":5.19,"bv":"0.585"},"geometry":{"type":"Point","coordinates":[-160.8062,9.4242]}},{"type":"Feature","id":64803,"properties":{"mag":5.1,"bv":"0.959"},"geometry":{"type":"Point","coordinates":[-160.7786,-31.5062]}},{"type":"Feature","id":64820,"properties":{"mag":4.86,"bv":"1.480"},"geometry":{"type":"Point","coordinates":[-160.6958,-66.7834]}},{"type":"Feature","id":64822,"properties":{"mag":5.82,"bv":"0.187"},"geometry":{"type":"Point","coordinates":[-160.692,-43.9795]}},{"type":"Feature","id":64823,"properties":{"mag":5.33,"bv":"1.304"},"geometry":{"type":"Point","coordinates":[-160.6849,13.6758]}},{"type":"Feature","id":64844,"properties":{"mag":4.72,"bv":"0.306"},"geometry":{"type":"Point","coordinates":[-160.6144,40.5726]}},{"type":"Feature","id":64852,"properties":{"mag":4.78,"bv":"1.638"},"geometry":{"type":"Point","coordinates":[-160.5988,5.4699]}},{"type":"Feature","id":64906,"properties":{"mag":5.14,"bv":"-0.049"},"geometry":{"type":"Point","coordinates":[-160.4395,49.6821]}},{"type":"Feature","id":64924,"properties":{"mag":4.74,"bv":"0.709"},"geometry":{"type":"Point","coordinates":[-160.3987,-18.3112]}},{"type":"Feature","id":64927,"properties":{"mag":5.81,"bv":"1.366"},"geometry":{"type":"Point","coordinates":[-160.3845,34.0983]}},{"type":"Feature","id":64962,"properties":{"mag":2.99,"bv":"0.920"},"geometry":{"type":"Point","coordinates":[-160.2696,-23.1715]}},{"type":"Feature","id":65072,"properties":{"mag":5.6,"bv":"1.204"},"geometry":{"type":"Point","coordinates":[-159.921,40.1505]}},{"type":"Feature","id":65109,"properties":{"mag":2.75,"bv":"0.068"},"geometry":{"type":"Point","coordinates":[-159.8508,-36.7123]}},{"type":"Feature","id":65112,"properties":{"mag":5.47,"bv":"-0.125"},"geometry":{"type":"Point","coordinates":[-159.8424,-52.7478]}},{"type":"Feature","id":65129,"properties":{"mag":6,"bv":"0.236"},"geometry":{"type":"Point","coordinates":[-159.7986,-55.8007]}},{"type":"Feature","id":65144,"properties":{"mag":5.76,"bv":"1.106"},"geometry":{"type":"Point","coordinates":[-159.7596,-46.88]}},{"type":"Feature","id":65198,"properties":{"mag":5.69,"bv":"0.045"},"geometry":{"type":"Point","coordinates":[-159.5765,2.0872]}},{"type":"Feature","id":65241,"properties":{"mag":5.89,"bv":"0.109"},"geometry":{"type":"Point","coordinates":[-159.4596,5.1548]}},{"type":"Feature","id":65247,"properties":{"mag":5.81,"bv":"0.072"},"geometry":{"type":"Point","coordinates":[-159.4321,-52.183]}},{"type":"Feature","id":65271,"properties":{"mag":4.52,"bv":"-0.141"},"geometry":{"type":"Point","coordinates":[-159.3419,-60.9884]}},{"type":"Feature","id":65301,"properties":{"mag":5.36,"bv":"0.987"},"geometry":{"type":"Point","coordinates":[-159.2454,-17.7353]}},{"type":"Feature","id":65323,"properties":{"mag":5.88,"bv":"1.431"},"geometry":{"type":"Point","coordinates":[-159.1713,-4.9244]}},{"type":"Feature","id":65378,"properties":{"mag":2.23,"bv":"0.057"},"geometry":{"type":"Point","coordinates":[-159.0186,54.9254]}},{"type":"Feature","id":65387,"properties":{"mag":4.52,"bv":"0.822"},"geometry":{"type":"Point","coordinates":[-158.998,-64.5357]}},{"type":"Feature","id":65420,"properties":{"mag":5.76,"bv":"0.415"},"geometry":{"type":"Point","coordinates":[-158.8615,-5.164]}},{"type":"Feature","id":65466,"properties":{"mag":5.75,"bv":"0.090"},"geometry":{"type":"Point","coordinates":[-158.7222,23.8544]}},{"type":"Feature","id":65468,"properties":{"mag":5.04,"bv":"1.110"},"geometry":{"type":"Point","coordinates":[-158.7203,-74.8878]}},{"type":"Feature","id":65474,"properties":{"mag":0.98,"bv":"-0.235"},"geometry":{"type":"Point","coordinates":[-158.7018,-11.1613]}},{"type":"Feature","id":65477,"properties":{"mag":3.99,"bv":"0.169"},"geometry":{"type":"Point","coordinates":[-158.6936,54.988]}},{"type":"Feature","id":65479,"properties":{"mag":5.32,"bv":"0.411"},"geometry":{"type":"Point","coordinates":[-158.692,-64.4851]}},{"type":"Feature","id":65522,"properties":{"mag":5.65,"bv":"-0.018"},"geometry":{"type":"Point","coordinates":[-158.5404,-70.6272]}},{"type":"Feature","id":65535,"properties":{"mag":5.11,"bv":"1.181"},"geometry":{"type":"Point","coordinates":[-158.4676,-39.7551]}},{"type":"Feature","id":65536,"properties":{"mag":5.82,"bv":"1.652"},"geometry":{"type":"Point","coordinates":[-158.4664,72.3915]}},{"type":"Feature","id":65545,"properties":{"mag":5.97,"bv":"0.183"},"geometry":{"type":"Point","coordinates":[-158.4524,-1.1925]}},{"type":"Feature","id":65550,"properties":{"mag":5.88,"bv":"0.985"},"geometry":{"type":"Point","coordinates":[-158.4308,46.0281]}},{"type":"Feature","id":65581,"properties":{"mag":5.27,"bv":"1.477"},"geometry":{"type":"Point","coordinates":[-158.3201,-12.7077]}},{"type":"Feature","id":65593,"properties":{"mag":5.69,"bv":"1.477"},"geometry":{"type":"Point","coordinates":[-158.2662,-41.4976]}},{"type":"Feature","id":65595,"properties":{"mag":5.74,"bv":"0.769"},"geometry":{"type":"Point","coordinates":[-158.2633,78.6439]}},{"type":"Feature","id":65639,"properties":{"mag":4.76,"bv":"1.096"},"geometry":{"type":"Point","coordinates":[-158.1368,-15.9736]}},{"type":"Feature","id":65721,"properties":{"mag":4.97,"bv":"0.714"},"geometry":{"type":"Point","coordinates":[-157.8925,13.7788]}},{"type":"Feature","id":65728,"properties":{"mag":5.4,"bv":"-0.010"},"geometry":{"type":"Point","coordinates":[-157.8871,59.9458]}},{"type":"Feature","id":65790,"properties":{"mag":5.65,"bv":"1.052"},"geometry":{"type":"Point","coordinates":[-157.6958,10.8183]}},{"type":"Feature","id":65810,"properties":{"mag":5.04,"bv":"0.059"},"geometry":{"type":"Point","coordinates":[-157.6448,-51.1651]}},{"type":"Feature","id":65936,"properties":{"mag":3.9,"bv":"1.186"},"geometry":{"type":"Point","coordinates":[-157.2389,-39.4073]}},{"type":"Feature","id":66006,"properties":{"mag":4.68,"bv":"1.606"},"geometry":{"type":"Point","coordinates":[-157.0088,-6.2558]}},{"type":"Feature","id":66065,"properties":{"mag":5.69,"bv":"0.037"},"geometry":{"type":"Point","coordinates":[-156.8504,-28.6928]}},{"type":"Feature","id":66091,"properties":{"mag":5.52,"bv":"1.228"},"geometry":{"type":"Point","coordinates":[-156.7848,-15.363]}},{"type":"Feature","id":66098,"properties":{"mag":5.21,"bv":"0.964"},"geometry":{"type":"Point","coordinates":[-156.758,-10.165]}},{"type":"Feature","id":66198,"properties":{"mag":5.6,"bv":"-0.014"},"geometry":{"type":"Point","coordinates":[-156.4696,55.3484]}},{"type":"Feature","id":66200,"properties":{"mag":4.92,"bv":"0.029"},"geometry":{"type":"Point","coordinates":[-156.467,3.659]}},{"type":"Feature","id":66234,"properties":{"mag":4.68,"bv":"0.132"},"geometry":{"type":"Point","coordinates":[-156.3864,49.016]}},{"type":"Feature","id":66247,"properties":{"mag":5.92,"bv":"0.020"},"geometry":{"type":"Point","coordinates":[-156.3315,-13.2143]}},{"type":"Feature","id":66249,"properties":{"mag":3.38,"bv":"0.114"},"geometry":{"type":"Point","coordinates":[-156.3267,-0.5958]}},{"type":"Feature","id":66257,"properties":{"mag":4.91,"bv":"0.404"},"geometry":{"type":"Point","coordinates":[-156.3008,37.1824]}},{"type":"Feature","id":66320,"properties":{"mag":5.7,"bv":"0.950"},"geometry":{"type":"Point","coordinates":[-156.1196,-5.3962]}},{"type":"Feature","id":66400,"properties":{"mag":5.73,"bv":"0.220"},"geometry":{"type":"Point","coordinates":[-155.7981,-26.4952]}},{"type":"Feature","id":66417,"properties":{"mag":5.72,"bv":"1.593"},"geometry":{"type":"Point","coordinates":[-155.7538,24.6133]}},{"type":"Feature","id":66427,"properties":{"mag":5.96,"bv":"0.936"},"geometry":{"type":"Point","coordinates":[-155.725,-44.1432]}},{"type":"Feature","id":66435,"properties":{"mag":5.5,"bv":"1.219"},"geometry":{"type":"Point","coordinates":[-155.7042,71.2423]}},{"type":"Feature","id":66438,"properties":{"mag":5.63,"bv":"0.493"},"geometry":{"type":"Point","coordinates":[-155.6984,-61.6919]}},{"type":"Feature","id":66454,"properties":{"mag":5.91,"bv":"-0.110"},"geometry":{"type":"Point","coordinates":[-155.6522,-46.4279]}},{"type":"Feature","id":66458,"properties":{"mag":4.82,"bv":"0.239"},"geometry":{"type":"Point","coordinates":[-155.6349,36.2949]}},{"type":"Feature","id":66563,"properties":{"mag":5.81,"bv":"0.431"},"geometry":{"type":"Point","coordinates":[-155.3247,-29.5609]}},{"type":"Feature","id":66575,"properties":{"mag":6,"bv":"1.138"},"geometry":{"type":"Point","coordinates":[-155.296,-57.6227]}},{"type":"Feature","id":66634,"properties":{"mag":5.46,"bv":"0.113"},"geometry":{"type":"Point","coordinates":[-155.1231,52.9212]}},{"type":"Feature","id":66640,"properties":{"mag":5.57,"bv":"0.348"},"geometry":{"type":"Point","coordinates":[-155.1058,10.7463]}},{"type":"Feature","id":66656,"properties":{"mag":5.61,"bv":"1.301"},"geometry":{"type":"Point","coordinates":[-155.0477,-40.0517]}},{"type":"Feature","id":66657,"properties":{"mag":2.29,"bv":"-0.171"},"geometry":{"type":"Point","coordinates":[-155.0281,-53.4664]}},{"type":"Feature","id":66666,"properties":{"mag":5.74,"bv":"1.496"},"geometry":{"type":"Point","coordinates":[-155.0008,-49.95]}},{"type":"Feature","id":66681,"properties":{"mag":5.79,"bv":"0.401"},"geometry":{"type":"Point","coordinates":[-154.9554,-64.5766]}},{"type":"Feature","id":66727,"properties":{"mag":5.73,"bv":"0.017"},"geometry":{"type":"Point","coordinates":[-154.8314,19.9557]}},{"type":"Feature","id":66738,"properties":{"mag":4.63,"bv":"1.630"},"geometry":{"type":"Point","coordinates":[-154.8155,54.6816]}},{"type":"Feature","id":66753,"properties":{"mag":5.56,"bv":"0.183"},"geometry":{"type":"Point","coordinates":[-154.7688,-85.786]}},{"type":"Feature","id":66763,"properties":{"mag":5.63,"bv":"1.009"},"geometry":{"type":"Point","coordinates":[-154.7402,22.4958]}},{"type":"Feature","id":66798,"properties":{"mag":5.85,"bv":"0.073"},"geometry":{"type":"Point","coordinates":[-154.6254,64.8224]}},{"type":"Feature","id":66803,"properties":{"mag":5.03,"bv":"1.623"},"geometry":{"type":"Point","coordinates":[-154.5968,-8.703]}},{"type":"Feature","id":66821,"properties":{"mag":4.99,"bv":"-0.055"},"geometry":{"type":"Point","coordinates":[-154.5635,-54.5594]}},{"type":"Feature","id":66849,"properties":{"mag":5.38,"bv":"-0.029"},"geometry":{"type":"Point","coordinates":[-154.4955,-58.7871]}},{"type":"Feature","id":66878,"properties":{"mag":5.92,"bv":"0.993"},"geometry":{"type":"Point","coordinates":[-154.4038,82.7524]}},{"type":"Feature","id":66903,"properties":{"mag":5.91,"bv":"1.000"},"geometry":{"type":"Point","coordinates":[-154.3367,78.0644]}},{"type":"Feature","id":66907,"properties":{"mag":5.98,"bv":"0.857"},"geometry":{"type":"Point","coordinates":[-154.319,34.989]}},{"type":"Feature","id":66924,"properties":{"mag":5.96,"bv":"1.019"},"geometry":{"type":"Point","coordinates":[-154.2707,-41.401]}},{"type":"Feature","id":66925,"properties":{"mag":6,"bv":"-0.096"},"geometry":{"type":"Point","coordinates":[-154.2662,-56.768]}},{"type":"Feature","id":66936,"properties":{"mag":5.35,"bv":"1.091"},"geometry":{"type":"Point","coordinates":[-154.2345,3.5379]}},{"type":"Feature","id":66984,"properties":{"mag":5.96,"bv":"-0.075"},"geometry":{"type":"Point","coordinates":[-154.083,-42.0675]}},{"type":"Feature","id":67057,"properties":{"mag":5.55,"bv":"0.805"},"geometry":{"type":"Point","coordinates":[-153.8757,-16.1791]}},{"type":"Feature","id":67143,"properties":{"mag":5.81,"bv":"0.023"},"geometry":{"type":"Point","coordinates":[-153.5963,-26.116]}},{"type":"Feature","id":67153,"properties":{"mag":4.23,"bv":"0.390"},"geometry":{"type":"Point","coordinates":[-153.5781,-33.0437]}},{"type":"Feature","id":67172,"properties":{"mag":5.5,"bv":"0.898"},"geometry":{"type":"Point","coordinates":[-153.5153,-12.4265]}},{"type":"Feature","id":67194,"properties":{"mag":5.88,"bv":"0.211"},"geometry":{"type":"Point","coordinates":[-153.4436,41.0887]}},{"type":"Feature","id":67210,"properties":{"mag":5.92,"bv":"0.948"},"geometry":{"type":"Point","coordinates":[-153.4206,38.5036]}},{"type":"Feature","id":67231,"properties":{"mag":5.68,"bv":"-0.039"},"geometry":{"type":"Point","coordinates":[-153.3514,54.4327]}},{"type":"Feature","id":67234,"properties":{"mag":4.64,"bv":"0.955"},"geometry":{"type":"Point","coordinates":[-153.3359,-51.4328]}},{"type":"Feature","id":67239,"properties":{"mag":5.97,"bv":"0.523"},"geometry":{"type":"Point","coordinates":[-153.3195,25.7022]}},{"type":"Feature","id":67244,"properties":{"mag":5.15,"bv":"-0.007"},"geometry":{"type":"Point","coordinates":[-153.2652,-36.2519]}},{"type":"Feature","id":67250,"properties":{"mag":5.51,"bv":"1.036"},"geometry":{"type":"Point","coordinates":[-153.2509,38.5427]}},{"type":"Feature","id":67275,"properties":{"mag":4.5,"bv":"0.508"},"geometry":{"type":"Point","coordinates":[-153.1844,17.4569]}},{"type":"Feature","id":67288,"properties":{"mag":5.41,"bv":"1.623"},"geometry":{"type":"Point","coordinates":[-153.1442,-17.8598]}},{"type":"Feature","id":67292,"properties":{"mag":5.92,"bv":"0.279"},"geometry":{"type":"Point","coordinates":[-153.1348,-50.2493]}},{"type":"Feature","id":67301,"properties":{"mag":1.85,"bv":"-0.099"},"geometry":{"type":"Point","coordinates":[-153.1148,49.3133]}},{"type":"Feature","id":67304,"properties":{"mag":5.46,"bv":"1.351"},"geometry":{"type":"Point","coordinates":[-153.0894,-50.3207]}},{"type":"Feature","id":67384,"properties":{"mag":5.61,"bv":"1.032"},"geometry":{"type":"Point","coordinates":[-152.8386,31.1902]}},{"type":"Feature","id":67457,"properties":{"mag":4.19,"bv":"1.520"},"geometry":{"type":"Point","coordinates":[-152.6387,-34.4508]}},{"type":"Feature","id":67459,"properties":{"mag":4.05,"bv":"1.520"},"geometry":{"type":"Point","coordinates":[-152.6307,15.7979]}},{"type":"Feature","id":67464,"properties":{"mag":3.41,"bv":"-0.225"},"geometry":{"type":"Point","coordinates":[-152.6238,-41.6877]}},{"type":"Feature","id":67472,"properties":{"mag":3.47,"bv":"-0.170"},"geometry":{"type":"Point","coordinates":[-152.5959,-42.4737]}},{"type":"Feature","id":67480,"properties":{"mag":4.92,"bv":"1.432"},"geometry":{"type":"Point","coordinates":[-152.5715,21.2641]}},{"type":"Feature","id":67485,"properties":{"mag":5.97,"bv":"0.974"},"geometry":{"type":"Point","coordinates":[-152.5604,61.4893]}},{"type":"Feature","id":67494,"properties":{"mag":4.96,"bv":"1.059"},"geometry":{"type":"Point","coordinates":[-152.5322,-18.1342]}},{"type":"Feature","id":67545,"properties":{"mag":6,"bv":"0.899"},"geometry":{"type":"Point","coordinates":[-152.3972,5.4972]}},{"type":"Feature","id":67605,"properties":{"mag":5.89,"bv":"1.635"},"geometry":{"type":"Point","coordinates":[-152.2116,34.6644]}},{"type":"Feature","id":67627,"properties":{"mag":4.58,"bv":"1.572"},"geometry":{"type":"Point","coordinates":[-152.1419,64.7233]}},{"type":"Feature","id":67663,"properties":{"mag":5.77,"bv":"-0.153"},"geometry":{"type":"Point","coordinates":[-152.0533,-46.8987]}},{"type":"Feature","id":67664,"properties":{"mag":5.73,"bv":"1.704"},"geometry":{"type":"Point","coordinates":[-152.0524,-69.4013]}},{"type":"Feature","id":67665,"properties":{"mag":4.76,"bv":"1.611"},"geometry":{"type":"Point","coordinates":[-152.0522,34.4442]}},{"type":"Feature","id":67669,"properties":{"mag":4.32,"bv":"-0.146"},"geometry":{"type":"Point","coordinates":[-152.0433,-32.9941]}},{"type":"Feature","id":67703,"properties":{"mag":5.26,"bv":"-0.084"},"geometry":{"type":"Point","coordinates":[-151.9797,-52.8115]}},{"type":"Feature","id":67782,"properties":{"mag":5.91,"bv":"0.202"},"geometry":{"type":"Point","coordinates":[-151.7072,28.6481]}},{"type":"Feature","id":67786,"properties":{"mag":4.75,"bv":"-0.111"},"geometry":{"type":"Point","coordinates":[-151.6978,-31.9276]}},{"type":"Feature","id":67787,"properties":{"mag":5.71,"bv":"0.845"},"geometry":{"type":"Point","coordinates":[-151.6961,17.9329]}},{"type":"Feature","id":67819,"properties":{"mag":5.53,"bv":"0.444"},"geometry":{"type":"Point","coordinates":[-151.6135,-35.6642]}},{"type":"Feature","id":67836,"properties":{"mag":5.87,"bv":"0.009"},"geometry":{"type":"Point","coordinates":[-151.5704,-53.3733]}},{"type":"Feature","id":67848,"properties":{"mag":5.7,"bv":"-0.032"},"geometry":{"type":"Point","coordinates":[-151.5374,53.7287]}},{"type":"Feature","id":67861,"properties":{"mag":5.83,"bv":"-0.053"},"geometry":{"type":"Point","coordinates":[-151.5115,-47.1282]}},{"type":"Feature","id":67927,"properties":{"mag":2.68,"bv":"0.580"},"geometry":{"type":"Point","coordinates":[-151.3288,18.3977]}},{"type":"Feature","id":67929,"properties":{"mag":5.16,"bv":"1.093"},"geometry":{"type":"Point","coordinates":[-151.3244,-1.5031]}},{"type":"Feature","id":67942,"properties":{"mag":5.74,"bv":"1.490"},"geometry":{"type":"Point","coordinates":[-151.2954,-67.6521]}},{"type":"Feature","id":67973,"properties":{"mag":5.66,"bv":"-0.072"},"geometry":{"type":"Point","coordinates":[-151.1994,-52.1608]}},{"type":"Feature","id":68002,"properties":{"mag":2.55,"bv":"-0.176"},"geometry":{"type":"Point","coordinates":[-151.1151,-47.2884]}},{"type":"Feature","id":68009,"properties":{"mag":5.95,"bv":"1.411"},"geometry":{"type":"Point","coordinates":[-151.088,-82.6662]}},{"type":"Feature","id":68079,"properties":{"mag":5.82,"bv":"1.140"},"geometry":{"type":"Point","coordinates":[-150.9176,-46.5929]}},{"type":"Feature","id":68092,"properties":{"mag":5.9,"bv":"0.217"},"geometry":{"type":"Point","coordinates":[-150.8838,1.0506]}},{"type":"Feature","id":68101,"properties":{"mag":6,"bv":"0.780"},"geometry":{"type":"Point","coordinates":[-150.8627,-54.7047]}},{"type":"Feature","id":68103,"properties":{"mag":5.02,"bv":"1.441"},"geometry":{"type":"Point","coordinates":[-150.8576,27.4921]}},{"type":"Feature","id":68191,"properties":{"mag":4.71,"bv":"1.075"},"geometry":{"type":"Point","coordinates":[-150.588,-63.6867]}},{"type":"Feature","id":68245,"properties":{"mag":3.83,"bv":"-0.224"},"geometry":{"type":"Point","coordinates":[-150.4322,-42.1008]}},{"type":"Feature","id":68269,"properties":{"mag":5.2,"bv":"-0.086"},"geometry":{"type":"Point","coordinates":[-150.3702,-24.9722]}},{"type":"Feature","id":68276,"properties":{"mag":5.76,"bv":"-0.002"},"geometry":{"type":"Point","coordinates":[-150.3378,21.6962]}},{"type":"Feature","id":68282,"properties":{"mag":3.87,"bv":"-0.208"},"geometry":{"type":"Point","coordinates":[-150.3302,-44.8036]}},{"type":"Feature","id":68333,"properties":{"mag":5.92,"bv":"0.957"},"geometry":{"type":"Point","coordinates":[-150.1772,-50.3696]}},{"type":"Feature","id":68390,"properties":{"mag":5.77,"bv":"0.480"},"geometry":{"type":"Point","coordinates":[-149.9995,-25.0104]}},{"type":"Feature","id":68455,"properties":{"mag":5.96,"bv":"0.352"},"geometry":{"type":"Point","coordinates":[-149.7815,-66.2689]}},{"type":"Feature","id":68498,"properties":{"mag":5.98,"bv":"0.089"},"geometry":{"type":"Point","coordinates":[-149.6649,8.8949]}},{"type":"Feature","id":68520,"properties":{"mag":4.23,"bv":"0.121"},"geometry":{"type":"Point","coordinates":[-149.5884,1.5445]}},{"type":"Feature","id":68523,"properties":{"mag":4.34,"bv":"0.598"},"geometry":{"type":"Point","coordinates":[-149.5688,-45.6034]}},{"type":"Feature","id":68581,"properties":{"mag":5.47,"bv":"1.331"},"geometry":{"type":"Point","coordinates":[-149.4051,-27.4298]}},{"type":"Feature","id":68670,"properties":{"mag":5.93,"bv":"1.207"},"geometry":{"type":"Point","coordinates":[-149.1396,-56.2134]}},{"type":"Feature","id":68702,"properties":{"mag":0.61,"bv":"-0.231"},"geometry":{"type":"Point","coordinates":[-149.0441,-60.373]}},{"type":"Feature","id":68756,"properties":{"mag":3.67,"bv":"-0.049"},"geometry":{"type":"Point","coordinates":[-148.9027,64.3759]}},{"type":"Feature","id":68815,"properties":{"mag":5.69,"bv":"1.239"},"geometry":{"type":"Point","coordinates":[-148.6672,-76.7968]}},{"type":"Feature","id":68862,"properties":{"mag":4.36,"bv":"-0.198"},"geometry":{"type":"Point","coordinates":[-148.4885,-41.1796]}},{"type":"Feature","id":68895,"properties":{"mag":3.25,"bv":"1.091"},"geometry":{"type":"Point","coordinates":[-148.4071,-26.6824]}},{"type":"Feature","id":68933,"properties":{"mag":2.06,"bv":"1.011"},"geometry":{"type":"Point","coordinates":[-148.3294,-36.37]}},{"type":"Feature","id":68940,"properties":{"mag":5.46,"bv":"0.347"},"geometry":{"type":"Point","coordinates":[-148.3216,-9.3135]}},{"type":"Feature","id":69038,"properties":{"mag":5.13,"bv":"1.493"},"geometry":{"type":"Point","coordinates":[-148.0177,43.8545]}},{"type":"Feature","id":69068,"properties":{"mag":5.26,"bv":"1.637"},"geometry":{"type":"Point","coordinates":[-147.9279,49.4582]}},{"type":"Feature","id":69112,"properties":{"mag":4.8,"bv":"1.368"},"geometry":{"type":"Point","coordinates":[-147.7878,77.5475]}},{"type":"Feature","id":69174,"properties":{"mag":5.96,"bv":"-0.053"},"geometry":{"type":"Point","coordinates":[-147.604,-51.5047]}},{"type":"Feature","id":69191,"properties":{"mag":4.74,"bv":"0.938"},"geometry":{"type":"Point","coordinates":[-147.5216,-53.4389]}},{"type":"Feature","id":69226,"properties":{"mag":4.82,"bv":"0.541"},"geometry":{"type":"Point","coordinates":[-147.4003,25.0917]}},{"type":"Feature","id":69269,"properties":{"mag":4.93,"bv":"1.684"},"geometry":{"type":"Point","coordinates":[-147.2896,-16.302]}},{"type":"Feature","id":69373,"properties":{"mag":5.18,"bv":"1.595"},"geometry":{"type":"Point","coordinates":[-146.9833,69.4325]}},{"type":"Feature","id":69389,"properties":{"mag":4.99,"bv":"-0.118"},"geometry":{"type":"Point","coordinates":[-146.9341,2.4094]}},{"type":"Feature","id":69415,"properties":{"mag":5.07,"bv":"1.130"},"geometry":{"type":"Point","coordinates":[-146.8082,-27.2612]}},{"type":"Feature","id":69427,"properties":{"mag":4.18,"bv":"1.323"},"geometry":{"type":"Point","coordinates":[-146.7761,-10.2737]}},{"type":"Feature","id":69462,"properties":{"mag":5.53,"bv":"1.438"},"geometry":{"type":"Point","coordinates":[-146.6816,-53.6657]}},{"type":"Feature","id":69483,"properties":{"mag":4.53,"bv":"0.233"},"geometry":{"type":"Point","coordinates":[-146.6291,51.79]}},{"type":"Feature","id":69493,"properties":{"mag":5.89,"bv":"0.489"},"geometry":{"type":"Point","coordinates":[-146.58,-0.8455]}},{"type":"Feature","id":69536,"properties":{"mag":5.53,"bv":"0.537"},"geometry":{"type":"Point","coordinates":[-146.4784,12.9594]}},{"type":"Feature","id":69598,"properties":{"mag":5.61,"bv":"0.929"},"geometry":{"type":"Point","coordinates":[-146.3222,-41.8375]}},{"type":"Feature","id":69612,"properties":{"mag":5.29,"bv":"1.007"},"geometry":{"type":"Point","coordinates":[-146.2881,10.1006]}},{"type":"Feature","id":69618,"properties":{"mag":5.03,"bv":"-0.074"},"geometry":{"type":"Point","coordinates":[-146.2619,-57.0861]}},{"type":"Feature","id":69658,"properties":{"mag":5.53,"bv":"0.001"},"geometry":{"type":"Point","coordinates":[-146.1496,-18.2007]}},{"type":"Feature","id":69673,"properties":{"mag":-0.05,"bv":"1.239"},"geometry":{"type":"Point","coordinates":[-146.0847,19.1824]}},{"type":"Feature","id":69701,"properties":{"mag":4.07,"bv":"0.511"},"geometry":{"type":"Point","coordinates":[-145.9964,-6.0005]}},{"type":"Feature","id":69713,"properties":{"mag":4.75,"bv":"0.236"},"geometry":{"type":"Point","coordinates":[-145.9586,51.3672]}},{"type":"Feature","id":69732,"properties":{"mag":4.18,"bv":"0.087"},"geometry":{"type":"Point","coordinates":[-145.9041,46.0883]}},{"type":"Feature","id":69763,"properties":{"mag":5.72,"bv":"-0.095"},"geometry":{"type":"Point","coordinates":[-145.8387,-66.5879]}},{"type":"Feature","id":69829,"properties":{"mag":5.84,"bv":"1.678"},"geometry":{"type":"Point","coordinates":[-145.6315,15.2634]}},{"type":"Feature","id":69879,"properties":{"mag":4.8,"bv":"1.057"},"geometry":{"type":"Point","coordinates":[-145.5008,35.5095]}},{"type":"Feature","id":69896,"properties":{"mag":4.89,"bv":"0.243"},"geometry":{"type":"Point","coordinates":[-145.4421,-81.0078]}},{"type":"Feature","id":69929,"properties":{"mag":5.86,"bv":"0.013"},"geometry":{"type":"Point","coordinates":[-145.3406,-18.716]}},{"type":"Feature","id":69965,"properties":{"mag":5.87,"bv":"0.518"},"geometry":{"type":"Point","coordinates":[-145.2463,-25.8154]}},{"type":"Feature","id":69974,"properties":{"mag":4.52,"bv":"0.128"},"geometry":{"type":"Point","coordinates":[-145.2225,-13.3711]}},{"type":"Feature","id":69989,"properties":{"mag":5.41,"bv":"0.385"},"geometry":{"type":"Point","coordinates":[-145.1822,13.0043]}},{"type":"Feature","id":69995,"properties":{"mag":5.93,"bv":"0.082"},"geometry":{"type":"Point","coordinates":[-145.1505,-37.0029]}},{"type":"Feature","id":69996,"properties":{"mag":3.55,"bv":"-0.184"},"geometry":{"type":"Point","coordinates":[-145.1491,-46.0581]}},{"type":"Feature","id":70012,"properties":{"mag":5.14,"bv":"1.023"},"geometry":{"type":"Point","coordinates":[-145.1147,-2.2655]}},{"type":"Feature","id":70027,"properties":{"mag":4.84,"bv":"1.228"},"geometry":{"type":"Point","coordinates":[-145.0615,16.3069]}},{"type":"Feature","id":70035,"properties":{"mag":5.22,"bv":"0.281"},"geometry":{"type":"Point","coordinates":[-145.0354,-61.273]}},{"type":"Feature","id":70054,"properties":{"mag":5.55,"bv":"0.907"},"geometry":{"type":"Point","coordinates":[-144.9596,-43.0588]}},{"type":"Feature","id":70069,"properties":{"mag":4.3,"bv":"0.082"},"geometry":{"type":"Point","coordinates":[-144.9186,-56.3865]}},{"type":"Feature","id":70090,"properties":{"mag":4.05,"bv":"-0.030"},"geometry":{"type":"Point","coordinates":[-144.8607,-37.8853]}},{"type":"Feature","id":70104,"properties":{"mag":4.78,"bv":"0.310"},"geometry":{"type":"Point","coordinates":[-144.8226,-45.1871]}},{"type":"Feature","id":70243,"properties":{"mag":5.57,"bv":"-0.088"},"geometry":{"type":"Point","coordinates":[-144.4178,-34.7868]}},{"type":"Feature","id":70248,"properties":{"mag":5.06,"bv":"-0.108"},"geometry":{"type":"Point","coordinates":[-144.4035,-80.1089]}},{"type":"Feature","id":70264,"properties":{"mag":4.76,"bv":"0.795"},"geometry":{"type":"Point","coordinates":[-144.3455,-58.4591]}},{"type":"Feature","id":70300,"properties":{"mag":4.41,"bv":"-0.185"},"geometry":{"type":"Point","coordinates":[-144.2407,-39.5118]}},{"type":"Feature","id":70306,"properties":{"mag":4.78,"bv":"1.300"},"geometry":{"type":"Point","coordinates":[-144.2259,-27.754]}},{"type":"Feature","id":70327,"properties":{"mag":4.86,"bv":"0.010"},"geometry":{"type":"Point","coordinates":[-144.1554,8.4466]}},{"type":"Feature","id":70363,"properties":{"mag":5.99,"bv":"1.099"},"geometry":{"type":"Point","coordinates":[-144.0476,-53.1762]}},{"type":"Feature","id":70384,"properties":{"mag":5.94,"bv":"0.066"},"geometry":{"type":"Point","coordinates":[-143.9963,8.244]}},{"type":"Feature","id":70400,"properties":{"mag":5.1,"bv":"0.124"},"geometry":{"type":"Point","coordinates":[-143.9527,5.8201]}},{"type":"Feature","id":70469,"properties":{"mag":5.34,"bv":"0.962"},"geometry":{"type":"Point","coordinates":[-143.7974,-24.8063]}},{"type":"Feature","id":70492,"properties":{"mag":5.56,"bv":"0.435"},"geometry":{"type":"Point","coordinates":[-143.7236,-68.1953]}},{"type":"Feature","id":70497,"properties":{"mag":4.04,"bv":"0.497"},"geometry":{"type":"Point","coordinates":[-143.7008,51.8507]}},{"type":"Feature","id":70574,"properties":{"mag":4.56,"bv":"-0.147"},"geometry":{"type":"Point","coordinates":[-143.4657,-45.2214]}},{"type":"Feature","id":70576,"properties":{"mag":4.33,"bv":"0.434"},"geometry":{"type":"Point","coordinates":[-143.4549,-45.3793]}},{"type":"Feature","id":70602,"properties":{"mag":5.4,"bv":"0.231"},"geometry":{"type":"Point","coordinates":[-143.386,19.2269]}},{"type":"Feature","id":70638,"properties":{"mag":4.31,"bv":"1.300"},"geometry":{"type":"Point","coordinates":[-143.2699,-83.6679]}},{"type":"Feature","id":70657,"properties":{"mag":5.87,"bv":"1.502"},"geometry":{"type":"Point","coordinates":[-143.2205,-65.8216]}},{"type":"Feature","id":70663,"properties":{"mag":5.83,"bv":"0.311"},"geometry":{"type":"Point","coordinates":[-143.1993,-46.1343]}},{"type":"Feature","id":70692,"properties":{"mag":4.25,"bv":"1.431"},"geometry":{"type":"Point","coordinates":[-143.1186,75.696]}},{"type":"Feature","id":70753,"properties":{"mag":4.97,"bv":"-0.074"},"geometry":{"type":"Point","coordinates":[-142.9566,-29.4916]}},{"type":"Feature","id":70755,"properties":{"mag":4.81,"bv":"0.693"},"geometry":{"type":"Point","coordinates":[-142.9494,-2.228]}},{"type":"Feature","id":70791,"properties":{"mag":5.58,"bv":"0.864"},"geometry":{"type":"Point","coordinates":[-142.8424,49.8449]}},{"type":"Feature","id":70794,"properties":{"mag":5.42,"bv":"1.490"},"geometry":{"type":"Point","coordinates":[-142.8262,-6.9005]}},{"type":"Feature","id":70894,"properties":{"mag":5.96,"bv":"0.159"},"geometry":{"type":"Point","coordinates":[-142.5395,0.8289]}},{"type":"Feature","id":70915,"properties":{"mag":5.51,"bv":"-0.087"},"geometry":{"type":"Point","coordinates":[-142.464,-45.3214]}},{"type":"Feature","id":70931,"properties":{"mag":5.38,"bv":"0.056"},"geometry":{"type":"Point","coordinates":[-142.4127,-49.519]}},{"type":"Feature","id":70987,"properties":{"mag":5.99,"bv":"1.060"},"geometry":{"type":"Point","coordinates":[-142.2048,-38.8697]}},{"type":"Feature","id":71002,"properties":{"mag":5.84,"bv":"1.006"},"geometry":{"type":"Point","coordinates":[-142.1815,-67.7172]}},{"type":"Feature","id":71053,"properties":{"mag":3.57,"bv":"1.298"},"geometry":{"type":"Point","coordinates":[-142.0425,30.3714]}},{"type":"Feature","id":71075,"properties":{"mag":3.04,"bv":"0.191"},"geometry":{"type":"Point","coordinates":[-141.9805,38.3083]}},{"type":"Feature","id":71094,"properties":{"mag":6,"bv":"0.230"},"geometry":{"type":"Point","coordinates":[-141.9157,26.6773]}},{"type":"Feature","id":71111,"properties":{"mag":5.74,"bv":"1.529"},"geometry":{"type":"Point","coordinates":[-141.8711,55.398]}},{"type":"Feature","id":71115,"properties":{"mag":5.91,"bv":"0.391"},"geometry":{"type":"Point","coordinates":[-141.8644,22.2601]}},{"type":"Feature","id":71121,"properties":{"mag":4.44,"bv":"-0.177"},"geometry":{"type":"Point","coordinates":[-141.8456,-50.4572]}},{"type":"Feature","id":71182,"properties":{"mag":5.86,"bv":"1.085"},"geometry":{"type":"Point","coordinates":[-141.6251,-52.6795]}},{"type":"Feature","id":71184,"properties":{"mag":5.86,"bv":"0.482"},"geometry":{"type":"Point","coordinates":[-141.6151,-54.9986]}},{"type":"Feature","id":71280,"properties":{"mag":5.74,"bv":"1.560"},"geometry":{"type":"Point","coordinates":[-141.3349,49.3684]}},{"type":"Feature","id":71284,"properties":{"mag":4.47,"bv":"0.364"},"geometry":{"type":"Point","coordinates":[-141.3299,29.7451]}},{"type":"Feature","id":71352,"properties":{"mag":2.33,"bv":"-0.157"},"geometry":{"type":"Point","coordinates":[-141.1232,-42.1578]}},{"type":"Feature","id":71353,"properties":{"mag":5.88,"bv":"-0.085"},"geometry":{"type":"Point","coordinates":[-141.1188,-41.5174]}},{"type":"Feature","id":71419,"properties":{"mag":5.55,"bv":"1.489"},"geometry":{"type":"Point","coordinates":[-140.9207,-46.2455]}},{"type":"Feature","id":71453,"properties":{"mag":5.74,"bv":"-0.112"},"geometry":{"type":"Point","coordinates":[-140.8161,-40.2116]}},{"type":"Feature","id":71500,"properties":{"mag":5.39,"bv":"0.927"},"geometry":{"type":"Point","coordinates":[-140.666,-46.1334]}},{"type":"Feature","id":71536,"properties":{"mag":4.05,"bv":"-0.152"},"geometry":{"type":"Point","coordinates":[-140.5282,-49.4258]}},{"type":"Feature","id":71568,"properties":{"mag":5.74,"bv":"1.481"},"geometry":{"type":"Point","coordinates":[-140.4475,43.6421]}},{"type":"Feature","id":71571,"properties":{"mag":5.9,"bv":"1.099"},"geometry":{"type":"Point","coordinates":[-140.4417,18.2984]}},{"type":"Feature","id":71573,"properties":{"mag":5.83,"bv":"0.007"},"geometry":{"type":"Point","coordinates":[-140.4366,54.0233]}},{"type":"Feature","id":71618,"properties":{"mag":5.39,"bv":"0.030"},"geometry":{"type":"Point","coordinates":[-140.2907,44.4045]}},{"type":"Feature","id":71681,"properties":{"mag":1.35,"bv":"0.900"},"geometry":{"type":"Point","coordinates":[-140.1038,-60.8372]}},{"type":"Feature","id":71683,"properties":{"mag":-0.01,"bv":"0.710"},"geometry":{"type":"Point","coordinates":[-140.0979,-60.834]}},{"type":"Feature","id":71759,"properties":{"mag":5.93,"bv":"0.238"},"geometry":{"type":"Point","coordinates":[-139.8234,13.5343]}},{"type":"Feature","id":71762,"properties":{"mag":4.49,"bv":"-0.002"},"geometry":{"type":"Point","coordinates":[-139.8185,16.4183]}},{"type":"Feature","id":71783,"properties":{"mag":5.67,"bv":"-0.081"},"geometry":{"type":"Point","coordinates":[-139.7442,-36.1349]}},{"type":"Feature","id":71795,"properties":{"mag":3.78,"bv":"0.044"},"geometry":{"type":"Point","coordinates":[-139.7127,13.7283]}},{"type":"Feature","id":71832,"properties":{"mag":4.86,"bv":"0.992"},"geometry":{"type":"Point","coordinates":[-139.5885,8.1618]}},{"type":"Feature","id":71837,"properties":{"mag":5.55,"bv":"0.941"},"geometry":{"type":"Point","coordinates":[-139.5687,11.6607]}},{"type":"Feature","id":71860,"properties":{"mag":2.3,"bv":"-0.154"},"geometry":{"type":"Point","coordinates":[-139.5177,-47.3882]}},{"type":"Feature","id":71865,"properties":{"mag":4.01,"bv":"-0.157"},"geometry":{"type":"Point","coordinates":[-139.51,-37.7935]}},{"type":"Feature","id":71908,"properties":{"mag":3.18,"bv":"0.256"},"geometry":{"type":"Point","coordinates":[-139.3733,-64.9751]}},{"type":"Feature","id":71957,"properties":{"mag":3.87,"bv":"0.385"},"geometry":{"type":"Point","coordinates":[-139.2349,-5.6582]}},{"type":"Feature","id":71974,"properties":{"mag":5.7,"bv":"0.006"},"geometry":{"type":"Point","coordinates":[-139.1935,-24.9978]}},{"type":"Feature","id":71995,"properties":{"mag":4.8,"bv":"1.672"},"geometry":{"type":"Point","coordinates":[-139.1443,26.5279]}},{"type":"Feature","id":72010,"properties":{"mag":4.06,"bv":"1.356"},"geometry":{"type":"Point","coordinates":[-139.0857,-35.1737]}},{"type":"Feature","id":72012,"properties":{"mag":5.72,"bv":"1.398"},"geometry":{"type":"Point","coordinates":[-139.0649,40.4593]}},{"type":"Feature","id":72104,"properties":{"mag":4.92,"bv":"0.013"},"geometry":{"type":"Point","coordinates":[-138.7533,-35.1918]}},{"type":"Feature","id":72105,"properties":{"mag":2.35,"bv":"0.966"},"geometry":{"type":"Point","coordinates":[-138.7533,27.0742]}},{"type":"Feature","id":72125,"properties":{"mag":4.6,"bv":"0.972"},"geometry":{"type":"Point","coordinates":[-138.6897,16.9643]}},{"type":"Feature","id":72131,"properties":{"mag":5.36,"bv":"0.308"},"geometry":{"type":"Point","coordinates":[-138.6778,-62.8756]}},{"type":"Feature","id":72154,"properties":{"mag":5.68,"bv":"-0.021"},"geometry":{"type":"Point","coordinates":[-138.6241,0.7173]}},{"type":"Feature","id":72197,"properties":{"mag":5.15,"bv":"0.315"},"geometry":{"type":"Point","coordinates":[-138.4997,-25.4432]}},{"type":"Feature","id":72208,"properties":{"mag":5.78,"bv":"1.335"},"geometry":{"type":"Point","coordinates":[-138.4752,15.1318]}},{"type":"Feature","id":72210,"properties":{"mag":5.8,"bv":"0.980"},"geometry":{"type":"Point","coordinates":[-138.4718,-23.153]}},{"type":"Feature","id":72220,"properties":{"mag":3.73,"bv":"-0.005"},"geometry":{"type":"Point","coordinates":[-138.4378,1.8929]}},{"type":"Feature","id":72250,"properties":{"mag":5.74,"bv":"0.066"},"geometry":{"type":"Point","coordinates":[-138.3792,-47.4411]}},{"type":"Feature","id":72290,"properties":{"mag":5.22,"bv":"0.984"},"geometry":{"type":"Point","coordinates":[-138.2446,-52.3835]}},{"type":"Feature","id":72296,"properties":{"mag":5.9,"bv":"1.336"},"geometry":{"type":"Point","coordinates":[-138.2288,-38.2906]}},{"type":"Feature","id":72323,"properties":{"mag":5.61,"bv":"-0.043"},"geometry":{"type":"Point","coordinates":[-138.156,-25.6243]}},{"type":"Feature","id":72357,"properties":{"mag":5.23,"bv":"0.938"},"geometry":{"type":"Point","coordinates":[-138.0633,-26.0875]}},{"type":"Feature","id":72370,"properties":{"mag":3.83,"bv":"1.433"},"geometry":{"type":"Point","coordinates":[-138.0345,-79.0448]}},{"type":"Feature","id":72378,"properties":{"mag":5.76,"bv":"-0.007"},"geometry":{"type":"Point","coordinates":[-138.0102,-26.6462]}},{"type":"Feature","id":72432,"properties":{"mag":5.89,"bv":"1.369"},"geometry":{"type":"Point","coordinates":[-137.8415,-36.6347]}},{"type":"Feature","id":72438,"properties":{"mag":5.91,"bv":"-0.106"},"geometry":{"type":"Point","coordinates":[-137.8144,-66.5936]}},{"type":"Feature","id":72487,"properties":{"mag":5.76,"bv":"0.482"},"geometry":{"type":"Point","coordinates":[-137.6722,46.1162]}},{"type":"Feature","id":72488,"properties":{"mag":5.68,"bv":"1.275"},"geometry":{"type":"Point","coordinates":[-137.6719,-24.2515]}},{"type":"Feature","id":72489,"properties":{"mag":5.32,"bv":"0.066"},"geometry":{"type":"Point","coordinates":[-137.6706,-14.149]}},{"type":"Feature","id":72524,"properties":{"mag":5.68,"bv":"0.501"},"geometry":{"type":"Point","coordinates":[-137.5779,48.7208]}},{"type":"Feature","id":72552,"properties":{"mag":5.8,"bv":"0.046"},"geometry":{"type":"Point","coordinates":[-137.5067,28.6158]}},{"type":"Feature","id":72567,"properties":{"mag":5.86,"bv":"0.576"},"geometry":{"type":"Point","coordinates":[-137.4341,23.9118]}},{"type":"Feature","id":72571,"properties":{"mag":4.42,"bv":"1.366"},"geometry":{"type":"Point","coordinates":[-137.4279,-27.9604]}},{"type":"Feature","id":72573,"properties":{"mag":5.63,"bv":"0.671"},"geometry":{"type":"Point","coordinates":[-137.4149,82.5119]}},{"type":"Feature","id":72582,"properties":{"mag":5.47,"bv":"1.030"},"geometry":{"type":"Point","coordinates":[-137.3765,37.272]}},{"type":"Feature","id":72603,"properties":{"mag":5.15,"bv":"0.401"},"geometry":{"type":"Point","coordinates":[-137.3284,-15.9972]}},{"type":"Feature","id":72607,"properties":{"mag":2.07,"bv":"1.465"},"geometry":{"type":"Point","coordinates":[-137.3236,74.1555]}},{"type":"Feature","id":72622,"properties":{"mag":2.75,"bv":"0.147"},"geometry":{"type":"Point","coordinates":[-137.2804,-16.0418]}},{"type":"Feature","id":72631,"properties":{"mag":4.93,"bv":"0.988"},"geometry":{"type":"Point","coordinates":[-137.2455,-2.2992]}},{"type":"Feature","id":72659,"properties":{"mag":4.54,"bv":"0.720"},"geometry":{"type":"Point","coordinates":[-137.1526,19.1005]}},{"type":"Feature","id":72664,"properties":{"mag":5.48,"bv":"1.369"},"geometry":{"type":"Point","coordinates":[-137.1398,59.294]}},{"type":"Feature","id":72683,"properties":{"mag":4.32,"bv":"-0.154"},"geometry":{"type":"Point","coordinates":[-137.0904,-43.5754]}},{"type":"Feature","id":72773,"properties":{"mag":5.91,"bv":"0.660"},"geometry":{"type":"Point","coordinates":[-136.8531,-63.8098]}},{"type":"Feature","id":72800,"properties":{"mag":5.02,"bv":"-0.155"},"geometry":{"type":"Point","coordinates":[-136.7872,-37.8032]}},{"type":"Feature","id":72833,"properties":{"mag":5.59,"bv":"0.820"},"geometry":{"type":"Point","coordinates":[-136.6934,-73.1901]}},{"type":"Feature","id":72848,"properties":{"mag":6,"bv":"0.841"},"geometry":{"type":"Point","coordinates":[-136.651,19.1528]}},{"type":"Feature","id":72929,"properties":{"mag":5.27,"bv":"1.336"},"geometry":{"type":"Point","coordinates":[-136.4161,-24.6422]}},{"type":"Feature","id":72934,"properties":{"mag":5.78,"bv":"0.982"},"geometry":{"type":"Point","coordinates":[-136.4047,-11.8983]}},{"type":"Feature","id":72959,"properties":{"mag":5.85,"bv":"1.429"},"geometry":{"type":"Point","coordinates":[-136.342,-33.3006]}},{"type":"Feature","id":73036,"properties":{"mag":5.18,"bv":"1.161"},"geometry":{"type":"Point","coordinates":[-136.106,-60.1142]}},{"type":"Feature","id":73049,"properties":{"mag":5.32,"bv":"0.046"},"geometry":{"type":"Point","coordinates":[-136.0637,-33.8558]}},{"type":"Feature","id":73087,"properties":{"mag":5.9,"bv":"-0.031"},"geometry":{"type":"Point","coordinates":[-135.9449,14.4463]}},{"type":"Feature","id":73095,"properties":{"mag":5.38,"bv":"0.142"},"geometry":{"type":"Point","coordinates":[-135.9281,-52.8095]}},{"type":"Feature","id":73100,"properties":{"mag":5.63,"bv":"0.533"},"geometry":{"type":"Point","coordinates":[-135.904,49.6284]}},{"type":"Feature","id":73111,"properties":{"mag":5.62,"bv":"-0.035"},"geometry":{"type":"Point","coordinates":[-135.8664,-47.8792]}},{"type":"Feature","id":73129,"properties":{"mag":5.08,"bv":"-0.023"},"geometry":{"type":"Point","coordinates":[-135.8167,-62.781]}},{"type":"Feature","id":73133,"properties":{"mag":5.48,"bv":"1.491"},"geometry":{"type":"Point","coordinates":[-135.8079,-11.4097]}},{"type":"Feature","id":73165,"properties":{"mag":4.47,"bv":"0.318"},"geometry":{"type":"Point","coordinates":[-135.7042,-4.3465]}},{"type":"Feature","id":73166,"properties":{"mag":5.72,"bv":"0.951"},"geometry":{"type":"Point","coordinates":[-135.7013,16.3881]}},{"type":"Feature","id":73184,"properties":{"mag":5.72,"bv":"1.024"},"geometry":{"type":"Point","coordinates":[-135.6333,-21.4155]}},{"type":"Feature","id":73193,"properties":{"mag":5.51,"bv":"1.131"},"geometry":{"type":"Point","coordinates":[-135.6115,-0.1676]}},{"type":"Feature","id":73199,"properties":{"mag":4.63,"bv":"1.590"},"geometry":{"type":"Point","coordinates":[-135.6041,65.9325]}},{"type":"Feature","id":73223,"properties":{"mag":5.37,"bv":"1.442"},"geometry":{"type":"Point","coordinates":[-135.5292,-76.6627]}},{"type":"Feature","id":73273,"properties":{"mag":2.68,"bv":"-0.184"},"geometry":{"type":"Point","coordinates":[-135.367,-43.134]}},{"type":"Feature","id":73284,"properties":{"mag":5.65,"bv":"0.262"},"geometry":{"type":"Point","coordinates":[-135.3364,-27.6573]}},{"type":"Feature","id":73310,"properties":{"mag":5.88,"bv":"1.274"},"geometry":{"type":"Point","coordinates":[-135.2767,-11.144]}},{"type":"Feature","id":73334,"properties":{"mag":3.13,"bv":"-0.208"},"geometry":{"type":"Point","coordinates":[-135.2096,-42.1042]}},{"type":"Feature","id":73350,"properties":{"mag":5.91,"bv":"1.615"},"geometry":{"type":"Point","coordinates":[-135.1537,4.5678]}},{"type":"Feature","id":73369,"properties":{"mag":5.64,"bv":"0.336"},"geometry":{"type":"Point","coordinates":[-135.0961,39.2653]}},{"type":"Feature","id":73415,"properties":{"mag":5.92,"bv":"1.052"},"geometry":{"type":"Point","coordinates":[-134.9529,-77.1606]}},{"type":"Feature","id":73473,"properties":{"mag":4.91,"bv":"0.000"},"geometry":{"type":"Point","coordinates":[-134.7569,-8.5189]}},{"type":"Feature","id":73493,"properties":{"mag":5.88,"bv":"1.246"},"geometry":{"type":"Point","coordinates":[-134.6954,-38.0584]}},{"type":"Feature","id":73497,"properties":{"mag":5.52,"bv":"1.692"},"geometry":{"type":"Point","coordinates":[-134.6674,-2.7549]}},{"type":"Feature","id":73507,"properties":{"mag":5.91,"bv":"0.107"},"geometry":{"type":"Point","coordinates":[-134.6371,60.2045]}},{"type":"Feature","id":73536,"properties":{"mag":5.71,"bv":"1.509"},"geometry":{"type":"Point","coordinates":[-134.5462,-0.1403]}},{"type":"Feature","id":73540,"properties":{"mag":5.65,"bv":"0.962"},"geometry":{"type":"Point","coordinates":[-134.5383,-83.2276]}},{"type":"Feature","id":73555,"properties":{"mag":3.49,"bv":"0.956"},"geometry":{"type":"Point","coordinates":[-134.5135,40.3906]}},{"type":"Feature","id":73566,"properties":{"mag":5.83,"bv":"0.164"},"geometry":{"type":"Point","coordinates":[-134.4732,-28.0606]}},{"type":"Feature","id":73568,"properties":{"mag":4.8,"bv":"1.506"},"geometry":{"type":"Point","coordinates":[-134.4729,25.0081]}},{"type":"Feature","id":73620,"properties":{"mag":4.39,"bv":"1.026"},"geometry":{"type":"Point","coordinates":[-134.2748,2.0913]}},{"type":"Feature","id":73624,"properties":{"mag":5.45,"bv":"-0.127"},"geometry":{"type":"Point","coordinates":[-134.253,-32.6433]}},{"type":"Feature","id":73634,"properties":{"mag":5.52,"bv":"1.023"},"geometry":{"type":"Point","coordinates":[-134.2248,35.2058]}},{"type":"Feature","id":73695,"properties":{"mag":4.83,"bv":"0.647"},"geometry":{"type":"Point","coordinates":[-134.0529,47.6541]}},{"type":"Feature","id":73714,"properties":{"mag":3.25,"bv":"1.674"},"geometry":{"type":"Point","coordinates":[-133.9824,-25.282]}},{"type":"Feature","id":73745,"properties":{"mag":4.52,"bv":"1.240"},"geometry":{"type":"Point","coordinates":[-133.8886,26.9476]}},{"type":"Feature","id":73771,"properties":{"mag":5.65,"bv":"1.273"},"geometry":{"type":"Point","coordinates":[-133.8045,-83.0383]}},{"type":"Feature","id":73776,"properties":{"mag":5.16,"bv":"0.935"},"geometry":{"type":"Point","coordinates":[-133.7992,-64.0314]}},{"type":"Feature","id":73807,"properties":{"mag":3.91,"bv":"-0.144"},"geometry":{"type":"Point","coordinates":[-133.7205,-47.0512]}},{"type":"Feature","id":73826,"properties":{"mag":5.13,"bv":"1.011"},"geometry":{"type":"Point","coordinates":[-133.6701,-41.0672]}},{"type":"Feature","id":73841,"properties":{"mag":5.59,"bv":"-0.005"},"geometry":{"type":"Point","coordinates":[-133.6424,48.151]}},{"type":"Feature","id":73909,"properties":{"mag":5.24,"bv":"0.958"},"geometry":{"type":"Point","coordinates":[-133.4303,54.5563]}},{"type":"Feature","id":73937,"properties":{"mag":5.97,"bv":"-0.076"},"geometry":{"type":"Point","coordinates":[-133.3617,-30.9185]}},{"type":"Feature","id":73945,"properties":{"mag":5.19,"bv":"1.589"},"geometry":{"type":"Point","coordinates":[-133.3433,-16.2568]}},{"type":"Feature","id":73996,"properties":{"mag":4.93,"bv":"0.429"},"geometry":{"type":"Point","coordinates":[-133.1747,24.8692]}},{"type":"Feature","id":74006,"properties":{"mag":5.77,"bv":"0.920"},"geometry":{"type":"Point","coordinates":[-133.1419,-49.0886]}},{"type":"Feature","id":74066,"properties":{"mag":5.75,"bv":"-0.113"},"geometry":{"type":"Point","coordinates":[-132.9495,-40.5839]}},{"type":"Feature","id":74087,"properties":{"mag":5.67,"bv":"1.240"},"geometry":{"type":"Point","coordinates":[-132.9009,26.3012]}},{"type":"Feature","id":74096,"properties":{"mag":5.82,"bv":"1.233"},"geometry":{"type":"Point","coordinates":[-132.8518,25.1086]}},{"type":"Feature","id":74100,"properties":{"mag":5.85,"bv":"-0.123"},"geometry":{"type":"Point","coordinates":[-132.8367,-42.8679]}},{"type":"Feature","id":74117,"properties":{"mag":4.07,"bv":"-0.162"},"geometry":{"type":"Point","coordinates":[-132.7891,-45.2799]}},{"type":"Feature","id":74184,"properties":{"mag":5.76,"bv":"0.675"},"geometry":{"type":"Point","coordinates":[-132.6254,-67.0841]}},{"type":"Feature","id":74224,"properties":{"mag":5.98,"bv":"0.867"},"geometry":{"type":"Point","coordinates":[-132.4695,-38.7925]}},{"type":"Feature","id":74239,"properties":{"mag":5.75,"bv":"1.045"},"geometry":{"type":"Point","coordinates":[-132.4224,-26.3326]}},{"type":"Feature","id":74296,"properties":{"mag":5.88,"bv":"-0.031"},"geometry":{"type":"Point","coordinates":[-132.2133,-84.7878]}},{"type":"Feature","id":74305,"properties":{"mag":5.45,"bv":"1.118"},"geometry":{"type":"Point","coordinates":[-132.1834,-55.346]}},{"type":"Feature","id":74376,"properties":{"mag":3.88,"bv":"-0.029"},"geometry":{"type":"Point","coordinates":[-132.0164,-48.7378]}},{"type":"Feature","id":74380,"properties":{"mag":5.7,"bv":"0.144"},"geometry":{"type":"Point","coordinates":[-132.0097,-48.7437]}},{"type":"Feature","id":74386,"properties":{"mag":5.9,"bv":"1.414"},"geometry":{"type":"Point","coordinates":[-131.9822,18.976]}},{"type":"Feature","id":74392,"properties":{"mag":4.54,"bv":"-0.071"},"geometry":{"type":"Point","coordinates":[-131.9446,-19.7917]}},{"type":"Feature","id":74395,"properties":{"mag":3.41,"bv":"0.918"},"geometry":{"type":"Point","coordinates":[-131.9288,-52.0992]}},{"type":"Feature","id":74449,"properties":{"mag":4.83,"bv":"-0.177"},"geometry":{"type":"Point","coordinates":[-131.7934,-44.5004]}},{"type":"Feature","id":74539,"properties":{"mag":5.84,"bv":"1.139"},"geometry":{"type":"Point","coordinates":[-131.5279,-26.1936]}},{"type":"Feature","id":74561,"properties":{"mag":5.98,"bv":"1.552"},"geometry":{"type":"Point","coordinates":[-131.4748,31.7878]}},{"type":"Feature","id":74582,"properties":{"mag":5.75,"bv":"3.271"},"geometry":{"type":"Point","coordinates":[-131.4201,-70.0795]}},{"type":"Feature","id":74596,"properties":{"mag":5.28,"bv":"0.062"},"geometry":{"type":"Point","coordinates":[-131.3785,29.1643]}},{"type":"Feature","id":74604,"properties":{"mag":4.91,"bv":"0.374"},"geometry":{"type":"Point","coordinates":[-131.3445,-31.5191]}},{"type":"Feature","id":74605,"properties":{"mag":5.15,"bv":"0.550"},"geometry":{"type":"Point","coordinates":[-131.3403,67.3467]}},{"type":"Feature","id":74649,"properties":{"mag":5.32,"bv":"1.092"},"geometry":{"type":"Point","coordinates":[-131.2027,4.9394]}},{"type":"Feature","id":74666,"properties":{"mag":3.46,"bv":"0.961"},"geometry":{"type":"Point","coordinates":[-131.1243,33.3148]}},{"type":"Feature","id":74689,"properties":{"mag":5.62,"bv":"0.181"},"geometry":{"type":"Point","coordinates":[-131.0455,0.3721]}},{"type":"Feature","id":74696,"properties":{"mag":5.96,"bv":"0.210"},"geometry":{"type":"Point","coordinates":[-131.0264,-48.0737]}},{"type":"Feature","id":74707,"properties":{"mag":5.15,"bv":"0.564"},"geometry":{"type":"Point","coordinates":[-130.9832,-41.4912]}},{"type":"Feature","id":74732,"properties":{"mag":5.52,"bv":"1.357"},"geometry":{"type":"Point","coordinates":[-130.9041,-22.3994]}},{"type":"Feature","id":74750,"properties":{"mag":5.74,"bv":"-0.057"},"geometry":{"type":"Point","coordinates":[-130.8471,-60.904]}},{"type":"Feature","id":74778,"properties":{"mag":5.04,"bv":"-0.077"},"geometry":{"type":"Point","coordinates":[-130.7629,-60.9573]}},{"type":"Feature","id":74785,"properties":{"mag":2.61,"bv":"-0.071"},"geometry":{"type":"Point","coordinates":[-130.7483,-9.3829]}},{"type":"Feature","id":74793,"properties":{"mag":5.02,"bv":"1.369"},"geometry":{"type":"Point","coordinates":[-130.7255,71.8239]}},{"type":"Feature","id":74824,"properties":{"mag":4.07,"bv":"0.088"},"geometry":{"type":"Point","coordinates":[-130.6215,-58.8012]}},{"type":"Feature","id":74837,"properties":{"mag":4.85,"bv":"1.260"},"geometry":{"type":"Point","coordinates":[-130.588,-63.6105]}},{"type":"Feature","id":74857,"properties":{"mag":4.35,"bv":"1.100"},"geometry":{"type":"Point","coordinates":[-130.5423,-30.1487]}},{"type":"Feature","id":74896,"properties":{"mag":5.68,"bv":"0.972"},"geometry":{"type":"Point","coordinates":[-130.3979,20.5728]}},{"type":"Feature","id":74901,"properties":{"mag":5.88,"bv":"1.507"},"geometry":{"type":"Point","coordinates":[-130.3911,-0.4612]}},{"type":"Feature","id":74911,"properties":{"mag":4.27,"bv":"-0.086"},"geometry":{"type":"Point","coordinates":[-130.3666,-47.8753]}},{"type":"Feature","id":74941,"properties":{"mag":5.43,"bv":"-0.089"},"geometry":{"type":"Point","coordinates":[-130.2952,-60.4963]}},{"type":"Feature","id":74946,"properties":{"mag":2.87,"bv":"0.014"},"geometry":{"type":"Point","coordinates":[-130.2726,-68.6795]}},{"type":"Feature","id":74950,"properties":{"mag":5.59,"bv":"-0.099"},"geometry":{"type":"Point","coordinates":[-130.2651,-40.7882]}},{"type":"Feature","id":74975,"properties":{"mag":5.04,"bv":"0.540"},"geometry":{"type":"Point","coordinates":[-130.1717,1.7654]}},{"type":"Feature","id":75043,"properties":{"mag":5.65,"bv":"0.122"},"geometry":{"type":"Point","coordinates":[-129.9785,51.9585]}},{"type":"Feature","id":75049,"properties":{"mag":5.51,"bv":"1.015"},"geometry":{"type":"Point","coordinates":[-129.9643,29.6162]}},{"type":"Feature","id":75097,"properties":{"mag":3,"bv":"0.058"},"geometry":{"type":"Point","coordinates":[-129.8179,71.834]}},{"type":"Feature","id":75119,"properties":{"mag":5.35,"bv":"1.191"},"geometry":{"type":"Point","coordinates":[-129.7417,0.7153]}},{"type":"Feature","id":75127,"properties":{"mag":5.54,"bv":"1.047"},"geometry":{"type":"Point","coordinates":[-129.7183,-5.8249]}},{"type":"Feature","id":75141,"properties":{"mag":3.22,"bv":"-0.227"},"geometry":{"type":"Point","coordinates":[-129.657,-40.6475]}},{"type":"Feature","id":75177,"properties":{"mag":3.57,"bv":"1.534"},"geometry":{"type":"Point","coordinates":[-129.5485,-36.2614]}},{"type":"Feature","id":75178,"properties":{"mag":5.38,"bv":"-0.051"},"geometry":{"type":"Point","coordinates":[-129.5476,32.9337]}},{"type":"Feature","id":75181,"properties":{"mag":5.65,"bv":"0.639"},"geometry":{"type":"Point","coordinates":[-129.5494,-48.3176]}},{"type":"Feature","id":75206,"properties":{"mag":4.99,"bv":"0.515"},"geometry":{"type":"Point","coordinates":[-129.4655,-47.9278]}},{"type":"Feature","id":75256,"properties":{"mag":5.99,"bv":"-0.033"},"geometry":{"type":"Point","coordinates":[-129.3448,62.0471]}},{"type":"Feature","id":75257,"properties":{"mag":5.56,"bv":"1.626"},"geometry":{"type":"Point","coordinates":[-129.3443,39.5815]}},{"type":"Feature","id":75260,"properties":{"mag":5.72,"bv":"1.315"},"geometry":{"type":"Point","coordinates":[-129.3399,63.3414]}},{"type":"Feature","id":75264,"properties":{"mag":3.37,"bv":"-0.191"},"geometry":{"type":"Point","coordinates":[-129.3297,-44.6896]}},{"type":"Feature","id":75304,"properties":{"mag":4.54,"bv":"-0.155"},"geometry":{"type":"Point","coordinates":[-129.211,-36.8585]}},{"type":"Feature","id":75308,"properties":{"mag":5.65,"bv":"0.489"},"geometry":{"type":"Point","coordinates":[-129.2062,-60.6572]}},{"type":"Feature","id":75312,"properties":{"mag":4.99,"bv":"0.577"},"geometry":{"type":"Point","coordinates":[-129.1987,30.2878]}},{"type":"Feature","id":75323,"properties":{"mag":4.48,"bv":"0.169"},"geometry":{"type":"Point","coordinates":[-129.1556,-59.3208]}},{"type":"Feature","id":75352,"properties":{"mag":5.72,"bv":"1.039"},"geometry":{"type":"Point","coordinates":[-129.0323,-12.3695]}},{"type":"Feature","id":75379,"properties":{"mag":4.92,"bv":"0.453"},"geometry":{"type":"Point","coordinates":[-128.9505,-10.3223]}},{"type":"Feature","id":75411,"properties":{"mag":4.31,"bv":"0.309"},"geometry":{"type":"Point","coordinates":[-128.8774,37.3772]}},{"type":"Feature","id":75439,"properties":{"mag":5.36,"bv":"-0.093"},"geometry":{"type":"Point","coordinates":[-128.8125,-39.7103]}},{"type":"Feature","id":75458,"properties":{"mag":3.29,"bv":"1.166"},"geometry":{"type":"Point","coordinates":[-128.7676,58.9661]}},{"type":"Feature","id":75501,"properties":{"mag":4.6,"bv":"0.000"},"geometry":{"type":"Point","coordinates":[-128.6658,-38.7336]}},{"type":"Feature","id":75530,"properties":{"mag":5.16,"bv":"1.650"},"geometry":{"type":"Point","coordinates":[-128.5525,15.428]}},{"type":"Feature","id":75565,"properties":{"mag":5.89,"bv":"1.000"},"geometry":{"type":"Point","coordinates":[-128.4387,-68.3092]}},{"type":"Feature","id":75572,"properties":{"mag":5.46,"bv":"1.410"},"geometry":{"type":"Point","coordinates":[-128.4276,34.336]}},{"type":"Feature","id":75647,"properties":{"mag":5.46,"bv":"-0.150"},"geometry":{"type":"Point","coordinates":[-128.1745,-36.7676]}},{"type":"Feature","id":75665,"properties":{"mag":5.71,"bv":"1.646"},"geometry":{"type":"Point","coordinates":[-128.1122,-64.5315]}},{"type":"Feature","id":75695,"properties":{"mag":3.66,"bv":"0.319"},"geometry":{"type":"Point","coordinates":[-128.0428,29.1057]}},{"type":"Feature","id":75696,"properties":{"mag":5.9,"bv":"1.441"},"geometry":{"type":"Point","coordinates":[-128.0357,60.6702]}},{"type":"Feature","id":75730,"properties":{"mag":5.64,"bv":"1.545"},"geometry":{"type":"Point","coordinates":[-127.9358,-16.7165]}},{"type":"Feature","id":75761,"properties":{"mag":5.15,"bv":"0.245"},"geometry":{"type":"Point","coordinates":[-127.8407,1.8421]}},{"type":"Feature","id":75828,"properties":{"mag":5.26,"bv":"1.731"},"geometry":{"type":"Point","coordinates":[-127.6489,-46.7327]}},{"type":"Feature","id":75944,"properties":{"mag":5.82,"bv":"1.056"},"geometry":{"type":"Point","coordinates":[-127.3317,-16.6095]}},{"type":"Feature","id":75973,"properties":{"mag":5.04,"bv":"1.589"},"geometry":{"type":"Point","coordinates":[-127.2677,40.833]}},{"type":"Feature","id":75974,"properties":{"mag":5.74,"bv":"0.976"},"geometry":{"type":"Point","coordinates":[-127.2676,64.2087]}},{"type":"Feature","id":76008,"properties":{"mag":5,"bv":"1.545"},"geometry":{"type":"Point","coordinates":[-127.1461,77.3494]}},{"type":"Feature","id":76013,"properties":{"mag":5.4,"bv":"-0.146"},"geometry":{"type":"Point","coordinates":[-127.1216,-73.3896]}},{"type":"Feature","id":76041,"properties":{"mag":4.98,"bv":"0.086"},"geometry":{"type":"Point","coordinates":[-127.0542,40.8993]}},{"type":"Feature","id":76106,"properties":{"mag":5.5,"bv":"0.197"},"geometry":{"type":"Point","coordinates":[-126.8471,-19.6705]}},{"type":"Feature","id":76126,"properties":{"mag":5.53,"bv":"-0.148"},"geometry":{"type":"Point","coordinates":[-126.7699,-16.8528]}},{"type":"Feature","id":76127,"properties":{"mag":4.14,"bv":"-0.127"},"geometry":{"type":"Point","coordinates":[-126.7676,31.3591]}},{"type":"Feature","id":76133,"properties":{"mag":5.5,"bv":"1.092"},"geometry":{"type":"Point","coordinates":[-126.7586,-1.1864]}},{"type":"Feature","id":76207,"properties":{"mag":5.82,"bv":"1.695"},"geometry":{"type":"Point","coordinates":[-126.4929,-40.0664]}},{"type":"Feature","id":76219,"properties":{"mag":4.61,"bv":"1.000"},"geometry":{"type":"Point","coordinates":[-126.4554,-10.0645]}},{"type":"Feature","id":76243,"properties":{"mag":5.16,"bv":"-0.090"},"geometry":{"type":"Point","coordinates":[-126.3895,-9.1834]}},{"type":"Feature","id":76259,"properties":{"mag":5.13,"bv":"1.306"},"geometry":{"type":"Point","coordinates":[-126.3445,-28.047]}},{"type":"Feature","id":76267,"properties":{"mag":2.22,"bv":"0.032"},"geometry":{"type":"Point","coordinates":[-126.328,26.7147]}},{"type":"Feature","id":76276,"properties":{"mag":3.8,"bv":"0.268"},"geometry":{"type":"Point","coordinates":[-126.2994,10.5389]}},{"type":"Feature","id":76297,"properties":{"mag":2.8,"bv":"-0.216"},"geometry":{"type":"Point","coordinates":[-126.2148,-41.1668]}},{"type":"Feature","id":76307,"properties":{"mag":5.14,"bv":"1.650"},"geometry":{"type":"Point","coordinates":[-126.1878,39.0101]}},{"type":"Feature","id":76311,"properties":{"mag":5.97,"bv":"1.184"},"geometry":{"type":"Point","coordinates":[-126.1825,53.9221]}},{"type":"Feature","id":76333,"properties":{"mag":3.91,"bv":"1.007"},"geometry":{"type":"Point","coordinates":[-126.1184,-14.7895]}},{"type":"Feature","id":76371,"properties":{"mag":4.55,"bv":"-0.175"},"geometry":{"type":"Point","coordinates":[-126.0281,-44.9584]}},{"type":"Feature","id":76376,"properties":{"mag":5.77,"bv":"0.051"},"geometry":{"type":"Point","coordinates":[-126.0123,54.6306]}},{"type":"Feature","id":76397,"properties":{"mag":5.44,"bv":"1.497"},"geometry":{"type":"Point","coordinates":[-125.9496,-44.3968]}},{"type":"Feature","id":76424,"properties":{"mag":5.93,"bv":"0.354"},"geometry":{"type":"Point","coordinates":[-125.8782,16.1191]}},{"type":"Feature","id":76425,"properties":{"mag":5.26,"bv":"0.925"},"geometry":{"type":"Point","coordinates":[-125.8768,10.0102]}},{"type":"Feature","id":76440,"properties":{"mag":4.11,"bv":"1.161"},"geometry":{"type":"Point","coordinates":[-125.8199,-66.317]}},{"type":"Feature","id":76470,"properties":{"mag":3.6,"bv":"1.361"},"geometry":{"type":"Point","coordinates":[-125.744,-28.1351]}},{"type":"Feature","id":76509,"properties":{"mag":5.85,"bv":"1.098"},"geometry":{"type":"Point","coordinates":[-125.6166,54.5087]}},{"type":"Feature","id":76519,"properties":{"mag":5.65,"bv":"1.371"},"geometry":{"type":"Point","coordinates":[-125.587,69.2833]}},{"type":"Feature","id":76532,"properties":{"mag":5.79,"bv":"1.074"},"geometry":{"type":"Point","coordinates":[-125.5498,-23.1417]}},{"type":"Feature","id":76534,"properties":{"mag":5.25,"bv":"0.886"},"geometry":{"type":"Point","coordinates":[-125.5433,40.3534]}},{"type":"Feature","id":76552,"properties":{"mag":4.34,"bv":"1.412"},"geometry":{"type":"Point","coordinates":[-125.4866,-42.5673]}},{"type":"Feature","id":76568,"properties":{"mag":5.76,"bv":"0.353"},"geometry":{"type":"Point","coordinates":[-125.4324,46.7978]}},{"type":"Feature","id":76569,"properties":{"mag":5.82,"bv":"1.077"},"geometry":{"type":"Point","coordinates":[-125.4322,-21.0163]}},{"type":"Feature","id":76594,"properties":{"mag":5.84,"bv":"0.847"},"geometry":{"type":"Point","coordinates":[-125.3575,50.4233]}},{"type":"Feature","id":76600,"properties":{"mag":3.66,"bv":"-0.177"},"geometry":{"type":"Point","coordinates":[-125.336,-29.7778]}},{"type":"Feature","id":76618,"properties":{"mag":5.43,"bv":"0.005"},"geometry":{"type":"Point","coordinates":[-125.2939,-52.3727]}},{"type":"Feature","id":76628,"properties":{"mag":5.36,"bv":"0.883"},"geometry":{"type":"Point","coordinates":[-125.2727,-19.3019]}},{"type":"Feature","id":76669,"properties":{"mag":4.64,"bv":"-0.103"},"geometry":{"type":"Point","coordinates":[-125.1555,36.6358]}},{"type":"Feature","id":76705,"properties":{"mag":4.66,"bv":"0.964"},"geometry":{"type":"Point","coordinates":[-125.0584,-34.4119]}},{"type":"Feature","id":76716,"properties":{"mag":5.95,"bv":"0.505"},"geometry":{"type":"Point","coordinates":[-125.0144,-59.9083]}},{"type":"Feature","id":76742,"properties":{"mag":4.97,"bv":"1.302"},"geometry":{"type":"Point","coordinates":[-124.9296,-23.8181]}},{"type":"Feature","id":76750,"properties":{"mag":5.64,"bv":"-0.040"},"geometry":{"type":"Point","coordinates":[-124.9111,-73.4467]}},{"type":"Feature","id":76810,"properties":{"mag":6,"bv":"0.908"},"geometry":{"type":"Point","coordinates":[-124.7537,16.0246]}},{"type":"Feature","id":76829,"properties":{"mag":4.64,"bv":"0.413"},"geometry":{"type":"Point","coordinates":[-124.7026,-44.6612]}},{"type":"Feature","id":76852,"properties":{"mag":4.51,"bv":"0.062"},"geometry":{"type":"Point","coordinates":[-124.6123,19.6704]}},{"type":"Feature","id":76866,"properties":{"mag":5.34,"bv":"0.033"},"geometry":{"type":"Point","coordinates":[-124.5524,12.8475]}},{"type":"Feature","id":76877,"properties":{"mag":5.95,"bv":"-0.034"},"geometry":{"type":"Point","coordinates":[-124.5222,-76.082]}},{"type":"Feature","id":76878,"properties":{"mag":5.8,"bv":"0.207"},"geometry":{"type":"Point","coordinates":[-124.522,18.464]}},{"type":"Feature","id":76880,"properties":{"mag":4.75,"bv":"1.574"},"geometry":{"type":"Point","coordinates":[-124.5133,-19.6788]}},{"type":"Feature","id":76939,"properties":{"mag":5.23,"bv":"0.987"},"geometry":{"type":"Point","coordinates":[-124.3404,-37.4249]}},{"type":"Feature","id":76945,"properties":{"mag":4.75,"bv":"-0.151"},"geometry":{"type":"Point","coordinates":[-124.3291,-34.7104]}},{"type":"Feature","id":76952,"properties":{"mag":3.81,"bv":"0.020"},"geometry":{"type":"Point","coordinates":[-124.3143,26.2956]}},{"type":"Feature","id":76957,"properties":{"mag":5.48,"bv":"-0.042"},"geometry":{"type":"Point","coordinates":[-124.2885,52.3609]}},{"type":"Feature","id":76996,"properties":{"mag":5.57,"bv":"0.118"},"geometry":{"type":"Point","coordinates":[-124.1795,-84.4653]}},{"type":"Feature","id":77048,"properties":{"mag":5.57,"bv":"1.076"},"geometry":{"type":"Point","coordinates":[-124.0029,32.5158]}},{"type":"Feature","id":77052,"properties":{"mag":5.86,"bv":"0.684"},"geometry":{"type":"Point","coordinates":[-123.9924,2.5152]}},{"type":"Feature","id":77055,"properties":{"mag":4.29,"bv":"0.038"},"geometry":{"type":"Point","coordinates":[-123.9853,77.7945]}},{"type":"Feature","id":77060,"properties":{"mag":5.41,"bv":"0.238"},"geometry":{"type":"Point","coordinates":[-123.9817,-15.6728]}},{"type":"Feature","id":77070,"properties":{"mag":2.63,"bv":"1.167"},"geometry":{"type":"Point","coordinates":[-123.933,6.4256]}},{"type":"Feature","id":77086,"properties":{"mag":5.93,"bv":"-0.007"},"geometry":{"type":"Point","coordinates":[-123.9055,-41.8191]}},{"type":"Feature","id":77163,"properties":{"mag":5.57,"bv":"0.035"},"geometry":{"type":"Point","coordinates":[-123.6522,5.4473]}},{"type":"Feature","id":77227,"properties":{"mag":5.39,"bv":"-0.035"},"geometry":{"type":"Point","coordinates":[-123.4765,-1.8042]}},{"type":"Feature","id":77233,"properties":{"mag":3.65,"bv":"0.073"},"geometry":{"type":"Point","coordinates":[-123.4531,15.4218]}},{"type":"Feature","id":77257,"properties":{"mag":4.42,"bv":"0.604"},"geometry":{"type":"Point","coordinates":[-123.3891,7.3531]}},{"type":"Feature","id":77272,"properties":{"mag":5.94,"bv":"1.404"},"geometry":{"type":"Point","coordinates":[-123.3552,55.4748]}},{"type":"Feature","id":77277,"properties":{"mag":5.19,"bv":"0.062"},"geometry":{"type":"Point","coordinates":[-123.3333,62.5996]}},{"type":"Feature","id":77286,"properties":{"mag":5.61,"bv":"-0.117"},"geometry":{"type":"Point","coordinates":[-123.3158,-34.6825]}},{"type":"Feature","id":77336,"properties":{"mag":5.71,"bv":"0.094"},"geometry":{"type":"Point","coordinates":[-123.1778,14.1153]}},{"type":"Feature","id":77370,"properties":{"mag":5.85,"bv":"0.249"},"geometry":{"type":"Point","coordinates":[-123.092,55.3766]}},{"type":"Feature","id":77390,"properties":{"mag":5.54,"bv":"0.231"},"geometry":{"type":"Point","coordinates":[-123.0289,-65.4423]}},{"type":"Feature","id":77412,"properties":{"mag":5.98,"bv":"1.272"},"geometry":{"type":"Point","coordinates":[-122.9446,13.7891]}},{"type":"Feature","id":77442,"properties":{"mag":5.89,"bv":"0.608"},"geometry":{"type":"Point","coordinates":[-122.8566,28.1567]}},{"type":"Feature","id":77450,"properties":{"mag":4.09,"bv":"1.616"},"geometry":{"type":"Point","coordinates":[-122.8151,18.1416]}},{"type":"Feature","id":77464,"properties":{"mag":5.53,"bv":"0.120"},"geometry":{"type":"Point","coordinates":[-122.7633,-3.8185]}},{"type":"Feature","id":77512,"properties":{"mag":4.59,"bv":"0.794"},"geometry":{"type":"Point","coordinates":[-122.6015,26.0684]}},{"type":"Feature","id":77516,"properties":{"mag":3.54,"bv":"-0.036"},"geometry":{"type":"Point","coordinates":[-122.595,-3.4302]}},{"type":"Feature","id":77541,"properties":{"mag":5.86,"bv":"0.068"},"geometry":{"type":"Point","coordinates":[-122.5104,-48.9124]}},{"type":"Feature","id":77562,"properties":{"mag":5.78,"bv":"-0.076"},"geometry":{"type":"Point","coordinates":[-122.4705,-53.2098]}},{"type":"Feature","id":77578,"properties":{"mag":5.21,"bv":"1.019"},"geometry":{"type":"Point","coordinates":[-122.4269,2.1965]}},{"type":"Feature","id":77622,"properties":{"mag":3.71,"bv":"0.147"},"geometry":{"type":"Point","coordinates":[-122.296,4.4777]}},{"type":"Feature","id":77634,"properties":{"mag":3.97,"bv":"-0.045"},"geometry":{"type":"Point","coordinates":[-122.2603,-33.6272]}},{"type":"Feature","id":77635,"properties":{"mag":4.63,"bv":"-0.072"},"geometry":{"type":"Point","coordinates":[-122.2552,-25.7513]}},{"type":"Feature","id":77645,"properties":{"mag":5.74,"bv":"0.017"},"geometry":{"type":"Point","coordinates":[-122.2216,-55.0555]}},{"type":"Feature","id":77655,"properties":{"mag":4.79,"bv":"0.996"},"geometry":{"type":"Point","coordinates":[-122.192,35.6574]}},{"type":"Feature","id":77660,"properties":{"mag":5.09,"bv":"0.135"},"geometry":{"type":"Point","coordinates":[-122.185,-3.0905]}},{"type":"Feature","id":77661,"properties":{"mag":4.74,"bv":"1.534"},"geometry":{"type":"Point","coordinates":[-122.1837,20.9779]}},{"type":"Feature","id":77678,"properties":{"mag":6,"bv":"1.152"},"geometry":{"type":"Point","coordinates":[-122.1191,-47.0608]}},{"type":"Feature","id":77738,"properties":{"mag":5.81,"bv":"0.972"},"geometry":{"type":"Point","coordinates":[-121.931,55.8267]}},{"type":"Feature","id":77760,"properties":{"mag":4.6,"bv":"0.563"},"geometry":{"type":"Point","coordinates":[-121.8311,42.4515]}},{"type":"Feature","id":77811,"properties":{"mag":5.04,"bv":"-0.014"},"geometry":{"type":"Point","coordinates":[-121.6664,-20.167]}},{"type":"Feature","id":77840,"properties":{"mag":4.59,"bv":"-0.073"},"geometry":{"type":"Point","coordinates":[-121.597,-25.3271]}},{"type":"Feature","id":77853,"properties":{"mag":4.13,"bv":"1.003"},"geometry":{"type":"Point","coordinates":[-121.5436,-16.7293]}},{"type":"Feature","id":77858,"properties":{"mag":5.38,"bv":"-0.011"},"geometry":{"type":"Point","coordinates":[-121.5254,-24.5332]}},{"type":"Feature","id":77859,"properties":{"mag":5.41,"bv":"-0.033"},"geometry":{"type":"Point","coordinates":[-121.5172,-23.9781]}},{"type":"Feature","id":77902,"properties":{"mag":5.45,"bv":"1.588"},"geometry":{"type":"Point","coordinates":[-121.3558,20.311]}},{"type":"Feature","id":77907,"properties":{"mag":5.35,"bv":"1.645"},"geometry":{"type":"Point","coordinates":[-121.3423,43.1386]}},{"type":"Feature","id":77909,"properties":{"mag":5.87,"bv":"-0.065"},"geometry":{"type":"Point","coordinates":[-121.3353,-25.2437]}},{"type":"Feature","id":77939,"properties":{"mag":5.95,"bv":"-0.013"},"geometry":{"type":"Point","coordinates":[-121.2485,-19.3829]}},{"type":"Feature","id":77952,"properties":{"mag":2.83,"bv":"0.315"},"geometry":{"type":"Point","coordinates":[-121.2143,-63.4307]}},{"type":"Feature","id":77982,"properties":{"mag":5.11,"bv":"1.108"},"geometry":{"type":"Point","coordinates":[-121.1267,-68.603]}},{"type":"Feature","id":77984,"properties":{"mag":5.63,"bv":"0.141"},"geometry":{"type":"Point","coordinates":[-121.1247,-26.266]}},{"type":"Feature","id":77986,"properties":{"mag":5.73,"bv":"-0.102"},"geometry":{"type":"Point","coordinates":[-121.1225,42.5662]}},{"type":"Feature","id":77990,"properties":{"mag":5.78,"bv":"0.355"},"geometry":{"type":"Point","coordinates":[-121.1151,-60.1776]}},{"type":"Feature","id":78012,"properties":{"mag":5.43,"bv":"0.352"},"geometry":{"type":"Point","coordinates":[-121.0517,37.947]}},{"type":"Feature","id":78045,"properties":{"mag":5.76,"bv":"0.087"},"geometry":{"type":"Point","coordinates":[-120.9754,-60.4825]}},{"type":"Feature","id":78072,"properties":{"mag":3.85,"bv":"0.478"},"geometry":{"type":"Point","coordinates":[-120.8867,15.6616]}},{"type":"Feature","id":78104,"properties":{"mag":3.87,"bv":"-0.199"},"geometry":{"type":"Point","coordinates":[-120.7788,-29.2141]}},{"type":"Feature","id":78105,"properties":{"mag":5.14,"bv":"0.129"},"geometry":{"type":"Point","coordinates":[-120.7771,-33.9661]}},{"type":"Feature","id":78106,"properties":{"mag":5.59,"bv":"0.072"},"geometry":{"type":"Point","coordinates":[-120.7745,-33.9643]}},{"type":"Feature","id":78132,"properties":{"mag":5.54,"bv":"1.141"},"geometry":{"type":"Point","coordinates":[-120.6893,14.4145]}},{"type":"Feature","id":78142,"properties":{"mag":5.78,"bv":"1.095"},"geometry":{"type":"Point","coordinates":[-120.6611,-36.1853]}},{"type":"Feature","id":78159,"properties":{"mag":4.14,"bv":"1.231"},"geometry":{"type":"Point","coordinates":[-120.6031,26.8779]}},{"type":"Feature","id":78168,"properties":{"mag":5.84,"bv":"0.012"},"geometry":{"type":"Point","coordinates":[-120.5814,-20.9831]}},{"type":"Feature","id":78180,"properties":{"mag":4.96,"bv":"0.269"},"geometry":{"type":"Point","coordinates":[-120.5523,54.7498]}},{"type":"Feature","id":78207,"properties":{"mag":4.95,"bv":"-0.080"},"geometry":{"type":"Point","coordinates":[-120.4526,-14.2794]}},{"type":"Feature","id":78246,"properties":{"mag":5.43,"bv":"-0.092"},"geometry":{"type":"Point","coordinates":[-120.3547,-24.8315]}},{"type":"Feature","id":78265,"properties":{"mag":2.89,"bv":"-0.180"},"geometry":{"type":"Point","coordinates":[-120.287,-26.1141]}},{"type":"Feature","id":78276,"properties":{"mag":5.61,"bv":"1.529"},"geometry":{"type":"Point","coordinates":[-120.2595,36.6438]}},{"type":"Feature","id":78279,"properties":{"mag":5.74,"bv":"-0.066"},"geometry":{"type":"Point","coordinates":[-120.2577,-65.0376]}},{"type":"Feature","id":78323,"properties":{"mag":4.99,"bv":"0.988"},"geometry":{"type":"Point","coordinates":[-120.1239,-41.7444]}},{"type":"Feature","id":78384,"properties":{"mag":3.42,"bv":"-0.206"},"geometry":{"type":"Point","coordinates":[-119.9695,-38.3967]}},{"type":"Feature","id":78400,"properties":{"mag":5.47,"bv":"0.517"},"geometry":{"type":"Point","coordinates":[-119.9184,-16.5334]}},{"type":"Feature","id":78401,"properties":{"mag":2.29,"bv":"-0.117"},"geometry":{"type":"Point","coordinates":[-119.9166,-22.6217]}},{"type":"Feature","id":78436,"properties":{"mag":5.53,"bv":"0.043"},"geometry":{"type":"Point","coordinates":[-119.8015,-8.4114]}},{"type":"Feature","id":78442,"properties":{"mag":5.82,"bv":"1.003"},"geometry":{"type":"Point","coordinates":[-119.7869,4.4274]}},{"type":"Feature","id":78459,"properties":{"mag":5.39,"bv":"0.612"},"geometry":{"type":"Point","coordinates":[-119.7389,33.3035]}},{"type":"Feature","id":78481,"properties":{"mag":5.1,"bv":"0.992"},"geometry":{"type":"Point","coordinates":[-119.6903,17.8184]}},{"type":"Feature","id":78493,"properties":{"mag":4.98,"bv":"-0.050"},"geometry":{"type":"Point","coordinates":[-119.6393,29.8511]}},{"type":"Feature","id":78527,"properties":{"mag":4.01,"bv":"0.528"},"geometry":{"type":"Point","coordinates":[-119.5277,58.5653]}},{"type":"Feature","id":78542,"properties":{"mag":5.93,"bv":"1.498"},"geometry":{"type":"Point","coordinates":[-119.4768,52.9159]}},{"type":"Feature","id":78554,"properties":{"mag":4.82,"bv":"0.066"},"geometry":{"type":"Point","coordinates":[-119.4263,22.8045]}},{"type":"Feature","id":78592,"properties":{"mag":4.72,"bv":"-0.094"},"geometry":{"type":"Point","coordinates":[-119.3004,46.0367]}},{"type":"Feature","id":78639,"properties":{"mag":4.65,"bv":"0.902"},"geometry":{"type":"Point","coordinates":[-119.1963,-49.2297]}},{"type":"Feature","id":78649,"properties":{"mag":5.79,"bv":"0.586"},"geometry":{"type":"Point","coordinates":[-119.1693,36.6318]}},{"type":"Feature","id":78650,"properties":{"mag":4.96,"bv":"1.234"},"geometry":{"type":"Point","coordinates":[-119.1641,-25.8652]}},{"type":"Feature","id":78655,"properties":{"mag":4.9,"bv":"-0.146"},"geometry":{"type":"Point","coordinates":[-119.1492,-38.6025]}},{"type":"Feature","id":78661,"properties":{"mag":5.73,"bv":"0.051"},"geometry":{"type":"Point","coordinates":[-119.1194,76.7939]}},{"type":"Feature","id":78662,"properties":{"mag":4.63,"bv":"0.252"},"geometry":{"type":"Point","coordinates":[-119.1163,-57.7751]}},{"type":"Feature","id":78665,"properties":{"mag":6,"bv":"0.470"},"geometry":{"type":"Point","coordinates":[-119.1068,-32.0005]}},{"type":"Feature","id":78727,"properties":{"mag":4.16,"bv":"0.460"},"geometry":{"type":"Point","coordinates":[-118.9099,-11.3736]}},{"type":"Feature","id":78747,"properties":{"mag":5.91,"bv":"0.409"},"geometry":{"type":"Point","coordinates":[-118.8466,-37.863]}},{"type":"Feature","id":78820,"properties":{"mag":2.56,"bv":"-0.065"},"geometry":{"type":"Point","coordinates":[-118.6407,-19.8055]}},{"type":"Feature","id":78821,"properties":{"mag":4.9,"bv":"-0.024"},"geometry":{"type":"Point","coordinates":[-118.6394,-19.8019]}},{"type":"Feature","id":78868,"properties":{"mag":5.7,"bv":"1.169"},"geometry":{"type":"Point","coordinates":[-118.5174,-72.4009]}},{"type":"Feature","id":78877,"properties":{"mag":5.9,"bv":"-0.071"},"geometry":{"type":"Point","coordinates":[-118.4734,-23.6063]}},{"type":"Feature","id":78893,"properties":{"mag":5.44,"bv":"-0.019"},"geometry":{"type":"Point","coordinates":[-118.418,67.8101]}},{"type":"Feature","id":78914,"properties":{"mag":4.73,"bv":"0.230"},"geometry":{"type":"Point","coordinates":[-118.3773,-45.1732]}},{"type":"Feature","id":78918,"properties":{"mag":4.22,"bv":"-0.184"},"geometry":{"type":"Point","coordinates":[-118.3519,-36.8023]}},{"type":"Feature","id":78933,"properties":{"mag":3.93,"bv":"-0.046"},"geometry":{"type":"Point","coordinates":[-118.2982,-20.6692]}},{"type":"Feature","id":78970,"properties":{"mag":5.72,"bv":"0.298"},"geometry":{"type":"Point","coordinates":[-118.1824,-36.7557]}},{"type":"Feature","id":78990,"properties":{"mag":4.31,"bv":"0.831"},"geometry":{"type":"Point","coordinates":[-118.1486,-20.8688]}},{"type":"Feature","id":79005,"properties":{"mag":5.75,"bv":"0.018"},"geometry":{"type":"Point","coordinates":[-118.0983,-12.7454]}},{"type":"Feature","id":79007,"properties":{"mag":5.63,"bv":"0.200"},"geometry":{"type":"Point","coordinates":[-118.0936,9.8917]}},{"type":"Feature","id":79043,"properties":{"mag":5,"bv":"0.931"},"geometry":{"type":"Point","coordinates":[-117.9811,17.047]}},{"type":"Feature","id":79050,"properties":{"mag":5.35,"bv":"1.643"},"geometry":{"type":"Point","coordinates":[-117.9684,-26.3267]}},{"type":"Feature","id":79072,"properties":{"mag":5.69,"bv":"1.575"},"geometry":{"type":"Point","coordinates":[-117.883,8.5343]}},{"type":"Feature","id":79098,"properties":{"mag":5.86,"bv":"0.020"},"geometry":{"type":"Point","coordinates":[-117.8178,-23.6854]}},{"type":"Feature","id":79101,"properties":{"mag":4.23,"bv":"-0.045"},"geometry":{"type":"Point","coordinates":[-117.8076,44.9349]}},{"type":"Feature","id":79119,"properties":{"mag":4.73,"bv":"1.015"},"geometry":{"type":"Point","coordinates":[-117.7571,36.4909]}},{"type":"Feature","id":79120,"properties":{"mag":5.93,"bv":"1.471"},"geometry":{"type":"Point","coordinates":[-117.7547,3.4545]}},{"type":"Feature","id":79137,"properties":{"mag":5.93,"bv":"0.988"},"geometry":{"type":"Point","coordinates":[-117.7033,6.3787]}},{"type":"Feature","id":79153,"properties":{"mag":5.57,"bv":"-0.024"},"geometry":{"type":"Point","coordinates":[-117.6727,-57.9343]}},{"type":"Feature","id":79195,"properties":{"mag":5.39,"bv":"1.446"},"geometry":{"type":"Point","coordinates":[-117.5395,-3.4667]}},{"type":"Feature","id":79199,"properties":{"mag":5.5,"bv":"-0.075"},"geometry":{"type":"Point","coordinates":[-117.5309,-33.5458]}},{"type":"Feature","id":79280,"properties":{"mag":5.48,"bv":"-0.093"},"geometry":{"type":"Point","coordinates":[-117.2936,75.8776]}},{"type":"Feature","id":79302,"properties":{"mag":5.09,"bv":"1.131"},"geometry":{"type":"Point","coordinates":[-117.2414,-29.4162]}},{"type":"Feature","id":79320,"properties":{"mag":5.86,"bv":"0.273"},"geometry":{"type":"Point","coordinates":[-117.1762,-41.1198]}},{"type":"Feature","id":79349,"properties":{"mag":5.74,"bv":"1.519"},"geometry":{"type":"Point","coordinates":[-117.0915,23.4948]}},{"type":"Feature","id":79357,"properties":{"mag":5.89,"bv":"1.464"},"geometry":{"type":"Point","coordinates":[-117.0517,42.3746]}},{"type":"Feature","id":79358,"properties":{"mag":5.62,"bv":"1.352"},"geometry":{"type":"Point","coordinates":[-117.0498,36.4251]}},{"type":"Feature","id":79374,"properties":{"mag":4,"bv":"0.076"},"geometry":{"type":"Point","coordinates":[-117.0011,-19.4607]}},{"type":"Feature","id":79375,"properties":{"mag":4.93,"bv":"0.087"},"geometry":{"type":"Point","coordinates":[-117,-10.0643]}},{"type":"Feature","id":79387,"properties":{"mag":5.43,"bv":"0.118"},"geometry":{"type":"Point","coordinates":[-116.9695,-8.5476]}},{"type":"Feature","id":79399,"properties":{"mag":5.67,"bv":"0.012"},"geometry":{"type":"Point","coordinates":[-116.9332,-28.4173]}},{"type":"Feature","id":79404,"properties":{"mag":4.58,"bv":"-0.172"},"geometry":{"type":"Point","coordinates":[-116.9241,-27.9264]}},{"type":"Feature","id":79488,"properties":{"mag":5.46,"bv":"1.472"},"geometry":{"type":"Point","coordinates":[-116.6857,5.0211]}},{"type":"Feature","id":79497,"properties":{"mag":5.78,"bv":"0.365"},"geometry":{"type":"Point","coordinates":[-116.6554,-55.5409]}},{"type":"Feature","id":79509,"properties":{"mag":4.95,"bv":"1.017"},"geometry":{"type":"Point","coordinates":[-116.6303,-54.6305]}},{"type":"Feature","id":79540,"properties":{"mag":5.24,"bv":"1.394"},"geometry":{"type":"Point","coordinates":[-116.5379,-11.8377]}},{"type":"Feature","id":79593,"properties":{"mag":2.73,"bv":"1.584"},"geometry":{"type":"Point","coordinates":[-116.4136,-3.6943]}},{"type":"Feature","id":79596,"properties":{"mag":5.91,"bv":"1.021"},"geometry":{"type":"Point","coordinates":[-116.4068,-33.0111]}},{"type":"Feature","id":79607,"properties":{"mag":5.23,"bv":"0.599"},"geometry":{"type":"Point","coordinates":[-116.3298,33.8586]}},{"type":"Feature","id":79653,"properties":{"mag":5.13,"bv":"-0.114"},"geometry":{"type":"Point","coordinates":[-116.1862,-47.372]}},{"type":"Feature","id":79664,"properties":{"mag":3.86,"bv":"1.105"},"geometry":{"type":"Point","coordinates":[-116.1405,-63.6857]}},{"type":"Feature","id":79666,"properties":{"mag":5.72,"bv":"1.126"},"geometry":{"type":"Point","coordinates":[-116.1307,18.8081]}},{"type":"Feature","id":79672,"properties":{"mag":5.49,"bv":"0.652"},"geometry":{"type":"Point","coordinates":[-116.0947,-8.3694]}},{"type":"Feature","id":79689,"properties":{"mag":5.61,"bv":"0.137"},"geometry":{"type":"Point","coordinates":[-116.0425,-57.9123]}},{"type":"Feature","id":79754,"properties":{"mag":5.45,"bv":"1.696"},"geometry":{"type":"Point","coordinates":[-115.8197,-53.8111]}},{"type":"Feature","id":79757,"properties":{"mag":5.8,"bv":"0.063"},"geometry":{"type":"Point","coordinates":[-115.8134,29.1503]}},{"type":"Feature","id":79790,"properties":{"mag":4.97,"bv":"0.788"},"geometry":{"type":"Point","coordinates":[-115.7461,-50.0681]}},{"type":"Feature","id":79797,"properties":{"mag":5.95,"bv":"0.159"},"geometry":{"type":"Point","coordinates":[-115.7274,-67.9413]}},{"type":"Feature","id":79804,"properties":{"mag":5.37,"bv":"1.551"},"geometry":{"type":"Point","coordinates":[-115.6861,59.755]}},{"type":"Feature","id":79822,"properties":{"mag":4.95,"bv":"0.393"},"geometry":{"type":"Point","coordinates":[-115.6238,75.7553]}},{"type":"Feature","id":79881,"properties":{"mag":4.8,"bv":"0.008"},"geometry":{"type":"Point","coordinates":[-115.4254,-28.614]}},{"type":"Feature","id":79882,"properties":{"mag":3.23,"bv":"0.966"},"geometry":{"type":"Point","coordinates":[-115.4196,-4.6925]}},{"type":"Feature","id":79938,"properties":{"mag":5.97,"bv":"1.475"},"geometry":{"type":"Point","coordinates":[-115.2482,-14.8728]}},{"type":"Feature","id":79953,"properties":{"mag":5.93,"bv":"1.369"},"geometry":{"type":"Point","coordinates":[-115.2033,49.0382]}},{"type":"Feature","id":79963,"properties":{"mag":5.44,"bv":"0.099"},"geometry":{"type":"Point","coordinates":[-115.1765,-42.674]}},{"type":"Feature","id":79980,"properties":{"mag":5.53,"bv":"0.466"},"geometry":{"type":"Point","coordinates":[-115.1136,-30.9067]}},{"type":"Feature","id":79992,"properties":{"mag":3.91,"bv":"-0.151"},"geometry":{"type":"Point","coordinates":[-115.0648,46.3134]}},{"type":"Feature","id":80000,"properties":{"mag":4.01,"bv":"1.080"},"geometry":{"type":"Point","coordinates":[-115.0399,-50.1555]}},{"type":"Feature","id":80008,"properties":{"mag":5.48,"bv":"0.410"},"geometry":{"type":"Point","coordinates":[-115.0202,39.7086]}},{"type":"Feature","id":80047,"properties":{"mag":4.68,"bv":"1.680"},"geometry":{"type":"Point","coordinates":[-114.9133,-78.6957]}},{"type":"Feature","id":80054,"properties":{"mag":5.76,"bv":"0.970"},"geometry":{"type":"Point","coordinates":[-114.8948,-55.1397]}},{"type":"Feature","id":80057,"properties":{"mag":5.27,"bv":"1.413"},"geometry":{"type":"Point","coordinates":[-114.8881,-78.6675]}},{"type":"Feature","id":80079,"properties":{"mag":4.55,"bv":"0.758"},"geometry":{"type":"Point","coordinates":[-114.8409,-24.1693]}},{"type":"Feature","id":80112,"properties":{"mag":2.9,"bv":"0.299"},"geometry":{"type":"Point","coordinates":[-114.7028,-25.5928]}},{"type":"Feature","id":80161,"properties":{"mag":5.26,"bv":"1.115"},"geometry":{"type":"Point","coordinates":[-114.547,69.1094]}},{"type":"Feature","id":80170,"properties":{"mag":3.74,"bv":"0.299"},"geometry":{"type":"Point","coordinates":[-114.5199,19.1531]}},{"type":"Feature","id":80179,"properties":{"mag":4.82,"bv":"0.338"},"geometry":{"type":"Point","coordinates":[-114.4819,1.029]}},{"type":"Feature","id":80181,"properties":{"mag":4.86,"bv":"0.970"},"geometry":{"type":"Point","coordinates":[-114.4757,30.892]}},{"type":"Feature","id":80197,"properties":{"mag":5.2,"bv":"1.631"},"geometry":{"type":"Point","coordinates":[-114.4107,33.7991]}},{"type":"Feature","id":80208,"properties":{"mag":5.32,"bv":"-0.047"},"geometry":{"type":"Point","coordinates":[-114.3834,-49.5724]}},{"type":"Feature","id":80212,"properties":{"mag":5.89,"bv":"1.121"},"geometry":{"type":"Point","coordinates":[-114.3789,-43.9121]}},{"type":"Feature","id":80214,"properties":{"mag":5.4,"bv":"1.523"},"geometry":{"type":"Point","coordinates":[-114.3783,33.7035]}},{"type":"Feature","id":80309,"properties":{"mag":5.67,"bv":"0.956"},"geometry":{"type":"Point","coordinates":[-114.0535,61.6965]}},{"type":"Feature","id":80331,"properties":{"mag":2.73,"bv":"0.910"},"geometry":{"type":"Point","coordinates":[-114.0021,61.5142]}},{"type":"Feature","id":80337,"properties":{"mag":5.37,"bv":"0.625"},"geometry":{"type":"Point","coordinates":[-113.9946,-39.193]}},{"type":"Feature","id":80343,"properties":{"mag":4.48,"bv":"0.996"},"geometry":{"type":"Point","coordinates":[-113.9742,-20.0373]}},{"type":"Feature","id":80351,"properties":{"mag":5.83,"bv":"0.018"},"geometry":{"type":"Point","coordinates":[-113.9549,6.9482]}},{"type":"Feature","id":80375,"properties":{"mag":5.75,"bv":"0.001"},"geometry":{"type":"Point","coordinates":[-113.8944,55.2051]}},{"type":"Feature","id":80390,"properties":{"mag":5.42,"bv":"-0.104"},"geometry":{"type":"Point","coordinates":[-113.8677,-37.566]}},{"type":"Feature","id":80399,"properties":{"mag":5.4,"bv":"0.625"},"geometry":{"type":"Point","coordinates":[-113.8343,-29.7047]}},{"type":"Feature","id":80460,"properties":{"mag":5.53,"bv":"0.174"},"geometry":{"type":"Point","coordinates":[-113.6493,37.3941]}},{"type":"Feature","id":80463,"properties":{"mag":4.57,"bv":"0.002"},"geometry":{"type":"Point","coordinates":[-113.646,14.0333]}},{"type":"Feature","id":80473,"properties":{"mag":4.57,"bv":"0.227"},"geometry":{"type":"Point","coordinates":[-113.6037,-23.4472]}},{"type":"Feature","id":80480,"properties":{"mag":5.55,"bv":"0.249"},"geometry":{"type":"Point","coordinates":[-113.5701,78.9639]}},{"type":"Feature","id":80569,"properties":{"mag":4.22,"bv":"0.217"},"geometry":{"type":"Point","coordinates":[-113.244,-18.4563]}},{"type":"Feature","id":80582,"properties":{"mag":4.46,"bv":"-0.070"},"geometry":{"type":"Point","coordinates":[-113.204,-47.5548]}},{"type":"Feature","id":80620,"properties":{"mag":5.24,"bv":"1.721"},"geometry":{"type":"Point","coordinates":[-113.0689,-7.5979]}},{"type":"Feature","id":80628,"properties":{"mag":4.62,"bv":"0.185"},"geometry":{"type":"Point","coordinates":[-113.0492,-8.3717]}},{"type":"Feature","id":80645,"properties":{"mag":5.28,"bv":"0.383"},"geometry":{"type":"Point","coordinates":[-113.0111,-64.0579]}},{"type":"Feature","id":80650,"properties":{"mag":4.94,"bv":"-0.051"},"geometry":{"type":"Point","coordinates":[-113.0041,68.7681]}},{"type":"Feature","id":80672,"properties":{"mag":5.79,"bv":"1.104"},"geometry":{"type":"Point","coordinates":[-112.9397,-37.1799]}},{"type":"Feature","id":80675,"properties":{"mag":5.67,"bv":"0.008"},"geometry":{"type":"Point","coordinates":[-112.9368,-58.5998]}},{"type":"Feature","id":80686,"properties":{"mag":4.9,"bv":"0.555"},"geometry":{"type":"Point","coordinates":[-112.8827,-70.0844]}},{"type":"Feature","id":80693,"properties":{"mag":5.41,"bv":"1.461"},"geometry":{"type":"Point","coordinates":[-112.8584,0.665]}},{"type":"Feature","id":80704,"properties":{"mag":4.83,"bv":"1.289"},"geometry":{"type":"Point","coordinates":[-112.8394,41.8817]}},{"type":"Feature","id":80763,"properties":{"mag":1.06,"bv":"1.865"},"geometry":{"type":"Point","coordinates":[-112.6481,-26.432]}},{"type":"Feature","id":80782,"properties":{"mag":5.35,"bv":"0.488"},"geometry":{"type":"Point","coordinates":[-112.5736,-46.2432]}},{"type":"Feature","id":80793,"properties":{"mag":5.66,"bv":"0.823"},"geometry":{"type":"Point","coordinates":[-112.5545,-14.5509]}},{"type":"Feature","id":80815,"properties":{"mag":4.79,"bv":"-0.116"},"geometry":{"type":"Point","coordinates":[-112.448,-25.1152]}},{"type":"Feature","id":80816,"properties":{"mag":2.78,"bv":"0.947"},"geometry":{"type":"Point","coordinates":[-112.445,21.4896]}},{"type":"Feature","id":80843,"properties":{"mag":5.24,"bv":"1.274"},"geometry":{"type":"Point","coordinates":[-112.3602,20.4792]}},{"type":"Feature","id":80874,"properties":{"mag":5.19,"bv":"1.236"},"geometry":{"type":"Point","coordinates":[-112.2943,-61.6335]}},{"type":"Feature","id":80883,"properties":{"mag":3.82,"bv":"0.022"},"geometry":{"type":"Point","coordinates":[-112.2716,1.9839]}},{"type":"Feature","id":80894,"properties":{"mag":4.29,"bv":"0.924"},"geometry":{"type":"Point","coordinates":[-112.2151,-16.6127]}},{"type":"Feature","id":80898,"properties":{"mag":5.76,"bv":"1.605"},"geometry":{"type":"Point","coordinates":[-112.194,22.1955]}},{"type":"Feature","id":80911,"properties":{"mag":4.24,"bv":"-0.168"},"geometry":{"type":"Point","coordinates":[-112.1544,-34.7044]}},{"type":"Feature","id":80945,"properties":{"mag":5.31,"bv":"0.299"},"geometry":{"type":"Point","coordinates":[-112.076,-41.8171]}},{"type":"Feature","id":80953,"properties":{"mag":5.61,"bv":"0.125"},"geometry":{"type":"Point","coordinates":[-112.0532,45.5983]}},{"type":"Feature","id":80975,"properties":{"mag":4.45,"bv":"0.130"},"geometry":{"type":"Point","coordinates":[-111.9658,-21.4664]}},{"type":"Feature","id":80991,"properties":{"mag":5.92,"bv":"0.039"},"geometry":{"type":"Point","coordinates":[-111.893,60.8233]}},{"type":"Feature","id":81007,"properties":{"mag":5.63,"bv":"-0.044"},"geometry":{"type":"Point","coordinates":[-111.8513,5.5212]}},{"type":"Feature","id":81008,"properties":{"mag":4.84,"bv":"1.495"},"geometry":{"type":"Point","coordinates":[-111.8488,11.488]}},{"type":"Feature","id":81065,"properties":{"mag":3.86,"bv":"0.923"},"geometry":{"type":"Point","coordinates":[-111.6372,-78.8971]}},{"type":"Feature","id":81122,"properties":{"mag":4.86,"bv":"0.045"},"geometry":{"type":"Point","coordinates":[-111.4791,-44.0453]}},{"type":"Feature","id":81126,"properties":{"mag":4.2,"bv":"-0.013"},"geometry":{"type":"Point","coordinates":[-111.4742,42.437]}},{"type":"Feature","id":81141,"properties":{"mag":5.5,"bv":"1.235"},"geometry":{"type":"Point","coordinates":[-111.4194,-70.9881]}},{"type":"Feature","id":81252,"properties":{"mag":5.5,"bv":"0.949"},"geometry":{"type":"Point","coordinates":[-111.0633,-65.4954]}},{"type":"Feature","id":81266,"properties":{"mag":2.82,"bv":"-0.206"},"geometry":{"type":"Point","coordinates":[-111.0294,-28.216]}},{"type":"Feature","id":81289,"properties":{"mag":5.83,"bv":"1.044"},"geometry":{"type":"Point","coordinates":[-110.9533,46.6133]}},{"type":"Feature","id":81290,"properties":{"mag":5.53,"bv":"-0.060"},"geometry":{"type":"Point","coordinates":[-110.9524,52.9]}},{"type":"Feature","id":81292,"properties":{"mag":5.07,"bv":"-0.027"},"geometry":{"type":"Point","coordinates":[-110.9428,52.9244]}},{"type":"Feature","id":81300,"properties":{"mag":5.77,"bv":"0.827"},"geometry":{"type":"Point","coordinates":[-110.9106,-2.3246]}},{"type":"Feature","id":81304,"properties":{"mag":4.18,"bv":"1.535"},"geometry":{"type":"Point","coordinates":[-110.9064,-35.2553]}},{"type":"Feature","id":81305,"properties":{"mag":5.46,"bv":"0.338"},"geometry":{"type":"Point","coordinates":[-110.906,-42.8589]}},{"type":"Feature","id":81377,"properties":{"mag":2.54,"bv":"0.038"},"geometry":{"type":"Point","coordinates":[-110.7103,-10.5671]}},{"type":"Feature","id":81437,"properties":{"mag":5.28,"bv":"1.055"},"geometry":{"type":"Point","coordinates":[-110.4981,56.0155]}},{"type":"Feature","id":81472,"properties":{"mag":5.83,"bv":"-0.053"},"geometry":{"type":"Point","coordinates":[-110.3905,-43.3984]}},{"type":"Feature","id":81497,"properties":{"mag":4.86,"bv":"1.562"},"geometry":{"type":"Point","coordinates":[-110.3131,48.9283]}},{"type":"Feature","id":81523,"properties":{"mag":5.93,"bv":"-0.035"},"geometry":{"type":"Point","coordinates":[-110.2282,-37.2174]}},{"type":"Feature","id":81641,"properties":{"mag":5.77,"bv":"-0.004"},"geometry":{"type":"Point","coordinates":[-109.8388,4.2198]}},{"type":"Feature","id":81660,"properties":{"mag":4.84,"bv":"1.212"},"geometry":{"type":"Point","coordinates":[-109.7703,64.589]}},{"type":"Feature","id":81693,"properties":{"mag":2.81,"bv":"0.650"},"geometry":{"type":"Point","coordinates":[-109.6785,31.6027]}},{"type":"Feature","id":81702,"properties":{"mag":5.57,"bv":"0.169"},"geometry":{"type":"Point","coordinates":[-109.6649,-48.763]}},{"type":"Feature","id":81710,"properties":{"mag":5.89,"bv":"-0.078"},"geometry":{"type":"Point","coordinates":[-109.6537,-68.2961]}},{"type":"Feature","id":81724,"properties":{"mag":4.91,"bv":"1.095"},"geometry":{"type":"Point","coordinates":[-109.6067,-17.7422]}},{"type":"Feature","id":81729,"properties":{"mag":5.92,"bv":"0.402"},"geometry":{"type":"Point","coordinates":[-109.5971,26.9169]}},{"type":"Feature","id":81733,"properties":{"mag":5.62,"bv":"-0.043"},"geometry":{"type":"Point","coordinates":[-109.5824,-49.6516]}},{"type":"Feature","id":81734,"properties":{"mag":5.74,"bv":"0.336"},"geometry":{"type":"Point","coordinates":[-109.573,1.1812]}},{"type":"Feature","id":81741,"properties":{"mag":5.84,"bv":"0.653"},"geometry":{"type":"Point","coordinates":[-109.5606,-33.1458]}},{"type":"Feature","id":81754,"properties":{"mag":5.55,"bv":"0.436"},"geometry":{"type":"Point","coordinates":[-109.5263,-19.9244]}},{"type":"Feature","id":81833,"properties":{"mag":3.48,"bv":"0.916"},"geometry":{"type":"Point","coordinates":[-109.276,38.9223]}},{"type":"Feature","id":81852,"properties":{"mag":4.23,"bv":"1.060"},"geometry":{"type":"Point","coordinates":[-109.2306,-77.5174]}},{"type":"Feature","id":81854,"properties":{"mag":5.99,"bv":"0.430"},"geometry":{"type":"Point","coordinates":[-109.2238,77.514]}},{"type":"Feature","id":81966,"properties":{"mag":5.96,"bv":"1.230"},"geometry":{"type":"Point","coordinates":[-108.8344,-53.1523]}},{"type":"Feature","id":81972,"properties":{"mag":5.64,"bv":"-0.093"},"geometry":{"type":"Point","coordinates":[-108.8225,-40.8397]}},{"type":"Feature","id":81992,"properties":{"mag":5.99,"bv":"0.103"},"geometry":{"type":"Point","coordinates":[-108.7492,-28.5097]}},{"type":"Feature","id":82020,"properties":{"mag":4.84,"bv":"0.375"},"geometry":{"type":"Point","coordinates":[-108.6758,56.7819]}},{"type":"Feature","id":82028,"properties":{"mag":5.6,"bv":"1.637"},"geometry":{"type":"Point","coordinates":[-108.6562,15.7453]}},{"type":"Feature","id":82073,"properties":{"mag":5.15,"bv":"1.535"},"geometry":{"type":"Point","coordinates":[-108.5421,8.5826]}},{"type":"Feature","id":82080,"properties":{"mag":4.21,"bv":"0.897"},"geometry":{"type":"Point","coordinates":[-108.5073,82.0373]}},{"type":"Feature","id":82110,"properties":{"mag":5.74,"bv":"-0.101"},"geometry":{"type":"Point","coordinates":[-108.4116,-58.5036]}},{"type":"Feature","id":82129,"properties":{"mag":5.1,"bv":"-0.080"},"geometry":{"type":"Point","coordinates":[-108.3334,-67.1097]}},{"type":"Feature","id":82135,"properties":{"mag":5.48,"bv":"0.975"},"geometry":{"type":"Point","coordinates":[-108.3002,-39.377]}},{"type":"Feature","id":82171,"properties":{"mag":5.55,"bv":"-0.096"},"geometry":{"type":"Point","coordinates":[-108.1681,-58.3414]}},{"type":"Feature","id":82172,"properties":{"mag":5.86,"bv":"1.504"},"geometry":{"type":"Point","coordinates":[-108.1677,42.2389]}},{"type":"Feature","id":82216,"properties":{"mag":5.22,"bv":"-0.001"},"geometry":{"type":"Point","coordinates":[-108.0566,5.2467]}},{"type":"Feature","id":82273,"properties":{"mag":1.91,"bv":"1.447"},"geometry":{"type":"Point","coordinates":[-107.8338,-69.0277]}},{"type":"Feature","id":82321,"properties":{"mag":4.82,"bv":"0.087"},"geometry":{"type":"Point","coordinates":[-107.6908,45.9833]}},{"type":"Feature","id":82350,"properties":{"mag":5.91,"bv":"0.015"},"geometry":{"type":"Point","coordinates":[-107.6056,13.2611]}},{"type":"Feature","id":82363,"properties":{"mag":3.77,"bv":"1.562"},"geometry":{"type":"Point","coordinates":[-107.5535,-59.0414]}},{"type":"Feature","id":82369,"properties":{"mag":4.64,"bv":"0.478"},"geometry":{"type":"Point","coordinates":[-107.5415,-10.783]}},{"type":"Feature","id":82396,"properties":{"mag":2.29,"bv":"1.144"},"geometry":{"type":"Point","coordinates":[-107.4591,-34.2932]}},{"type":"Feature","id":82402,"properties":{"mag":5.48,"bv":"0.108"},"geometry":{"type":"Point","coordinates":[-107.4192,7.2477]}},{"type":"Feature","id":82422,"properties":{"mag":5.73,"bv":"1.626"},"geometry":{"type":"Point","coordinates":[-107.3377,29.8065]}},{"type":"Feature","id":82480,"properties":{"mag":5.51,"bv":"0.055"},"geometry":{"type":"Point","coordinates":[-107.1461,1.2159]}},{"type":"Feature","id":82493,"properties":{"mag":5.23,"bv":"0.047"},"geometry":{"type":"Point","coordinates":[-107.1095,-41.2305]}},{"type":"Feature","id":82504,"properties":{"mag":5.03,"bv":"1.246"},"geometry":{"type":"Point","coordinates":[-107.0614,24.6564]}},{"type":"Feature","id":82514,"properties":{"mag":3,"bv":"-0.200"},"geometry":{"type":"Point","coordinates":[-107.0324,-38.0474]}},{"type":"Feature","id":82545,"properties":{"mag":3.56,"bv":"-0.210"},"geometry":{"type":"Point","coordinates":[-106.9161,-38.0175]}},{"type":"Feature","id":82587,"properties":{"mag":5.34,"bv":"0.319"},"geometry":{"type":"Point","coordinates":[-106.7581,31.7017]}},{"type":"Feature","id":82611,"properties":{"mag":5.99,"bv":"1.325"},"geometry":{"type":"Point","coordinates":[-106.6768,47.4167]}},{"type":"Feature","id":82621,"properties":{"mag":5.86,"bv":"0.685"},"geometry":{"type":"Point","coordinates":[-106.6449,-20.4156]}},{"type":"Feature","id":82650,"properties":{"mag":5.95,"bv":"1.643"},"geometry":{"type":"Point","coordinates":[-106.5732,-43.051]}},{"type":"Feature","id":82671,"properties":{"mag":4.7,"bv":"0.444"},"geometry":{"type":"Point","coordinates":[-106.5011,-42.362]}},{"type":"Feature","id":82672,"properties":{"mag":5.91,"bv":"1.592"},"geometry":{"type":"Point","coordinates":[-106.4985,-57.9095]}},{"type":"Feature","id":82673,"properties":{"mag":4.39,"bv":"-0.088"},"geometry":{"type":"Point","coordinates":[-106.498,10.1654]}},{"type":"Feature","id":82676,"properties":{"mag":5.46,"bv":"0.176"},"geometry":{"type":"Point","coordinates":[-106.4923,-41.8064]}},{"type":"Feature","id":82716,"properties":{"mag":5.84,"bv":"0.626"},"geometry":{"type":"Point","coordinates":[-106.3877,-42.4789]}},{"type":"Feature","id":82729,"properties":{"mag":3.62,"bv":"1.393"},"geometry":{"type":"Point","coordinates":[-106.3541,-42.3613]}},{"type":"Feature","id":82730,"properties":{"mag":5.23,"bv":"1.100"},"geometry":{"type":"Point","coordinates":[-106.3513,-6.154]}},{"type":"Feature","id":82764,"properties":{"mag":5.39,"bv":"0.966"},"geometry":{"type":"Point","coordinates":[-106.2701,20.9585]}},{"type":"Feature","id":82775,"properties":{"mag":5.78,"bv":"0.132"},"geometry":{"type":"Point","coordinates":[-106.2562,-41.1509]}},{"type":"Feature","id":82802,"properties":{"mag":5.35,"bv":"1.407"},"geometry":{"type":"Point","coordinates":[-106.1576,18.4332]}},{"type":"Feature","id":82806,"properties":{"mag":5.99,"bv":"0.059"},"geometry":{"type":"Point","coordinates":[-106.1471,-63.2697]}},{"type":"Feature","id":82860,"properties":{"mag":4.88,"bv":"0.481"},"geometry":{"type":"Point","coordinates":[-105.993,65.1348]}},{"type":"Feature","id":82902,"properties":{"mag":5.94,"bv":"-0.069"},"geometry":{"type":"Point","coordinates":[-105.8801,-52.2837]}},{"type":"Feature","id":82925,"properties":{"mag":5.57,"bv":"-0.018"},"geometry":{"type":"Point","coordinates":[-105.7998,-23.1503]}},{"type":"Feature","id":82960,"properties":{"mag":5.48,"bv":"1.606"},"geometry":{"type":"Point","coordinates":[-105.7034,-33.2595]}},{"type":"Feature","id":83000,"properties":{"mag":3.19,"bv":"1.160"},"geometry":{"type":"Point","coordinates":[-105.5829,9.375]}},{"type":"Feature","id":83057,"properties":{"mag":5.53,"bv":"0.016"},"geometry":{"type":"Point","coordinates":[-105.4253,-50.6412]}},{"type":"Feature","id":83081,"properties":{"mag":3.12,"bv":"1.552"},"geometry":{"type":"Point","coordinates":[-105.345,-55.9901]}},{"type":"Feature","id":83150,"properties":{"mag":5.79,"bv":"-0.103"},"geometry":{"type":"Point","coordinates":[-105.1085,-69.2682]}},{"type":"Feature","id":83153,"properties":{"mag":4.06,"bv":"1.452"},"geometry":{"type":"Point","coordinates":[-105.104,-53.1604]}},{"type":"Feature","id":83176,"properties":{"mag":5.88,"bv":"1.607"},"geometry":{"type":"Point","coordinates":[-105.0096,-25.0922]}},{"type":"Feature","id":83187,"properties":{"mag":5.64,"bv":"0.194"},"geometry":{"type":"Point","coordinates":[-104.9738,-54.5972]}},{"type":"Feature","id":83196,"properties":{"mag":5.74,"bv":"0.407"},"geometry":{"type":"Point","coordinates":[-104.9604,-24.9891]}},{"type":"Feature","id":83207,"properties":{"mag":3.92,"bv":"-0.018"},"geometry":{"type":"Point","coordinates":[-104.9276,30.9264]}},{"type":"Feature","id":83216,"properties":{"mag":5.98,"bv":"0.883"},"geometry":{"type":"Point","coordinates":[-104.8877,-48.6478]}},{"type":"Feature","id":83235,"properties":{"mag":5.95,"bv":"1.161"},"geometry":{"type":"Point","coordinates":[-104.8459,-35.9341]}},{"type":"Feature","id":83254,"properties":{"mag":5.69,"bv":"1.332"},"geometry":{"type":"Point","coordinates":[-104.7578,22.6321]}},{"type":"Feature","id":83262,"properties":{"mag":4.82,"bv":"1.483"},"geometry":{"type":"Point","coordinates":[-104.735,-4.2226]}},{"type":"Feature","id":83313,"properties":{"mag":5.27,"bv":"0.028"},"geometry":{"type":"Point","coordinates":[-104.5985,33.5683]}},{"type":"Feature","id":83336,"properties":{"mag":5.03,"bv":"-0.100"},"geometry":{"type":"Point","coordinates":[-104.5307,-32.1435]}},{"type":"Feature","id":83367,"properties":{"mag":5.76,"bv":"1.018"},"geometry":{"type":"Point","coordinates":[-104.4221,25.5056]}},{"type":"Feature","id":83430,"properties":{"mag":4.97,"bv":"1.600"},"geometry":{"type":"Point","coordinates":[-104.2172,14.0919]}},{"type":"Feature","id":83431,"properties":{"mag":5.27,"bv":"0.498"},"geometry":{"type":"Point","coordinates":[-104.2137,-53.237]}},{"type":"Feature","id":83478,"properties":{"mag":5.91,"bv":"0.010"},"geometry":{"type":"Point","coordinates":[-104.0862,13.6053]}},{"type":"Feature","id":83491,"properties":{"mag":5.91,"bv":"0.409"},"geometry":{"type":"Point","coordinates":[-104.0377,-38.1526]}},{"type":"Feature","id":83535,"properties":{"mag":5.73,"bv":"-0.097"},"geometry":{"type":"Point","coordinates":[-103.897,-57.7122]}},{"type":"Feature","id":83574,"properties":{"mag":4.83,"bv":"0.257"},"geometry":{"type":"Point","coordinates":[-103.7944,-34.1229]}},{"type":"Feature","id":83601,"properties":{"mag":6,"bv":"0.578"},"geometry":{"type":"Point","coordinates":[-103.6799,0.7026]}},{"type":"Feature","id":83608,"properties":{"mag":4.91,"bv":"0.471"},"geometry":{"type":"Point","coordinates":[-103.6662,54.47]}},{"type":"Feature","id":83613,"properties":{"mag":4.89,"bv":"0.125"},"geometry":{"type":"Point","coordinates":[-103.6555,12.7408]}},{"type":"Feature","id":83635,"properties":{"mag":5.63,"bv":"0.104"},"geometry":{"type":"Point","coordinates":[-103.6156,-0.8921]}},{"type":"Feature","id":83692,"properties":{"mag":5.56,"bv":"1.299"},"geometry":{"type":"Point","coordinates":[-103.4248,22.0842]}},{"type":"Feature","id":83693,"properties":{"mag":5.98,"bv":"0.076"},"geometry":{"type":"Point","coordinates":[-103.4159,-37.2276]}},{"type":"Feature","id":83838,"properties":{"mag":5.41,"bv":"0.309"},"geometry":{"type":"Point","coordinates":[-102.9914,35.9352]}},{"type":"Feature","id":83854,"properties":{"mag":5.98,"bv":"1.011"},"geometry":{"type":"Point","coordinates":[-102.9381,-17.6091]}},{"type":"Feature","id":83895,"properties":{"mag":3.17,"bv":"-0.120"},"geometry":{"type":"Point","coordinates":[-102.8034,65.7147]}},{"type":"Feature","id":83896,"properties":{"mag":5.93,"bv":"0.276"},"geometry":{"type":"Point","coordinates":[-102.8019,-30.4037]}},{"type":"Feature","id":83947,"properties":{"mag":5.07,"bv":"1.275"},"geometry":{"type":"Point","coordinates":[-102.6115,40.777]}},{"type":"Feature","id":83962,"properties":{"mag":5.43,"bv":"0.465"},"geometry":{"type":"Point","coordinates":[-102.5502,-10.5233]}},{"type":"Feature","id":84012,"properties":{"mag":2.43,"bv":"0.059"},"geometry":{"type":"Point","coordinates":[-102.4055,-15.7249]}},{"type":"Feature","id":84033,"properties":{"mag":5.06,"bv":"0.867"},"geometry":{"type":"Point","coordinates":[-102.3237,-44.5577]}},{"type":"Feature","id":84105,"properties":{"mag":5.94,"bv":"1.786"},"geometry":{"type":"Point","coordinates":[-102.0888,-48.8734]}},{"type":"Feature","id":84143,"properties":{"mag":3.32,"bv":"0.441"},"geometry":{"type":"Point","coordinates":[-101.9617,-43.2392]}},{"type":"Feature","id":84150,"properties":{"mag":5.66,"bv":"0.042"},"geometry":{"type":"Point","coordinates":[-101.9325,-39.5069]}},{"type":"Feature","id":84177,"properties":{"mag":5.32,"bv":"1.593"},"geometry":{"type":"Point","coordinates":[-101.8841,10.5852]}},{"type":"Feature","id":84183,"properties":{"mag":5.54,"bv":"0.216"},"geometry":{"type":"Point","coordinates":[-101.8643,62.8743]}},{"type":"Feature","id":84226,"properties":{"mag":5.95,"bv":"0.071"},"geometry":{"type":"Point","coordinates":[-101.756,-32.4383]}},{"type":"Feature","id":84248,"properties":{"mag":5.87,"bv":"1.070"},"geometry":{"type":"Point","coordinates":[-101.6755,-67.1966]}},{"type":"Feature","id":84345,"properties":{"mag":2.78,"bv":"1.164"},"geometry":{"type":"Point","coordinates":[-101.3381,14.3903]}},{"type":"Feature","id":84379,"properties":{"mag":3.12,"bv":"0.080"},"geometry":{"type":"Point","coordinates":[-101.242,24.8392]}},{"type":"Feature","id":84380,"properties":{"mag":3.16,"bv":"1.437"},"geometry":{"type":"Point","coordinates":[-101.2382,36.8092]}},{"type":"Feature","id":84401,"properties":{"mag":5.6,"bv":"-0.056"},"geometry":{"type":"Point","coordinates":[-101.1698,-33.5484]}},{"type":"Feature","id":84402,"properties":{"mag":5.98,"bv":"1.096"},"geometry":{"type":"Point","coordinates":[-101.1655,-14.5841]}},{"type":"Feature","id":84405,"properties":{"mag":4.33,"bv":"0.855"},"geometry":{"type":"Point","coordinates":[-101.1626,-26.6028]}},{"type":"Feature","id":84425,"properties":{"mag":5.95,"bv":"0.580"},"geometry":{"type":"Point","coordinates":[-101.1002,-38.5939]}},{"type":"Feature","id":84431,"properties":{"mag":5.99,"bv":"1.335"},"geometry":{"type":"Point","coordinates":[-101.0772,23.7428]}},{"type":"Feature","id":84500,"properties":{"mag":5.89,"bv":"0.023"},"geometry":{"type":"Point","coordinates":[-100.8679,1.2105]}},{"type":"Feature","id":84514,"properties":{"mag":4.72,"bv":"1.119"},"geometry":{"type":"Point","coordinates":[-100.8471,-0.4453]}},{"type":"Feature","id":84551,"properties":{"mag":5.53,"bv":"0.514"},"geometry":{"type":"Point","coordinates":[-100.7348,-32.6628]}},{"type":"Feature","id":84573,"properties":{"mag":4.8,"bv":"-0.166"},"geometry":{"type":"Point","coordinates":[-100.6685,33.1001]}},{"type":"Feature","id":84606,"properties":{"mag":4.64,"bv":"0.043"},"geometry":{"type":"Point","coordinates":[-100.5823,37.2915]}},{"type":"Feature","id":84626,"properties":{"mag":5.14,"bv":"1.046"},"geometry":{"type":"Point","coordinates":[-100.4972,-24.2869]}},{"type":"Feature","id":84631,"properties":{"mag":6,"bv":"0.015"},"geometry":{"type":"Point","coordinates":[-100.4794,17.3179]}},{"type":"Feature","id":84656,"properties":{"mag":5.97,"bv":"1.011"},"geometry":{"type":"Point","coordinates":[-100.403,38.8114]}},{"type":"Feature","id":84671,"properties":{"mag":5.03,"bv":"1.539"},"geometry":{"type":"Point","coordinates":[-100.3459,10.8645]}},{"type":"Feature","id":84690,"properties":{"mag":5.76,"bv":"-0.049"},"geometry":{"type":"Point","coordinates":[-100.3007,-44.1297]}},{"type":"Feature","id":84691,"properties":{"mag":5.68,"bv":"0.981"},"geometry":{"type":"Point","coordinates":[-100.2978,28.823]}},{"type":"Feature","id":84709,"properties":{"mag":5.91,"bv":"1.082"},"geometry":{"type":"Point","coordinates":[-100.2618,-34.9898]}},{"type":"Feature","id":84720,"properties":{"mag":5.47,"bv":"0.764"},"geometry":{"type":"Point","coordinates":[-100.234,-46.6362]}},{"type":"Feature","id":84731,"properties":{"mag":5.93,"bv":"1.389"},"geometry":{"type":"Point","coordinates":[-100.1979,-59.6946]}},{"type":"Feature","id":84769,"properties":{"mag":5.74,"bv":"1.499"},"geometry":{"type":"Point","coordinates":[-100.0954,80.1364]}},{"type":"Feature","id":84821,"properties":{"mag":5.36,"bv":"0.063"},"geometry":{"type":"Point","coordinates":[-99.959,25.5376]}},{"type":"Feature","id":84833,"properties":{"mag":5.01,"bv":"1.654"},"geometry":{"type":"Point","coordinates":[-99.9214,18.0571]}},{"type":"Feature","id":84835,"properties":{"mag":5.51,"bv":"1.586"},"geometry":{"type":"Point","coordinates":[-99.912,46.2408]}},{"type":"Feature","id":84862,"properties":{"mag":5.38,"bv":"0.619"},"geometry":{"type":"Point","coordinates":[-99.8351,32.4677]}},{"type":"Feature","id":84880,"properties":{"mag":4.32,"bv":"0.037"},"geometry":{"type":"Point","coordinates":[-99.7931,-12.8469]}},{"type":"Feature","id":84887,"properties":{"mag":5.13,"bv":"0.000"},"geometry":{"type":"Point","coordinates":[-99.7741,24.4994]}},{"type":"Feature","id":84893,"properties":{"mag":4.39,"bv":"0.394"},"geometry":{"type":"Point","coordinates":[-99.7484,-21.1129]}},{"type":"Feature","id":84949,"properties":{"mag":5.55,"bv":"0.667"},"geometry":{"type":"Point","coordinates":[-99.5683,39.9746]}},{"type":"Feature","id":84950,"properties":{"mag":5.69,"bv":"1.463"},"geometry":{"type":"Point","coordinates":[-99.561,53.4204]}},{"type":"Feature","id":84969,"properties":{"mag":4.76,"bv":"1.194"},"geometry":{"type":"Point","coordinates":[-99.5022,-67.7707]}},{"type":"Feature","id":84970,"properties":{"mag":3.27,"bv":"-0.186"},"geometry":{"type":"Point","coordinates":[-99.4976,-24.9995]}},{"type":"Feature","id":84979,"properties":{"mag":5.39,"bv":"-0.042"},"geometry":{"type":"Point","coordinates":[-99.4755,-70.1232]}},{"type":"Feature","id":85048,"properties":{"mag":5.91,"bv":"1.075"},"geometry":{"type":"Point","coordinates":[-99.2719,-37.2208]}},{"type":"Feature","id":85049,"properties":{"mag":5.86,"bv":"1.075"},"geometry":{"type":"Point","coordinates":[-99.2699,-58.0103]}},{"type":"Feature","id":85068,"properties":{"mag":5.76,"bv":"0.994"},"geometry":{"type":"Point","coordinates":[-99.2203,-56.5255]}},{"type":"Feature","id":85079,"properties":{"mag":5.21,"bv":"-0.097"},"geometry":{"type":"Point","coordinates":[-99.183,-47.4682]}},{"type":"Feature","id":85084,"properties":{"mag":5.3,"bv":"1.549"},"geometry":{"type":"Point","coordinates":[-99.16,-28.1428]}},{"type":"Feature","id":85112,"properties":{"mag":4.15,"bv":"-0.011"},"geometry":{"type":"Point","coordinates":[-99.0794,37.1459]}},{"type":"Feature","id":85139,"properties":{"mag":5.77,"bv":"1.251"},"geometry":{"type":"Point","coordinates":[-99.0099,8.8526]}},{"type":"Feature","id":85147,"properties":{"mag":5.69,"bv":"-0.147"},"geometry":{"type":"Point","coordinates":[-98.9955,-62.8642]}},{"type":"Feature","id":85157,"properties":{"mag":5.7,"bv":"0.229"},"geometry":{"type":"Point","coordinates":[-98.9726,22.9603]}},{"type":"Feature","id":85162,"properties":{"mag":5.1,"bv":"-0.052"},"geometry":{"type":"Point","coordinates":[-98.9455,-44.1626]}},{"type":"Feature","id":85169,"properties":{"mag":5.76,"bv":"-0.067"},"geometry":{"type":"Point","coordinates":[-98.9217,-60.6738]}},{"type":"Feature","id":85185,"properties":{"mag":5.75,"bv":"0.074"},"geometry":{"type":"Point","coordinates":[-98.8686,16.301]}},{"type":"Feature","id":85207,"properties":{"mag":5.82,"bv":"0.939"},"geometry":{"type":"Point","coordinates":[-98.8249,-21.4415]}},{"type":"Feature","id":85258,"properties":{"mag":2.84,"bv":"1.479"},"geometry":{"type":"Point","coordinates":[-98.675,-55.5299]}},{"type":"Feature","id":85267,"properties":{"mag":3.31,"bv":"-0.150"},"geometry":{"type":"Point","coordinates":[-98.6514,-56.3777]}},{"type":"Feature","id":85290,"properties":{"mag":5.65,"bv":"0.024"},"geometry":{"type":"Point","coordinates":[-98.5777,60.0484]}},{"type":"Feature","id":85312,"properties":{"mag":5.19,"bv":"1.055"},"geometry":{"type":"Point","coordinates":[-98.4998,-50.6335]}},{"type":"Feature","id":85340,"properties":{"mag":4.16,"bv":"0.283"},"geometry":{"type":"Point","coordinates":[-98.4074,-24.1753]}},{"type":"Feature","id":85355,"properties":{"mag":4.34,"bv":"1.480"},"geometry":{"type":"Point","coordinates":[-98.3713,4.1404]}},{"type":"Feature","id":85365,"properties":{"mag":4.53,"bv":"0.385"},"geometry":{"type":"Point","coordinates":[-98.3422,-5.0866]}},{"type":"Feature","id":85379,"properties":{"mag":5.83,"bv":"0.121"},"geometry":{"type":"Point","coordinates":[-98.3157,48.2601]}},{"type":"Feature","id":85382,"properties":{"mag":5.94,"bv":"-0.017"},"geometry":{"type":"Point","coordinates":[-98.3077,34.6958]}},{"type":"Feature","id":85385,"properties":{"mag":5.52,"bv":"-0.119"},"geometry":{"type":"Point","coordinates":[-98.2953,20.081]}},{"type":"Feature","id":85389,"properties":{"mag":5.28,"bv":"-0.058"},"geometry":{"type":"Point","coordinates":[-98.2834,-45.843]}},{"type":"Feature","id":85409,"properties":{"mag":5.9,"bv":"0.063"},"geometry":{"type":"Point","coordinates":[-98.1981,-50.6304]}},{"type":"Feature","id":85423,"properties":{"mag":4.28,"bv":"0.402"},"geometry":{"type":"Point","coordinates":[-98.1614,-29.867]}},{"type":"Feature","id":85442,"properties":{"mag":5.98,"bv":"0.010"},"geometry":{"type":"Point","coordinates":[-98.0935,-29.7246]}},{"type":"Feature","id":85470,"properties":{"mag":5.72,"bv":"1.169"},"geometry":{"type":"Point","coordinates":[-98.01,-52.2972]}},{"type":"Feature","id":85520,"properties":{"mag":5.93,"bv":"1.113"},"geometry":{"type":"Point","coordinates":[-97.8379,-55.1697]}},{"type":"Feature","id":85537,"properties":{"mag":5.41,"bv":"0.237"},"geometry":{"type":"Point","coordinates":[-97.7931,0.3306]}},{"type":"Feature","id":85543,"properties":{"mag":5.98,"bv":"1.112"},"geometry":{"type":"Point","coordinates":[-97.7663,-36.7783]}},{"type":"Feature","id":85667,"properties":{"mag":5.31,"bv":"0.715"},"geometry":{"type":"Point","coordinates":[-97.4008,-1.0629]}},{"type":"Feature","id":85670,"properties":{"mag":2.79,"bv":"0.954"},"geometry":{"type":"Point","coordinates":[-97.3918,52.3014]}},{"type":"Feature","id":85693,"properties":{"mag":4.41,"bv":"1.434"},"geometry":{"type":"Point","coordinates":[-97.3154,26.1106]}},{"type":"Feature","id":85696,"properties":{"mag":2.7,"bv":"-0.179"},"geometry":{"type":"Point","coordinates":[-97.309,-37.2958]}},{"type":"Feature","id":85699,"properties":{"mag":5.78,"bv":"0.239"},"geometry":{"type":"Point","coordinates":[-97.3017,86.968]}},{"type":"Feature","id":85715,"properties":{"mag":5.63,"bv":"0.960"},"geometry":{"type":"Point","coordinates":[-97.2693,31.1581]}},{"type":"Feature","id":85727,"properties":{"mag":3.6,"bv":"-0.104"},"geometry":{"type":"Point","coordinates":[-97.2254,-60.6838]}},{"type":"Feature","id":85749,"properties":{"mag":5.57,"bv":"0.844"},"geometry":{"type":"Point","coordinates":[-97.1611,2.7245]}},{"type":"Feature","id":85751,"properties":{"mag":5.99,"bv":"-0.045"},"geometry":{"type":"Point","coordinates":[-97.153,-56.921]}},{"type":"Feature","id":85755,"properties":{"mag":4.78,"bv":"0.016"},"geometry":{"type":"Point","coordinates":[-97.146,-23.9626]}},{"type":"Feature","id":85760,"properties":{"mag":5.83,"bv":"1.617"},"geometry":{"type":"Point","coordinates":[-97.1356,-80.8591]}},{"type":"Feature","id":85790,"properties":{"mag":5.66,"bv":"-0.001"},"geometry":{"type":"Point","coordinates":[-97.0434,28.4075]}},{"type":"Feature","id":85792,"properties":{"mag":2.84,"bv":"-0.136"},"geometry":{"type":"Point","coordinates":[-97.0396,-49.8761]}},{"type":"Feature","id":85805,"properties":{"mag":5.07,"bv":"1.077"},"geometry":{"type":"Point","coordinates":[-97.0089,68.135]}},{"type":"Feature","id":85819,"properties":{"mag":4.89,"bv":"0.251"},"geometry":{"type":"Point","coordinates":[-96.956,55.1842]}},{"type":"Feature","id":85822,"properties":{"mag":4.35,"bv":"0.021"},"geometry":{"type":"Point","coordinates":[-96.9458,86.5865]}},{"type":"Feature","id":85829,"properties":{"mag":4.86,"bv":"0.279"},"geometry":{"type":"Point","coordinates":[-96.9332,55.173]}},{"type":"Feature","id":85888,"properties":{"mag":5.72,"bv":"1.089"},"geometry":{"type":"Point","coordinates":[-96.7198,41.2434]}},{"type":"Feature","id":85889,"properties":{"mag":5.84,"bv":"0.041"},"geometry":{"type":"Point","coordinates":[-96.7192,-41.1731]}},{"type":"Feature","id":85912,"properties":{"mag":5.65,"bv":"0.505"},"geometry":{"type":"Point","coordinates":[-96.6549,19.2567]}},{"type":"Feature","id":85922,"properties":{"mag":5.61,"bv":"0.187"},"geometry":{"type":"Point","coordinates":[-96.6256,-5.7448]}},{"type":"Feature","id":85927,"properties":{"mag":1.62,"bv":"-0.231"},"geometry":{"type":"Point","coordinates":[-96.5978,-37.1038]}},{"type":"Feature","id":85930,"properties":{"mag":5.68,"bv":"1.002"},"geometry":{"type":"Point","coordinates":[-96.5859,16.3176]}},{"type":"Feature","id":85998,"properties":{"mag":5.8,"bv":"0.040"},"geometry":{"type":"Point","coordinates":[-96.3471,9.5867]}},{"type":"Feature","id":86011,"properties":{"mag":5.69,"bv":"0.045"},"geometry":{"type":"Point","coordinates":[-96.3229,-32.5817]}},{"type":"Feature","id":86019,"properties":{"mag":5.54,"bv":"0.013"},"geometry":{"type":"Point","coordinates":[-96.3069,-11.242]}},{"type":"Feature","id":86032,"properties":{"mag":2.08,"bv":"0.155"},"geometry":{"type":"Point","coordinates":[-96.2664,12.56]}},{"type":"Feature","id":86036,"properties":{"mag":5.23,"bv":"0.602"},"geometry":{"type":"Point","coordinates":[-96.2517,61.8746]}},{"type":"Feature","id":86092,"properties":{"mag":4.56,"bv":"-0.020"},"geometry":{"type":"Point","coordinates":[-96.085,-46.5057]}},{"type":"Feature","id":86170,"properties":{"mag":4.26,"bv":"1.075"},"geometry":{"type":"Point","coordinates":[-95.8632,-38.6353]}},{"type":"Feature","id":86182,"properties":{"mag":5.35,"bv":"1.142"},"geometry":{"type":"Point","coordinates":[-95.8431,48.5856]}},{"type":"Feature","id":86201,"properties":{"mag":4.77,"bv":"0.430"},"geometry":{"type":"Point","coordinates":[-95.7621,68.758]}},{"type":"Feature","id":86219,"properties":{"mag":5.87,"bv":"1.016"},"geometry":{"type":"Point","coordinates":[-95.713,72.4558]}},{"type":"Feature","id":86228,"properties":{"mag":1.86,"bv":"0.406"},"geometry":{"type":"Point","coordinates":[-95.6703,-42.9978]}},{"type":"Feature","id":86248,"properties":{"mag":5.89,"bv":"1.109"},"geometry":{"type":"Point","coordinates":[-95.6362,-50.0597]}},{"type":"Feature","id":86254,"properties":{"mag":5.76,"bv":"0.114"},"geometry":{"type":"Point","coordinates":[-95.6204,24.31]}},{"type":"Feature","id":86263,"properties":{"mag":3.54,"bv":"0.262"},"geometry":{"type":"Point","coordinates":[-95.6033,-15.3986]}},{"type":"Feature","id":86266,"properties":{"mag":5.94,"bv":"0.357"},"geometry":{"type":"Point","coordinates":[-95.5991,-15.571]}},{"type":"Feature","id":86284,"properties":{"mag":4.58,"bv":"0.132"},"geometry":{"type":"Point","coordinates":[-95.5387,-8.1188]}},{"type":"Feature","id":86305,"properties":{"mag":5.25,"bv":"0.195"},"geometry":{"type":"Point","coordinates":[-95.477,-54.5004]}},{"type":"Feature","id":86313,"properties":{"mag":5.74,"bv":"1.228"},"geometry":{"type":"Point","coordinates":[-95.4604,-10.9263]}},{"type":"Feature","id":86414,"properties":{"mag":3.82,"bv":"-0.179"},"geometry":{"type":"Point","coordinates":[-95.1338,46.0063]}},{"type":"Feature","id":86486,"properties":{"mag":4.76,"bv":"0.415"},"geometry":{"type":"Point","coordinates":[-94.9007,-49.4156]}},{"type":"Feature","id":86552,"properties":{"mag":5.78,"bv":"-0.004"},"geometry":{"type":"Point","coordinates":[-94.6823,-46.9218]}},{"type":"Feature","id":86561,"properties":{"mag":6,"bv":"1.068"},"geometry":{"type":"Point","coordinates":[-94.6593,51.8182]}},{"type":"Feature","id":86565,"properties":{"mag":4.24,"bv":"0.086"},"geometry":{"type":"Point","coordinates":[-94.6464,-12.8753]}},{"type":"Feature","id":86575,"properties":{"mag":5.97,"bv":"1.271"},"geometry":{"type":"Point","coordinates":[-94.6153,6.3132]}},{"type":"Feature","id":86614,"properties":{"mag":4.57,"bv":"0.434"},"geometry":{"type":"Point","coordinates":[-94.5152,72.1488]}},{"type":"Feature","id":86620,"properties":{"mag":5.81,"bv":"0.530"},"geometry":{"type":"Point","coordinates":[-94.5079,72.1569]}},{"type":"Feature","id":86623,"properties":{"mag":5.54,"bv":"0.387"},"geometry":{"type":"Point","coordinates":[-94.5057,15.9524]}},{"type":"Feature","id":86667,"properties":{"mag":5.56,"bv":"1.436"},"geometry":{"type":"Point","coordinates":[-94.3818,24.5641]}},{"type":"Feature","id":86670,"properties":{"mag":2.39,"bv":"-0.171"},"geometry":{"type":"Point","coordinates":[-94.378,-39.03]}},{"type":"Feature","id":86698,"properties":{"mag":5.53,"bv":"1.553"},"geometry":{"type":"Point","coordinates":[-94.2871,-36.9456]}},{"type":"Feature","id":86731,"properties":{"mag":5.73,"bv":"0.683"},"geometry":{"type":"Point","coordinates":[-94.1601,24.3278]}},{"type":"Feature","id":86736,"properties":{"mag":4.86,"bv":"0.469"},"geometry":{"type":"Point","coordinates":[-94.1425,-21.6832]}},{"type":"Feature","id":86742,"properties":{"mag":2.76,"bv":"1.168"},"geometry":{"type":"Point","coordinates":[-94.1319,4.5673]}},{"type":"Feature","id":86782,"properties":{"mag":5.75,"bv":"0.017"},"geometry":{"type":"Point","coordinates":[-94.0034,53.8017]}},{"type":"Feature","id":86796,"properties":{"mag":5.12,"bv":"0.694"},"geometry":{"type":"Point","coordinates":[-93.9637,-51.8341]}},{"type":"Feature","id":86847,"properties":{"mag":5.87,"bv":"0.163"},"geometry":{"type":"Point","coordinates":[-93.825,-42.7293]}},{"type":"Feature","id":86871,"properties":{"mag":5.97,"bv":"0.912"},"geometry":{"type":"Point","coordinates":[-93.7672,-57.5455]}},{"type":"Feature","id":86929,"properties":{"mag":3.61,"bv":"1.161"},"geometry":{"type":"Point","coordinates":[-93.5667,-64.7239]}},{"type":"Feature","id":86974,"properties":{"mag":3.42,"bv":"0.750"},"geometry":{"type":"Point","coordinates":[-93.3853,27.7207]}},{"type":"Feature","id":87044,"properties":{"mag":5.61,"bv":"0.036"},"geometry":{"type":"Point","coordinates":[-93.2165,17.697]}},{"type":"Feature","id":87072,"properties":{"mag":4.53,"bv":"0.600"},"geometry":{"type":"Point","coordinates":[-93.1099,-27.8308]}},{"type":"Feature","id":87073,"properties":{"mag":2.99,"bv":"0.509"},"geometry":{"type":"Point","coordinates":[-93.1038,-40.127]}},{"type":"Feature","id":87074,"properties":{"mag":5.93,"bv":"0.009"},"geometry":{"type":"Point","coordinates":[-93.0968,-14.7258]}},{"type":"Feature","id":87108,"properties":{"mag":3.75,"bv":"0.043"},"geometry":{"type":"Point","coordinates":[-93.0268,2.7073]}},{"type":"Feature","id":87158,"properties":{"mag":5.69,"bv":"0.938"},"geometry":{"type":"Point","coordinates":[-92.8968,20.5654]}},{"type":"Feature","id":87194,"properties":{"mag":5.09,"bv":"1.141"},"geometry":{"type":"Point","coordinates":[-92.7952,25.6229]}},{"type":"Feature","id":87212,"properties":{"mag":5.02,"bv":"0.043"},"geometry":{"type":"Point","coordinates":[-92.7321,50.7811]}},{"type":"Feature","id":87220,"properties":{"mag":4.79,"bv":"-0.028"},"geometry":{"type":"Point","coordinates":[-92.7063,-31.7032]}},{"type":"Feature","id":87234,"properties":{"mag":5.02,"bv":"0.518"},"geometry":{"type":"Point","coordinates":[-92.6374,76.9629]}},{"type":"Feature","id":87261,"properties":{"mag":3.19,"bv":"1.192"},"geometry":{"type":"Point","coordinates":[-92.5355,-37.0433]}},{"type":"Feature","id":87294,"properties":{"mag":4.78,"bv":"0.259"},"geometry":{"type":"Point","coordinates":[-92.4537,-40.0904]}},{"type":"Feature","id":87308,"properties":{"mag":5.51,"bv":"1.071"},"geometry":{"type":"Point","coordinates":[-92.4046,29.3221]}},{"type":"Feature","id":87314,"properties":{"mag":5.68,"bv":"-0.099"},"geometry":{"type":"Point","coordinates":[-92.3817,-53.6124]}},{"type":"Feature","id":87390,"properties":{"mag":5.94,"bv":"1.572"},"geometry":{"type":"Point","coordinates":[-92.1144,-40.7725]}},{"type":"Feature","id":87393,"properties":{"mag":5.78,"bv":"1.008"},"geometry":{"type":"Point","coordinates":[-92.1022,-60.1641]}},{"type":"Feature","id":87460,"properties":{"mag":5.88,"bv":"-0.111"},"geometry":{"type":"Point","coordinates":[-91.9431,-34.7992]}},{"type":"Feature","id":87472,"properties":{"mag":5.84,"bv":"1.129"},"geometry":{"type":"Point","coordinates":[-91.9177,-34.4168]}},{"type":"Feature","id":87491,"properties":{"mag":5.91,"bv":"1.573"},"geometry":{"type":"Point","coordinates":[-91.8523,1.305]}},{"type":"Feature","id":87558,"properties":{"mag":5.77,"bv":"0.425"},"geometry":{"type":"Point","coordinates":[-91.6909,6.1014]}},{"type":"Feature","id":87563,"properties":{"mag":5.17,"bv":"1.166"},"geometry":{"type":"Point","coordinates":[-91.6749,40.008]}},{"type":"Feature","id":87569,"properties":{"mag":5.58,"bv":"1.098"},"geometry":{"type":"Point","coordinates":[-91.6522,-34.8951]}},{"type":"Feature","id":87585,"properties":{"mag":3.73,"bv":"1.177"},"geometry":{"type":"Point","coordinates":[-91.6178,56.8726]}},{"type":"Feature","id":87616,"properties":{"mag":6,"bv":"-0.060"},"geometry":{"type":"Point","coordinates":[-91.5218,-34.7527]}},{"type":"Feature","id":87728,"properties":{"mag":5.43,"bv":"0.340"},"geometry":{"type":"Point","coordinates":[-91.2035,72.0051]}},{"type":"Feature","id":87747,"properties":{"mag":5.47,"bv":"0.341"},"geometry":{"type":"Point","coordinates":[-91.145,26.05]}},{"type":"Feature","id":87777,"properties":{"mag":5.62,"bv":"1.249"},"geometry":{"type":"Point","coordinates":[-91.0383,22.4642]}},{"type":"Feature","id":87808,"properties":{"mag":3.86,"bv":"1.350"},"geometry":{"type":"Point","coordinates":[-90.9367,37.2505]}},{"type":"Feature","id":87812,"properties":{"mag":5.82,"bv":"0.058"},"geometry":{"type":"Point","coordinates":[-90.9233,0.6704]}},{"type":"Feature","id":87813,"properties":{"mag":5.93,"bv":"0.024"},"geometry":{"type":"Point","coordinates":[-90.9207,-15.8125]}},{"type":"Feature","id":87833,"properties":{"mag":2.24,"bv":"1.521"},"geometry":{"type":"Point","coordinates":[-90.8485,51.4889]}},{"type":"Feature","id":87836,"properties":{"mag":5.76,"bv":"0.207"},"geometry":{"type":"Point","coordinates":[-90.8257,-28.0654]}},{"type":"Feature","id":87846,"properties":{"mag":4.85,"bv":"1.176"},"geometry":{"type":"Point","coordinates":[-90.8024,-44.3422]}},{"type":"Feature","id":87847,"properties":{"mag":5.44,"bv":"1.162"},"geometry":{"type":"Point","coordinates":[-90.8011,-4.0818]}},{"type":"Feature","id":87875,"properties":{"mag":5.95,"bv":"0.110"},"geometry":{"type":"Point","coordinates":[-90.732,0.0667]}},{"type":"Feature","id":87933,"properties":{"mag":3.7,"bv":"0.935"},"geometry":{"type":"Point","coordinates":[-90.5588,29.2479]}},{"type":"Feature","id":87936,"properties":{"mag":4.88,"bv":"1.617"},"geometry":{"type":"Point","coordinates":[-90.5508,-41.7163]}},{"type":"Feature","id":87998,"properties":{"mag":4.41,"bv":"0.380"},"geometry":{"type":"Point","coordinates":[-90.3744,30.1893]}},{"type":"Feature","id":88012,"properties":{"mag":5.99,"bv":"-0.077"},"geometry":{"type":"Point","coordinates":[-90.3373,-28.7591]}},{"type":"Feature","id":88038,"properties":{"mag":5.74,"bv":"0.915"},"geometry":{"type":"Point","coordinates":[-90.268,-36.8584]}},{"type":"Feature","id":88048,"properties":{"mag":3.32,"bv":"0.987"},"geometry":{"type":"Point","coordinates":[-90.2434,-9.7736]}},{"type":"Feature","id":88060,"properties":{"mag":5,"bv":"1.654"},"geometry":{"type":"Point","coordinates":[-90.228,-30.253]}},{"type":"Feature","id":88101,"properties":{"mag":5.86,"bv":"1.561"},"geometry":{"type":"Point","coordinates":[-90.0968,-4.8211]}},{"type":"Feature","id":88116,"properties":{"mag":4.74,"bv":"-0.030"},"geometry":{"type":"Point","coordinates":[-90.0519,-23.8161]}},{"type":"Feature","id":88122,"properties":{"mag":5.69,"bv":"1.562"},"geometry":{"type":"Point","coordinates":[-90.0158,45.5014]}},{"type":"Feature","id":88128,"properties":{"mag":4.67,"bv":"1.254"},"geometry":{"type":"Point","coordinates":[-89.9858,16.7509]}},{"type":"Feature","id":88136,"properties":{"mag":5.74,"bv":"0.516"},"geometry":{"type":"Point","coordinates":[-89.9616,80.0041]}},{"type":"Feature","id":88149,"properties":{"mag":4.79,"bv":"-0.100"},"geometry":{"type":"Point","coordinates":[-89.9342,4.3686]}},{"type":"Feature","id":88175,"properties":{"mag":4.62,"bv":"0.390"},"geometry":{"type":"Point","coordinates":[-89.8791,-3.6903]}},{"type":"Feature","id":88192,"properties":{"mag":3.93,"bv":"0.029"},"geometry":{"type":"Point","coordinates":[-89.8387,2.9316]}},{"type":"Feature","id":88267,"properties":{"mag":4.26,"bv":"0.406"},"geometry":{"type":"Point","coordinates":[-89.6233,21.5958]}},{"type":"Feature","id":88290,"properties":{"mag":4.42,"bv":"0.046"},"geometry":{"type":"Point","coordinates":[-89.5617,1.3051]}},{"type":"Feature","id":88298,"properties":{"mag":5.72,"bv":"-0.030"},"geometry":{"type":"Point","coordinates":[-89.5234,-22.7803]}},{"type":"Feature","id":88331,"properties":{"mag":5.25,"bv":"-0.100"},"geometry":{"type":"Point","coordinates":[-89.404,20.8336]}},{"type":"Feature","id":88380,"properties":{"mag":5.37,"bv":"0.495"},"geometry":{"type":"Point","coordinates":[-89.2871,-24.2825]}},{"type":"Feature","id":88404,"properties":{"mag":4.77,"bv":"0.410"},"geometry":{"type":"Point","coordinates":[-89.2295,-8.1803]}},{"type":"Feature","id":88469,"properties":{"mag":5.89,"bv":"0.031"},"geometry":{"type":"Point","coordinates":[-89.0315,-24.3607]}},{"type":"Feature","id":88550,"properties":{"mag":5.98,"bv":"1.160"},"geometry":{"type":"Point","coordinates":[-88.7901,-35.9014]}},{"type":"Feature","id":88567,"properties":{"mag":4.66,"bv":"0.774"},"geometry":{"type":"Point","coordinates":[-88.7449,-29.5801]}},{"type":"Feature","id":88601,"properties":{"mag":4.03,"bv":"0.860"},"geometry":{"type":"Point","coordinates":[-88.6363,2.5001]}},{"type":"Feature","id":88635,"properties":{"mag":2.98,"bv":"0.981"},"geometry":{"type":"Point","coordinates":[-88.548,-30.4241]}},{"type":"Feature","id":88636,"properties":{"mag":5.72,"bv":"1.179"},"geometry":{"type":"Point","coordinates":[-88.5433,32.2307]}},{"type":"Feature","id":88657,"properties":{"mag":4.96,"bv":"1.656"},"geometry":{"type":"Point","coordinates":[-88.4921,22.2189]}},{"type":"Feature","id":88670,"properties":{"mag":5.84,"bv":"0.184"},"geometry":{"type":"Point","coordinates":[-88.4692,-8.324]}},{"type":"Feature","id":88684,"properties":{"mag":5.74,"bv":"0.968"},"geometry":{"type":"Point","coordinates":[-88.4367,-4.7513]}},{"type":"Feature","id":88694,"properties":{"mag":5.94,"bv":"0.615"},"geometry":{"type":"Point","coordinates":[-88.4012,-36.0198]}},{"type":"Feature","id":88714,"properties":{"mag":3.65,"bv":"-0.101"},"geometry":{"type":"Point","coordinates":[-88.3422,-50.0915]}},{"type":"Feature","id":88726,"properties":{"mag":4.92,"bv":"0.255"},"geometry":{"type":"Point","coordinates":[-88.2921,-43.4252]}},{"type":"Feature","id":88745,"properties":{"mag":5.05,"bv":"0.528"},"geometry":{"type":"Point","coordinates":[-88.2436,30.5621]}},{"type":"Feature","id":88765,"properties":{"mag":4.64,"bv":"0.951"},"geometry":{"type":"Point","coordinates":[-88.1735,8.7339]}},{"type":"Feature","id":88771,"properties":{"mag":3.71,"bv":"0.159"},"geometry":{"type":"Point","coordinates":[-88.1626,9.5638]}},{"type":"Feature","id":88788,"properties":{"mag":5,"bv":"0.913"},"geometry":{"type":"Point","coordinates":[-88.1303,43.4619]}},{"type":"Feature","id":88794,"properties":{"mag":3.84,"bv":"-0.018"},"geometry":{"type":"Point","coordinates":[-88.1144,28.7625]}},{"type":"Feature","id":88816,"properties":{"mag":5.52,"bv":"1.132"},"geometry":{"type":"Point","coordinates":[-88.0486,-17.1542]}},{"type":"Feature","id":88817,"properties":{"mag":5.79,"bv":"0.127"},"geometry":{"type":"Point","coordinates":[-88.0437,26.0973]}},{"type":"Feature","id":88818,"properties":{"mag":5.83,"bv":"0.158"},"geometry":{"type":"Point","coordinates":[-88.0435,26.1013]}},{"type":"Feature","id":88836,"properties":{"mag":5.49,"bv":"1.161"},"geometry":{"type":"Point","coordinates":[-87.9907,36.4013]}},{"type":"Feature","id":88839,"properties":{"mag":4.55,"bv":"0.938"},"geometry":{"type":"Point","coordinates":[-87.9793,-28.4571]}},{"type":"Feature","id":88866,"properties":{"mag":4.33,"bv":"0.228"},"geometry":{"type":"Point","coordinates":[-87.8549,-63.6686]}},{"type":"Feature","id":88886,"properties":{"mag":4.37,"bv":"-0.164"},"geometry":{"type":"Point","coordinates":[-87.8105,20.8146]}},{"type":"Feature","id":88899,"properties":{"mag":5.1,"bv":"0.176"},"geometry":{"type":"Point","coordinates":[-87.7797,20.0452]}},{"type":"Feature","id":88964,"properties":{"mag":5.71,"bv":"0.363"},"geometry":{"type":"Point","coordinates":[-87.6088,3.9933]}},{"type":"Feature","id":89000,"properties":{"mag":5.67,"bv":"0.490"},"geometry":{"type":"Point","coordinates":[-87.5249,3.1198]}},{"type":"Feature","id":89008,"properties":{"mag":5.57,"bv":"0.915"},"geometry":{"type":"Point","coordinates":[-87.5042,36.4663]}},{"type":"Feature","id":89020,"properties":{"mag":5.53,"bv":"0.979"},"geometry":{"type":"Point","coordinates":[-87.4758,-30.7287]}},{"type":"Feature","id":89042,"properties":{"mag":5.47,"bv":"0.592"},"geometry":{"type":"Point","coordinates":[-87.391,-62.0022]}},{"type":"Feature","id":89047,"properties":{"mag":5.97,"bv":"0.943"},"geometry":{"type":"Point","coordinates":[-87.3682,54.2866]}},{"type":"Feature","id":89065,"properties":{"mag":5.5,"bv":"1.204"},"geometry":{"type":"Point","coordinates":[-87.3321,3.3243]}},{"type":"Feature","id":89099,"properties":{"mag":5.86,"bv":"0.295"},"geometry":{"type":"Point","coordinates":[-87.2268,-41.3591]}},{"type":"Feature","id":89112,"properties":{"mag":4.52,"bv":"1.009"},"geometry":{"type":"Point","coordinates":[-87.1927,-45.9544]}},{"type":"Feature","id":89115,"properties":{"mag":5.86,"bv":"1.253"},"geometry":{"type":"Point","coordinates":[-87.1842,-75.8915]}},{"type":"Feature","id":89153,"properties":{"mag":4.96,"bv":"1.055"},"geometry":{"type":"Point","coordinates":[-87.0694,-23.7012]}},{"type":"Feature","id":89156,"properties":{"mag":5.98,"bv":"0.045"},"geometry":{"type":"Point","coordinates":[-87.062,33.4471]}},{"type":"Feature","id":89172,"properties":{"mag":4.96,"bv":"1.643"},"geometry":{"type":"Point","coordinates":[-87.0243,31.4053]}},{"type":"Feature","id":89234,"properties":{"mag":5.86,"bv":"0.464"},"geometry":{"type":"Point","coordinates":[-86.8581,-73.6724]}},{"type":"Feature","id":89290,"properties":{"mag":5.47,"bv":"-0.155"},"geometry":{"type":"Point","coordinates":[-86.6971,-41.3361]}},{"type":"Feature","id":89341,"properties":{"mag":3.84,"bv":"0.195"},"geometry":{"type":"Point","coordinates":[-86.5591,-21.0588]}},{"type":"Feature","id":89348,"properties":{"mag":4.99,"bv":"0.440"},"geometry":{"type":"Point","coordinates":[-86.5257,64.3973]}},{"type":"Feature","id":89369,"properties":{"mag":5.49,"bv":"1.528"},"geometry":{"type":"Point","coordinates":[-86.4337,-21.7132]}},{"type":"Feature","id":89439,"properties":{"mag":5.29,"bv":"0.007"},"geometry":{"type":"Point","coordinates":[-86.1962,-20.7283]}},{"type":"Feature","id":89440,"properties":{"mag":5.96,"bv":"-0.023"},"geometry":{"type":"Point","coordinates":[-86.196,-20.388]}},{"type":"Feature","id":89448,"properties":{"mag":5.96,"bv":"1.055"},"geometry":{"type":"Point","coordinates":[-86.1788,68.7558]}},{"type":"Feature","id":89482,"properties":{"mag":5.56,"bv":"-0.111"},"geometry":{"type":"Point","coordinates":[-86.0884,42.1593]}},{"type":"Feature","id":89487,"properties":{"mag":5.58,"bv":"0.944"},"geometry":{"type":"Point","coordinates":[-86.0808,-63.0554]}},{"type":"Feature","id":89507,"properties":{"mag":5.45,"bv":"0.962"},"geometry":{"type":"Point","coordinates":[-86.0273,-44.2065]}},{"type":"Feature","id":89587,"properties":{"mag":5.99,"bv":"0.890"},"geometry":{"type":"Point","coordinates":[-85.7787,-3.0074]}},{"type":"Feature","id":89605,"properties":{"mag":5.36,"bv":"-0.050"},"geometry":{"type":"Point","coordinates":[-85.7186,-56.0234]}},{"type":"Feature","id":89609,"properties":{"mag":5.81,"bv":"1.569"},"geometry":{"type":"Point","coordinates":[-85.7015,-17.3739]}},{"type":"Feature","id":89642,"properties":{"mag":3.1,"bv":"1.582"},"geometry":{"type":"Point","coordinates":[-85.5932,-36.7617]}},{"type":"Feature","id":89678,"properties":{"mag":4.66,"bv":"1.629"},"geometry":{"type":"Point","coordinates":[-85.4867,-27.0426]}},{"type":"Feature","id":89772,"properties":{"mag":5.41,"bv":"1.084"},"geometry":{"type":"Point","coordinates":[-85.2103,7.2598]}},{"type":"Feature","id":89773,"properties":{"mag":5.3,"bv":"1.508"},"geometry":{"type":"Point","coordinates":[-85.2055,24.4461]}},{"type":"Feature","id":89826,"properties":{"mag":4.33,"bv":"1.162"},"geometry":{"type":"Point","coordinates":[-85.0345,36.0645]}},{"type":"Feature","id":89851,"properties":{"mag":5.39,"bv":"1.473"},"geometry":{"type":"Point","coordinates":[-84.9634,-15.8317]}},{"type":"Feature","id":89861,"properties":{"mag":4.92,"bv":"1.594"},"geometry":{"type":"Point","coordinates":[-84.9254,21.9613]}},{"type":"Feature","id":89908,"properties":{"mag":4.22,"bv":"-0.093"},"geometry":{"type":"Point","coordinates":[-84.8107,71.3378]}},{"type":"Feature","id":89918,"properties":{"mag":4.85,"bv":"0.911"},"geometry":{"type":"Point","coordinates":[-84.7831,3.3772]}},{"type":"Feature","id":89925,"properties":{"mag":5.61,"bv":"0.231"},"geometry":{"type":"Point","coordinates":[-84.7626,29.8589]}},{"type":"Feature","id":89931,"properties":{"mag":2.72,"bv":"1.380"},"geometry":{"type":"Point","coordinates":[-84.7515,-29.8281]}},{"type":"Feature","id":89935,"properties":{"mag":5.12,"bv":"0.212"},"geometry":{"type":"Point","coordinates":[-84.7457,28.87]}},{"type":"Feature","id":89937,"properties":{"mag":3.55,"bv":"0.489"},"geometry":{"type":"Point","coordinates":[-84.7359,72.7328]}},{"type":"Feature","id":89962,"properties":{"mag":3.23,"bv":"0.941"},"geometry":{"type":"Point","coordinates":[-84.6725,-2.8988]}},{"type":"Feature","id":89968,"properties":{"mag":5.76,"bv":"0.670"},"geometry":{"type":"Point","coordinates":[-84.6542,-18.86]}},{"type":"Feature","id":89981,"properties":{"mag":5.02,"bv":"1.619"},"geometry":{"type":"Point","coordinates":[-84.6139,49.1216]}},{"type":"Feature","id":90023,"properties":{"mag":5.41,"bv":"1.633"},"geometry":{"type":"Point","coordinates":[-84.4637,23.2852]}},{"type":"Feature","id":90037,"properties":{"mag":5.09,"bv":"1.498"},"geometry":{"type":"Point","coordinates":[-84.4226,-38.6569]}},{"type":"Feature","id":90052,"properties":{"mag":5.99,"bv":"0.056"},"geometry":{"type":"Point","coordinates":[-84.3528,12.0297]}},{"type":"Feature","id":90067,"properties":{"mag":5.25,"bv":"1.250"},"geometry":{"type":"Point","coordinates":[-84.2957,17.8266]}},{"type":"Feature","id":90074,"properties":{"mag":5.33,"bv":"-0.121"},"geometry":{"type":"Point","coordinates":[-84.2788,-36.6696]}},{"type":"Feature","id":90096,"properties":{"mag":5.71,"bv":"0.006"},"geometry":{"type":"Point","coordinates":[-84.1993,-12.0148]}},{"type":"Feature","id":90098,"properties":{"mag":4.35,"bv":"1.462"},"geometry":{"type":"Point","coordinates":[-84.1932,-61.4939]}},{"type":"Feature","id":90124,"properties":{"mag":5.52,"bv":"1.015"},"geometry":{"type":"Point","coordinates":[-84.1299,-36.238]}},{"type":"Feature","id":90133,"properties":{"mag":5.47,"bv":"0.043"},"geometry":{"type":"Point","coordinates":[-84.0981,-75.0443]}},{"type":"Feature","id":90135,"properties":{"mag":4.66,"bv":"0.932"},"geometry":{"type":"Point","coordinates":[-84.0851,-8.9344]}},{"type":"Feature","id":90139,"properties":{"mag":3.85,"bv":"1.168"},"geometry":{"type":"Point","coordinates":[-84.0755,21.7698]}},{"type":"Feature","id":90156,"properties":{"mag":4.98,"bv":"0.082"},"geometry":{"type":"Point","coordinates":[-84.0225,58.8007]}},{"type":"Feature","id":90185,"properties":{"mag":1.79,"bv":"-0.031"},"geometry":{"type":"Point","coordinates":[-83.957,-34.3846]}},{"type":"Feature","id":90191,"properties":{"mag":5.11,"bv":"0.047"},"geometry":{"type":"Point","coordinates":[-83.9426,39.5072]}},{"type":"Feature","id":90200,"properties":{"mag":5.24,"bv":"-0.163"},"geometry":{"type":"Point","coordinates":[-83.924,-44.1103]}},{"type":"Feature","id":90260,"properties":{"mag":5.58,"bv":"1.138"},"geometry":{"type":"Point","coordinates":[-83.7441,-30.7566]}},{"type":"Feature","id":90289,"properties":{"mag":4.81,"bv":"1.310"},"geometry":{"type":"Point","coordinates":[-83.6623,-20.5417]}},{"type":"Feature","id":90313,"properties":{"mag":5.64,"bv":"0.884"},"geometry":{"type":"Point","coordinates":[-83.5883,8.032]}},{"type":"Feature","id":90342,"properties":{"mag":5.81,"bv":"0.068"},"geometry":{"type":"Point","coordinates":[-83.5051,29.8289]}},{"type":"Feature","id":90344,"properties":{"mag":4.82,"bv":"1.179"},"geometry":{"type":"Point","coordinates":[-83.5036,65.5635]}},{"type":"Feature","id":90414,"properties":{"mag":5.44,"bv":"0.855"},"geometry":{"type":"Point","coordinates":[-83.2749,-48.1172]}},{"type":"Feature","id":90422,"properties":{"mag":3.49,"bv":"-0.179"},"geometry":{"type":"Point","coordinates":[-83.2566,-45.9685]}},{"type":"Feature","id":90441,"properties":{"mag":5.2,"bv":"0.487"},"geometry":{"type":"Point","coordinates":[-83.1979,0.1961]}},{"type":"Feature","id":90485,"properties":{"mag":5.9,"bv":"0.517"},"geometry":{"type":"Point","coordinates":[-83.0438,-29.8169]}},{"type":"Feature","id":90496,"properties":{"mag":2.82,"bv":"1.025"},"geometry":{"type":"Point","coordinates":[-83.0073,-25.4217]}},{"type":"Feature","id":90497,"properties":{"mag":5.71,"bv":"-0.034"},"geometry":{"type":"Point","coordinates":[-83.0051,6.1941]}},{"type":"Feature","id":90541,"properties":{"mag":5.63,"bv":"0.140"},"geometry":{"type":"Point","coordinates":[-82.887,-38.9957]}},{"type":"Feature","id":90568,"properties":{"mag":4.1,"bv":"0.995"},"geometry":{"type":"Point","coordinates":[-82.7923,-49.0706]}},{"type":"Feature","id":90595,"properties":{"mag":4.67,"bv":"0.076"},"geometry":{"type":"Point","coordinates":[-82.7006,-14.5658]}},{"type":"Feature","id":90606,"properties":{"mag":5.95,"bv":"1.173"},"geometry":{"type":"Point","coordinates":[-82.6669,-80.2327]}},{"type":"Feature","id":90637,"properties":{"mag":5.87,"bv":"-0.096"},"geometry":{"type":"Point","coordinates":[-82.6012,23.8662]}},{"type":"Feature","id":90642,"properties":{"mag":5.38,"bv":"0.961"},"geometry":{"type":"Point","coordinates":[-82.5793,-1.9853]}},{"type":"Feature","id":90647,"properties":{"mag":5.65,"bv":"1.192"},"geometry":{"type":"Point","coordinates":[-82.5626,77.5471]}},{"type":"Feature","id":90662,"properties":{"mag":5.69,"bv":"1.258"},"geometry":{"type":"Point","coordinates":[-82.5169,-47.2205]}},{"type":"Feature","id":90664,"properties":{"mag":5.74,"bv":"0.987"},"geometry":{"type":"Point","coordinates":[-82.5136,-57.5231]}},{"type":"Feature","id":90687,"properties":{"mag":5.63,"bv":"1.057"},"geometry":{"type":"Point","coordinates":[-82.4506,-18.7288]}},{"type":"Feature","id":90762,"properties":{"mag":5.76,"bv":"0.053"},"geometry":{"type":"Point","coordinates":[-82.2315,16.9286]}},{"type":"Feature","id":90763,"properties":{"mag":5.37,"bv":"0.182"},"geometry":{"type":"Point","coordinates":[-82.2298,-32.9891]}},{"type":"Feature","id":90797,"properties":{"mag":4.63,"bv":"-0.116"},"geometry":{"type":"Point","coordinates":[-82.1566,-62.2783]}},{"type":"Feature","id":90804,"properties":{"mag":5.77,"bv":"0.379"},"geometry":{"type":"Point","coordinates":[-82.1429,-10.7958]}},{"type":"Feature","id":90806,"properties":{"mag":5.12,"bv":"0.016"},"geometry":{"type":"Point","coordinates":[-82.1404,-18.4027]}},{"type":"Feature","id":90830,"properties":{"mag":4.92,"bv":"-0.101"},"geometry":{"type":"Point","coordinates":[-82.0607,-45.9148]}},{"type":"Feature","id":90842,"properties":{"mag":5.71,"bv":"1.322"},"geometry":{"type":"Point","coordinates":[-82.0157,-43.5074]}},{"type":"Feature","id":90844,"properties":{"mag":5.93,"bv":"0.170"},"geometry":{"type":"Point","coordinates":[-82.0125,-1.003]}},{"type":"Feature","id":90853,"properties":{"mag":5.07,"bv":"-0.127"},"geometry":{"type":"Point","coordinates":[-81.9919,-45.7574]}},{"type":"Feature","id":90887,"properties":{"mag":5.16,"bv":"0.079"},"geometry":{"type":"Point","coordinates":[-81.9111,-39.704]}},{"type":"Feature","id":90905,"properties":{"mag":4.77,"bv":"0.611"},"geometry":{"type":"Point","coordinates":[-81.8562,57.0456]}},{"type":"Feature","id":90913,"properties":{"mag":5.47,"bv":"1.998"},"geometry":{"type":"Point","coordinates":[-81.8195,-14.8657]}},{"type":"Feature","id":90915,"properties":{"mag":5.88,"bv":"1.490"},"geometry":{"type":"Point","coordinates":[-81.8077,23.6168]}},{"type":"Feature","id":90923,"properties":{"mag":5.47,"bv":"-0.077"},"geometry":{"type":"Point","coordinates":[-81.7918,30.5542]}},{"type":"Feature","id":90930,"properties":{"mag":5.88,"bv":"0.992"},"geometry":{"type":"Point","coordinates":[-81.7694,-73.9656]}},{"type":"Feature","id":90968,"properties":{"mag":5.67,"bv":"-0.060"},"geometry":{"type":"Point","coordinates":[-81.6536,-38.726]}},{"type":"Feature","id":90982,"properties":{"mag":4.62,"bv":"0.994"},"geometry":{"type":"Point","coordinates":[-81.6242,-42.3125]}},{"type":"Feature","id":90991,"properties":{"mag":5.74,"bv":"0.043"},"geometry":{"type":"Point","coordinates":[-81.5874,-14.8536]}},{"type":"Feature","id":91004,"properties":{"mag":5.49,"bv":"1.795"},"geometry":{"type":"Point","coordinates":[-81.5271,-24.0323]}},{"type":"Feature","id":91013,"properties":{"mag":5.38,"bv":"1.091"},"geometry":{"type":"Point","coordinates":[-81.5138,52.3535]}},{"type":"Feature","id":91014,"properties":{"mag":5.28,"bv":"-0.115"},"geometry":{"type":"Point","coordinates":[-81.5093,-33.0166]}},{"type":"Feature","id":91105,"properties":{"mag":5.12,"bv":"0.926"},"geometry":{"type":"Point","coordinates":[-81.24,-10.9772]}},{"type":"Feature","id":91117,"properties":{"mag":3.85,"bv":"1.317"},"geometry":{"type":"Point","coordinates":[-81.1982,-8.2441]}},{"type":"Feature","id":91118,"properties":{"mag":5.79,"bv":"0.006"},"geometry":{"type":"Point","coordinates":[-81.1975,18.2034]}},{"type":"Feature","id":91139,"properties":{"mag":5.62,"bv":"1.015"},"geometry":{"type":"Point","coordinates":[-81.1233,23.6055]}},{"type":"Feature","id":91217,"properties":{"mag":5.38,"bv":"0.387"},"geometry":{"type":"Point","coordinates":[-80.884,9.1225]}},{"type":"Feature","id":91235,"properties":{"mag":5.41,"bv":"-0.101"},"geometry":{"type":"Point","coordinates":[-80.8444,33.469]}},{"type":"Feature","id":91237,"properties":{"mag":5.43,"bv":"0.386"},"geometry":{"type":"Point","coordinates":[-80.8372,6.6718]}},{"type":"Feature","id":91262,"properties":{"mag":0.03,"bv":"-0.001"},"geometry":{"type":"Point","coordinates":[-80.7653,38.7837]}},{"type":"Feature","id":91315,"properties":{"mag":5.74,"bv":"-0.045"},"geometry":{"type":"Point","coordinates":[-80.6104,62.5266]}},{"type":"Feature","id":91322,"properties":{"mag":5.76,"bv":"0.067"},"geometry":{"type":"Point","coordinates":[-80.6002,-0.3095]}},{"type":"Feature","id":91347,"properties":{"mag":5.93,"bv":"0.189"},"geometry":{"type":"Point","coordinates":[-80.5232,-21.3977]}},{"type":"Feature","id":91405,"properties":{"mag":5.78,"bv":"-0.018"},"geometry":{"type":"Point","coordinates":[-80.372,-23.5049]}},{"type":"Feature","id":91438,"properties":{"mag":5.85,"bv":"0.673"},"geometry":{"type":"Point","coordinates":[-80.2775,-21.0519]}},{"type":"Feature","id":91461,"properties":{"mag":5.84,"bv":"0.233"},"geometry":{"type":"Point","coordinates":[-80.1904,-47.9098]}},{"type":"Feature","id":91494,"properties":{"mag":5.42,"bv":"1.654"},"geometry":{"type":"Point","coordinates":[-80.1035,-43.1859]}},{"type":"Feature","id":91525,"properties":{"mag":6,"bv":"-0.067"},"geometry":{"type":"Point","coordinates":[-80.0299,52.1961]}},{"type":"Feature","id":91532,"properties":{"mag":5.82,"bv":"1.536"},"geometry":{"type":"Point","coordinates":[-79.9984,-7.7908]}},{"type":"Feature","id":91726,"properties":{"mag":4.7,"bv":"0.358"},"geometry":{"type":"Point","coordinates":[-79.4316,-9.0525]}},{"type":"Feature","id":91755,"properties":{"mag":5.03,"bv":"-0.070"},"geometry":{"type":"Point","coordinates":[-79.3419,55.5395]}},{"type":"Feature","id":91792,"properties":{"mag":4.01,"bv":"1.134"},"geometry":{"type":"Point","coordinates":[-79.2411,-71.4281]}},{"type":"Feature","id":91845,"properties":{"mag":4.88,"bv":"1.112"},"geometry":{"type":"Point","coordinates":[-79.1198,-8.2752]}},{"type":"Feature","id":91854,"properties":{"mag":5.76,"bv":"0.967"},"geometry":{"type":"Point","coordinates":[-79.0944,-64.5514]}},{"type":"Feature","id":91875,"properties":{"mag":5.11,"bv":"0.075"},"geometry":{"type":"Point","coordinates":[-79.0544,-38.3234]}},{"type":"Feature","id":91883,"properties":{"mag":5.68,"bv":"0.360"},"geometry":{"type":"Point","coordinates":[-79.035,31.9266]}},{"type":"Feature","id":91918,"properties":{"mag":4.86,"bv":"-0.168"},"geometry":{"type":"Point","coordinates":[-78.9193,-35.642]}},{"type":"Feature","id":91919,"properties":{"mag":4.67,"bv":"0.170"},"geometry":{"type":"Point","coordinates":[-78.9152,39.6701]}},{"type":"Feature","id":91926,"properties":{"mag":4.59,"bv":"0.180"},"geometry":{"type":"Point","coordinates":[-78.9051,39.6127]}},{"type":"Feature","id":91971,"properties":{"mag":4.34,"bv":"0.192"},"geometry":{"type":"Point","coordinates":[-78.8068,37.6051]}},{"type":"Feature","id":91973,"properties":{"mag":5.73,"bv":"0.285"},"geometry":{"type":"Point","coordinates":[-78.7992,37.5946]}},{"type":"Feature","id":91974,"properties":{"mag":5.82,"bv":"0.033"},"geometry":{"type":"Point","coordinates":[-78.7933,-25.0109]}},{"type":"Feature","id":91975,"properties":{"mag":5.02,"bv":"-0.055"},"geometry":{"type":"Point","coordinates":[-78.7919,2.06]}},{"type":"Feature","id":91989,"properties":{"mag":5.4,"bv":"0.850"},"geometry":{"type":"Point","coordinates":[-78.7618,-39.6862]}},{"type":"Feature","id":92024,"properties":{"mag":4.78,"bv":"0.199"},"geometry":{"type":"Point","coordinates":[-78.6379,-64.8713]}},{"type":"Feature","id":92027,"properties":{"mag":5.82,"bv":"0.041"},"geometry":{"type":"Point","coordinates":[-78.6318,5.5001]}},{"type":"Feature","id":92041,"properties":{"mag":3.17,"bv":"-0.107"},"geometry":{"type":"Point","coordinates":[-78.5859,-26.9908]}},{"type":"Feature","id":92043,"properties":{"mag":4.19,"bv":"0.483"},"geometry":{"type":"Point","coordinates":[-78.5845,20.5463]}},{"type":"Feature","id":92056,"properties":{"mag":5.25,"bv":"0.953"},"geometry":{"type":"Point","coordinates":[-78.5551,74.0856]}},{"type":"Feature","id":92088,"properties":{"mag":4.83,"bv":"1.199"},"geometry":{"type":"Point","coordinates":[-78.4813,26.6621]}},{"type":"Feature","id":92111,"properties":{"mag":5.37,"bv":"1.591"},"geometry":{"type":"Point","coordinates":[-78.4141,-22.3922]}},{"type":"Feature","id":92112,"properties":{"mag":5.37,"bv":"0.049"},"geometry":{"type":"Point","coordinates":[-78.4074,75.434]}},{"type":"Feature","id":92117,"properties":{"mag":5.89,"bv":"0.131"},"geometry":{"type":"Point","coordinates":[-78.3809,-0.9617]}},{"type":"Feature","id":92133,"properties":{"mag":5.91,"bv":"-0.096"},"geometry":{"type":"Point","coordinates":[-78.3205,52.988]}},{"type":"Feature","id":92136,"properties":{"mag":5.69,"bv":"0.584"},"geometry":{"type":"Point","coordinates":[-78.3195,-10.125]}},{"type":"Feature","id":92161,"properties":{"mag":4.34,"bv":"0.148"},"geometry":{"type":"Point","coordinates":[-78.2447,18.1815]}},{"type":"Feature","id":92175,"properties":{"mag":4.22,"bv":"1.087"},"geometry":{"type":"Point","coordinates":[-78.2064,-4.7479]}},{"type":"Feature","id":92202,"properties":{"mag":5.38,"bv":"1.280"},"geometry":{"type":"Point","coordinates":[-78.1294,-5.7051]}},{"type":"Feature","id":92226,"properties":{"mag":5.2,"bv":"0.781"},"geometry":{"type":"Point","coordinates":[-78.0641,-40.4062]}},{"type":"Feature","id":92294,"properties":{"mag":5.71,"bv":"0.268"},"geometry":{"type":"Point","coordinates":[-77.8421,-65.0777]}},{"type":"Feature","id":92308,"properties":{"mag":5.46,"bv":"0.133"},"geometry":{"type":"Point","coordinates":[-77.7896,-43.68]}},{"type":"Feature","id":92312,"properties":{"mag":5.89,"bv":"0.022"},"geometry":{"type":"Point","coordinates":[-77.7776,19.3287]}},{"type":"Feature","id":92367,"properties":{"mag":5.8,"bv":"0.891"},"geometry":{"type":"Point","coordinates":[-77.6361,-45.8101]}},{"type":"Feature","id":92382,"properties":{"mag":5.6,"bv":"-0.077"},"geometry":{"type":"Point","coordinates":[-77.6042,-43.4341]}},{"type":"Feature","id":92390,"properties":{"mag":5.22,"bv":"1.404"},"geometry":{"type":"Point","coordinates":[-77.5829,-20.3247]}},{"type":"Feature","id":92391,"properties":{"mag":5.99,"bv":"1.568"},"geometry":{"type":"Point","coordinates":[-77.5794,-5.9129]}},{"type":"Feature","id":92398,"properties":{"mag":5.93,"bv":"-0.154"},"geometry":{"type":"Point","coordinates":[-77.5587,32.8128]}},{"type":"Feature","id":92405,"properties":{"mag":5.22,"bv":"0.100"},"geometry":{"type":"Point","coordinates":[-77.5295,32.5511]}},{"type":"Feature","id":92420,"properties":{"mag":3.52,"bv":"0.003"},"geometry":{"type":"Point","coordinates":[-77.48,33.3627]}},{"type":"Feature","id":92488,"properties":{"mag":5.82,"bv":"0.594"},"geometry":{"type":"Point","coordinates":[-77.2562,-9.7741]}},{"type":"Feature","id":92512,"properties":{"mag":4.63,"bv":"1.185"},"geometry":{"type":"Point","coordinates":[-77.1996,59.3884]}},{"type":"Feature","id":92549,"properties":{"mag":5.51,"bv":"0.843"},"geometry":{"type":"Point","coordinates":[-77.1044,52.9751]}},{"type":"Feature","id":92609,"properties":{"mag":4.22,"bv":"-0.150"},"geometry":{"type":"Point","coordinates":[-76.9457,-62.1876]}},{"type":"Feature","id":92614,"properties":{"mag":5.43,"bv":"-0.068"},"geometry":{"type":"Point","coordinates":[-76.9315,21.4251]}},{"type":"Feature","id":92630,"properties":{"mag":5.51,"bv":"1.641"},"geometry":{"type":"Point","coordinates":[-76.8865,-46.5951]}},{"type":"Feature","id":92646,"properties":{"mag":5.18,"bv":"0.962"},"geometry":{"type":"Point","coordinates":[-76.8348,-52.1074]}},{"type":"Feature","id":92689,"properties":{"mag":4.92,"bv":"0.903"},"geometry":{"type":"Point","coordinates":[-76.6936,50.7082]}},{"type":"Feature","id":92728,"properties":{"mag":5.58,"bv":"-0.138"},"geometry":{"type":"Point","coordinates":[-76.5685,36.9717]}},{"type":"Feature","id":92747,"properties":{"mag":5.68,"bv":"1.206"},"geometry":{"type":"Point","coordinates":[-76.4996,-21.3598]}},{"type":"Feature","id":92761,"properties":{"mag":4.86,"bv":"1.412"},"geometry":{"type":"Point","coordinates":[-76.4576,-22.7448]}},{"type":"Feature","id":92768,"properties":{"mag":5.64,"bv":"1.361"},"geometry":{"type":"Point","coordinates":[-76.4448,27.9095]}},{"type":"Feature","id":92782,"properties":{"mag":4.82,"bv":"1.151"},"geometry":{"type":"Point","coordinates":[-76.4006,71.2972]}},{"type":"Feature","id":92791,"properties":{"mag":4.22,"bv":"1.575"},"geometry":{"type":"Point","coordinates":[-76.3738,36.8986]}},{"type":"Feature","id":92814,"properties":{"mag":5.08,"bv":"0.141"},"geometry":{"type":"Point","coordinates":[-76.3204,-15.603]}},{"type":"Feature","id":92818,"properties":{"mag":4.57,"bv":"0.782"},"geometry":{"type":"Point","coordinates":[-76.313,22.6451]}},{"type":"Feature","id":92822,"properties":{"mag":5.84,"bv":"0.452"},"geometry":{"type":"Point","coordinates":[-76.3036,48.8594]}},{"type":"Feature","id":92824,"properties":{"mag":5.29,"bv":"1.304"},"geometry":{"type":"Point","coordinates":[-76.3036,-87.6058]}},{"type":"Feature","id":92831,"properties":{"mag":5.46,"bv":"1.034"},"geometry":{"type":"Point","coordinates":[-76.2826,41.6027]}},{"type":"Feature","id":92833,"properties":{"mag":5.99,"bv":"0.922"},"geometry":{"type":"Point","coordinates":[-76.2812,33.9686]}},{"type":"Feature","id":92845,"properties":{"mag":5,"bv":"1.348"},"geometry":{"type":"Point","coordinates":[-76.2202,-22.6713]}},{"type":"Feature","id":92855,"properties":{"mag":2.05,"bv":"-0.134"},"geometry":{"type":"Point","coordinates":[-76.1836,-26.2967]}},{"type":"Feature","id":92862,"properties":{"mag":4.08,"bv":"1.397"},"geometry":{"type":"Point","coordinates":[-76.1662,43.9461]}},{"type":"Feature","id":92872,"properties":{"mag":5.58,"bv":"1.041"},"geometry":{"type":"Point","coordinates":[-76.1356,6.6153]}},{"type":"Feature","id":92882,"properties":{"mag":5.56,"bv":"0.445"},"geometry":{"type":"Point","coordinates":[-76.1208,-16.3766]}},{"type":"Feature","id":92931,"properties":{"mag":5.91,"bv":"-0.021"},"geometry":{"type":"Point","coordinates":[-75.9972,-23.1738]}},{"type":"Feature","id":92937,"properties":{"mag":5.69,"bv":"1.092"},"geometry":{"type":"Point","coordinates":[-75.9745,18.1054]}},{"type":"Feature","id":92946,"properties":{"mag":4.62,"bv":"0.161"},"geometry":{"type":"Point","coordinates":[-75.9451,4.2036]}},{"type":"Feature","id":92951,"properties":{"mag":4.98,"bv":"0.204"},"geometry":{"type":"Point","coordinates":[-75.939,4.2021]}},{"type":"Feature","id":92953,"properties":{"mag":5.35,"bv":"0.998"},"geometry":{"type":"Point","coordinates":[-75.9294,-42.7107]}},{"type":"Feature","id":92969,"properties":{"mag":5.62,"bv":"0.938"},"geometry":{"type":"Point","coordinates":[-75.8928,65.2581]}},{"type":"Feature","id":92989,"properties":{"mag":5.36,"bv":"-0.147"},"geometry":{"type":"Point","coordinates":[-75.8313,-37.3432]}},{"type":"Feature","id":92997,"properties":{"mag":5.67,"bv":"1.155"},"geometry":{"type":"Point","coordinates":[-75.8123,57.8149]}},{"type":"Feature","id":93015,"properties":{"mag":4.4,"bv":"0.530"},"geometry":{"type":"Point","coordinates":[-75.7624,-67.2335]}},{"type":"Feature","id":93017,"properties":{"mag":5.2,"bv":"0.594"},"geometry":{"type":"Point","coordinates":[-75.7433,32.9013]}},{"type":"Feature","id":93026,"properties":{"mag":4.83,"bv":"1.057"},"geometry":{"type":"Point","coordinates":[-75.7347,-5.8463]}},{"type":"Feature","id":93051,"properties":{"mag":5.56,"bv":"0.004"},"geometry":{"type":"Point","coordinates":[-75.6809,2.5353]}},{"type":"Feature","id":93057,"properties":{"mag":5.02,"bv":"0.137"},"geometry":{"type":"Point","coordinates":[-75.6647,-20.6563]}},{"type":"Feature","id":93085,"properties":{"mag":3.52,"bv":"1.151"},"geometry":{"type":"Point","coordinates":[-75.5675,-21.1067]}},{"type":"Feature","id":93104,"properties":{"mag":5.89,"bv":"-0.090"},"geometry":{"type":"Point","coordinates":[-75.4921,38.2662]}},{"type":"Feature","id":93124,"properties":{"mag":5.33,"bv":"0.731"},"geometry":{"type":"Point","coordinates":[-75.4386,17.3609]}},{"type":"Feature","id":93148,"properties":{"mag":4.85,"bv":"-0.051"},"geometry":{"type":"Point","coordinates":[-75.3843,-52.9386]}},{"type":"Feature","id":93163,"properties":{"mag":5.14,"bv":"1.355"},"geometry":{"type":"Point","coordinates":[-75.3481,-60.2005]}},{"type":"Feature","id":93174,"properties":{"mag":4.83,"bv":"0.396"},"geometry":{"type":"Point","coordinates":[-75.3193,-37.1074]}},{"type":"Feature","id":93179,"properties":{"mag":5.91,"bv":"0.251"},"geometry":{"type":"Point","coordinates":[-75.3045,13.9066]}},{"type":"Feature","id":93194,"properties":{"mag":3.25,"bv":"-0.049"},"geometry":{"type":"Point","coordinates":[-75.2641,32.6896]}},{"type":"Feature","id":93203,"properties":{"mag":5.27,"bv":"0.573"},"geometry":{"type":"Point","coordinates":[-75.2261,13.6222]}},{"type":"Feature","id":93225,"properties":{"mag":5.51,"bv":"-0.038"},"geometry":{"type":"Point","coordinates":[-75.1508,-12.8405]}},{"type":"Feature","id":93244,"properties":{"mag":4.02,"bv":"1.082"},"geometry":{"type":"Point","coordinates":[-75.0943,15.0683]}},{"type":"Feature","id":93256,"properties":{"mag":5.26,"bv":"1.228"},"geometry":{"type":"Point","coordinates":[-75.0605,26.2304]}},{"type":"Feature","id":93279,"properties":{"mag":4.94,"bv":"1.465"},"geometry":{"type":"Point","coordinates":[-74.9966,32.1455]}},{"type":"Feature","id":93287,"properties":{"mag":5.98,"bv":"0.977"},"geometry":{"type":"Point","coordinates":[-74.9851,-66.6536]}},{"type":"Feature","id":93299,"properties":{"mag":5.39,"bv":"-0.182"},"geometry":{"type":"Point","coordinates":[-74.943,50.5335]}},{"type":"Feature","id":93340,"properties":{"mag":5.51,"bv":"0.862"},"geometry":{"type":"Point","coordinates":[-74.8189,55.6583]}},{"type":"Feature","id":93393,"properties":{"mag":5.69,"bv":"-0.086"},"geometry":{"type":"Point","coordinates":[-74.6777,26.2914]}},{"type":"Feature","id":93408,"properties":{"mag":5,"bv":"0.186"},"geometry":{"type":"Point","coordinates":[-74.6401,46.9348]}},{"type":"Feature","id":93429,"properties":{"mag":4.02,"bv":"1.079"},"geometry":{"type":"Point","coordinates":[-74.5799,-5.7391]}},{"type":"Feature","id":93498,"properties":{"mag":5.63,"bv":"1.232"},"geometry":{"type":"Point","coordinates":[-74.3847,-24.8468]}},{"type":"Feature","id":93506,"properties":{"mag":2.6,"bv":"0.062"},"geometry":{"type":"Point","coordinates":[-74.347,-29.8801]}},{"type":"Feature","id":93526,"properties":{"mag":5.4,"bv":"-0.005"},"geometry":{"type":"Point","coordinates":[-74.2729,-3.699]}},{"type":"Feature","id":93537,"properties":{"mag":5.96,"bv":"1.158"},"geometry":{"type":"Point","coordinates":[-74.2341,-19.2457]}},{"type":"Feature","id":93542,"properties":{"mag":4.74,"bv":"-0.027"},"geometry":{"type":"Point","coordinates":[-74.2213,-42.0951]}},{"type":"Feature","id":93552,"properties":{"mag":5.73,"bv":"0.328"},"geometry":{"type":"Point","coordinates":[-74.1763,-38.2531]}},{"type":"Feature","id":93574,"properties":{"mag":5.89,"bv":"0.553"},"geometry":{"type":"Point","coordinates":[-74.1265,-68.7555]}},{"type":"Feature","id":93580,"properties":{"mag":5.82,"bv":"0.182"},"geometry":{"type":"Point","coordinates":[-74.1156,1.8188]}},{"type":"Feature","id":93624,"properties":{"mag":5.93,"bv":"1.236"},"geometry":{"type":"Point","coordinates":[-74.0102,-51.0186]}},{"type":"Feature","id":93667,"properties":{"mag":5.49,"bv":"0.026"},"geometry":{"type":"Point","coordinates":[-73.8956,-31.0471]}},{"type":"Feature","id":93683,"properties":{"mag":3.76,"bv":"1.012"},"geometry":{"type":"Point","coordinates":[-73.8292,-21.7415]}},{"type":"Feature","id":93713,"properties":{"mag":5.4,"bv":"-0.014"},"geometry":{"type":"Point","coordinates":[-73.7701,53.3967]}},{"type":"Feature","id":93717,"properties":{"mag":5.4,"bv":"1.120"},"geometry":{"type":"Point","coordinates":[-73.7597,-4.0314]}},{"type":"Feature","id":93718,"properties":{"mag":5.63,"bv":"1.548"},"geometry":{"type":"Point","coordinates":[-73.7589,31.7441]}},{"type":"Feature","id":93747,"properties":{"mag":2.99,"bv":"0.014"},"geometry":{"type":"Point","coordinates":[-73.6475,13.8635]}},{"type":"Feature","id":93763,"properties":{"mag":5.93,"bv":"-0.015"},"geometry":{"type":"Point","coordinates":[-73.5784,-15.6604]}},{"type":"Feature","id":93805,"properties":{"mag":3.43,"bv":"-0.096"},"geometry":{"type":"Point","coordinates":[-73.4378,-4.8826]}},{"type":"Feature","id":93815,"properties":{"mag":5.17,"bv":"0.532"},"geometry":{"type":"Point","coordinates":[-73.4169,-52.3409]}},{"type":"Feature","id":93825,"properties":{"mag":4.23,"bv":"0.523"},"geometry":{"type":"Point","coordinates":[-73.3954,-37.0634]}},{"type":"Feature","id":93843,"properties":{"mag":5.53,"bv":"0.296"},"geometry":{"type":"Point","coordinates":[-73.3428,28.6286]}},{"type":"Feature","id":93845,"properties":{"mag":5.78,"bv":"0.104"},"geometry":{"type":"Point","coordinates":[-73.34,24.2508]}},{"type":"Feature","id":93855,"properties":{"mag":6,"bv":"-0.025"},"geometry":{"type":"Point","coordinates":[-73.2828,-16.2293]}},{"type":"Feature","id":93862,"properties":{"mag":5.95,"bv":"-0.017"},"geometry":{"type":"Point","coordinates":[-73.2683,-48.2991]}},{"type":"Feature","id":93864,"properties":{"mag":3.32,"bv":"1.169"},"geometry":{"type":"Point","coordinates":[-73.265,-27.6704]}},{"type":"Feature","id":93867,"properties":{"mag":5.07,"bv":"-0.055"},"geometry":{"type":"Point","coordinates":[-73.2558,11.0712]}},{"type":"Feature","id":93903,"properties":{"mag":5.25,"bv":"-0.109"},"geometry":{"type":"Point","coordinates":[-73.1745,36.1002]}},{"type":"Feature","id":93917,"properties":{"mag":5.2,"bv":"0.367"},"geometry":{"type":"Point","coordinates":[-73.1434,32.5017]}},{"type":"Feature","id":93996,"properties":{"mag":5.56,"bv":"-0.087"},"geometry":{"type":"Point","coordinates":[-72.9304,-19.2903]}},{"type":"Feature","id":94005,"properties":{"mag":4.57,"bv":"1.070"},"geometry":{"type":"Point","coordinates":[-72.9126,-40.4967]}},{"type":"Feature","id":94013,"properties":{"mag":5.88,"bv":"1.086"},"geometry":{"type":"Point","coordinates":[-72.8925,52.4257]}},{"type":"Feature","id":94068,"properties":{"mag":5.23,"bv":"0.346"},"geometry":{"type":"Point","coordinates":[-72.7504,6.0732]}},{"type":"Feature","id":94083,"properties":{"mag":5.11,"bv":"0.308"},"geometry":{"type":"Point","coordinates":[-72.7088,76.5605]}},{"type":"Feature","id":94114,"properties":{"mag":4.11,"bv":"0.042"},"geometry":{"type":"Point","coordinates":[-72.6319,-37.9045]}},{"type":"Feature","id":94141,"properties":{"mag":2.88,"bv":"0.377"},"geometry":{"type":"Point","coordinates":[-72.559,-21.0236]}},{"type":"Feature","id":94150,"properties":{"mag":5.31,"bv":"0.901"},"geometry":{"type":"Point","coordinates":[-72.5297,-68.4244]}},{"type":"Feature","id":94157,"properties":{"mag":5.86,"bv":"-0.080"},"geometry":{"type":"Point","coordinates":[-72.5098,-41.8923]}},{"type":"Feature","id":94160,"properties":{"mag":4.1,"bv":"1.163"},"geometry":{"type":"Point","coordinates":[-72.4927,-39.3408]}},{"type":"Feature","id":94302,"properties":{"mag":5.13,"bv":"1.008"},"geometry":{"type":"Point","coordinates":[-72.0809,56.8592]}},{"type":"Feature","id":94311,"properties":{"mag":5.93,"bv":"-0.062"},"geometry":{"type":"Point","coordinates":[-72.0583,31.2835]}},{"type":"Feature","id":94336,"properties":{"mag":5.85,"bv":"0.666"},"geometry":{"type":"Point","coordinates":[-71.979,49.8558]}},{"type":"Feature","id":94376,"properties":{"mag":3.07,"bv":"0.990"},"geometry":{"type":"Point","coordinates":[-71.8612,67.6615]}},{"type":"Feature","id":94385,"properties":{"mag":5.35,"bv":"0.094"},"geometry":{"type":"Point","coordinates":[-71.8304,-7.9395]}},{"type":"Feature","id":94434,"properties":{"mag":5.79,"bv":"1.387"},"geometry":{"type":"Point","coordinates":[-71.693,-25.9068]}},{"type":"Feature","id":94437,"properties":{"mag":5.51,"bv":"1.442"},"geometry":{"type":"Point","coordinates":[-71.6853,-12.2826]}},{"type":"Feature","id":94477,"properties":{"mag":5.14,"bv":"-0.071"},"geometry":{"type":"Point","coordinates":[-71.5721,2.2937]}},{"type":"Feature","id":94481,"properties":{"mag":4.43,"bv":"-0.150"},"geometry":{"type":"Point","coordinates":[-71.5605,39.146]}},{"type":"Feature","id":94490,"properties":{"mag":5,"bv":"1.156"},"geometry":{"type":"Point","coordinates":[-71.5202,57.7051]}},{"type":"Feature","id":94556,"properties":{"mag":5.91,"bv":"0.902"},"geometry":{"type":"Point","coordinates":[-71.3352,-45.1935]}},{"type":"Feature","id":94620,"properties":{"mag":5.65,"bv":"0.121"},"geometry":{"type":"Point","coordinates":[-71.1777,21.2321]}},{"type":"Feature","id":94624,"properties":{"mag":5.58,"bv":"1.067"},"geometry":{"type":"Point","coordinates":[-71.1663,15.0837]}},{"type":"Feature","id":94630,"properties":{"mag":5.88,"bv":"1.665"},"geometry":{"type":"Point","coordinates":[-71.1464,30.5264]}},{"type":"Feature","id":94643,"properties":{"mag":4.86,"bv":"0.569"},"geometry":{"type":"Point","coordinates":[-71.1149,-25.2567]}},{"type":"Feature","id":94648,"properties":{"mag":4.45,"bv":"1.257"},"geometry":{"type":"Point","coordinates":[-71.1123,73.3555]}},{"type":"Feature","id":94703,"properties":{"mag":4.76,"bv":"-0.058"},"geometry":{"type":"Point","coordinates":[-70.9457,21.3904]}},{"type":"Feature","id":94712,"properties":{"mag":5.38,"bv":"1.349"},"geometry":{"type":"Point","coordinates":[-70.9094,-45.466]}},{"type":"Feature","id":94713,"properties":{"mag":4.35,"bv":"1.258"},"geometry":{"type":"Point","coordinates":[-70.9079,38.1337]}},{"type":"Feature","id":94720,"properties":{"mag":5.65,"bv":"-0.020"},"geometry":{"type":"Point","coordinates":[-70.8884,14.5446]}},{"type":"Feature","id":94727,"properties":{"mag":5.59,"bv":"0.101"},"geometry":{"type":"Point","coordinates":[-70.8707,4.8348]}},{"type":"Feature","id":94779,"properties":{"mag":3.8,"bv":"0.950"},"geometry":{"type":"Point","coordinates":[-70.7243,53.3685]}},{"type":"Feature","id":94789,"properties":{"mag":5.52,"bv":"0.170"},"geometry":{"type":"Point","coordinates":[-70.699,-66.661]}},{"type":"Feature","id":94820,"properties":{"mag":4.88,"bv":"1.013"},"geometry":{"type":"Point","coordinates":[-70.5913,-18.9529]}},{"type":"Feature","id":94827,"properties":{"mag":5.46,"bv":"0.020"},"geometry":{"type":"Point","coordinates":[-70.5682,23.0255]}},{"type":"Feature","id":94834,"properties":{"mag":5.28,"bv":"0.196"},"geometry":{"type":"Point","coordinates":[-70.5458,11.5954]}},{"type":"Feature","id":94885,"properties":{"mag":5.1,"bv":"1.143"},"geometry":{"type":"Point","coordinates":[-70.3646,1.0851]}},{"type":"Feature","id":94982,"properties":{"mag":5.53,"bv":"0.265"},"geometry":{"type":"Point","coordinates":[-70.086,12.3747]}},{"type":"Feature","id":94986,"properties":{"mag":5.59,"bv":"-0.122"},"geometry":{"type":"Point","coordinates":[-70.0834,-35.4215]}},{"type":"Feature","id":95038,"properties":{"mag":5.91,"bv":"1.626"},"geometry":{"type":"Point","coordinates":[-69.9332,57.6451]}},{"type":"Feature","id":95066,"properties":{"mag":4.98,"bv":"0.937"},"geometry":{"type":"Point","coordinates":[-69.8629,-5.4158]}},{"type":"Feature","id":95073,"properties":{"mag":5.46,"bv":"-0.041"},"geometry":{"type":"Point","coordinates":[-69.8513,-0.8922]}},{"type":"Feature","id":95077,"properties":{"mag":5.59,"bv":"0.276"},"geometry":{"type":"Point","coordinates":[-69.841,-22.4025]}},{"type":"Feature","id":95081,"properties":{"mag":4.6,"bv":"0.033"},"geometry":{"type":"Point","coordinates":[-69.833,65.7145]}},{"type":"Feature","id":95168,"properties":{"mag":3.92,"bv":"0.228"},"geometry":{"type":"Point","coordinates":[-69.5818,-17.8472]}},{"type":"Feature","id":95176,"properties":{"mag":4.52,"bv":"0.079"},"geometry":{"type":"Point","coordinates":[-69.5682,-15.955]}},{"type":"Feature","id":95188,"properties":{"mag":5.84,"bv":"1.062"},"geometry":{"type":"Point","coordinates":[-69.5379,-18.3084]}},{"type":"Feature","id":95222,"properties":{"mag":5.81,"bv":"1.093"},"geometry":{"type":"Point","coordinates":[-69.4102,-0.2523]}},{"type":"Feature","id":95241,"properties":{"mag":3.96,"bv":"-0.085"},"geometry":{"type":"Point","coordinates":[-69.3404,-44.459]}},{"type":"Feature","id":95260,"properties":{"mag":5.22,"bv":"-0.119"},"geometry":{"type":"Point","coordinates":[-69.288,26.2624]}},{"type":"Feature","id":95261,"properties":{"mag":5.03,"bv":"0.020"},"geometry":{"type":"Point","coordinates":[-69.2866,-54.4239]}},{"type":"Feature","id":95294,"properties":{"mag":4.27,"bv":"0.350"},"geometry":{"type":"Point","coordinates":[-69.1953,-44.7998]}},{"type":"Feature","id":95347,"properties":{"mag":3.96,"bv":"-0.105"},"geometry":{"type":"Point","coordinates":[-69.0284,-40.6159]}},{"type":"Feature","id":95352,"properties":{"mag":5.85,"bv":"0.924"},"geometry":{"type":"Point","coordinates":[-69.0146,43.3882]}},{"type":"Feature","id":95372,"properties":{"mag":4.99,"bv":"-0.120"},"geometry":{"type":"Point","coordinates":[-68.9684,29.6213]}},{"type":"Feature","id":95447,"properties":{"mag":5.17,"bv":"0.761"},"geometry":{"type":"Point","coordinates":[-68.7575,11.9444]}},{"type":"Feature","id":95456,"properties":{"mag":5.91,"bv":"1.278"},"geometry":{"type":"Point","coordinates":[-68.7332,-29.3094]}},{"type":"Feature","id":95477,"properties":{"mag":5.02,"bv":"0.235"},"geometry":{"type":"Point","coordinates":[-68.6813,-24.5086]}},{"type":"Feature","id":95485,"properties":{"mag":5.72,"bv":"1.372"},"geometry":{"type":"Point","coordinates":[-68.66,-13.8971]}},{"type":"Feature","id":95498,"properties":{"mag":5.14,"bv":"0.999"},"geometry":{"type":"Point","coordinates":[-68.6308,19.7984]}},{"type":"Feature","id":95501,"properties":{"mag":3.36,"bv":"0.319"},"geometry":{"type":"Point","coordinates":[-68.6254,3.1148]}},{"type":"Feature","id":95503,"properties":{"mag":5.45,"bv":"1.442"},"geometry":{"type":"Point","coordinates":[-68.6264,-23.9625]}},{"type":"Feature","id":95556,"properties":{"mag":5.17,"bv":"-0.120"},"geometry":{"type":"Point","coordinates":[-68.462,36.3179]}},{"type":"Feature","id":95557,"properties":{"mag":5.71,"bv":"0.007"},"geometry":{"type":"Point","coordinates":[-68.454,-15.0533]}},{"type":"Feature","id":95560,"properties":{"mag":5.6,"bv":"-0.006"},"geometry":{"type":"Point","coordinates":[-68.4448,20.0977]}},{"type":"Feature","id":95564,"properties":{"mag":5.57,"bv":"1.228"},"geometry":{"type":"Point","coordinates":[-68.4202,-21.7767]}},{"type":"Feature","id":95572,"properties":{"mag":5.76,"bv":"0.456"},"geometry":{"type":"Point","coordinates":[-68.3994,13.0238]}},{"type":"Feature","id":95582,"properties":{"mag":5.84,"bv":"1.558"},"geometry":{"type":"Point","coordinates":[-68.3805,19.8915]}},{"type":"Feature","id":95585,"properties":{"mag":4.64,"bv":"0.576"},"geometry":{"type":"Point","coordinates":[-68.3705,0.3386]}},{"type":"Feature","id":95619,"properties":{"mag":5.66,"bv":"-0.014"},"geometry":{"type":"Point","coordinates":[-68.2647,-29.7432]}},{"type":"Feature","id":95656,"properties":{"mag":5.73,"bv":"-0.002"},"geometry":{"type":"Point","coordinates":[-68.1418,52.3204]}},{"type":"Feature","id":95690,"properties":{"mag":5.7,"bv":"1.406"},"geometry":{"type":"Point","coordinates":[-68.0495,-54.3253]}},{"type":"Feature","id":95732,"properties":{"mag":5.84,"bv":"-0.003"},"geometry":{"type":"Point","coordinates":[-67.9133,2.93]}},{"type":"Feature","id":95771,"properties":{"mag":4.44,"bv":"1.502"},"geometry":{"type":"Point","coordinates":[-67.8236,24.6649]}},{"type":"Feature","id":95785,"properties":{"mag":5.82,"bv":"1.023"},"geometry":{"type":"Point","coordinates":[-67.7622,24.7687]}},{"type":"Feature","id":95793,"properties":{"mag":5.79,"bv":"0.088"},"geometry":{"type":"Point","coordinates":[-67.7459,1.9504]}},{"type":"Feature","id":95822,"properties":{"mag":5.57,"bv":"1.050"},"geometry":{"type":"Point","coordinates":[-67.6577,14.596]}},{"type":"Feature","id":95823,"properties":{"mag":5.7,"bv":"0.214"},"geometry":{"type":"Point","coordinates":[-67.6506,-43.4452]}},{"type":"Feature","id":95853,"properties":{"mag":3.76,"bv":"0.148"},"geometry":{"type":"Point","coordinates":[-67.5735,51.7298]}},{"type":"Feature","id":95865,"properties":{"mag":5.46,"bv":"1.120"},"geometry":{"type":"Point","coordinates":[-67.5326,-26.9856]}},{"type":"Feature","id":95937,"properties":{"mag":5.03,"bv":"1.770"},"geometry":{"type":"Point","coordinates":[-67.334,-2.7889]}},{"type":"Feature","id":95947,"properties":{"mag":3.05,"bv":"1.088"},"geometry":{"type":"Point","coordinates":[-67.3197,27.9597]}},{"type":"Feature","id":95951,"properties":{"mag":5.12,"bv":"-0.095"},"geometry":{"type":"Point","coordinates":[-67.3109,27.9653]}},{"type":"Feature","id":95999,"properties":{"mag":5.98,"bv":"1.638"},"geometry":{"type":"Point","coordinates":[-67.2043,-68.4339]}},{"type":"Feature","id":96014,"properties":{"mag":5.55,"bv":"1.274"},"geometry":{"type":"Point","coordinates":[-67.1695,50.3067]}},{"type":"Feature","id":96016,"properties":{"mag":5.89,"bv":"0.915"},"geometry":{"type":"Point","coordinates":[-67.1599,26.6172]}},{"type":"Feature","id":96052,"properties":{"mag":4.74,"bv":"-0.150"},"geometry":{"type":"Point","coordinates":[-67.057,34.453]}},{"type":"Feature","id":96100,"properties":{"mag":4.67,"bv":"0.786"},"geometry":{"type":"Point","coordinates":[-66.91,69.6612]}},{"type":"Feature","id":96141,"properties":{"mag":5.76,"bv":"0.300"},"geometry":{"type":"Point","coordinates":[-66.7757,-53.1856]}},{"type":"Feature","id":96178,"properties":{"mag":5.59,"bv":"-0.020"},"geometry":{"type":"Point","coordinates":[-66.6599,-45.2717]}},{"type":"Feature","id":96198,"properties":{"mag":6,"bv":"1.545"},"geometry":{"type":"Point","coordinates":[-66.5766,49.2623]}},{"type":"Feature","id":96229,"properties":{"mag":4.45,"bv":"1.176"},"geometry":{"type":"Point","coordinates":[-66.4777,7.3789]}},{"type":"Feature","id":96234,"properties":{"mag":5.89,"bv":"0.105"},"geometry":{"type":"Point","coordinates":[-66.4646,-40.0346]}},{"type":"Feature","id":96258,"properties":{"mag":5.71,"bv":"0.475"},"geometry":{"type":"Point","coordinates":[-66.4175,51.2366]}},{"type":"Feature","id":96275,"properties":{"mag":5,"bv":"-0.093"},"geometry":{"type":"Point","coordinates":[-66.3546,19.7734]}},{"type":"Feature","id":96288,"properties":{"mag":5.34,"bv":"0.060"},"geometry":{"type":"Point","coordinates":[-66.3281,42.4125]}},{"type":"Feature","id":96302,"properties":{"mag":5.39,"bv":"0.581"},"geometry":{"type":"Point","coordinates":[-66.2878,29.463]}},{"type":"Feature","id":96327,"properties":{"mag":5.12,"bv":"1.122"},"geometry":{"type":"Point","coordinates":[-66.2198,-10.5604]}},{"type":"Feature","id":96341,"properties":{"mag":4.88,"bv":"1.096"},"geometry":{"type":"Point","coordinates":[-66.1959,-48.0992]}},{"type":"Feature","id":96406,"properties":{"mag":5.64,"bv":"0.185"},"geometry":{"type":"Point","coordinates":[-65.9931,-24.7191]}},{"type":"Feature","id":96441,"properties":{"mag":4.49,"bv":"0.395"},"geometry":{"type":"Point","coordinates":[-65.8894,50.2211]}},{"type":"Feature","id":96459,"properties":{"mag":5.17,"bv":"0.928"},"geometry":{"type":"Point","coordinates":[-65.8418,44.6949]}},{"type":"Feature","id":96465,"properties":{"mag":4.59,"bv":"-0.075"},"geometry":{"type":"Point","coordinates":[-65.8232,-24.8836]}},{"type":"Feature","id":96468,"properties":{"mag":4.36,"bv":"-0.079"},"geometry":{"type":"Point","coordinates":[-65.8197,-1.2866]}},{"type":"Feature","id":96481,"properties":{"mag":5.98,"bv":"0.881"},"geometry":{"type":"Point","coordinates":[-65.7814,11.2732]}},{"type":"Feature","id":96483,"properties":{"mag":4.93,"bv":"-0.046"},"geometry":{"type":"Point","coordinates":[-65.7773,-7.0275]}},{"type":"Feature","id":96496,"properties":{"mag":5.66,"bv":"1.237"},"geometry":{"type":"Point","coordinates":[-65.7361,-18.2311]}},{"type":"Feature","id":96516,"properties":{"mag":5.67,"bv":"1.007"},"geometry":{"type":"Point","coordinates":[-65.6775,16.4628]}},{"type":"Feature","id":96536,"properties":{"mag":5.46,"bv":"0.501"},"geometry":{"type":"Point","coordinates":[-65.6066,-14.3018]}},{"type":"Feature","id":96556,"properties":{"mag":5.45,"bv":"0.429"},"geometry":{"type":"Point","coordinates":[-65.5528,-4.6476]}},{"type":"Feature","id":96620,"properties":{"mag":5.89,"bv":"0.482"},"geometry":{"type":"Point","coordinates":[-65.3284,54.9738]}},{"type":"Feature","id":96665,"properties":{"mag":5.18,"bv":"-0.001"},"geometry":{"type":"Point","coordinates":[-65.2015,5.3978]}},{"type":"Feature","id":96683,"properties":{"mag":4.68,"bv":"0.971"},"geometry":{"type":"Point","coordinates":[-65.1558,30.1533]}},{"type":"Feature","id":96693,"properties":{"mag":5.41,"bv":"-0.063"},"geometry":{"type":"Point","coordinates":[-65.1396,42.8183]}},{"type":"Feature","id":96757,"properties":{"mag":4.39,"bv":"0.777"},"geometry":{"type":"Point","coordinates":[-64.9759,18.0139]}},{"type":"Feature","id":96760,"properties":{"mag":5.97,"bv":"1.038"},"geometry":{"type":"Point","coordinates":[-64.9701,-23.4291]}},{"type":"Feature","id":96807,"properties":{"mag":5.64,"bv":"0.123"},"geometry":{"type":"Point","coordinates":[-64.8195,-0.6212]}},{"type":"Feature","id":96808,"properties":{"mag":5.3,"bv":"1.109"},"geometry":{"type":"Point","coordinates":[-64.8192,-16.2933]}},{"type":"Feature","id":96825,"properties":{"mag":5.06,"bv":"0.426"},"geometry":{"type":"Point","coordinates":[-64.7909,45.5249]}},{"type":"Feature","id":96837,"properties":{"mag":4.39,"bv":"1.041"},"geometry":{"type":"Point","coordinates":[-64.7378,17.476]}},{"type":"Feature","id":96840,"properties":{"mag":5.98,"bv":"-0.078"},"geometry":{"type":"Point","coordinates":[-64.727,13.8157]}},{"type":"Feature","id":96895,"properties":{"mag":5.99,"bv":"0.643"},"geometry":{"type":"Point","coordinates":[-64.546,50.5251]}},{"type":"Feature","id":96950,"properties":{"mag":5.06,"bv":"0.319"},"geometry":{"type":"Point","coordinates":[-64.3703,-16.124]}},{"type":"Feature","id":96957,"properties":{"mag":5.28,"bv":"0.575"},"geometry":{"type":"Point","coordinates":[-64.3583,11.8266]}},{"type":"Feature","id":96977,"properties":{"mag":5.93,"bv":"0.118"},"geometry":{"type":"Point","coordinates":[-64.3141,32.4267]}},{"type":"Feature","id":97063,"properties":{"mag":5.49,"bv":"0.460"},"geometry":{"type":"Point","coordinates":[-64.1103,-15.4701]}},{"type":"Feature","id":97077,"properties":{"mag":5.5,"bv":"0.939"},"geometry":{"type":"Point","coordinates":[-64.0711,25.7719]}},{"type":"Feature","id":97081,"properties":{"mag":5.86,"bv":"1.598"},"geometry":{"type":"Point","coordinates":[-64.0621,41.7731]}},{"type":"Feature","id":97118,"properties":{"mag":4.89,"bv":"0.948"},"geometry":{"type":"Point","coordinates":[-63.9308,37.3544]}},{"type":"Feature","id":97122,"properties":{"mag":5.9,"bv":"0.072"},"geometry":{"type":"Point","coordinates":[-63.9233,69.3371]}},{"type":"Feature","id":97165,"properties":{"mag":2.86,"bv":"-0.002"},"geometry":{"type":"Point","coordinates":[-63.7563,45.1308]}},{"type":"Feature","id":97229,"properties":{"mag":5.89,"bv":"0.180"},"geometry":{"type":"Point","coordinates":[-63.5836,7.6132]}},{"type":"Feature","id":97260,"properties":{"mag":5.51,"bv":"0.024"},"geometry":{"type":"Point","coordinates":[-63.4949,-31.9086]}},{"type":"Feature","id":97278,"properties":{"mag":2.72,"bv":"1.507"},"geometry":{"type":"Point","coordinates":[-63.4351,10.6133]}},{"type":"Feature","id":97290,"properties":{"mag":4.87,"bv":"1.061"},"geometry":{"type":"Point","coordinates":[-63.4094,-19.7611]}},{"type":"Feature","id":97295,"properties":{"mag":5,"bv":"0.476"},"geometry":{"type":"Point","coordinates":[-63.3933,33.7276]}},{"type":"Feature","id":97365,"properties":{"mag":3.68,"bv":"1.313"},"geometry":{"type":"Point","coordinates":[-63.1531,18.5343]}},{"type":"Feature","id":97376,"properties":{"mag":5.83,"bv":"-0.087"},"geometry":{"type":"Point","coordinates":[-63.1343,38.4076]}},{"type":"Feature","id":97402,"properties":{"mag":6,"bv":"0.993"},"geometry":{"type":"Point","coordinates":[-63.0477,25.3841]}},{"type":"Feature","id":97421,"properties":{"mag":5.33,"bv":"0.196"},"geometry":{"type":"Point","coordinates":[-62.995,-56.3626]}},{"type":"Feature","id":97433,"properties":{"mag":3.84,"bv":"0.888"},"geometry":{"type":"Point","coordinates":[-62.9569,70.2679]}},{"type":"Feature","id":97473,"properties":{"mag":5.75,"bv":"0.546"},"geometry":{"type":"Point","coordinates":[-62.8248,11.8159]}},{"type":"Feature","id":97496,"properties":{"mag":5.01,"bv":"0.095"},"geometry":{"type":"Point","coordinates":[-62.7556,19.142]}},{"type":"Feature","id":97499,"properties":{"mag":6,"bv":"1.233"},"geometry":{"type":"Point","coordinates":[-62.7408,-10.8708]}},{"type":"Feature","id":97534,"properties":{"mag":5.39,"bv":"0.234"},"geometry":{"type":"Point","coordinates":[-62.6446,-72.5034]}},{"type":"Feature","id":97598,"properties":{"mag":5.91,"bv":"1.678"},"geometry":{"type":"Point","coordinates":[-62.4414,-47.5574]}},{"type":"Feature","id":97630,"properties":{"mag":5.18,"bv":"1.665"},"geometry":{"type":"Point","coordinates":[-62.3584,38.7224]}},{"type":"Feature","id":97634,"properties":{"mag":5.68,"bv":"-0.058"},"geometry":{"type":"Point","coordinates":[-62.3445,40.5998]}},{"type":"Feature","id":97635,"properties":{"mag":5.03,"bv":"1.286"},"geometry":{"type":"Point","coordinates":[-62.3428,52.988]}},{"type":"Feature","id":97646,"properties":{"mag":5.41,"bv":"0.082"},"geometry":{"type":"Point","coordinates":[-62.3133,-59.1937]}},{"type":"Feature","id":97649,"properties":{"mag":0.76,"bv":"0.221"},"geometry":{"type":"Point","coordinates":[-62.3042,8.8683]}},{"type":"Feature","id":97650,"properties":{"mag":5.38,"bv":"0.402"},"geometry":{"type":"Point","coordinates":[-62.3051,-10.7635]}},{"type":"Feature","id":97675,"properties":{"mag":5.12,"bv":"0.563"},"geometry":{"type":"Point","coordinates":[-62.2432,10.4157]}},{"type":"Feature","id":97679,"properties":{"mag":4.9,"bv":"-0.153"},"geometry":{"type":"Point","coordinates":[-62.2329,22.61]}},{"type":"Feature","id":97749,"properties":{"mag":5.32,"bv":"-0.045"},"geometry":{"type":"Point","coordinates":[-62.0391,-39.8744]}},{"type":"Feature","id":97757,"properties":{"mag":5.6,"bv":"-0.078"},"geometry":{"type":"Point","coordinates":[-62.0039,47.0273]}},{"type":"Feature","id":97765,"properties":{"mag":5.54,"bv":"0.680"},"geometry":{"type":"Point","coordinates":[-61.9934,24.9922]}},{"type":"Feature","id":97774,"properties":{"mag":5.91,"bv":"-0.174"},"geometry":{"type":"Point","coordinates":[-61.9701,47.9318]}},{"type":"Feature","id":97783,"properties":{"mag":5.88,"bv":"0.979"},"geometry":{"type":"Point","coordinates":[-61.95,-19.045]}},{"type":"Feature","id":97804,"properties":{"mag":3.87,"bv":"0.630"},"geometry":{"type":"Point","coordinates":[-61.8818,1.0057]}},{"type":"Feature","id":97816,"properties":{"mag":5.76,"bv":"0.915"},"geometry":{"type":"Point","coordinates":[-61.8428,-54.971]}},{"type":"Feature","id":97870,"properties":{"mag":5.14,"bv":"-0.125"},"geometry":{"type":"Point","coordinates":[-61.6776,57.5235]}},{"type":"Feature","id":97871,"properties":{"mag":5.63,"bv":"0.231"},"geometry":{"type":"Point","coordinates":[-61.6719,-3.1145]}},{"type":"Feature","id":97886,"properties":{"mag":4.57,"bv":"-0.047"},"geometry":{"type":"Point","coordinates":[-61.6346,24.0796]}},{"type":"Feature","id":97928,"properties":{"mag":5.76,"bv":"1.664"},"geometry":{"type":"Point","coordinates":[-61.4655,-8.5742]}},{"type":"Feature","id":97938,"properties":{"mag":4.71,"bv":"1.023"},"geometry":{"type":"Point","coordinates":[-61.438,8.4615]}},{"type":"Feature","id":97961,"properties":{"mag":5.56,"bv":"-0.018"},"geometry":{"type":"Point","coordinates":[-61.3705,24.3194]}},{"type":"Feature","id":97966,"properties":{"mag":5.7,"bv":"-0.079"},"geometry":{"type":"Point","coordinates":[-61.3431,-8.2273]}},{"type":"Feature","id":97980,"properties":{"mag":5.6,"bv":"0.098"},"geometry":{"type":"Point","coordinates":[-61.3133,0.2736]}},{"type":"Feature","id":97985,"properties":{"mag":5.79,"bv":"0.773"},"geometry":{"type":"Point","coordinates":[-61.299,36.9957]}},{"type":"Feature","id":98032,"properties":{"mag":4.12,"bv":"1.063"},"geometry":{"type":"Point","coordinates":[-61.1846,-41.8683]}},{"type":"Feature","id":98036,"properties":{"mag":3.71,"bv":"0.855"},"geometry":{"type":"Point","coordinates":[-61.1717,6.4068]}},{"type":"Feature","id":98055,"properties":{"mag":4.91,"bv":"0.124"},"geometry":{"type":"Point","coordinates":[-61.0926,52.4389]}},{"type":"Feature","id":98066,"properties":{"mag":4.7,"bv":"0.748"},"geometry":{"type":"Point","coordinates":[-61.0402,-26.2995]}},{"type":"Feature","id":98068,"properties":{"mag":4.95,"bv":"-0.086"},"geometry":{"type":"Point","coordinates":[-61.0343,38.4867]}},{"type":"Feature","id":98073,"properties":{"mag":4.98,"bv":"1.584"},"geometry":{"type":"Point","coordinates":[-61.0193,58.846]}},{"type":"Feature","id":98085,"properties":{"mag":5.71,"bv":"0.903"},"geometry":{"type":"Point","coordinates":[-60.9947,16.6348]}},{"type":"Feature","id":98103,"properties":{"mag":5.28,"bv":"0.014"},"geometry":{"type":"Point","coordinates":[-60.9406,11.4237]}},{"type":"Feature","id":98110,"properties":{"mag":3.89,"bv":"1.019"},"geometry":{"type":"Point","coordinates":[-60.9235,35.0834]}},{"type":"Feature","id":98162,"properties":{"mag":4.54,"bv":"1.462"},"geometry":{"type":"Point","coordinates":[-60.7632,-27.1699]}},{"type":"Feature","id":98174,"properties":{"mag":5.24,"bv":"0.014"},"geometry":{"type":"Point","coordinates":[-60.7237,-58.9014]}},{"type":"Feature","id":98194,"properties":{"mag":5.46,"bv":"-0.090"},"geometry":{"type":"Point","coordinates":[-60.6922,40.3678]}},{"type":"Feature","id":98234,"properties":{"mag":5.54,"bv":"-0.048"},"geometry":{"type":"Point","coordinates":[-60.5606,16.7892]}},{"type":"Feature","id":98258,"properties":{"mag":5.01,"bv":"0.055"},"geometry":{"type":"Point","coordinates":[-60.5124,-15.4915]}},{"type":"Feature","id":98325,"properties":{"mag":5.51,"bv":"-0.060"},"geometry":{"type":"Point","coordinates":[-60.3417,30.9837]}},{"type":"Feature","id":98332,"properties":{"mag":5.74,"bv":"0.224"},"geometry":{"type":"Point","coordinates":[-60.328,-69.164]}},{"type":"Feature","id":98337,"properties":{"mag":3.51,"bv":"1.571"},"geometry":{"type":"Point","coordinates":[-60.3107,19.4921]}},{"type":"Feature","id":98353,"properties":{"mag":4.84,"bv":"0.882"},"geometry":{"type":"Point","coordinates":[-60.2617,-26.1958]}},{"type":"Feature","id":98375,"properties":{"mag":5.68,"bv":"0.345"},"geometry":{"type":"Point","coordinates":[-60.2061,23.1013]}},{"type":"Feature","id":98383,"properties":{"mag":5.92,"bv":"0.185"},"geometry":{"type":"Point","coordinates":[-60.1649,45.7725]}},{"type":"Feature","id":98412,"properties":{"mag":4.37,"bv":"-0.150"},"geometry":{"type":"Point","coordinates":[-60.0659,-35.2763]}},{"type":"Feature","id":98416,"properties":{"mag":5.87,"bv":"0.598"},"geometry":{"type":"Point","coordinates":[-60.0527,-9.9582]}},{"type":"Feature","id":98421,"properties":{"mag":5.3,"bv":"0.170"},"geometry":{"type":"Point","coordinates":[-60.036,-34.6978]}},{"type":"Feature","id":98425,"properties":{"mag":5.15,"bv":"-0.133"},"geometry":{"type":"Point","coordinates":[-60.02,37.0429]}},{"type":"Feature","id":98438,"properties":{"mag":5.33,"bv":"1.576"},"geometry":{"type":"Point","coordinates":[-59.9862,17.5165]}},{"type":"Feature","id":98461,"properties":{"mag":5.95,"bv":"0.989"},"geometry":{"type":"Point","coordinates":[-59.9336,-37.7017]}},{"type":"Feature","id":98470,"properties":{"mag":5.65,"bv":"0.498"},"geometry":{"type":"Point","coordinates":[-59.9156,-33.7035]}},{"type":"Feature","id":98478,"properties":{"mag":5.75,"bv":"1.033"},"geometry":{"type":"Point","coordinates":[-59.9037,-66.9494]}},{"type":"Feature","id":98495,"properties":{"mag":3.97,"bv":"-0.032"},"geometry":{"type":"Point","coordinates":[-59.8519,-72.9105]}},{"type":"Feature","id":98512,"properties":{"mag":5.8,"bv":"0.295"},"geometry":{"type":"Point","coordinates":[-59.7986,-45.1129]}},{"type":"Feature","id":98526,"properties":{"mag":5.9,"bv":"1.529"},"geometry":{"type":"Point","coordinates":[-59.7543,8.5577]}},{"type":"Feature","id":98543,"properties":{"mag":4.66,"bv":"0.184"},"geometry":{"type":"Point","coordinates":[-59.7248,27.7536]}},{"type":"Feature","id":98571,"properties":{"mag":5.06,"bv":"1.122"},"geometry":{"type":"Point","coordinates":[-59.6602,50.1047]}},{"type":"Feature","id":98583,"properties":{"mag":5.22,"bv":"1.598"},"geometry":{"type":"Point","coordinates":[-59.6311,64.821]}},{"type":"Feature","id":98608,"properties":{"mag":4.95,"bv":"1.356"},"geometry":{"type":"Point","coordinates":[-59.5636,-59.3759]}},{"type":"Feature","id":98609,"properties":{"mag":5.88,"bv":"-0.134"},"geometry":{"type":"Point","coordinates":[-59.5637,24.8004]}},{"type":"Feature","id":98624,"properties":{"mag":5.32,"bv":"1.218"},"geometry":{"type":"Point","coordinates":[-59.5314,-66.944]}},{"type":"Feature","id":98633,"properties":{"mag":5.69,"bv":"0.079"},"geometry":{"type":"Point","coordinates":[-59.5058,-13.6372]}},{"type":"Feature","id":98636,"properties":{"mag":5.23,"bv":"0.374"},"geometry":{"type":"Point","coordinates":[-59.494,24.938]}},{"type":"Feature","id":98688,"properties":{"mag":4.43,"bv":"1.640"},"geometry":{"type":"Point","coordinates":[-59.3355,-27.7098]}},{"type":"Feature","id":98702,"properties":{"mag":4.51,"bv":"1.313"},"geometry":{"type":"Point","coordinates":[-59.2955,67.8736]}},{"type":"Feature","id":98738,"properties":{"mag":5.99,"bv":"1.420"},"geometry":{"type":"Point","coordinates":[-59.1817,18.501]}},{"type":"Feature","id":98754,"properties":{"mag":5.73,"bv":"-0.095"},"geometry":{"type":"Point","coordinates":[-59.1249,16.0313]}},{"type":"Feature","id":98761,"properties":{"mag":4.77,"bv":"1.417"},"geometry":{"type":"Point","coordinates":[-59.1106,-37.9407]}},{"type":"Feature","id":98767,"properties":{"mag":5.73,"bv":"0.749"},"geometry":{"type":"Point","coordinates":[-59.0941,29.8968]}},{"type":"Feature","id":98819,"properties":{"mag":5.8,"bv":"0.600"},"geometry":{"type":"Point","coordinates":[-58.9741,17.0702]}},{"type":"Feature","id":98823,"properties":{"mag":5.51,"bv":"1.063"},"geometry":{"type":"Point","coordinates":[-58.9654,7.278]}},{"type":"Feature","id":98842,"properties":{"mag":4.99,"bv":"1.208"},"geometry":{"type":"Point","coordinates":[-58.9184,-32.0563]}},{"type":"Feature","id":98844,"properties":{"mag":5.67,"bv":"1.301"},"geometry":{"type":"Point","coordinates":[-58.9035,-0.7093]}},{"type":"Feature","id":98863,"properties":{"mag":5.62,"bv":"0.760"},"geometry":{"type":"Point","coordinates":[-58.8493,32.2186]}},{"type":"Feature","id":98920,"properties":{"mag":5.09,"bv":"1.058"},"geometry":{"type":"Point","coordinates":[-58.7104,19.9911]}},{"type":"Feature","id":98962,"properties":{"mag":5.4,"bv":"1.191"},"geometry":{"type":"Point","coordinates":[-58.613,61.9954]}},{"type":"Feature","id":99026,"properties":{"mag":5.81,"bv":"0.445"},"geometry":{"type":"Point","coordinates":[-58.4423,53.1657]}},{"type":"Feature","id":99031,"properties":{"mag":5.38,"bv":"0.850"},"geometry":{"type":"Point","coordinates":[-58.4093,35.9725]}},{"type":"Feature","id":99080,"properties":{"mag":5.08,"bv":"-0.162"},"geometry":{"type":"Point","coordinates":[-58.2775,23.6144]}},{"type":"Feature","id":99120,"properties":{"mag":4.93,"bv":"1.591"},"geometry":{"type":"Point","coordinates":[-58.1535,-52.8808]}},{"type":"Feature","id":99171,"properties":{"mag":5.97,"bv":"1.023"},"geometry":{"type":"Point","coordinates":[-57.9924,-0.6782]}},{"type":"Feature","id":99240,"properties":{"mag":3.55,"bv":"0.751"},"geometry":{"type":"Point","coordinates":[-57.8183,-66.1821]}},{"type":"Feature","id":99255,"properties":{"mag":4.38,"bv":"-0.046"},"geometry":{"type":"Point","coordinates":[-57.7777,77.7114]}},{"type":"Feature","id":99303,"properties":{"mag":4.93,"bv":"-0.139"},"geometry":{"type":"Point","coordinates":[-57.6433,36.8396]}},{"type":"Feature","id":99404,"properties":{"mag":5.51,"bv":"0.087"},"geometry":{"type":"Point","coordinates":[-57.3603,26.9042]}},{"type":"Feature","id":99461,"properties":{"mag":5.32,"bv":"0.868"},"geometry":{"type":"Point","coordinates":[-57.2003,-36.1012]}},{"type":"Feature","id":99473,"properties":{"mag":3.24,"bv":"-0.066"},"geometry":{"type":"Point","coordinates":[-57.1738,-0.8215]}},{"type":"Feature","id":99500,"properties":{"mag":5.7,"bv":"0.530"},"geometry":{"type":"Point","coordinates":[-57.1045,62.0785]}},{"type":"Feature","id":99518,"properties":{"mag":5.51,"bv":"1.397"},"geometry":{"type":"Point","coordinates":[-57.0501,26.809]}},{"type":"Feature","id":99531,"properties":{"mag":5.91,"bv":"-0.107"},"geometry":{"type":"Point","coordinates":[-56.9971,26.4788]}},{"type":"Feature","id":99572,"properties":{"mag":5.84,"bv":"0.476"},"geometry":{"type":"Point","coordinates":[-56.8922,-12.6175]}},{"type":"Feature","id":99631,"properties":{"mag":5.44,"bv":"1.430"},"geometry":{"type":"Point","coordinates":[-56.6922,-1.0093]}},{"type":"Feature","id":99639,"properties":{"mag":4.8,"bv":"0.100"},"geometry":{"type":"Point","coordinates":[-56.6748,46.8157]}},{"type":"Feature","id":99655,"properties":{"mag":4.28,"bv":"0.114"},"geometry":{"type":"Point","coordinates":[-56.6506,56.5677]}},{"type":"Feature","id":99663,"properties":{"mag":5.81,"bv":"1.476"},"geometry":{"type":"Point","coordinates":[-56.6349,60.6406]}},{"type":"Feature","id":99675,"properties":{"mag":3.8,"bv":"1.270"},"geometry":{"type":"Point","coordinates":[-56.5921,46.7413]}},{"type":"Feature","id":99738,"properties":{"mag":5.19,"bv":"0.191"},"geometry":{"type":"Point","coordinates":[-56.4395,28.6948]}},{"type":"Feature","id":99742,"properties":{"mag":4.94,"bv":"0.072"},"geometry":{"type":"Point","coordinates":[-56.4308,15.1976]}},{"type":"Feature","id":99747,"properties":{"mag":5.65,"bv":"1.497"},"geometry":{"type":"Point","coordinates":[-56.4207,-52.4458]}},{"type":"Feature","id":99770,"properties":{"mag":4.93,"bv":"0.151"},"geometry":{"type":"Point","coordinates":[-56.3665,36.8063]}},{"type":"Feature","id":99824,"properties":{"mag":4.79,"bv":"-0.181"},"geometry":{"type":"Point","coordinates":[-56.1838,25.592]}},{"type":"Feature","id":99825,"properties":{"mag":5.73,"bv":"0.878"},"geometry":{"type":"Point","coordinates":[-56.1775,-27.033]}},{"type":"Feature","id":99841,"properties":{"mag":5.7,"bv":"0.926"},"geometry":{"type":"Point","coordinates":[-56.151,33.7291]}},{"type":"Feature","id":99848,"properties":{"mag":3.96,"bv":"1.451"},"geometry":{"type":"Point","coordinates":[-56.132,47.7142]}},{"type":"Feature","id":99853,"properties":{"mag":5.18,"bv":"1.016"},"geometry":{"type":"Point","coordinates":[-56.124,23.5089]}},{"type":"Feature","id":99874,"properties":{"mag":4.5,"bv":"1.258"},"geometry":{"type":"Point","coordinates":[-56.0578,27.8142]}},{"type":"Feature","id":99889,"properties":{"mag":5.87,"bv":"0.447"},"geometry":{"type":"Point","coordinates":[-55.9974,45.5795]}},{"type":"Feature","id":99951,"properties":{"mag":5.3,"bv":"0.951"},"geometry":{"type":"Point","coordinates":[-55.8038,24.6711]}},{"type":"Feature","id":99968,"properties":{"mag":5.27,"bv":"1.650"},"geometry":{"type":"Point","coordinates":[-55.7696,40.3651]}},{"type":"Feature","id":100017,"properties":{"mag":5.91,"bv":"0.602"},"geometry":{"type":"Point","coordinates":[-55.6195,66.8537]}},{"type":"Feature","id":100027,"properties":{"mag":4.3,"bv":"0.928"},"geometry":{"type":"Point","coordinates":[-55.588,-12.5082]}},{"type":"Feature","id":100044,"properties":{"mag":4.77,"bv":"0.377"},"geometry":{"type":"Point","coordinates":[-55.5533,38.0329]}},{"type":"Feature","id":100062,"properties":{"mag":5.86,"bv":"1.002"},"geometry":{"type":"Point","coordinates":[-55.4942,-21.81]}},{"type":"Feature","id":100064,"properties":{"mag":3.58,"bv":"0.883"},"geometry":{"type":"Point","coordinates":[-55.4864,-12.5449]}},{"type":"Feature","id":100069,"properties":{"mag":5.83,"bv":"0.073"},"geometry":{"type":"Point","coordinates":[-55.4709,40.7321]}},{"type":"Feature","id":100097,"properties":{"mag":5.76,"bv":"0.118"},"geometry":{"type":"Point","coordinates":[-55.3969,55.3971]}},{"type":"Feature","id":100108,"properties":{"mag":5.58,"bv":"0.056"},"geometry":{"type":"Point","coordinates":[-55.3806,36.9998]}},{"type":"Feature","id":100122,"properties":{"mag":5.14,"bv":"0.660"},"geometry":{"type":"Point","coordinates":[-55.3372,34.9828]}},{"type":"Feature","id":100195,"properties":{"mag":5.28,"bv":"1.394"},"geometry":{"type":"Point","coordinates":[-55.1516,-19.1185]}},{"type":"Feature","id":100221,"properties":{"mag":5.71,"bv":"-0.043"},"geometry":{"type":"Point","coordinates":[-55.097,62.2575]}},{"type":"Feature","id":100256,"properties":{"mag":5.96,"bv":"0.299"},"geometry":{"type":"Point","coordinates":[-54.9992,13.5481]}},{"type":"Feature","id":100261,"properties":{"mag":5.59,"bv":"1.472"},"geometry":{"type":"Point","coordinates":[-54.9749,68.8803]}},{"type":"Feature","id":100276,"properties":{"mag":5.82,"bv":"1.500"},"geometry":{"type":"Point","coordinates":[-54.9108,17.7929]}},{"type":"Feature","id":100310,"properties":{"mag":4.77,"bv":"-0.047"},"geometry":{"type":"Point","coordinates":[-54.8341,-12.7591]}},{"type":"Feature","id":100345,"properties":{"mag":3.05,"bv":"0.790"},"geometry":{"type":"Point","coordinates":[-54.7472,-14.7814]}},{"type":"Feature","id":100357,"properties":{"mag":5.69,"bv":"1.561"},"geometry":{"type":"Point","coordinates":[-54.702,63.9801]}},{"type":"Feature","id":100435,"properties":{"mag":5.5,"bv":"-0.090"},"geometry":{"type":"Point","coordinates":[-54.4857,24.4461]}},{"type":"Feature","id":100437,"properties":{"mag":5.58,"bv":"1.077"},"geometry":{"type":"Point","coordinates":[-54.4776,45.795]}},{"type":"Feature","id":100453,"properties":{"mag":2.23,"bv":"0.673"},"geometry":{"type":"Point","coordinates":[-54.4429,40.2567]}},{"type":"Feature","id":100469,"properties":{"mag":5.6,"bv":"0.002"},"geometry":{"type":"Point","coordinates":[-54.3854,-42.0495]}},{"type":"Feature","id":100501,"properties":{"mag":5.95,"bv":"1.632"},"geometry":{"type":"Point","coordinates":[-54.3113,41.026]}},{"type":"Feature","id":100541,"properties":{"mag":5.3,"bv":"0.983"},"geometry":{"type":"Point","coordinates":[-54.2054,5.343]}},{"type":"Feature","id":100574,"properties":{"mag":5.87,"bv":"-0.173"},"geometry":{"type":"Point","coordinates":[-54.0651,37.4764]}},{"type":"Feature","id":100587,"properties":{"mag":4.43,"bv":"1.331"},"geometry":{"type":"Point","coordinates":[-54.0349,32.1902]}},{"type":"Feature","id":100591,"properties":{"mag":5.64,"bv":"0.201"},"geometry":{"type":"Point","coordinates":[-54.0284,-42.4229]}},{"type":"Feature","id":100738,"properties":{"mag":5.86,"bv":"1.101"},"geometry":{"type":"Point","coordinates":[-53.6382,-28.6633]}},{"type":"Feature","id":100751,"properties":{"mag":1.94,"bv":"-0.118"},"geometry":{"type":"Point","coordinates":[-53.5881,-56.7351]}},{"type":"Feature","id":100754,"properties":{"mag":5.68,"bv":"0.921"},"geometry":{"type":"Point","coordinates":[-53.5811,21.4096]}},{"type":"Feature","id":100859,"properties":{"mag":5.73,"bv":"0.339"},"geometry":{"type":"Point","coordinates":[-53.2406,49.3834]}},{"type":"Feature","id":100881,"properties":{"mag":5.08,"bv":"-0.049"},"geometry":{"type":"Point","coordinates":[-53.17,-18.2117]}},{"type":"Feature","id":100907,"properties":{"mag":5.63,"bv":"0.072"},"geometry":{"type":"Point","coordinates":[-53.1073,38.4403]}},{"type":"Feature","id":100965,"properties":{"mag":5.38,"bv":"1.010"},"geometry":{"type":"Point","coordinates":[-52.9392,81.4227]}},{"type":"Feature","id":101027,"properties":{"mag":4.77,"bv":"0.386"},"geometry":{"type":"Point","coordinates":[-52.7849,-17.8137]}},{"type":"Feature","id":101067,"properties":{"mag":5.9,"bv":"0.407"},"geometry":{"type":"Point","coordinates":[-52.665,36.4547]}},{"type":"Feature","id":101076,"properties":{"mag":4.01,"bv":"0.404"},"geometry":{"type":"Point","coordinates":[-52.6511,30.3686]}},{"type":"Feature","id":101082,"properties":{"mag":5.96,"bv":"0.942"},"geometry":{"type":"Point","coordinates":[-52.6351,81.0913]}},{"type":"Feature","id":101084,"properties":{"mag":5.89,"bv":"-0.052"},"geometry":{"type":"Point","coordinates":[-52.637,56.0682]}},{"type":"Feature","id":101093,"properties":{"mag":4.21,"bv":"0.199"},"geometry":{"type":"Point","coordinates":[-52.6046,62.9941]}},{"type":"Feature","id":101101,"properties":{"mag":4.91,"bv":"1.160"},"geometry":{"type":"Point","coordinates":[-52.5875,-2.8855]}},{"type":"Feature","id":101123,"properties":{"mag":5.94,"bv":"0.062"},"geometry":{"type":"Point","coordinates":[-52.5254,-18.5832]}},{"type":"Feature","id":101138,"properties":{"mag":4.94,"bv":"-0.087"},"geometry":{"type":"Point","coordinates":[-52.4852,48.9516]}},{"type":"Feature","id":101243,"properties":{"mag":5.44,"bv":"1.566"},"geometry":{"type":"Point","coordinates":[-52.1716,49.2203]}},{"type":"Feature","id":101260,"properties":{"mag":5.18,"bv":"0.100"},"geometry":{"type":"Point","coordinates":[-52.1233,74.9546]}},{"type":"Feature","id":101345,"properties":{"mag":5.66,"bv":"0.689"},"geometry":{"type":"Point","coordinates":[-51.9013,-9.8534]}},{"type":"Feature","id":101421,"properties":{"mag":4.03,"bv":"-0.123"},"geometry":{"type":"Point","coordinates":[-51.6968,11.3033]}},{"type":"Feature","id":101427,"properties":{"mag":5.76,"bv":"1.122"},"geometry":{"type":"Point","coordinates":[-51.6765,-80.9649]}},{"type":"Feature","id":101474,"properties":{"mag":4.61,"bv":"1.593"},"geometry":{"type":"Point","coordinates":[-51.5242,35.2509]}},{"type":"Feature","id":101475,"properties":{"mag":5.78,"bv":"-0.140"},"geometry":{"type":"Point","coordinates":[-51.5215,46.6939]}},{"type":"Feature","id":101477,"properties":{"mag":5.12,"bv":"0.999"},"geometry":{"type":"Point","coordinates":[-51.5205,-44.516]}},{"type":"Feature","id":101483,"properties":{"mag":5.39,"bv":"0.093"},"geometry":{"type":"Point","coordinates":[-51.5123,13.0273]}},{"type":"Feature","id":101589,"properties":{"mag":4.64,"bv":"0.120"},"geometry":{"type":"Point","coordinates":[-51.1728,14.6742]}},{"type":"Feature","id":101612,"properties":{"mag":4.75,"bv":"0.291"},"geometry":{"type":"Point","coordinates":[-51.1048,-60.5817]}},{"type":"Feature","id":101692,"properties":{"mag":4.91,"bv":"1.606"},"geometry":{"type":"Point","coordinates":[-50.8182,-2.55]}},{"type":"Feature","id":101716,"properties":{"mag":5.59,"bv":"-0.050"},"geometry":{"type":"Point","coordinates":[-50.7305,26.4619]}},{"type":"Feature","id":101769,"properties":{"mag":3.64,"bv":"0.425"},"geometry":{"type":"Point","coordinates":[-50.6127,14.5951]}},{"type":"Feature","id":101772,"properties":{"mag":3.11,"bv":"0.998"},"geometry":{"type":"Point","coordinates":[-50.6082,-47.2915]}},{"type":"Feature","id":101773,"properties":{"mag":4.86,"bv":"0.447"},"geometry":{"type":"Point","coordinates":[-50.6029,-61.5299]}},{"type":"Feature","id":101800,"properties":{"mag":5.42,"bv":"0.050"},"geometry":{"type":"Point","coordinates":[-50.5453,11.3777]}},{"type":"Feature","id":101843,"properties":{"mag":5.89,"bv":"1.692"},"geometry":{"type":"Point","coordinates":[-50.4225,-81.2891]}},{"type":"Feature","id":101847,"properties":{"mag":4.31,"bv":"0.949"},"geometry":{"type":"Point","coordinates":[-50.4155,-1.1051]}},{"type":"Feature","id":101867,"properties":{"mag":4.81,"bv":"-0.030"},"geometry":{"type":"Point","coordinates":[-50.3694,21.2012]}},{"type":"Feature","id":101868,"properties":{"mag":5.06,"bv":"-0.133"},"geometry":{"type":"Point","coordinates":[-50.367,24.116]}},{"type":"Feature","id":101870,"properties":{"mag":5.91,"bv":"0.953"},"geometry":{"type":"Point","coordinates":[-50.3542,23.6805]}},{"type":"Feature","id":101882,"properties":{"mag":5.69,"bv":"1.509"},"geometry":{"type":"Point","coordinates":[-50.3167,13.3151]}},{"type":"Feature","id":101899,"properties":{"mag":5.68,"bv":"1.088"},"geometry":{"type":"Point","coordinates":[-50.252,30.3343]}},{"type":"Feature","id":101909,"properties":{"mag":5.99,"bv":"-0.145"},"geometry":{"type":"Point","coordinates":[-50.2293,15.8382]}},{"type":"Feature","id":101916,"properties":{"mag":5.07,"bv":"0.702"},"geometry":{"type":"Point","coordinates":[-50.2176,10.0862]}},{"type":"Feature","id":101923,"properties":{"mag":5.24,"bv":"-0.129"},"geometry":{"type":"Point","coordinates":[-50.182,-14.9548]}},{"type":"Feature","id":101936,"properties":{"mag":5.15,"bv":"1.060"},"geometry":{"type":"Point","coordinates":[-50.1463,0.4864]}},{"type":"Feature","id":101958,"properties":{"mag":3.77,"bv":"-0.057"},"geometry":{"type":"Point","coordinates":[-50.0905,15.9121]}},{"type":"Feature","id":101983,"properties":{"mag":5.11,"bv":"0.544"},"geometry":{"type":"Point","coordinates":[-49.989,-60.5489]}},{"type":"Feature","id":101984,"properties":{"mag":5.15,"bv":"1.647"},"geometry":{"type":"Point","coordinates":[-49.9877,-18.1387]}},{"type":"Feature","id":101986,"properties":{"mag":5.97,"bv":"1.186"},"geometry":{"type":"Point","coordinates":[-49.9868,43.4589]}},{"type":"Feature","id":102014,"properties":{"mag":5.47,"bv":"1.118"},"geometry":{"type":"Point","coordinates":[-49.9174,-33.4318]}},{"type":"Feature","id":102026,"properties":{"mag":5.79,"bv":"0.997"},"geometry":{"type":"Point","coordinates":[-49.8645,-16.1242]}},{"type":"Feature","id":102066,"properties":{"mag":5.53,"bv":"0.871"},"geometry":{"type":"Point","coordinates":[-49.7394,32.3073]}},{"type":"Feature","id":102092,"properties":{"mag":5.75,"bv":"1.551"},"geometry":{"type":"Point","coordinates":[-49.6514,-31.5983]}},{"type":"Feature","id":102098,"properties":{"mag":1.25,"bv":"0.092"},"geometry":{"type":"Point","coordinates":[-49.642,45.2803]}},{"type":"Feature","id":102155,"properties":{"mag":5.68,"bv":"-0.107"},"geometry":{"type":"Point","coordinates":[-49.5146,41.7169]}},{"type":"Feature","id":102157,"properties":{"mag":5.14,"bv":"-0.061"},"geometry":{"type":"Point","coordinates":[-49.5122,-66.7607]}},{"type":"Feature","id":102162,"properties":{"mag":5.99,"bv":"0.450"},"geometry":{"type":"Point","coordinates":[-49.4876,-76.1806]}},{"type":"Feature","id":102177,"properties":{"mag":5.41,"bv":"-0.107"},"geometry":{"type":"Point","coordinates":[-49.4474,50.34]}},{"type":"Feature","id":102208,"properties":{"mag":5.75,"bv":"0.000"},"geometry":{"type":"Point","coordinates":[-49.3532,82.5312]}},{"type":"Feature","id":102253,"properties":{"mag":5.59,"bv":"0.218"},"geometry":{"type":"Point","coordinates":[-49.2041,66.6574]}},{"type":"Feature","id":102281,"properties":{"mag":4.43,"bv":"0.302"},"geometry":{"type":"Point","coordinates":[-49.1353,15.0746]}},{"type":"Feature","id":102333,"properties":{"mag":4.51,"bv":"0.278"},"geometry":{"type":"Point","coordinates":[-48.9903,-51.921]}},{"type":"Feature","id":102358,"properties":{"mag":5.91,"bv":"1.643"},"geometry":{"type":"Point","coordinates":[-48.9081,56.4884]}},{"type":"Feature","id":102388,"properties":{"mag":4.92,"bv":"1.183"},"geometry":{"type":"Point","coordinates":[-48.7812,25.2706]}},{"type":"Feature","id":102395,"properties":{"mag":3.42,"bv":"0.163"},"geometry":{"type":"Point","coordinates":[-48.7604,-66.2032]}},{"type":"Feature","id":102422,"properties":{"mag":3.41,"bv":"0.912"},"geometry":{"type":"Point","coordinates":[-48.6776,61.8388]}},{"type":"Feature","id":102431,"properties":{"mag":4.52,"bv":"0.535"},"geometry":{"type":"Point","coordinates":[-48.662,57.5797]}},{"type":"Feature","id":102453,"properties":{"mag":4.22,"bv":"1.051"},"geometry":{"type":"Point","coordinates":[-48.5844,30.7197]}},{"type":"Feature","id":102485,"properties":{"mag":4.13,"bv":"0.426"},"geometry":{"type":"Point","coordinates":[-48.4761,-25.2709]}},{"type":"Feature","id":102487,"properties":{"mag":5.91,"bv":"0.066"},"geometry":{"type":"Point","coordinates":[-48.4584,-21.514]}},{"type":"Feature","id":102488,"properties":{"mag":2.48,"bv":"1.021"},"geometry":{"type":"Point","coordinates":[-48.4472,33.9703]}},{"type":"Feature","id":102497,"properties":{"mag":5.48,"bv":"-0.078"},"geometry":{"type":"Point","coordinates":[-48.4164,-39.1993]}},{"type":"Feature","id":102531,"properties":{"mag":5.15,"bv":"0.495"},"geometry":{"type":"Point","coordinates":[-48.3381,16.1241]}},{"type":"Feature","id":102532,"properties":{"mag":4.27,"bv":"1.042"},"geometry":{"type":"Point","coordinates":[-48.3354,16.1243]}},{"type":"Feature","id":102571,"properties":{"mag":4.93,"bv":"1.294"},"geometry":{"type":"Point","coordinates":[-48.2052,34.3741]}},{"type":"Feature","id":102589,"properties":{"mag":4.53,"bv":"-0.083"},"geometry":{"type":"Point","coordinates":[-48.1478,36.4907]}},{"type":"Feature","id":102599,"properties":{"mag":5.36,"bv":"1.144"},"geometry":{"type":"Point","coordinates":[-48.1106,80.5523]}},{"type":"Feature","id":102618,"properties":{"mag":3.78,"bv":"0.000"},"geometry":{"type":"Point","coordinates":[-48.081,-9.4958]}},{"type":"Feature","id":102624,"properties":{"mag":4.43,"bv":"1.639"},"geometry":{"type":"Point","coordinates":[-48.0657,-5.0277]}},{"type":"Feature","id":102633,"properties":{"mag":5.57,"bv":"-0.010"},"geometry":{"type":"Point","coordinates":[-48.0486,6.0082]}},{"type":"Feature","id":102635,"properties":{"mag":5.6,"bv":"1.466"},"geometry":{"type":"Point","coordinates":[-48.0446,47.8319]}},{"type":"Feature","id":102693,"properties":{"mag":5.11,"bv":"0.361"},"geometry":{"type":"Point","coordinates":[-47.8786,-43.9885]}},{"type":"Feature","id":102724,"properties":{"mag":4.81,"bv":"0.571"},"geometry":{"type":"Point","coordinates":[-47.7655,46.1141]}},{"type":"Feature","id":102772,"properties":{"mag":5.86,"bv":"-0.069"},"geometry":{"type":"Point","coordinates":[-47.6766,-25.7812]}},{"type":"Feature","id":102773,"properties":{"mag":5.41,"bv":"1.122"},"geometry":{"type":"Point","coordinates":[-47.6743,-68.7765]}},{"type":"Feature","id":102790,"properties":{"mag":4.9,"bv":"1.494"},"geometry":{"type":"Point","coordinates":[-47.6293,-46.2268]}},{"type":"Feature","id":102831,"properties":{"mag":4.89,"bv":"1.004"},"geometry":{"type":"Point","coordinates":[-47.508,-33.7797]}},{"type":"Feature","id":102843,"properties":{"mag":5.06,"bv":"0.198"},"geometry":{"type":"Point","coordinates":[-47.4795,44.0593]}},{"type":"Feature","id":102891,"properties":{"mag":5.87,"bv":"1.075"},"geometry":{"type":"Point","coordinates":[-47.3259,-12.5449]}},{"type":"Feature","id":102916,"properties":{"mag":5.52,"bv":"1.380"},"geometry":{"type":"Point","coordinates":[-47.2468,-37.9133]}},{"type":"Feature","id":102945,"properties":{"mag":5.99,"bv":"0.464"},"geometry":{"type":"Point","coordinates":[-47.1427,-5.6266]}},{"type":"Feature","id":102949,"properties":{"mag":5.66,"bv":"0.616"},"geometry":{"type":"Point","coordinates":[-47.1323,28.2505]}},{"type":"Feature","id":102950,"properties":{"mag":5.06,"bv":"1.125"},"geometry":{"type":"Point","coordinates":[-47.1248,-51.6082]}},{"type":"Feature","id":102962,"properties":{"mag":5.67,"bv":"0.203"},"geometry":{"type":"Point","coordinates":[-47.0896,-62.4293]}},{"type":"Feature","id":102978,"properties":{"mag":4.12,"bv":"1.633"},"geometry":{"type":"Point","coordinates":[-47.0446,-26.9191]}},{"type":"Feature","id":103004,"properties":{"mag":4.56,"bv":"0.835"},"geometry":{"type":"Point","coordinates":[-46.968,27.097]}},{"type":"Feature","id":103005,"properties":{"mag":5.55,"bv":"-0.076"},"geometry":{"type":"Point","coordinates":[-46.9638,-5.5071]}},{"type":"Feature","id":103045,"properties":{"mag":4.73,"bv":"0.325"},"geometry":{"type":"Point","coordinates":[-46.8365,-8.9833]}},{"type":"Feature","id":103089,"properties":{"mag":4.8,"bv":"-0.134"},"geometry":{"type":"Point","coordinates":[-46.6885,44.3873]}},{"type":"Feature","id":103094,"properties":{"mag":5.48,"bv":"1.088"},"geometry":{"type":"Point","coordinates":[-46.6726,45.1817]}},{"type":"Feature","id":103127,"properties":{"mag":5.34,"bv":"1.318"},"geometry":{"type":"Point","coordinates":[-46.5826,-39.8099]}},{"type":"Feature","id":103145,"properties":{"mag":5.47,"bv":"1.522"},"geometry":{"type":"Point","coordinates":[-46.5254,33.4379]}},{"type":"Feature","id":103200,"properties":{"mag":5.03,"bv":"1.481"},"geometry":{"type":"Point","coordinates":[-46.3598,28.0576]}},{"type":"Feature","id":103219,"properties":{"mag":5.99,"bv":"0.946"},"geometry":{"type":"Point","coordinates":[-46.3152,75.9256]}},{"type":"Feature","id":103226,"properties":{"mag":5.78,"bv":"1.122"},"geometry":{"type":"Point","coordinates":[-46.3008,-17.9229]}},{"type":"Feature","id":103227,"properties":{"mag":3.67,"bv":"1.250"},"geometry":{"type":"Point","coordinates":[-46.2975,-58.4542]}},{"type":"Feature","id":103294,"properties":{"mag":5.19,"bv":"1.119"},"geometry":{"type":"Point","coordinates":[-46.0971,13.7215]}},{"type":"Feature","id":103298,"properties":{"mag":5.54,"bv":"0.131"},"geometry":{"type":"Point","coordinates":[-46.0893,12.5686]}},{"type":"Feature","id":103312,"properties":{"mag":5.68,"bv":"0.408"},"geometry":{"type":"Point","coordinates":[-46.0425,47.4177]}},{"type":"Feature","id":103359,"properties":{"mag":5.83,"bv":"0.337"},"geometry":{"type":"Point","coordinates":[-45.8938,50.7286]}},{"type":"Feature","id":103360,"properties":{"mag":5.92,"bv":"1.054"},"geometry":{"type":"Point","coordinates":[-45.8921,49.1958]}},{"type":"Feature","id":103371,"properties":{"mag":5.96,"bv":"0.020"},"geometry":{"type":"Point","coordinates":[-45.8551,44.9247]}},{"type":"Feature","id":103389,"properties":{"mag":5.7,"bv":"0.507"},"geometry":{"type":"Point","coordinates":[-45.8028,-26.2964]}},{"type":"Feature","id":103401,"properties":{"mag":5.49,"bv":"1.474"},"geometry":{"type":"Point","coordinates":[-45.7749,-9.6975]}},{"type":"Feature","id":103413,"properties":{"mag":3.94,"bv":"0.027"},"geometry":{"type":"Point","coordinates":[-45.7066,41.1671]}},{"type":"Feature","id":103460,"properties":{"mag":5.89,"bv":"0.180"},"geometry":{"type":"Point","coordinates":[-45.5806,-16.0315]}},{"type":"Feature","id":103511,"properties":{"mag":5.3,"bv":"1.419"},"geometry":{"type":"Point","coordinates":[-45.4319,22.3259]}},{"type":"Feature","id":103519,"properties":{"mag":5.55,"bv":"0.973"},"geometry":{"type":"Point","coordinates":[-45.4189,44.4717]}},{"type":"Feature","id":103527,"properties":{"mag":5.51,"bv":"0.934"},"geometry":{"type":"Point","coordinates":[-45.3919,10.8393]}},{"type":"Feature","id":103530,"properties":{"mag":5.59,"bv":"-0.144"},"geometry":{"type":"Point","coordinates":[-45.3749,50.4618]}},{"type":"Feature","id":103545,"properties":{"mag":5.95,"bv":"0.244"},"geometry":{"type":"Point","coordinates":[-45.3257,-14.4831]}},{"type":"Feature","id":103569,"properties":{"mag":5.3,"bv":"0.464"},"geometry":{"type":"Point","coordinates":[-45.2313,4.2935]}},{"type":"Feature","id":103571,"properties":{"mag":5.24,"bv":"0.457"},"geometry":{"type":"Point","coordinates":[-45.2287,4.2946]}},{"type":"Feature","id":103598,"properties":{"mag":5.54,"bv":"1.411"},"geometry":{"type":"Point","coordinates":[-45.1442,59.4386]}},{"type":"Feature","id":103632,"properties":{"mag":4.74,"bv":"-0.084"},"geometry":{"type":"Point","coordinates":[-45.0435,47.521]}},{"type":"Feature","id":103652,"properties":{"mag":5.98,"bv":"0.283"},"geometry":{"type":"Point","coordinates":[-44.9834,7.5162]}},{"type":"Feature","id":103673,"properties":{"mag":5.76,"bv":"0.480"},"geometry":{"type":"Point","coordinates":[-44.9105,-51.2653]}},{"type":"Feature","id":103675,"properties":{"mag":5.69,"bv":"1.588"},"geometry":{"type":"Point","coordinates":[-44.8846,19.3296]}},{"type":"Feature","id":103732,"properties":{"mag":5.38,"bv":"-0.206"},"geometry":{"type":"Point","coordinates":[-44.7045,46.1558]}},{"type":"Feature","id":103738,"properties":{"mag":4.67,"bv":"0.890"},"geometry":{"type":"Point","coordinates":[-44.6772,-32.2578]}},{"type":"Feature","id":103810,"properties":{"mag":5.83,"bv":"-0.058"},"geometry":{"type":"Point","coordinates":[-44.4625,56.6696]}},{"type":"Feature","id":103836,"properties":{"mag":5.93,"bv":"1.106"},"geometry":{"type":"Point","coordinates":[-44.3868,-38.531]}},{"type":"Feature","id":103882,"properties":{"mag":5.32,"bv":"0.424"},"geometry":{"type":"Point","coordinates":[-44.2585,-38.6314]}},{"type":"Feature","id":103956,"properties":{"mag":5.93,"bv":"1.001"},"geometry":{"type":"Point","coordinates":[-44.0516,53.2859]}},{"type":"Feature","id":103981,"properties":{"mag":5.53,"bv":"0.683"},"geometry":{"type":"Point","coordinates":[-43.9803,-5.8231]}},{"type":"Feature","id":104019,"properties":{"mag":4.82,"bv":"0.169"},"geometry":{"type":"Point","coordinates":[-43.8987,-19.855]}},{"type":"Feature","id":104031,"properties":{"mag":5.63,"bv":"1.650"},"geometry":{"type":"Point","coordinates":[-43.8556,5.5029]}},{"type":"Feature","id":104043,"properties":{"mag":5.13,"bv":"0.490"},"geometry":{"type":"Point","coordinates":[-43.8206,-77.0238]}},{"type":"Feature","id":104060,"properties":{"mag":3.72,"bv":"1.609"},"geometry":{"type":"Point","coordinates":[-43.7672,43.9279]}},{"type":"Feature","id":104085,"properties":{"mag":5.17,"bv":"1.201"},"geometry":{"type":"Point","coordinates":[-43.6906,-54.727]}},{"type":"Feature","id":104101,"properties":{"mag":5.94,"bv":"0.538"},"geometry":{"type":"Point","coordinates":[-43.6387,5.9582]}},{"type":"Feature","id":104105,"properties":{"mag":5.91,"bv":"-0.065"},"geometry":{"type":"Point","coordinates":[-43.6281,78.1264]}},{"type":"Feature","id":104139,"properties":{"mag":4.08,"bv":"-0.010"},"geometry":{"type":"Point","coordinates":[-43.5132,-17.2329]}},{"type":"Feature","id":104148,"properties":{"mag":5.69,"bv":"1.047"},"geometry":{"type":"Point","coordinates":[-43.4952,-30.1251]}},{"type":"Feature","id":104171,"properties":{"mag":5.88,"bv":"0.386"},"geometry":{"type":"Point","coordinates":[-43.4029,71.4318]}},{"type":"Feature","id":104174,"properties":{"mag":5.2,"bv":"1.104"},"geometry":{"type":"Point","coordinates":[-43.3972,-32.3416]}},{"type":"Feature","id":104177,"properties":{"mag":5.55,"bv":"1.350"},"geometry":{"type":"Point","coordinates":[-43.3937,-41.386]}},{"type":"Feature","id":104185,"properties":{"mag":5.77,"bv":"0.554"},"geometry":{"type":"Point","coordinates":[-43.374,31.1847]}},{"type":"Feature","id":104194,"properties":{"mag":4.56,"bv":"1.569"},"geometry":{"type":"Point","coordinates":[-43.3496,47.6484]}},{"type":"Feature","id":104214,"properties":{"mag":5.2,"bv":"1.069"},"geometry":{"type":"Point","coordinates":[-43.2752,38.7494]}},{"type":"Feature","id":104234,"properties":{"mag":4.49,"bv":"1.604"},"geometry":{"type":"Point","coordinates":[-43.2181,-25.0059]}},{"type":"Feature","id":104364,"properties":{"mag":5.75,"bv":"1.180"},"geometry":{"type":"Point","coordinates":[-42.8638,-63.9283]}},{"type":"Feature","id":104365,"properties":{"mag":5.3,"bv":"0.000"},"geometry":{"type":"Point","coordinates":[-42.8599,-21.1937]}},{"type":"Feature","id":104371,"properties":{"mag":5.6,"bv":"-0.048"},"geometry":{"type":"Point","coordinates":[-42.838,30.2056]}},{"type":"Feature","id":104382,"properties":{"mag":5.45,"bv":"0.283"},"geometry":{"type":"Point","coordinates":[-42.8048,-88.9565]}},{"type":"Feature","id":104440,"properties":{"mag":5.67,"bv":"0.590"},"geometry":{"type":"Point","coordinates":[-42.6565,-73.173]}},{"type":"Feature","id":104459,"properties":{"mag":4.5,"bv":"0.926"},"geometry":{"type":"Point","coordinates":[-42.6015,-11.3717]}},{"type":"Feature","id":104516,"properties":{"mag":5.75,"bv":"-0.111"},"geometry":{"type":"Point","coordinates":[-42.4351,53.5631]}},{"type":"Feature","id":104521,"properties":{"mag":4.7,"bv":"0.262"},"geometry":{"type":"Point","coordinates":[-42.4146,10.1316]}},{"type":"Feature","id":104642,"properties":{"mag":5.64,"bv":"0.110"},"geometry":{"type":"Point","coordinates":[-42.049,59.9866]}},{"type":"Feature","id":104680,"properties":{"mag":5.83,"bv":"0.450"},"geometry":{"type":"Point","coordinates":[-41.9429,-40.2694]}},{"type":"Feature","id":104732,"properties":{"mag":3.21,"bv":"0.990"},"geometry":{"type":"Point","coordinates":[-41.7659,30.2269]}},{"type":"Feature","id":104738,"properties":{"mag":5.25,"bv":"0.460"},"geometry":{"type":"Point","coordinates":[-41.7372,-39.4249]}},{"type":"Feature","id":104750,"properties":{"mag":5.41,"bv":"1.425"},"geometry":{"type":"Point","coordinates":[-41.6778,-27.6193]}},{"type":"Feature","id":104752,"properties":{"mag":5.97,"bv":"0.967"},"geometry":{"type":"Point","coordinates":[-41.671,-36.4235]}},{"type":"Feature","id":104755,"properties":{"mag":5.06,"bv":"1.578"},"geometry":{"type":"Point","coordinates":[-41.6645,-70.1263]}},{"type":"Feature","id":104858,"properties":{"mag":4.47,"bv":"0.529"},"geometry":{"type":"Point","coordinates":[-41.3799,10.007]}},{"type":"Feature","id":104887,"properties":{"mag":3.74,"bv":"0.393"},"geometry":{"type":"Point","coordinates":[-41.3021,38.0453]}},{"type":"Feature","id":104963,"properties":{"mag":5.17,"bv":"1.161"},"geometry":{"type":"Point","coordinates":[-41.0921,-20.6517]}},{"type":"Feature","id":104968,"properties":{"mag":5.92,"bv":"1.531"},"geometry":{"type":"Point","coordinates":[-41.0731,77.0123]}},{"type":"Feature","id":104974,"properties":{"mag":5.31,"bv":"1.639"},"geometry":{"type":"Point","coordinates":[-41.0632,-15.1715]}},{"type":"Feature","id":104978,"properties":{"mag":5.73,"bv":"0.191"},"geometry":{"type":"Point","coordinates":[-41.0589,-53.2631]}},{"type":"Feature","id":104987,"properties":{"mag":3.92,"bv":"0.549"},"geometry":{"type":"Point","coordinates":[-41.044,5.2478]}},{"type":"Feature","id":105080,"properties":{"mag":6,"bv":"1.447"},"geometry":{"type":"Point","coordinates":[-40.6906,55.798]}},{"type":"Feature","id":105102,"properties":{"mag":4.22,"bv":"0.098"},"geometry":{"type":"Point","coordinates":[-40.646,39.3947]}},{"type":"Feature","id":105138,"properties":{"mag":4.41,"bv":"-0.103"},"geometry":{"type":"Point","coordinates":[-40.5205,34.8969]}},{"type":"Feature","id":105140,"properties":{"mag":4.71,"bv":"0.070"},"geometry":{"type":"Point","coordinates":[-40.5155,-32.1725]}},{"type":"Feature","id":105143,"properties":{"mag":5.4,"bv":"-0.118"},"geometry":{"type":"Point","coordinates":[-40.5113,-17.9851]}},{"type":"Feature","id":105164,"properties":{"mag":5.83,"bv":"-0.130"},"geometry":{"type":"Point","coordinates":[-40.4539,-4.5195]}},{"type":"Feature","id":105186,"properties":{"mag":5.04,"bv":"-0.061"},"geometry":{"type":"Point","coordinates":[-40.3867,43.9459]}},{"type":"Feature","id":105199,"properties":{"mag":2.45,"bv":"0.257"},"geometry":{"type":"Point","coordinates":[-40.3551,62.5856]}},{"type":"Feature","id":105224,"properties":{"mag":5.97,"bv":"1.612"},"geometry":{"type":"Point","coordinates":[-40.2832,11.2034]}},{"type":"Feature","id":105259,"properties":{"mag":5.51,"bv":"1.114"},"geometry":{"type":"Point","coordinates":[-40.1846,58.6235]}},{"type":"Feature","id":105268,"properties":{"mag":5.19,"bv":"-0.045"},"geometry":{"type":"Point","coordinates":[-40.1574,64.8719]}},{"type":"Feature","id":105269,"properties":{"mag":5.89,"bv":"0.505"},"geometry":{"type":"Point","coordinates":[-40.1576,38.2375]}},{"type":"Feature","id":105282,"properties":{"mag":5.75,"bv":"-0.119"},"geometry":{"type":"Point","coordinates":[-40.1302,49.5103]}},{"type":"Feature","id":105319,"properties":{"mag":4.39,"bv":"0.191"},"geometry":{"type":"Point","coordinates":[-40.0334,-53.4494]}},{"type":"Feature","id":105382,"properties":{"mag":4.8,"bv":"0.029"},"geometry":{"type":"Point","coordinates":[-39.8098,-40.8095]}},{"type":"Feature","id":105411,"properties":{"mag":5.58,"bv":"1.057"},"geometry":{"type":"Point","coordinates":[-39.7317,23.856]}},{"type":"Feature","id":105412,"properties":{"mag":5.87,"bv":"0.912"},"geometry":{"type":"Point","coordinates":[-39.732,-4.5601]}},{"type":"Feature","id":105413,"properties":{"mag":5.81,"bv":"1.663"},"geometry":{"type":"Point","coordinates":[-39.7299,7.3545]}},{"type":"Feature","id":105497,"properties":{"mag":5.68,"bv":"1.100"},"geometry":{"type":"Point","coordinates":[-39.4983,49.3888]}},{"type":"Feature","id":105502,"properties":{"mag":4.08,"bv":"1.108"},"geometry":{"type":"Point","coordinates":[-39.4783,19.8045]}},{"type":"Feature","id":105515,"properties":{"mag":4.28,"bv":"0.888"},"geometry":{"type":"Point","coordinates":[-39.4383,-16.8345]}},{"type":"Feature","id":105570,"properties":{"mag":5.16,"bv":"0.064"},"geometry":{"type":"Point","coordinates":[-39.2766,6.8111]}},{"type":"Feature","id":105574,"properties":{"mag":5.99,"bv":"1.516"},"geometry":{"type":"Point","coordinates":[-39.2656,-9.3193]}},{"type":"Feature","id":105576,"properties":{"mag":5.63,"bv":"1.641"},"geometry":{"type":"Point","coordinates":[-39.2479,-22.669]}},{"type":"Feature","id":105652,"properties":{"mag":5.7,"bv":"0.314"},"geometry":{"type":"Point","coordinates":[-39.0049,24.2741]}},{"type":"Feature","id":105665,"properties":{"mag":5.38,"bv":"1.176"},"geometry":{"type":"Point","coordinates":[-38.96,-20.8519]}},{"type":"Feature","id":105668,"properties":{"mag":5.48,"bv":"0.297"},"geometry":{"type":"Point","coordinates":[-38.9521,-12.8781]}},{"type":"Feature","id":105696,"properties":{"mag":5.76,"bv":"-0.036"},"geometry":{"type":"Point","coordinates":[-38.8966,-41.0067]}},{"type":"Feature","id":105703,"properties":{"mag":5.67,"bv":"0.323"},"geometry":{"type":"Point","coordinates":[-38.8583,26.1746]}},{"type":"Feature","id":105727,"properties":{"mag":5.97,"bv":"0.950"},"geometry":{"type":"Point","coordinates":[-38.7935,80.5248]}},{"type":"Feature","id":105761,"properties":{"mag":5.71,"bv":"0.208"},"geometry":{"type":"Point","coordinates":[-38.6957,-9.7486]}},{"type":"Feature","id":105767,"properties":{"mag":5.48,"bv":"1.451"},"geometry":{"type":"Point","coordinates":[-38.6793,-3.5567]}},{"type":"Feature","id":105769,"properties":{"mag":5.59,"bv":"0.335"},"geometry":{"type":"Point","coordinates":[-38.6685,46.7143]}},{"type":"Feature","id":105811,"properties":{"mag":5.93,"bv":"0.033"},"geometry":{"type":"Point","coordinates":[-38.5541,36.6674]}},{"type":"Feature","id":105854,"properties":{"mag":5.64,"bv":"1.185"},"geometry":{"type":"Point","coordinates":[-38.4047,-37.8294]}},{"type":"Feature","id":105858,"properties":{"mag":4.21,"bv":"0.494"},"geometry":{"type":"Point","coordinates":[-38.3891,-65.3662]}},{"type":"Feature","id":105881,"properties":{"mag":3.77,"bv":"1.002"},"geometry":{"type":"Point","coordinates":[-38.3332,-22.4113]}},{"type":"Feature","id":105898,"properties":{"mag":5.29,"bv":"0.108"},"geometry":{"type":"Point","coordinates":[-38.2849,48.8352]}},{"type":"Feature","id":105913,"properties":{"mag":5.5,"bv":"0.392"},"geometry":{"type":"Point","coordinates":[-38.2432,-42.5479]}},{"type":"Feature","id":105928,"properties":{"mag":5.78,"bv":"1.440"},"geometry":{"type":"Point","coordinates":[-38.1883,-21.1962]}},{"type":"Feature","id":105942,"properties":{"mag":5.3,"bv":"-0.140"},"geometry":{"type":"Point","coordinates":[-38.161,37.1168]}},{"type":"Feature","id":105966,"properties":{"mag":5.39,"bv":"0.049"},"geometry":{"type":"Point","coordinates":[-38.0831,27.6086]}},{"type":"Feature","id":105972,"properties":{"mag":5.42,"bv":"-0.099"},"geometry":{"type":"Point","coordinates":[-38.0577,66.8091]}},{"type":"Feature","id":106003,"properties":{"mag":5.75,"bv":"0.333"},"geometry":{"type":"Point","coordinates":[-37.9656,32.2253]}},{"type":"Feature","id":106032,"properties":{"mag":3.23,"bv":"-0.201"},"geometry":{"type":"Point","coordinates":[-37.835,70.5607]}},{"type":"Feature","id":106039,"properties":{"mag":4.5,"bv":"0.889"},"geometry":{"type":"Point","coordinates":[-37.8192,-21.8072]}},{"type":"Feature","id":106044,"properties":{"mag":5.47,"bv":"1.553"},"geometry":{"type":"Point","coordinates":[-37.8128,-69.5054]}},{"type":"Feature","id":106062,"properties":{"mag":5.84,"bv":"1.370"},"geometry":{"type":"Point","coordinates":[-37.7509,22.1794]}},{"type":"Feature","id":106093,"properties":{"mag":5.22,"bv":"0.965"},"geometry":{"type":"Point","coordinates":[-37.6377,46.5406]}},{"type":"Feature","id":106140,"properties":{"mag":4.52,"bv":"1.618"},"geometry":{"type":"Point","coordinates":[-37.5129,23.6388]}},{"type":"Feature","id":106227,"properties":{"mag":5.53,"bv":"0.102"},"geometry":{"type":"Point","coordinates":[-37.253,60.4594]}},{"type":"Feature","id":106278,"properties":{"mag":2.9,"bv":"0.828"},"geometry":{"type":"Point","coordinates":[-37.1103,-5.5712]}},{"type":"Feature","id":106327,"properties":{"mag":5.29,"bv":"1.109"},"geometry":{"type":"Point","coordinates":[-36.9755,-41.1793]}},{"type":"Feature","id":106340,"properties":{"mag":5.97,"bv":"0.051"},"geometry":{"type":"Point","coordinates":[-36.9393,-33.9446]}},{"type":"Feature","id":106393,"properties":{"mag":5.77,"bv":"-0.042"},"geometry":{"type":"Point","coordinates":[-36.7642,49.9776]}},{"type":"Feature","id":106429,"properties":{"mag":5.57,"bv":"1.044"},"geometry":{"type":"Point","coordinates":[-36.652,-44.8487]}},{"type":"Feature","id":106481,"properties":{"mag":3.98,"bv":"0.885"},"geometry":{"type":"Point","coordinates":[-36.5048,45.5918]}},{"type":"Feature","id":106551,"properties":{"mag":4.87,"bv":"1.085"},"geometry":{"type":"Point","coordinates":[-36.306,38.5341]}},{"type":"Feature","id":106559,"properties":{"mag":5.7,"bv":"0.423"},"geometry":{"type":"Point","coordinates":[-36.2873,-20.0843]}},{"type":"Feature","id":106592,"properties":{"mag":5.79,"bv":"1.110"},"geometry":{"type":"Point","coordinates":[-36.1766,-3.9833]}},{"type":"Feature","id":106642,"properties":{"mag":5.96,"bv":"1.341"},"geometry":{"type":"Point","coordinates":[-35.9896,45.3746]}},{"type":"Feature","id":106654,"properties":{"mag":5.73,"bv":"0.234"},"geometry":{"type":"Point","coordinates":[-35.9543,-26.1715]}},{"type":"Feature","id":106711,"properties":{"mag":5.04,"bv":"0.198"},"geometry":{"type":"Point","coordinates":[-35.7626,40.4135]}},{"type":"Feature","id":106723,"properties":{"mag":4.51,"bv":"-0.180"},"geometry":{"type":"Point","coordinates":[-35.7299,-19.466]}},{"type":"Feature","id":106786,"properties":{"mag":4.68,"bv":"0.175"},"geometry":{"type":"Point","coordinates":[-35.562,-7.8542]}},{"type":"Feature","id":106787,"properties":{"mag":5.46,"bv":"0.321"},"geometry":{"type":"Point","coordinates":[-35.5607,19.3186]}},{"type":"Feature","id":106801,"properties":{"mag":4.76,"bv":"0.246"},"geometry":{"type":"Point","coordinates":[-35.5199,62.0819]}},{"type":"Feature","id":106856,"properties":{"mag":5.66,"bv":"0.265"},"geometry":{"type":"Point","coordinates":[-35.3669,5.7717]}},{"type":"Feature","id":106886,"properties":{"mag":5.74,"bv":"0.200"},"geometry":{"type":"Point","coordinates":[-35.2599,57.489]}},{"type":"Feature","id":106897,"properties":{"mag":5.77,"bv":"0.314"},"geometry":{"type":"Point","coordinates":[-35.245,20.2655]}},{"type":"Feature","id":106944,"properties":{"mag":5.1,"bv":"1.034"},"geometry":{"type":"Point","coordinates":[-35.1114,2.2436]}},{"type":"Feature","id":106985,"properties":{"mag":3.69,"bv":"0.320"},"geometry":{"type":"Point","coordinates":[-34.9773,-16.6623]}},{"type":"Feature","id":106999,"properties":{"mag":5.09,"bv":"1.601"},"geometry":{"type":"Point","coordinates":[-34.9537,43.2738]}},{"type":"Feature","id":107089,"properties":{"mag":3.73,"bv":"1.008"},"geometry":{"type":"Point","coordinates":[-34.6306,-77.39]}},{"type":"Feature","id":107095,"properties":{"mag":5.16,"bv":"0.672"},"geometry":{"type":"Point","coordinates":[-34.6131,-14.0476]}},{"type":"Feature","id":107119,"properties":{"mag":4.55,"bv":"1.108"},"geometry":{"type":"Point","coordinates":[-34.5196,71.3114]}},{"type":"Feature","id":107128,"properties":{"mag":5.24,"bv":"0.991"},"geometry":{"type":"Point","coordinates":[-34.4971,-23.2629]}},{"type":"Feature","id":107129,"properties":{"mag":5.98,"bv":"2.500"},"geometry":{"type":"Point","coordinates":[-34.4955,35.5102]}},{"type":"Feature","id":107136,"properties":{"mag":4.69,"bv":"-0.119"},"geometry":{"type":"Point","coordinates":[-34.4764,51.1896]}},{"type":"Feature","id":107144,"properties":{"mag":5.66,"bv":"1.446"},"geometry":{"type":"Point","coordinates":[-34.4579,1.2853]}},{"type":"Feature","id":107151,"properties":{"mag":5.3,"bv":"1.653"},"geometry":{"type":"Point","coordinates":[-34.4356,5.6801]}},{"type":"Feature","id":107162,"properties":{"mag":5.73,"bv":"0.055"},"geometry":{"type":"Point","coordinates":[-34.4043,41.077]}},{"type":"Feature","id":107188,"properties":{"mag":4.72,"bv":"0.868"},"geometry":{"type":"Point","coordinates":[-34.3354,-18.8663]}},{"type":"Feature","id":107230,"properties":{"mag":5.18,"bv":"1.063"},"geometry":{"type":"Point","coordinates":[-34.2332,72.3201]}},{"type":"Feature","id":107232,"properties":{"mag":5.88,"bv":"0.255"},"geometry":{"type":"Point","coordinates":[-34.2317,-14.3997]}},{"type":"Feature","id":107235,"properties":{"mag":5.51,"bv":"1.615"},"geometry":{"type":"Point","coordinates":[-34.223,41.155]}},{"type":"Feature","id":107253,"properties":{"mag":5.69,"bv":"-0.010"},"geometry":{"type":"Point","coordinates":[-34.1431,38.2836]}},{"type":"Feature","id":107259,"properties":{"mag":4.23,"bv":"2.242"},"geometry":{"type":"Point","coordinates":[-34.1231,58.78]}},{"type":"Feature","id":107302,"properties":{"mag":5.96,"bv":"0.219"},"geometry":{"type":"Point","coordinates":[-33.996,-14.7494]}},{"type":"Feature","id":107310,"properties":{"mag":4.49,"bv":"0.512"},"geometry":{"type":"Point","coordinates":[-33.9643,28.7426]}},{"type":"Feature","id":107315,"properties":{"mag":2.38,"bv":"1.520"},"geometry":{"type":"Point","coordinates":[-33.9535,9.875]}},{"type":"Feature","id":107348,"properties":{"mag":4.34,"bv":"1.161"},"geometry":{"type":"Point","coordinates":[-33.8721,17.35]}},{"type":"Feature","id":107350,"properties":{"mag":5.96,"bv":"0.587"},"geometry":{"type":"Point","coordinates":[-33.8695,14.7719]}},{"type":"Feature","id":107354,"properties":{"mag":4.14,"bv":"0.425"},"geometry":{"type":"Point","coordinates":[-33.8386,25.645]}},{"type":"Feature","id":107374,"properties":{"mag":5.94,"bv":"0.312"},"geometry":{"type":"Point","coordinates":[-33.778,62.4606]}},{"type":"Feature","id":107380,"properties":{"mag":4.35,"bv":"-0.053"},"geometry":{"type":"Point","coordinates":[-33.7633,-33.0258]}},{"type":"Feature","id":107382,"properties":{"mag":5.1,"bv":"1.108"},"geometry":{"type":"Point","coordinates":[-33.7489,-9.0824]}},{"type":"Feature","id":107418,"properties":{"mag":4.25,"bv":"0.474"},"geometry":{"type":"Point","coordinates":[-33.6378,61.1208]}},{"type":"Feature","id":107472,"properties":{"mag":5.29,"bv":"1.381"},"geometry":{"type":"Point","coordinates":[-33.4818,22.9489]}},{"type":"Feature","id":107487,"properties":{"mag":6,"bv":"1.629"},"geometry":{"type":"Point","coordinates":[-33.4322,-9.2759]}},{"type":"Feature","id":107517,"properties":{"mag":5.57,"bv":"-0.002"},"geometry":{"type":"Point","coordinates":[-33.3663,-11.366]}},{"type":"Feature","id":107533,"properties":{"mag":4.23,"bv":"-0.120"},"geometry":{"type":"Point","coordinates":[-33.3016,49.3096]}},{"type":"Feature","id":107556,"properties":{"mag":2.85,"bv":"0.180"},"geometry":{"type":"Point","coordinates":[-33.2398,-16.1273]}},{"type":"Feature","id":107575,"properties":{"mag":5.63,"bv":"0.012"},"geometry":{"type":"Point","coordinates":[-33.1918,2.6861]}},{"type":"Feature","id":107586,"properties":{"mag":5.53,"bv":"1.575"},"geometry":{"type":"Point","coordinates":[-33.1446,60.6927]}},{"type":"Feature","id":107608,"properties":{"mag":5.02,"bv":"0.042"},"geometry":{"type":"Point","coordinates":[-33.066,-30.8983]}},{"type":"Feature","id":107649,"properties":{"mag":5.57,"bv":"0.601"},"geometry":{"type":"Point","coordinates":[-32.9344,-47.3036]}},{"type":"Feature","id":107763,"properties":{"mag":5.07,"bv":"0.010"},"geometry":{"type":"Point","coordinates":[-32.5388,30.1742]}},{"type":"Feature","id":107773,"properties":{"mag":5.62,"bv":"1.018"},"geometry":{"type":"Point","coordinates":[-32.4995,-64.7125]}},{"type":"Feature","id":107788,"properties":{"mag":5.34,"bv":"0.394"},"geometry":{"type":"Point","coordinates":[-32.4638,17.2859]}},{"type":"Feature","id":107835,"properties":{"mag":5.52,"bv":"1.378"},"geometry":{"type":"Point","coordinates":[-32.3034,-69.6294]}},{"type":"Feature","id":107843,"properties":{"mag":5.27,"bv":"0.756"},"geometry":{"type":"Point","coordinates":[-32.2727,-82.7189]}},{"type":"Feature","id":107887,"properties":{"mag":5.78,"bv":"-0.100"},"geometry":{"type":"Point","coordinates":[-32.1073,19.8267]}},{"type":"Feature","id":107930,"properties":{"mag":5.7,"bv":"-0.081"},"geometry":{"type":"Point","coordinates":[-31.9957,55.7967]}},{"type":"Feature","id":107975,"properties":{"mag":5.52,"bv":"0.426"},"geometry":{"type":"Point","coordinates":[-31.8753,28.7935]}},{"type":"Feature","id":108022,"properties":{"mag":5.09,"bv":"-0.155"},"geometry":{"type":"Point","coordinates":[-31.7343,25.9251]}},{"type":"Feature","id":108036,"properties":{"mag":5.08,"bv":"0.378"},"geometry":{"type":"Point","coordinates":[-31.676,-13.5518]}},{"type":"Feature","id":108060,"properties":{"mag":5.69,"bv":"0.011"},"geometry":{"type":"Point","coordinates":[-31.5942,19.6684]}},{"type":"Feature","id":108085,"properties":{"mag":3,"bv":"-0.084"},"geometry":{"type":"Point","coordinates":[-31.5178,-37.3649]}},{"type":"Feature","id":108102,"properties":{"mag":5.71,"bv":"1.185"},"geometry":{"type":"Point","coordinates":[-31.4568,-4.2762]}},{"type":"Feature","id":108165,"properties":{"mag":5.74,"bv":"0.655"},"geometry":{"type":"Point","coordinates":[-31.2785,56.6112]}},{"type":"Feature","id":108195,"properties":{"mag":5.92,"bv":"0.393"},"geometry":{"type":"Point","coordinates":[-31.2025,-61.8866]}},{"type":"Feature","id":108226,"properties":{"mag":5.84,"bv":"-0.037"},"geometry":{"type":"Point","coordinates":[-31.1208,65.3208]}},{"type":"Feature","id":108294,"properties":{"mag":5.45,"bv":"0.084"},"geometry":{"type":"Point","coordinates":[-30.9051,-37.2537]}},{"type":"Feature","id":108317,"properties":{"mag":5.11,"bv":"1.547"},"geometry":{"type":"Point","coordinates":[-30.8369,63.6256]}},{"type":"Feature","id":108339,"properties":{"mag":5.54,"bv":"0.054"},"geometry":{"type":"Point","coordinates":[-30.7651,12.0765]}},{"type":"Feature","id":108431,"properties":{"mag":4.4,"bv":"0.297"},"geometry":{"type":"Point","coordinates":[-30.5205,-54.9926]}},{"type":"Feature","id":108505,"properties":{"mag":5.96,"bv":"1.640"},"geometry":{"type":"Point","coordinates":[-30.277,62.698]}},{"type":"Feature","id":108535,"properties":{"mag":5.04,"bv":"0.439"},"geometry":{"type":"Point","coordinates":[-30.1876,73.1799]}},{"type":"Feature","id":108543,"properties":{"mag":5.5,"bv":"0.996"},"geometry":{"type":"Point","coordinates":[-30.1754,-38.3951]}},{"type":"Feature","id":108612,"properties":{"mag":6,"bv":"-0.112"},"geometry":{"type":"Point","coordinates":[-29.967,6.7174]}},{"type":"Feature","id":108661,"properties":{"mag":5.43,"bv":"-0.095"},"geometry":{"type":"Point","coordinates":[-29.7907,-28.4537]}},{"type":"Feature","id":108691,"properties":{"mag":5.6,"bv":"1.279"},"geometry":{"type":"Point","coordinates":[-29.7291,0.6047]}},{"type":"Feature","id":108693,"properties":{"mag":5.61,"bv":"0.336"},"geometry":{"type":"Point","coordinates":[-29.7277,13.1198]}},{"type":"Feature","id":108699,"properties":{"mag":5.65,"bv":"1.440"},"geometry":{"type":"Point","coordinates":[-29.7115,8.2572]}},{"type":"Feature","id":108758,"properties":{"mag":5.79,"bv":"-0.106"},"geometry":{"type":"Point","coordinates":[-29.5392,52.8823]}},{"type":"Feature","id":108772,"properties":{"mag":5.55,"bv":"0.017"},"geometry":{"type":"Point","coordinates":[-29.4809,58.0004]}},{"type":"Feature","id":108845,"properties":{"mag":5.57,"bv":"-0.029"},"geometry":{"type":"Point","coordinates":[-29.2639,44.6499]}},{"type":"Feature","id":108849,"properties":{"mag":5.94,"bv":"0.399"},"geometry":{"type":"Point","coordinates":[-29.2341,-76.1184]}},{"type":"Feature","id":108868,"properties":{"mag":5.55,"bv":"0.959"},"geometry":{"type":"Point","coordinates":[-29.1814,-6.5224]}},{"type":"Feature","id":108870,"properties":{"mag":4.69,"bv":"1.056"},"geometry":{"type":"Point","coordinates":[-29.1598,-56.786]}},{"type":"Feature","id":108874,"properties":{"mag":4.74,"bv":"-0.100"},"geometry":{"type":"Point","coordinates":[-29.1715,-2.1554]}},{"type":"Feature","id":108875,"properties":{"mag":5.83,"bv":"-0.050"},"geometry":{"type":"Point","coordinates":[-29.1707,11.3866]}},{"type":"Feature","id":108917,"properties":{"mag":4.26,"bv":"0.379"},"geometry":{"type":"Point","coordinates":[-29.0523,64.628]}},{"type":"Feature","id":108924,"properties":{"mag":5.26,"bv":"1.557"},"geometry":{"type":"Point","coordinates":[-29.0293,63.1199]}},{"type":"Feature","id":108975,"properties":{"mag":5.97,"bv":"-0.167"},"geometry":{"type":"Point","coordinates":[-28.8468,-26.8224]}},{"type":"Feature","id":108991,"properties":{"mag":5.29,"bv":"0.231"},"geometry":{"type":"Point","coordinates":[-28.8024,-0.9063]}},{"type":"Feature","id":109005,"properties":{"mag":5.27,"bv":"1.413"},"geometry":{"type":"Point","coordinates":[-28.7479,62.7857]}},{"type":"Feature","id":109017,"properties":{"mag":5.07,"bv":"0.240"},"geometry":{"type":"Point","coordinates":[-28.7134,62.2798]}},{"type":"Feature","id":109023,"properties":{"mag":5.75,"bv":"1.249"},"geometry":{"type":"Point","coordinates":[-28.7028,26.6737]}},{"type":"Feature","id":109056,"properties":{"mag":5.69,"bv":"-0.048"},"geometry":{"type":"Point","coordinates":[-28.6055,28.964]}},{"type":"Feature","id":109068,"properties":{"mag":4.86,"bv":"1.443"},"geometry":{"type":"Point","coordinates":[-28.5802,5.0585]}},{"type":"Feature","id":109074,"properties":{"mag":2.95,"bv":"0.969"},"geometry":{"type":"Point","coordinates":[-28.554,-0.3199]}},{"type":"Feature","id":109081,"properties":{"mag":5.62,"bv":"1.468"},"geometry":{"type":"Point","coordinates":[-28.5374,-59.6361]}},{"type":"Feature","id":109102,"properties":{"mag":5.09,"bv":"1.568"},"geometry":{"type":"Point","coordinates":[-28.4919,45.0143]}},{"type":"Feature","id":109111,"properties":{"mag":4.47,"bv":"1.349"},"geometry":{"type":"Point","coordinates":[-28.4713,-39.5434]}},{"type":"Feature","id":109139,"properties":{"mag":4.29,"bv":"-0.075"},"geometry":{"type":"Point","coordinates":[-28.3907,-13.8697]}},{"type":"Feature","id":109176,"properties":{"mag":3.77,"bv":"0.435"},"geometry":{"type":"Point","coordinates":[-28.2472,25.3451]}},{"type":"Feature","id":109209,"properties":{"mag":5.74,"bv":"0.331"},"geometry":{"type":"Point","coordinates":[-28.1309,19.4755]}},{"type":"Feature","id":109240,"properties":{"mag":5.79,"bv":"-0.077"},"geometry":{"type":"Point","coordinates":[-28.0404,21.7029]}},{"type":"Feature","id":109268,"properties":{"mag":1.73,"bv":"-0.070"},"geometry":{"type":"Point","coordinates":[-27.9417,-46.961]}},{"type":"Feature","id":109285,"properties":{"mag":4.5,"bv":"0.054"},"geometry":{"type":"Point","coordinates":[-27.9041,-32.9885]}},{"type":"Feature","id":109289,"properties":{"mag":4.99,"bv":"1.499"},"geometry":{"type":"Point","coordinates":[-27.8919,-34.0438]}},{"type":"Feature","id":109332,"properties":{"mag":5.8,"bv":"-0.154"},"geometry":{"type":"Point","coordinates":[-27.7542,-18.5196]}},{"type":"Feature","id":109352,"properties":{"mag":5.58,"bv":"0.985"},"geometry":{"type":"Point","coordinates":[-27.6932,33.1723]}},{"type":"Feature","id":109400,"properties":{"mag":4.79,"bv":"0.919"},"geometry":{"type":"Point","coordinates":[-27.5482,72.3412]}},{"type":"Feature","id":109404,"properties":{"mag":5.37,"bv":"0.241"},"geometry":{"type":"Point","coordinates":[-27.5179,-34.015]}},{"type":"Feature","id":109410,"properties":{"mag":4.28,"bv":"0.471"},"geometry":{"type":"Point","coordinates":[-27.5031,33.1782]}},{"type":"Feature","id":109422,"properties":{"mag":4.94,"bv":"0.489"},"geometry":{"type":"Point","coordinates":[-27.4634,-32.5484]}},{"type":"Feature","id":109427,"properties":{"mag":3.52,"bv":"0.086"},"geometry":{"type":"Point","coordinates":[-27.4501,6.1979]}},{"type":"Feature","id":109466,"properties":{"mag":5.98,"bv":"0.981"},"geometry":{"type":"Point","coordinates":[-27.3594,-4.2669]}},{"type":"Feature","id":109471,"properties":{"mag":5.78,"bv":"1.617"},"geometry":{"type":"Point","coordinates":[-27.344,11.6245]}},{"type":"Feature","id":109472,"properties":{"mag":5.43,"bv":"-0.117"},"geometry":{"type":"Point","coordinates":[-27.3438,-11.5649]}},{"type":"Feature","id":109474,"properties":{"mag":5.52,"bv":"0.391"},"geometry":{"type":"Point","coordinates":[-27.3384,70.1326]}},{"type":"Feature","id":109492,"properties":{"mag":3.39,"bv":"1.558"},"geometry":{"type":"Point","coordinates":[-27.2863,58.2013]}},{"type":"Feature","id":109521,"properties":{"mag":5.38,"bv":"0.152"},"geometry":{"type":"Point","coordinates":[-27.2088,50.8234]}},{"type":"Feature","id":109556,"properties":{"mag":5.05,"bv":"0.192"},"geometry":{"type":"Point","coordinates":[-27.1226,59.4145]}},{"type":"Feature","id":109572,"properties":{"mag":5.24,"bv":"0.534"},"geometry":{"type":"Point","coordinates":[-27.0468,56.8394]}},{"type":"Feature","id":109577,"properties":{"mag":5.93,"bv":"0.951"},"geometry":{"type":"Point","coordinates":[-27.0361,16.0406]}},{"type":"Feature","id":109592,"properties":{"mag":5.37,"bv":"1.184"},"geometry":{"type":"Point","coordinates":[-26.9916,60.7591]}},{"type":"Feature","id":109602,"properties":{"mag":5.97,"bv":"1.500"},"geometry":{"type":"Point","coordinates":[-26.9663,24.9506]}},{"type":"Feature","id":109620,"properties":{"mag":5.76,"bv":"1.645"},"geometry":{"type":"Point","coordinates":[-26.9065,63.291]}},{"type":"Feature","id":109654,"properties":{"mag":5.34,"bv":"1.134"},"geometry":{"type":"Point","coordinates":[-26.8007,34.6046]}},{"type":"Feature","id":109693,"properties":{"mag":5.27,"bv":"-0.030"},"geometry":{"type":"Point","coordinates":[-26.7058,86.108]}},{"type":"Feature","id":109730,"properties":{"mag":5.87,"bv":"1.169"},"geometry":{"type":"Point","coordinates":[-26.5888,28.608]}},{"type":"Feature","id":109737,"properties":{"mag":5.58,"bv":"0.497"},"geometry":{"type":"Point","coordinates":[-26.5649,-25.1809]}},{"type":"Feature","id":109745,"properties":{"mag":5.53,"bv":"0.021"},"geometry":{"type":"Point","coordinates":[-26.5448,45.4406]}},{"type":"Feature","id":109754,"properties":{"mag":4.5,"bv":"1.385"},"geometry":{"type":"Point","coordinates":[-26.5303,39.7149]}},{"type":"Feature","id":109786,"properties":{"mag":5.33,"bv":"0.812"},"geometry":{"type":"Point","coordinates":[-26.4249,-21.0746]}},{"type":"Feature","id":109789,"properties":{"mag":5.45,"bv":"-0.121"},"geometry":{"type":"Point","coordinates":[-26.4219,-27.7669]}},{"type":"Feature","id":109831,"properties":{"mag":5.72,"bv":"0.014"},"geometry":{"type":"Point","coordinates":[-26.3151,42.9539]}},{"type":"Feature","id":109857,"properties":{"mag":4.18,"bv":"0.278"},"geometry":{"type":"Point","coordinates":[-26.2409,57.0436]}},{"type":"Feature","id":109908,"properties":{"mag":4.79,"bv":"0.790"},"geometry":{"type":"Point","coordinates":[-26.0962,-41.3467]}},{"type":"Feature","id":109937,"properties":{"mag":4.14,"bv":"1.447"},"geometry":{"type":"Point","coordinates":[-26.0076,37.7487]}},{"type":"Feature","id":109972,"properties":{"mag":5.88,"bv":"0.950"},"geometry":{"type":"Point","coordinates":[-25.8893,57.2202]}},{"type":"Feature","id":109973,"properties":{"mag":5.11,"bv":"0.930"},"geometry":{"type":"Point","coordinates":[-25.8893,-41.6272]}},{"type":"Feature","id":110000,"properties":{"mag":5.34,"bv":"1.132"},"geometry":{"type":"Point","coordinates":[-25.7998,-12.8314]}},{"type":"Feature","id":110003,"properties":{"mag":4.17,"bv":"0.979"},"geometry":{"type":"Point","coordinates":[-25.7915,-7.7833]}},{"type":"Feature","id":110009,"properties":{"mag":5.8,"bv":"1.158"},"geometry":{"type":"Point","coordinates":[-25.781,-9.0401]}},{"type":"Feature","id":110023,"properties":{"mag":5.75,"bv":"0.878"},"geometry":{"type":"Point","coordinates":[-25.7229,-5.3872]}},{"type":"Feature","id":110078,"properties":{"mag":5.49,"bv":"0.312"},"geometry":{"type":"Point","coordinates":[-25.5392,-77.5116]}},{"type":"Feature","id":110103,"properties":{"mag":5.75,"bv":"1.256"},"geometry":{"type":"Point","coordinates":[-25.4473,62.8044]}},{"type":"Feature","id":110109,"properties":{"mag":5.36,"bv":"0.614"},"geometry":{"type":"Point","coordinates":[-25.4349,-53.6271]}},{"type":"Feature","id":110130,"properties":{"mag":2.87,"bv":"1.390"},"geometry":{"type":"Point","coordinates":[-25.3746,-60.2596]}},{"type":"Feature","id":110179,"properties":{"mag":5.96,"bv":"1.075"},"geometry":{"type":"Point","coordinates":[-25.2469,-13.305]}},{"type":"Feature","id":110256,"properties":{"mag":5.09,"bv":"1.276"},"geometry":{"type":"Point","coordinates":[-24.993,-80.4397]}},{"type":"Feature","id":110273,"properties":{"mag":5.35,"bv":"-0.048"},"geometry":{"type":"Point","coordinates":[-24.9503,-7.8211]}},{"type":"Feature","id":110298,"properties":{"mag":5.37,"bv":"-0.037"},"geometry":{"type":"Point","coordinates":[-24.8851,5.7895]}},{"type":"Feature","id":110351,"properties":{"mag":4.55,"bv":"-0.100"},"geometry":{"type":"Point","coordinates":[-24.7436,46.5366]}},{"type":"Feature","id":110371,"properties":{"mag":4.78,"bv":"-0.010"},"geometry":{"type":"Point","coordinates":[-24.6694,28.3305]}},{"type":"Feature","id":110386,"properties":{"mag":4.82,"bv":"-0.132"},"geometry":{"type":"Point","coordinates":[-24.6205,12.2052]}},{"type":"Feature","id":110391,"properties":{"mag":5.12,"bv":"1.057"},"geometry":{"type":"Point","coordinates":[-24.6018,-21.5982]}},{"type":"Feature","id":110395,"properties":{"mag":3.86,"bv":"-0.057"},"geometry":{"type":"Point","coordinates":[-24.5859,-1.3873]}},{"type":"Feature","id":110506,"properties":{"mag":5.62,"bv":"0.372"},"geometry":{"type":"Point","coordinates":[-24.2167,-45.9285]}},{"type":"Feature","id":110529,"properties":{"mag":5.53,"bv":"0.979"},"geometry":{"type":"Point","coordinates":[-24.1215,-24.7627]}},{"type":"Feature","id":110532,"properties":{"mag":5.92,"bv":"0.998"},"geometry":{"type":"Point","coordinates":[-24.116,-7.1944]}},{"type":"Feature","id":110538,"properties":{"mag":4.42,"bv":"1.015"},"geometry":{"type":"Point","coordinates":[-24.1099,52.229]}},{"type":"Feature","id":110578,"properties":{"mag":5.79,"bv":"-0.033"},"geometry":{"type":"Point","coordinates":[-23.9713,-4.837]}},{"type":"Feature","id":110602,"properties":{"mag":5.76,"bv":"0.970"},"geometry":{"type":"Point","coordinates":[-23.8872,-13.5294]}},{"type":"Feature","id":110609,"properties":{"mag":4.55,"bv":"0.092"},"geometry":{"type":"Point","coordinates":[-23.8709,49.4764]}},{"type":"Feature","id":110618,"properties":{"mag":5.28,"bv":"0.660"},"geometry":{"type":"Point","coordinates":[-23.8463,-72.2554]}},{"type":"Feature","id":110649,"properties":{"mag":5.31,"bv":"0.665"},"geometry":{"type":"Point","coordinates":[-23.765,-57.7974]}},{"type":"Feature","id":110668,"properties":{"mag":5.78,"bv":"0.396"},"geometry":{"type":"Point","coordinates":[-23.7058,-70.4316]}},{"type":"Feature","id":110672,"properties":{"mag":4.8,"bv":"-0.171"},"geometry":{"type":"Point","coordinates":[-23.6807,1.3774]}},{"type":"Feature","id":110725,"properties":{"mag":5.47,"bv":"1.216"},"geometry":{"type":"Point","coordinates":[-23.4966,70.7709]}},{"type":"Feature","id":110778,"properties":{"mag":5.55,"bv":"0.618"},"geometry":{"type":"Point","coordinates":[-23.3572,-16.7421]}},{"type":"Feature","id":110785,"properties":{"mag":5.76,"bv":"0.519"},"geometry":{"type":"Point","coordinates":[-23.3442,4.3938]}},{"type":"Feature","id":110787,"properties":{"mag":5.83,"bv":"0.171"},"geometry":{"type":"Point","coordinates":[-23.3233,78.7859]}},{"type":"Feature","id":110817,"properties":{"mag":5.52,"bv":"0.302"},"geometry":{"type":"Point","coordinates":[-23.2279,65.1323]}},{"type":"Feature","id":110838,"properties":{"mag":4.51,"bv":"-0.029"},"geometry":{"type":"Point","coordinates":[-23.1668,-64.9664]}},{"type":"Feature","id":110873,"properties":{"mag":6,"bv":"1.442"},"geometry":{"type":"Point","coordinates":[-23.0573,31.84]}},{"type":"Feature","id":110882,"properties":{"mag":4.78,"bv":"1.039"},"geometry":{"type":"Point","coordinates":[-23.0353,4.6957]}},{"type":"Feature","id":110935,"properties":{"mag":5.56,"bv":"0.208"},"geometry":{"type":"Point","coordinates":[-22.843,-67.4891]}},{"type":"Feature","id":110936,"properties":{"mag":5.47,"bv":"0.959"},"geometry":{"type":"Point","coordinates":[-22.8366,-39.1318]}},{"type":"Feature","id":110960,"properties":{"mag":3.65,"bv":"0.406"},"geometry":{"type":"Point","coordinates":[-22.792,-0.02]}},{"type":"Feature","id":110986,"properties":{"mag":5.6,"bv":"1.578"},"geometry":{"type":"Point","coordinates":[-22.7167,9.129]}},{"type":"Feature","id":110991,"properties":{"mag":4.07,"bv":"0.778"},"geometry":{"type":"Point","coordinates":[-22.7072,58.4152]}},{"type":"Feature","id":110992,"properties":{"mag":5.79,"bv":"1.252"},"geometry":{"type":"Point","coordinates":[-22.7074,26.7632]}},{"type":"Feature","id":110997,"properties":{"mag":3.97,"bv":"1.022"},"geometry":{"type":"Point","coordinates":[-22.6826,-43.4956]}},{"type":"Feature","id":111022,"properties":{"mag":4.34,"bv":"1.679"},"geometry":{"type":"Point","coordinates":[-22.6174,47.7069]}},{"type":"Feature","id":111043,"properties":{"mag":4.12,"bv":"1.570"},"geometry":{"type":"Point","coordinates":[-22.5607,-43.7492]}},{"type":"Feature","id":111045,"properties":{"mag":5.95,"bv":"0.362"},"geometry":{"type":"Point","coordinates":[-22.5583,-27.1073]}},{"type":"Feature","id":111056,"properties":{"mag":5.45,"bv":"0.093"},"geometry":{"type":"Point","coordinates":[-22.5293,78.8243]}},{"type":"Feature","id":111062,"properties":{"mag":5.51,"bv":"0.385"},"geometry":{"type":"Point","coordinates":[-22.5086,4.4317]}},{"type":"Feature","id":111068,"properties":{"mag":5.64,"bv":"-0.031"},"geometry":{"type":"Point","coordinates":[-22.4924,32.5726]}},{"type":"Feature","id":111104,"properties":{"mag":4.52,"bv":"-0.086"},"geometry":{"type":"Point","coordinates":[-22.3781,43.1234]}},{"type":"Feature","id":111123,"properties":{"mag":4.82,"bv":"-0.053"},"geometry":{"type":"Point","coordinates":[-22.3383,-10.678]}},{"type":"Feature","id":111169,"properties":{"mag":3.76,"bv":"0.031"},"geometry":{"type":"Point","coordinates":[-22.1771,50.2825]}},{"type":"Feature","id":111188,"properties":{"mag":4.29,"bv":"0.011"},"geometry":{"type":"Point","coordinates":[-22.1236,-32.3461]}},{"type":"Feature","id":111196,"properties":{"mag":5.76,"bv":"1.020"},"geometry":{"type":"Point","coordinates":[-22.0937,-85.9673]}},{"type":"Feature","id":111242,"properties":{"mag":5.7,"bv":"0.020"},"geometry":{"type":"Point","coordinates":[-21.9324,76.2264]}},{"type":"Feature","id":111259,"properties":{"mag":5.88,"bv":"0.166"},"geometry":{"type":"Point","coordinates":[-21.8901,39.7797]}},{"type":"Feature","id":111310,"properties":{"mag":4.91,"bv":"1.612"},"geometry":{"type":"Point","coordinates":[-21.7497,-61.9821]}},{"type":"Feature","id":111362,"properties":{"mag":5.72,"bv":"0.966"},"geometry":{"type":"Point","coordinates":[-21.5806,56.6247]}},{"type":"Feature","id":111394,"properties":{"mag":5.88,"bv":"0.977"},"geometry":{"type":"Point","coordinates":[-21.4879,-1.5743]}},{"type":"Feature","id":111449,"properties":{"mag":5.21,"bv":"0.446"},"geometry":{"type":"Point","coordinates":[-21.3265,-20.7082]}},{"type":"Feature","id":111497,"properties":{"mag":4.04,"bv":"-0.083"},"geometry":{"type":"Point","coordinates":[-21.1609,-0.1175]}},{"type":"Feature","id":111515,"properties":{"mag":5.97,"bv":"0.984"},"geometry":{"type":"Point","coordinates":[-21.0984,-23.9911]}},{"type":"Feature","id":111532,"properties":{"mag":5.08,"bv":"0.395"},"geometry":{"type":"Point","coordinates":[-21.0578,73.6432]}},{"type":"Feature","id":111546,"properties":{"mag":5.73,"bv":"-0.160"},"geometry":{"type":"Point","coordinates":[-21.0321,39.6343]}},{"type":"Feature","id":111600,"properties":{"mag":5.82,"bv":"1.074"},"geometry":{"type":"Point","coordinates":[-20.8523,-31.6638]}},{"type":"Feature","id":111643,"properties":{"mag":5.85,"bv":"0.060"},"geometry":{"type":"Point","coordinates":[-20.7548,-40.591]}},{"type":"Feature","id":111660,"properties":{"mag":5.8,"bv":"1.594"},"geometry":{"type":"Point","coordinates":[-20.696,75.3718]}},{"type":"Feature","id":111674,"properties":{"mag":4.64,"bv":"0.254"},"geometry":{"type":"Point","coordinates":[-20.6566,51.5451]}},{"type":"Feature","id":111710,"properties":{"mag":5.04,"bv":"1.140"},"geometry":{"type":"Point","coordinates":[-20.5609,-4.2281]}},{"type":"Feature","id":111795,"properties":{"mag":5.11,"bv":"1.537"},"geometry":{"type":"Point","coordinates":[-20.342,56.7956]}},{"type":"Feature","id":111797,"properties":{"mag":5.19,"bv":"0.083"},"geometry":{"type":"Point","coordinates":[-20.3373,63.5845]}},{"type":"Feature","id":111809,"properties":{"mag":5.66,"bv":"0.037"},"geometry":{"type":"Point","coordinates":[-20.2856,-33.0813]}},{"type":"Feature","id":111810,"properties":{"mag":5.84,"bv":"0.922"},"geometry":{"type":"Point","coordinates":[-20.2809,19.5223]}},{"type":"Feature","id":111841,"properties":{"mag":4.89,"bv":"-0.207"},"geometry":{"type":"Point","coordinates":[-20.1847,39.0503]}},{"type":"Feature","id":111925,"properties":{"mag":5.94,"bv":"0.946"},"geometry":{"type":"Point","coordinates":[-19.9233,53.8459]}},{"type":"Feature","id":111934,"properties":{"mag":5.88,"bv":"1.297"},"geometry":{"type":"Point","coordinates":[-19.9071,-30.6589]}},{"type":"Feature","id":111944,"properties":{"mag":4.5,"bv":"1.318"},"geometry":{"type":"Point","coordinates":[-19.8714,44.2763]}},{"type":"Feature","id":111954,"properties":{"mag":4.18,"bv":"-0.105"},"geometry":{"type":"Point","coordinates":[-19.8361,-27.0436]}},{"type":"Feature","id":111967,"properties":{"mag":5.98,"bv":"1.450"},"geometry":{"type":"Point","coordinates":[-19.7962,-57.4223]}},{"type":"Feature","id":111974,"properties":{"mag":5.72,"bv":"0.723"},"geometry":{"type":"Point","coordinates":[-19.7805,14.5492]}},{"type":"Feature","id":112029,"properties":{"mag":3.41,"bv":"-0.086"},"geometry":{"type":"Point","coordinates":[-19.6345,10.8314]}},{"type":"Feature","id":112031,"properties":{"mag":5.25,"bv":"-0.137"},"geometry":{"type":"Point","coordinates":[-19.6306,40.2254]}},{"type":"Feature","id":112041,"properties":{"mag":5.93,"bv":"0.998"},"geometry":{"type":"Point","coordinates":[-19.5998,41.5491]}},{"type":"Feature","id":112051,"properties":{"mag":4.8,"bv":"-0.013"},"geometry":{"type":"Point","coordinates":[-19.5608,29.3076]}},{"type":"Feature","id":112067,"properties":{"mag":5.92,"bv":"1.114"},"geometry":{"type":"Point","coordinates":[-19.5106,14.5164]}},{"type":"Feature","id":112117,"properties":{"mag":5.99,"bv":"0.584"},"geometry":{"type":"Point","coordinates":[-19.3463,-47.2108]}},{"type":"Feature","id":112122,"properties":{"mag":2.07,"bv":"1.610"},"geometry":{"type":"Point","coordinates":[-19.3331,-46.8846]}},{"type":"Feature","id":112158,"properties":{"mag":2.93,"bv":"0.852"},"geometry":{"type":"Point","coordinates":[-19.2494,30.2212]}},{"type":"Feature","id":112203,"properties":{"mag":4.84,"bv":"1.027"},"geometry":{"type":"Point","coordinates":[-19.1251,-41.4143]}},{"type":"Feature","id":112211,"properties":{"mag":4.68,"bv":"1.358"},"geometry":{"type":"Point","coordinates":[-19.1032,-18.8304]}},{"type":"Feature","id":112241,"properties":{"mag":5.93,"bv":"1.490"},"geometry":{"type":"Point","coordinates":[-18.9783,39.4653]}},{"type":"Feature","id":112242,"properties":{"mag":5.11,"bv":"0.960"},"geometry":{"type":"Point","coordinates":[-18.9772,41.8192]}},{"type":"Feature","id":112374,"properties":{"mag":4.84,"bv":"1.180"},"geometry":{"type":"Point","coordinates":[-18.5922,-53.5001]}},{"type":"Feature","id":112381,"properties":{"mag":5.52,"bv":"1.302"},"geometry":{"type":"Point","coordinates":[-18.5801,-46.5473]}},{"type":"Feature","id":112405,"properties":{"mag":4.13,"bv":"0.208"},"geometry":{"type":"Point","coordinates":[-18.4854,-81.3816]}},{"type":"Feature","id":112417,"properties":{"mag":5.84,"bv":"0.358"},"geometry":{"type":"Point","coordinates":[-18.4574,44.5461]}},{"type":"Feature","id":112440,"properties":{"mag":3.97,"bv":"1.070"},"geometry":{"type":"Point","coordinates":[-18.3672,23.5657]}},{"type":"Feature","id":112447,"properties":{"mag":4.2,"bv":"0.502"},"geometry":{"type":"Point","coordinates":[-18.3267,12.1729]}},{"type":"Feature","id":112519,"properties":{"mag":4.77,"bv":"1.257"},"geometry":{"type":"Point","coordinates":[-18.1289,83.1538]}},{"type":"Feature","id":112529,"properties":{"mag":5.24,"bv":"0.941"},"geometry":{"type":"Point","coordinates":[-18.112,-19.6134]}},{"type":"Feature","id":112542,"properties":{"mag":5.68,"bv":"-0.016"},"geometry":{"type":"Point","coordinates":[-18.0718,-14.0564]}},{"type":"Feature","id":112590,"properties":{"mag":5.82,"bv":"1.024"},"geometry":{"type":"Point","coordinates":[-17.954,37.4167]}},{"type":"Feature","id":112623,"properties":{"mag":3.49,"bv":"0.083"},"geometry":{"type":"Point","coordinates":[-17.8613,-51.3169]}},{"type":"Feature","id":112716,"properties":{"mag":4.05,"bv":"1.570"},"geometry":{"type":"Point","coordinates":[-17.6021,-13.5926]}},{"type":"Feature","id":112724,"properties":{"mag":3.5,"bv":"1.053"},"geometry":{"type":"Point","coordinates":[-17.5799,66.2004]}},{"type":"Feature","id":112731,"properties":{"mag":5.43,"bv":"1.167"},"geometry":{"type":"Point","coordinates":[-17.557,55.9028]}},{"type":"Feature","id":112748,"properties":{"mag":3.51,"bv":"0.933"},"geometry":{"type":"Point","coordinates":[-17.4992,24.6016]}},{"type":"Feature","id":112778,"properties":{"mag":5.91,"bv":"0.062"},"geometry":{"type":"Point","coordinates":[-17.4093,41.9534]}},{"type":"Feature","id":112781,"properties":{"mag":5.32,"bv":"-0.126"},"geometry":{"type":"Point","coordinates":[-17.4049,-80.1238]}},{"type":"Feature","id":112832,"properties":{"mag":5.43,"bv":"1.444"},"geometry":{"type":"Point","coordinates":[-17.241,-39.1568]}},{"type":"Feature","id":112833,"properties":{"mag":5.89,"bv":"1.340"},"geometry":{"type":"Point","coordinates":[-17.2374,85.3737]}},{"type":"Feature","id":112862,"properties":{"mag":5.99,"bv":"0.907"},"geometry":{"type":"Point","coordinates":[-17.1628,-29.5363]}},{"type":"Feature","id":112864,"properties":{"mag":5.61,"bv":"0.775"},"geometry":{"type":"Point","coordinates":[-17.1557,61.6967]}},{"type":"Feature","id":112917,"properties":{"mag":4.95,"bv":"1.559"},"geometry":{"type":"Point","coordinates":[-16.9915,43.3124]}},{"type":"Feature","id":112935,"properties":{"mag":5.16,"bv":"0.487"},"geometry":{"type":"Point","coordinates":[-16.8997,9.8357]}},{"type":"Feature","id":112948,"properties":{"mag":4.46,"bv":"-0.037"},"geometry":{"type":"Point","coordinates":[-16.8686,-32.8755]}},{"type":"Feature","id":112961,"properties":{"mag":3.73,"bv":"1.626"},"geometry":{"type":"Point","coordinates":[-16.8464,-7.5796]}},{"type":"Feature","id":112997,"properties":{"mag":5.86,"bv":"1.132"},"geometry":{"type":"Point","coordinates":[-16.7406,16.8412]}},{"type":"Feature","id":113031,"properties":{"mag":5.8,"bv":"-0.082"},"geometry":{"type":"Point","coordinates":[-16.6304,-11.6165]}},{"type":"Feature","id":113048,"properties":{"mag":5.79,"bv":"0.282"},"geometry":{"type":"Point","coordinates":[-16.5827,44.7492]}},{"type":"Feature","id":113084,"properties":{"mag":5.82,"bv":"1.136"},"geometry":{"type":"Point","coordinates":[-16.4709,40.3769]}},{"type":"Feature","id":113116,"properties":{"mag":4.7,"bv":"1.418"},"geometry":{"type":"Point","coordinates":[-16.396,84.3462]}},{"type":"Feature","id":113136,"properties":{"mag":3.27,"bv":"0.066"},"geometry":{"type":"Point","coordinates":[-16.3374,-15.8208]}},{"type":"Feature","id":113148,"properties":{"mag":5.53,"bv":"1.111"},"geometry":{"type":"Point","coordinates":[-16.3105,-16.272]}},{"type":"Feature","id":113174,"properties":{"mag":5.91,"bv":"0.397"},"geometry":{"type":"Point","coordinates":[-16.239,37.0768]}},{"type":"Feature","id":113184,"properties":{"mag":5.72,"bv":"0.881"},"geometry":{"type":"Point","coordinates":[-16.2043,-4.9879]}},{"type":"Feature","id":113186,"properties":{"mag":4.91,"bv":"-0.003"},"geometry":{"type":"Point","coordinates":[-16.193,8.8162]}},{"type":"Feature","id":113222,"properties":{"mag":5.73,"bv":"-0.051"},"geometry":{"type":"Point","coordinates":[-16.0646,36.3514]}},{"type":"Feature","id":113246,"properties":{"mag":4.2,"bv":"0.952"},"geometry":{"type":"Point","coordinates":[-16.0129,-32.5396]}},{"type":"Feature","id":113281,"properties":{"mag":5.6,"bv":"-0.149"},"geometry":{"type":"Point","coordinates":[-15.9015,41.6039]}},{"type":"Feature","id":113288,"properties":{"mag":4.99,"bv":"1.778"},"geometry":{"type":"Point","coordinates":[-15.8917,49.7335]}},{"type":"Feature","id":113307,"properties":{"mag":5.72,"bv":"0.226"},"geometry":{"type":"Point","coordinates":[-15.8008,-47.9692]}},{"type":"Feature","id":113327,"properties":{"mag":5.34,"bv":"-0.102"},"geometry":{"type":"Point","coordinates":[-15.7312,48.6841]}},{"type":"Feature","id":113357,"properties":{"mag":5.45,"bv":"0.666"},"geometry":{"type":"Point","coordinates":[-15.6334,20.7688]}},{"type":"Feature","id":113368,"properties":{"mag":1.17,"bv":"0.145"},"geometry":{"type":"Point","coordinates":[-15.5873,-29.6222]}},{"type":"Feature","id":113503,"properties":{"mag":5.76,"bv":"0.293"},"geometry":{"type":"Point","coordinates":[-15.2008,11.7288]}},{"type":"Feature","id":113521,"properties":{"mag":5.43,"bv":"0.982"},"geometry":{"type":"Point","coordinates":[-15.1356,0.9629]}},{"type":"Feature","id":113532,"properties":{"mag":5.51,"bv":"0.271"},"geometry":{"type":"Point","coordinates":[-15.101,-29.4623]}},{"type":"Feature","id":113561,"properties":{"mag":5.1,"bv":"1.011"},"geometry":{"type":"Point","coordinates":[-14.9787,56.9454]}},{"type":"Feature","id":113562,"properties":{"mag":5.66,"bv":"1.253"},"geometry":{"type":"Point","coordinates":[-14.9759,-25.1642]}},{"type":"Feature","id":113622,"properties":{"mag":5.85,"bv":"1.343"},"geometry":{"type":"Point","coordinates":[-14.8212,3.0118]}},{"type":"Feature","id":113638,"properties":{"mag":4.11,"bv":"0.960"},"geometry":{"type":"Point","coordinates":[-14.78,-52.7541]}},{"type":"Feature","id":113657,"properties":{"mag":5.68,"bv":"1.411"},"geometry":{"type":"Point","coordinates":[-14.7184,-50.95]}},{"type":"Feature","id":113669,"properties":{"mag":5.55,"bv":"1.349"},"geometry":{"type":"Point","coordinates":[-14.6692,-28.854]}},{"type":"Feature","id":113686,"properties":{"mag":5.94,"bv":"0.992"},"geometry":{"type":"Point","coordinates":[-14.6179,-4.7115]}},{"type":"Feature","id":113726,"properties":{"mag":3.62,"bv":"-0.099"},"geometry":{"type":"Point","coordinates":[-14.5197,42.326]}},{"type":"Feature","id":113788,"properties":{"mag":5.09,"bv":"0.094"},"geometry":{"type":"Point","coordinates":[-14.3484,42.7578]}},{"type":"Feature","id":113801,"properties":{"mag":5.97,"bv":"0.946"},"geometry":{"type":"Point","coordinates":[-14.3156,-20.8707]}},{"type":"Feature","id":113860,"properties":{"mag":5.12,"bv":"0.305"},"geometry":{"type":"Point","coordinates":[-14.1258,-34.7494]}},{"type":"Feature","id":113864,"properties":{"mag":5.25,"bv":"1.248"},"geometry":{"type":"Point","coordinates":[-14.113,67.2092]}},{"type":"Feature","id":113881,"properties":{"mag":2.44,"bv":"1.655"},"geometry":{"type":"Point","coordinates":[-14.0564,28.0828]}},{"type":"Feature","id":113889,"properties":{"mag":4.48,"bv":"-0.115"},"geometry":{"type":"Point","coordinates":[-14.0308,3.82]}},{"type":"Feature","id":113902,"properties":{"mag":5.79,"bv":"1.069"},"geometry":{"type":"Point","coordinates":[-14.0015,-41.4789]}},{"type":"Feature","id":113919,"properties":{"mag":4.64,"bv":"1.058"},"geometry":{"type":"Point","coordinates":[-13.9542,50.0521]}},{"type":"Feature","id":113957,"properties":{"mag":5.37,"bv":"1.453"},"geometry":{"type":"Point","coordinates":[-13.8349,-53.9649]}},{"type":"Feature","id":113963,"properties":{"mag":2.49,"bv":"-0.002"},"geometry":{"type":"Point","coordinates":[-13.8098,15.2053]}},{"type":"Feature","id":113969,"properties":{"mag":5.53,"bv":"0.395"},"geometry":{"type":"Point","coordinates":[-13.7824,-68.8202]}},{"type":"Feature","id":113996,"properties":{"mag":5.44,"bv":"0.312"},"geometry":{"type":"Point","coordinates":[-13.7092,-7.6938]}},{"type":"Feature","id":114104,"properties":{"mag":4.84,"bv":"-0.060"},"geometry":{"type":"Point","coordinates":[-13.3466,59.4198]}},{"type":"Feature","id":114119,"properties":{"mag":4.48,"bv":"0.892"},"geometry":{"type":"Point","coordinates":[-13.3298,-23.7431]}},{"type":"Feature","id":114131,"properties":{"mag":4.28,"bv":"0.423"},"geometry":{"type":"Point","coordinates":[-13.2803,-43.5204]}},{"type":"Feature","id":114132,"properties":{"mag":5.62,"bv":"0.006"},"geometry":{"type":"Point","coordinates":[-13.2766,-38.8923]}},{"type":"Feature","id":114144,"properties":{"mag":4.54,"bv":"1.559"},"geometry":{"type":"Point","coordinates":[-13.2489,9.4095]}},{"type":"Feature","id":114155,"properties":{"mag":4.76,"bv":"1.285"},"geometry":{"type":"Point","coordinates":[-13.2219,25.4683]}},{"type":"Feature","id":114167,"properties":{"mag":5.81,"bv":"0.486"},"geometry":{"type":"Point","coordinates":[-13.1884,-50.6867]}},{"type":"Feature","id":114189,"properties":{"mag":5.97,"bv":"0.259"},"geometry":{"type":"Point","coordinates":[-13.1304,21.1343]}},{"type":"Feature","id":114200,"properties":{"mag":5.3,"bv":"1.409"},"geometry":{"type":"Point","coordinates":[-13.0864,46.3872]}},{"type":"Feature","id":114210,"properties":{"mag":5.68,"bv":"0.449"},"geometry":{"type":"Point","coordinates":[-13.0609,49.2958]}},{"type":"Feature","id":114222,"properties":{"mag":4.41,"bv":"0.802"},"geometry":{"type":"Point","coordinates":[-13.0256,75.3875]}},{"type":"Feature","id":114254,"properties":{"mag":5.6,"bv":"0.882"},"geometry":{"type":"Point","coordinates":[-12.9122,-28.8237]}},{"type":"Feature","id":114273,"properties":{"mag":5.42,"bv":"0.908"},"geometry":{"type":"Point","coordinates":[-12.8295,2.1279]}},{"type":"Feature","id":114341,"properties":{"mag":3.68,"bv":"1.202"},"geometry":{"type":"Point","coordinates":[-12.6383,-21.1724]}},{"type":"Feature","id":114347,"properties":{"mag":5.05,"bv":"1.484"},"geometry":{"type":"Point","coordinates":[-12.6189,8.6772]}},{"type":"Feature","id":114365,"properties":{"mag":5.68,"bv":"0.315"},"geometry":{"type":"Point","coordinates":[-12.5661,59.3327]}},{"type":"Feature","id":114366,"properties":{"mag":5.88,"bv":"1.311"},"geometry":{"type":"Point","coordinates":[-12.564,-28.0886]}},{"type":"Feature","id":114375,"properties":{"mag":4.71,"bv":"0.674"},"geometry":{"type":"Point","coordinates":[-12.5213,-22.4576]}},{"type":"Feature","id":114382,"properties":{"mag":5.83,"bv":"0.475"},"geometry":{"type":"Point","coordinates":[-12.511,-42.8613]}},{"type":"Feature","id":114389,"properties":{"mag":5.39,"bv":"-0.068"},"geometry":{"type":"Point","coordinates":[-12.4939,9.8221]}},{"type":"Feature","id":114407,"properties":{"mag":5.9,"bv":"1.565"},"geometry":{"type":"Point","coordinates":[-12.4594,-40.5915]}},{"type":"Feature","id":114421,"properties":{"mag":3.88,"bv":"0.998"},"geometry":{"type":"Point","coordinates":[-12.4103,-45.2467]}},{"type":"Feature","id":114430,"properties":{"mag":5.91,"bv":"0.450"},"geometry":{"type":"Point","coordinates":[-12.3867,43.5442]}},{"type":"Feature","id":114449,"properties":{"mag":5.68,"bv":"1.330"},"geometry":{"type":"Point","coordinates":[-12.3223,17.5944]}},{"type":"Feature","id":114520,"properties":{"mag":5.15,"bv":"0.139"},"geometry":{"type":"Point","coordinates":[-12.0659,8.7201]}},{"type":"Feature","id":114570,"properties":{"mag":4.53,"bv":"0.302"},"geometry":{"type":"Point","coordinates":[-11.8625,49.4062]}},{"type":"Feature","id":114622,"properties":{"mag":5.57,"bv":"1.000"},"geometry":{"type":"Point","coordinates":[-11.6793,57.1684]}},{"type":"Feature","id":114641,"properties":{"mag":5.85,"bv":"1.004"},"geometry":{"type":"Point","coordinates":[-11.6396,11.065]}},{"type":"Feature","id":114724,"properties":{"mag":4.22,"bv":"1.545"},"geometry":{"type":"Point","coordinates":[-11.4193,-6.049]}},{"type":"Feature","id":114745,"properties":{"mag":5.89,"bv":"-0.010"},"geometry":{"type":"Point","coordinates":[-11.3454,74.2313]}},{"type":"Feature","id":114775,"properties":{"mag":5.77,"bv":"1.160"},"geometry":{"type":"Point","coordinates":[-11.2557,-41.1054]}},{"type":"Feature","id":114822,"properties":{"mag":5.56,"bv":"0.062"},"geometry":{"type":"Point","coordinates":[-11.1073,-3.4964]}},{"type":"Feature","id":114831,"properties":{"mag":5.55,"bv":"0.263"},"geometry":{"type":"Point","coordinates":[-11.0928,70.8881]}},{"type":"Feature","id":114855,"properties":{"mag":4.24,"bv":"1.107"},"geometry":{"type":"Point","coordinates":[-11.0271,-9.0877]}},{"type":"Feature","id":114921,"properties":{"mag":5.92,"bv":"1.053"},"geometry":{"type":"Point","coordinates":[-10.8342,-44.4892]}},{"type":"Feature","id":114924,"properties":{"mag":5.58,"bv":"0.556"},"geometry":{"type":"Point","coordinates":[-10.8237,53.2135]}},{"type":"Feature","id":114939,"properties":{"mag":4.93,"bv":"1.613"},"geometry":{"type":"Point","coordinates":[-10.7878,-7.7265]}},{"type":"Feature","id":114948,"properties":{"mag":5.64,"bv":"0.521"},"geometry":{"type":"Point","coordinates":[-10.7596,-62.0012]}},{"type":"Feature","id":114971,"properties":{"mag":3.7,"bv":"0.916"},"geometry":{"type":"Point","coordinates":[-10.7086,3.2823]}},{"type":"Feature","id":114996,"properties":{"mag":3.99,"bv":"0.410"},"geometry":{"type":"Point","coordinates":[-10.6426,-58.2357]}},{"type":"Feature","id":115022,"properties":{"mag":4.82,"bv":"1.668"},"geometry":{"type":"Point","coordinates":[-10.564,49.0153]}},{"type":"Feature","id":115033,"properties":{"mag":4.41,"bv":"-0.144"},"geometry":{"type":"Point","coordinates":[-10.5241,-9.1825]}},{"type":"Feature","id":115054,"properties":{"mag":5.54,"bv":"0.445"},"geometry":{"type":"Point","coordinates":[-10.4588,-40.8244]}},{"type":"Feature","id":115065,"properties":{"mag":5.98,"bv":"0.215"},"geometry":{"type":"Point","coordinates":[-10.4028,41.7737]}},{"type":"Feature","id":115088,"properties":{"mag":4.75,"bv":"0.836"},"geometry":{"type":"Point","coordinates":[-10.3438,68.1114]}},{"type":"Feature","id":115102,"properties":{"mag":4.41,"bv":"1.109"},"geometry":{"type":"Point","coordinates":[-10.294,-32.532]}},{"type":"Feature","id":115115,"properties":{"mag":4.99,"bv":"-0.022"},"geometry":{"type":"Point","coordinates":[-10.2597,-9.6107]}},{"type":"Feature","id":115125,"properties":{"mag":5.19,"bv":"0.895"},"geometry":{"type":"Point","coordinates":[-10.2235,-13.4547]}},{"type":"Feature","id":115126,"properties":{"mag":5.2,"bv":"0.787"},"geometry":{"type":"Point","coordinates":[-10.2222,-13.4586]}},{"type":"Feature","id":115142,"properties":{"mag":5.56,"bv":"0.386"},"geometry":{"type":"Point","coordinates":[-10.1501,-5.1244]}},{"type":"Feature","id":115144,"properties":{"mag":5.96,"bv":"1.534"},"geometry":{"type":"Point","coordinates":[-10.1496,-18.0754]}},{"type":"Feature","id":115152,"properties":{"mag":5.44,"bv":"1.014"},"geometry":{"type":"Point","coordinates":[-10.1258,48.6253]}},{"type":"Feature","id":115191,"properties":{"mag":5.81,"bv":"1.512"},"geometry":{"type":"Point","coordinates":[-10.0316,42.078]}},{"type":"Feature","id":115227,"properties":{"mag":5.05,"bv":"1.204"},"geometry":{"type":"Point","coordinates":[-9.9142,5.3813]}},{"type":"Feature","id":115250,"properties":{"mag":4.58,"bv":"0.180"},"geometry":{"type":"Point","coordinates":[-9.8407,23.7403]}},{"type":"Feature","id":115271,"properties":{"mag":5.58,"bv":"1.501"},"geometry":{"type":"Point","coordinates":[-9.7935,30.4149]}},{"type":"Feature","id":115280,"properties":{"mag":5.77,"bv":"0.468"},"geometry":{"type":"Point","coordinates":[-9.7781,38.1823]}},{"type":"Feature","id":115312,"properties":{"mag":5.65,"bv":"0.817"},"geometry":{"type":"Point","coordinates":[-9.6854,-26.9868]}},{"type":"Feature","id":115355,"properties":{"mag":5.35,"bv":"-0.101"},"geometry":{"type":"Point","coordinates":[-9.5211,31.8125]}},{"type":"Feature","id":115395,"properties":{"mag":5.56,"bv":"1.679"},"geometry":{"type":"Point","coordinates":[-9.3644,60.1335]}},{"type":"Feature","id":115404,"properties":{"mag":5.19,"bv":"0.203"},"geometry":{"type":"Point","coordinates":[-9.3368,-15.0393]}},{"type":"Feature","id":115438,"properties":{"mag":3.96,"bv":"1.082"},"geometry":{"type":"Point","coordinates":[-9.2574,-20.1006]}},{"type":"Feature","id":115444,"properties":{"mag":5.09,"bv":"1.315"},"geometry":{"type":"Point","coordinates":[-9.231,12.3139]}},{"type":"Feature","id":115537,"properties":{"mag":5.75,"bv":"1.611"},"geometry":{"type":"Point","coordinates":[-8.9447,-51.8912]}},{"type":"Feature","id":115590,"properties":{"mag":4.96,"bv":"1.676"},"geometry":{"type":"Point","coordinates":[-8.7906,62.2828]}},{"type":"Feature","id":115591,"properties":{"mag":5.56,"bv":"-0.075"},"geometry":{"type":"Point","coordinates":[-8.7882,32.3849]}},{"type":"Feature","id":115620,"properties":{"mag":5.6,"bv":"1.063"},"geometry":{"type":"Point","coordinates":[-8.6689,-56.849]}},{"type":"Feature","id":115623,"properties":{"mag":4.42,"bv":"0.617"},"geometry":{"type":"Point","coordinates":[-8.6551,23.4041]}},{"type":"Feature","id":115669,"properties":{"mag":4.38,"bv":"1.460"},"geometry":{"type":"Point","coordinates":[-8.4884,-20.642]}},{"type":"Feature","id":115713,"properties":{"mag":5.53,"bv":"0.409"},"geometry":{"type":"Point","coordinates":[-8.3476,-52.7216]}},{"type":"Feature","id":115738,"properties":{"mag":4.95,"bv":"0.036"},"geometry":{"type":"Point","coordinates":[-8.2669,1.2556]}},{"type":"Feature","id":115746,"properties":{"mag":5.56,"bv":"0.250"},"geometry":{"type":"Point","coordinates":[-8.2464,87.3075]}},{"type":"Feature","id":115755,"properties":{"mag":5.75,"bv":"-0.007"},"geometry":{"type":"Point","coordinates":[-8.2192,42.912]}},{"type":"Feature","id":115769,"properties":{"mag":5.63,"bv":"0.983"},"geometry":{"type":"Point","coordinates":[-8.1875,-58.4761]}},{"type":"Feature","id":115770,"properties":{"mag":5.6,"bv":"0.163"},"geometry":{"type":"Point","coordinates":[-8.1807,70.3598]}},{"type":"Feature","id":115806,"properties":{"mag":5.99,"bv":"-0.066"},"geometry":{"type":"Point","coordinates":[-8.0817,25.1673]}},{"type":"Feature","id":115830,"properties":{"mag":4.27,"bv":"1.062"},"geometry":{"type":"Point","coordinates":[-8.0079,6.379]}},{"type":"Feature","id":115836,"properties":{"mag":5.5,"bv":"1.278"},"geometry":{"type":"Point","coordinates":[-7.9842,-87.4822]}},{"type":"Feature","id":115908,"properties":{"mag":5.66,"bv":"-0.142"},"geometry":{"type":"Point","coordinates":[-7.7459,-63.1107]}},{"type":"Feature","id":115919,"properties":{"mag":4.54,"bv":"0.939"},"geometry":{"type":"Point","coordinates":[-7.7113,12.7606]}},{"type":"Feature","id":115990,"properties":{"mag":4.89,"bv":"-0.122"},"geometry":{"type":"Point","coordinates":[-7.4919,58.5489]}},{"type":"Feature","id":116076,"properties":{"mag":5.22,"bv":"1.029"},"geometry":{"type":"Point","coordinates":[-7.1774,39.2362]}},{"type":"Feature","id":116231,"properties":{"mag":4.38,"bv":"-0.095"},"geometry":{"type":"Point","coordinates":[-6.7573,-37.8183]}},{"type":"Feature","id":116247,"properties":{"mag":4.7,"bv":"0.020"},"geometry":{"type":"Point","coordinates":[-6.6807,-20.9145]}},{"type":"Feature","id":116250,"properties":{"mag":5.82,"bv":"0.681"},"geometry":{"type":"Point","coordinates":[-6.6684,-77.3853]}},{"type":"Feature","id":116264,"properties":{"mag":5.33,"bv":"1.481"},"geometry":{"type":"Point","coordinates":[-6.6329,22.4988]}},{"type":"Feature","id":116310,"properties":{"mag":4.97,"bv":"1.383"},"geometry":{"type":"Point","coordinates":[-6.5117,31.3253]}},{"type":"Feature","id":116323,"properties":{"mag":5.91,"bv":"0.299"},"geometry":{"type":"Point","coordinates":[-6.4624,-1.2476]}},{"type":"Feature","id":116354,"properties":{"mag":5.55,"bv":"0.096"},"geometry":{"type":"Point","coordinates":[-6.3436,40.2364]}},{"type":"Feature","id":116355,"properties":{"mag":5.63,"bv":"1.042"},"geometry":{"type":"Point","coordinates":[-6.3408,33.4973]}},{"type":"Feature","id":116368,"properties":{"mag":5.95,"bv":"1.350"},"geometry":{"type":"Point","coordinates":[-6.2943,-15.246]}},{"type":"Feature","id":116380,"properties":{"mag":5.86,"bv":"1.681"},"geometry":{"type":"Point","coordinates":[-6.254,71.642]}},{"type":"Feature","id":116389,"properties":{"mag":4.69,"bv":"0.078"},"geometry":{"type":"Point","coordinates":[-6.231,-42.6151]}},{"type":"Feature","id":116495,"properties":{"mag":5.68,"bv":"0.449"},"geometry":{"type":"Point","coordinates":[-5.903,2.1022]}},{"type":"Feature","id":116582,"properties":{"mag":5.81,"bv":"-0.064"},"geometry":{"type":"Point","coordinates":[-5.6165,44.429]}},{"type":"Feature","id":116584,"properties":{"mag":3.81,"bv":"0.984"},"geometry":{"type":"Point","coordinates":[-5.609,46.4582]}},{"type":"Feature","id":116591,"properties":{"mag":5.66,"bv":"1.025"},"geometry":{"type":"Point","coordinates":[-5.5852,-13.0602]}},{"type":"Feature","id":116602,"properties":{"mag":4.74,"bv":"0.082"},"geometry":{"type":"Point","coordinates":[-5.5375,-45.4924]}},{"type":"Feature","id":116611,"properties":{"mag":5.49,"bv":"0.010"},"geometry":{"type":"Point","coordinates":[-5.5133,18.4007]}},{"type":"Feature","id":116631,"properties":{"mag":4.29,"bv":"-0.083"},"geometry":{"type":"Point","coordinates":[-5.4658,43.2681]}},{"type":"Feature","id":116653,"properties":{"mag":5.99,"bv":"0.907"},"geometry":{"type":"Point","coordinates":[-5.4005,-76.8696]}},{"type":"Feature","id":116709,"properties":{"mag":5.35,"bv":"-0.061"},"geometry":{"type":"Point","coordinates":[-5.2153,50.4717]}},{"type":"Feature","id":116714,"properties":{"mag":5.95,"bv":"0.124"},"geometry":{"type":"Point","coordinates":[-5.2076,75.2929]}},{"type":"Feature","id":116727,"properties":{"mag":3.21,"bv":"1.031"},"geometry":{"type":"Point","coordinates":[-5.1631,77.6323]}},{"type":"Feature","id":116728,"properties":{"mag":5.98,"bv":"0.889"},"geometry":{"type":"Point","coordinates":[-5.1619,74.0026]}},{"type":"Feature","id":116758,"properties":{"mag":4.97,"bv":"0.257"},"geometry":{"type":"Point","coordinates":[-5.0539,-14.2222]}},{"type":"Feature","id":116768,"properties":{"mag":5.99,"bv":"0.212"},"geometry":{"type":"Point","coordinates":[-5.0207,9.6773]}},{"type":"Feature","id":116771,"properties":{"mag":4.13,"bv":"0.507"},"geometry":{"type":"Point","coordinates":[-5.0123,5.6263]}},{"type":"Feature","id":116805,"properties":{"mag":4.15,"bv":"-0.071"},"geometry":{"type":"Point","coordinates":[-4.8979,44.3339]}},{"type":"Feature","id":116820,"properties":{"mag":5.3,"bv":"0.965"},"geometry":{"type":"Point","coordinates":[-4.841,-32.0731]}},{"type":"Feature","id":116853,"properties":{"mag":5.89,"bv":"0.984"},"geometry":{"type":"Point","coordinates":[-4.7129,-11.6807]}},{"type":"Feature","id":116889,"properties":{"mag":5.36,"bv":"1.580"},"geometry":{"type":"Point","coordinates":[-4.6063,-18.0271]}},{"type":"Feature","id":116901,"properties":{"mag":4.82,"bv":"0.822"},"geometry":{"type":"Point","coordinates":[-4.5591,-17.8165]}},{"type":"Feature","id":116918,"properties":{"mag":5.89,"bv":"0.101"},"geometry":{"type":"Point","coordinates":[-4.5138,7.2505]}},{"type":"Feature","id":116928,"properties":{"mag":4.49,"bv":"0.200"},"geometry":{"type":"Point","coordinates":[-4.4883,1.78]}},{"type":"Feature","id":116957,"properties":{"mag":5.27,"bv":"1.344"},"geometry":{"type":"Point","coordinates":[-4.3841,-15.448]}},{"type":"Feature","id":116971,"properties":{"mag":4.49,"bv":"-0.032"},"geometry":{"type":"Point","coordinates":[-4.3194,-14.5449]}},{"type":"Feature","id":117020,"properties":{"mag":5.09,"bv":"1.692"},"geometry":{"type":"Point","coordinates":[-4.1568,10.3315]}},{"type":"Feature","id":117073,"properties":{"mag":4.93,"bv":"0.935"},"geometry":{"type":"Point","coordinates":[-4.0021,29.3615]}},{"type":"Feature","id":117088,"properties":{"mag":5.73,"bv":"1.393"},"geometry":{"type":"Point","coordinates":[-3.9498,-64.4045]}},{"type":"Feature","id":117089,"properties":{"mag":5.24,"bv":"-0.084"},"geometry":{"type":"Point","coordinates":[-3.9497,-18.2769]}},{"type":"Feature","id":117125,"properties":{"mag":5.74,"bv":"1.108"},"geometry":{"type":"Point","coordinates":[-3.8298,-78.7914]}},{"type":"Feature","id":117218,"properties":{"mag":5.28,"bv":"0.299"},"geometry":{"type":"Point","coordinates":[-3.4962,-18.6783]}},{"type":"Feature","id":117221,"properties":{"mag":4.97,"bv":"1.086"},"geometry":{"type":"Point","coordinates":[-3.4915,46.4203]}},{"type":"Feature","id":117245,"properties":{"mag":4.95,"bv":"2.508"},"geometry":{"type":"Point","coordinates":[-3.402,3.4868]}},{"type":"Feature","id":117265,"properties":{"mag":5.95,"bv":"-0.049"},"geometry":{"type":"Point","coordinates":[-3.3469,66.7822]}},{"type":"Feature","id":117299,"properties":{"mag":5.55,"bv":"1.630"},"geometry":{"type":"Point","coordinates":[-3.242,57.4514]}},{"type":"Feature","id":117301,"properties":{"mag":4.88,"bv":"1.122"},"geometry":{"type":"Point","coordinates":[-3.2356,58.652]}},{"type":"Feature","id":117314,"properties":{"mag":5.74,"bv":"1.068"},"geometry":{"type":"Point","coordinates":[-3.1837,-11.9111]}},{"type":"Feature","id":117315,"properties":{"mag":5.18,"bv":"-0.164"},"geometry":{"type":"Point","coordinates":[-3.1834,-50.2265]}},{"type":"Feature","id":117371,"properties":{"mag":5.05,"bv":"0.007"},"geometry":{"type":"Point","coordinates":[-3.0218,67.8068]}},{"type":"Feature","id":117375,"properties":{"mag":5.49,"bv":"0.941"},"geometry":{"type":"Point","coordinates":[-3.0144,-2.7616]}},{"type":"Feature","id":117447,"properties":{"mag":5.43,"bv":"0.670"},"geometry":{"type":"Point","coordinates":[-2.791,62.2145]}},{"type":"Feature","id":117452,"properties":{"mag":4.59,"bv":"0.001"},"geometry":{"type":"Point","coordinates":[-2.7686,-28.1303]}},{"type":"Feature","id":117491,"properties":{"mag":5.77,"bv":"0.167"},"geometry":{"type":"Point","coordinates":[-2.6355,1.0761]}},{"type":"Feature","id":117500,"properties":{"mag":5.95,"bv":"0.187"},"geometry":{"type":"Point","coordinates":[-2.5859,28.8424]}},{"type":"Feature","id":117503,"properties":{"mag":5.86,"bv":"0.806"},"geometry":{"type":"Point","coordinates":[-2.5793,36.4253]}},{"type":"Feature","id":117541,"properties":{"mag":5.93,"bv":"1.133"},"geometry":{"type":"Point","coordinates":[-2.4386,-9.9741]}},{"type":"Feature","id":117567,"properties":{"mag":5.7,"bv":"1.488"},"geometry":{"type":"Point","coordinates":[-2.3613,-14.4015]}},{"type":"Feature","id":117628,"properties":{"mag":5.77,"bv":"1.661"},"geometry":{"type":"Point","coordinates":[-2.1615,9.3134]}},{"type":"Feature","id":117629,"properties":{"mag":5.17,"bv":"-0.122"},"geometry":{"type":"Point","coordinates":[-2.1611,-18.9092]}},{"type":"Feature","id":117683,"properties":{"mag":5.59,"bv":"1.527"},"geometry":{"type":"Point","coordinates":[-2.009,2.9304]}},{"type":"Feature","id":117689,"properties":{"mag":5.1,"bv":"0.934"},"geometry":{"type":"Point","coordinates":[-1.973,-82.0188]}},{"type":"Feature","id":117718,"properties":{"mag":5.06,"bv":"1.587"},"geometry":{"type":"Point","coordinates":[-1.878,19.1203]}},{"type":"Feature","id":117722,"properties":{"mag":5.85,"bv":"1.252"},"geometry":{"type":"Point","coordinates":[-1.875,-14.2512]}},{"type":"Feature","id":117730,"properties":{"mag":5.3,"bv":"0.186"},"geometry":{"type":"Point","coordinates":[-1.8454,10.9473]}},{"type":"Feature","id":117756,"properties":{"mag":5.76,"bv":"1.171"},"geometry":{"type":"Point","coordinates":[-1.7895,-8.9968]}},{"type":"Feature","id":117761,"properties":{"mag":5.93,"bv":"1.069"},"geometry":{"type":"Point","coordinates":[-1.7685,-3.1555]}},{"type":"Feature","id":117863,"properties":{"mag":4.51,"bv":"1.190"},"geometry":{"type":"Point","coordinates":[-1.404,57.4994]}},{"type":"Feature","id":117887,"properties":{"mag":5.78,"bv":"1.466"},"geometry":{"type":"Point","coordinates":[-1.3057,0.1093]}},{"type":"Feature","id":118077,"properties":{"mag":5.57,"bv":"0.478"},"geometry":{"type":"Point","coordinates":[-0.7147,55.7057]}},{"type":"Feature","id":118092,"properties":{"mag":5.95,"bv":"0.101"},"geometry":{"type":"Point","coordinates":[-0.6671,-62.9566]}},{"type":"Feature","id":118114,"properties":{"mag":5.72,"bv":"1.055"},"geometry":{"type":"Point","coordinates":[-0.613,-82.1698]}},{"type":"Feature","id":118121,"properties":{"mag":5,"bv":"0.060"},"geometry":{"type":"Point","coordinates":[-0.6038,-64.2982]}},{"type":"Feature","id":118131,"properties":{"mag":4.63,"bv":"1.584"},"geometry":{"type":"Point","coordinates":[-0.5603,25.1414]}},{"type":"Feature","id":118209,"properties":{"mag":4.88,"bv":"0.930"},"geometry":{"type":"Point","coordinates":[-0.3318,-3.556]}},{"type":"Feature","id":118234,"properties":{"mag":5.13,"bv":"1.121"},"geometry":{"type":"Point","coordinates":[-0.2676,-52.7458]}},{"type":"Feature","id":118243,"properties":{"mag":4.88,"bv":"-0.071"},"geometry":{"type":"Point","coordinates":[-0.2478,55.7549]}},{"type":"Feature","id":118268,"properties":{"mag":4.03,"bv":"0.419"},"geometry":{"type":"Point","coordinates":[-0.1721,6.8633]}},{"type":"Feature","id":118277,"properties":{"mag":5.59,"bv":"1.599"},"geometry":{"type":"Point","coordinates":[-0.1338,-29.4852]}},{"type":"Feature","id":118281,"properties":{"mag":5.81,"bv":"0.539"},"geometry":{"type":"Point","coordinates":[-0.1279,33.7239]}},{"type":"Feature","id":118322,"properties":{"mag":4.49,"bv":"-0.075"},"geometry":{"type":"Point","coordinates":[-0.0209,-65.5771]}}]} \ No newline at end of file From b5b2e5b80773c39b5ebda3212441e46a5c4d75ca Mon Sep 17 00:00:00 2001 From: robozor <7280092+robozor@users.noreply.github.com> Date: Sun, 14 Jun 2026 21:35:19 +0200 Subject: [PATCH 03/11] FE: fix .hidden being overridden by .modal/.layout display rules .modal and .layout set display:flex later in the stylesheet than .hidden{display:none}, so an element with both classes stayed visible -- the About dialog popped up on load and its close button could not hide it. Make .hidden use !important so it always wins. Co-Authored-By: Claude Opus 4.8 --- frontend/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/index.html b/frontend/index.html index ec25b73..bb28a93 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -43,7 +43,7 @@ th { color: #9a9aa6; font-weight: 600; } td.num { font-variant-numeric: tabular-nums; } .pill { padding: 2px 8px; border-radius: 999px; font-size: 11px; background: #2a2a34; } - .hidden { display: none; } + .hidden { display: none !important; } /* two-column layout: measurements grid + sky map */ .layout { display: flex; gap: 20px; align-items: flex-start; } From 6e2e8362afe09b46cd521c57f09ed78c424a10e2 Mon Sep 17 00:00:00 2001 From: robozor <7280092+robozor@users.noreply.github.com> Date: Sun, 14 Jun 2026 22:00:00 +0200 Subject: [PATCH 04/11] FE i18n (device-stored) + horizon half-dome sky view Localization: - Web language is now a per-device setting stored in the API: Device.fe_language (migration 0002), returned by GET /v1/web/me and set via POST /v1/web/settings. - frontend/i18n.js: cs/en dictionary + data-i18n DOM application + t(); CZ/EN switcher next to "About" persists to the device (and localStorage); language loads from /me on sign-in. Cardinal directions are localized too (S/V/J/Z). Sky view reworked per feedback (the full zenith disk was unsuitable): - Full-viewport layout: grid left (content width, own scroll), map fills the rest (full height + width). - sky.js is now a custom SVG "horizon dome": a half-circle whose flat bottom is the horizon with cardinal-direction marks; altitude grows to the zenith; only above-horizon sky is drawn; the view faces the meteor and the trail is green (start) -> red (end). Bright stars (Hipparcos) are converted RA/Dec->alt/az client-side; the trail uses the measured alt/az directly (exact). - Verified end-to-end in the browser (CZ/EN switch, trail, cardinal labels). Co-Authored-By: Claude Opus 4.8 --- .../migrations/0002_device_fe_language.py | 15 + backend/apps/devices/models.py | 4 + backend/apps/web/api.py | 29 +- frontend/app.js | 87 ++++-- frontend/i18n.js | 124 +++++++++ frontend/index.html | 187 ++++++------- frontend/sky.js | 256 ++++++++++++------ frontend/skytest.html | 20 +- 8 files changed, 508 insertions(+), 214 deletions(-) create mode 100644 backend/apps/devices/migrations/0002_device_fe_language.py create mode 100644 frontend/i18n.js diff --git a/backend/apps/devices/migrations/0002_device_fe_language.py b/backend/apps/devices/migrations/0002_device_fe_language.py new file mode 100644 index 0000000..eb46982 --- /dev/null +++ b/backend/apps/devices/migrations/0002_device_fe_language.py @@ -0,0 +1,15 @@ +from django.db import migrations, models + + +class Migration(migrations.Migration): + dependencies = [ + ("devices", "0001_initial"), + ] + + operations = [ + migrations.AddField( + model_name="device", + name="fe_language", + field=models.CharField(blank=True, default="cs", max_length=5), + ), + ] diff --git a/backend/apps/devices/models.py b/backend/apps/devices/models.py index c1081fd..55beaa5 100644 --- a/backend/apps/devices/models.py +++ b/backend/apps/devices/models.py @@ -14,6 +14,10 @@ class Device(models.Model): public_key = models.TextField() # base64, raw Ed25519 public key (32 bytes) label = models.CharField(max_length=120, blank=True, default="") + # Preferred web-frontend language for this device (a per-device setting, + # stored server-side so it follows the device across browsers). + fe_language = models.CharField(max_length=5, blank=True, default="cs") + created_at = models.DateTimeField(auto_now_add=True) last_seen_at = models.DateTimeField(null=True, blank=True) revoked_at = models.DateTimeField(null=True, blank=True) diff --git a/backend/apps/web/api.py b/backend/apps/web/api.py index 85a19b6..fc423ed 100644 --- a/backend/apps/web/api.py +++ b/backend/apps/web/api.py @@ -40,6 +40,11 @@ class PollOut(Schema): class MeOut(Schema): device_id: str label: str + language: str + + +class SettingsIn(Schema): + language: str class ReportRow(Schema): @@ -160,10 +165,32 @@ def poll(request, payload: PollIn, response: HttpResponse): # ---- authenticated web session ---- +def _me_payload(device): + return { + "device_id": str(device.id), + "label": device.label, + "language": device.fe_language or "cs", + } + + @router.get("/me", auth=web_auth, response=MeOut) def me(request): + return _me_payload(request.web_device) + + +# Supported web-frontend languages; anything else falls back to Czech. +WEB_LANGUAGES = {"cs", "en"} + + +@router.post("/settings", auth=web_auth, response=MeOut) +def update_settings(request, payload: SettingsIn): + """Persist this device's web-frontend language preference.""" device = request.web_device - return {"device_id": str(device.id), "label": device.label} + lang = payload.language if payload.language in WEB_LANGUAGES else "cs" + if lang != device.fe_language: + device.fe_language = lang + device.save(update_fields=["fe_language"]) + return _me_payload(device) @router.get("/reports", auth=web_auth, response=list[ReportRow]) diff --git a/frontend/app.js b/frontend/app.js index 72c84e8..c7fd748 100644 --- a/frontend/app.js +++ b/frontend/app.js @@ -1,6 +1,7 @@ // Minimal login-test frontend. The real frontend (framework, full UI) follows. // The API is assumed to run on the same host, port 8000. const API = `${location.protocol}//${location.hostname}:8000`; +const t = (k, v) => window.MPI18n.t(k, v); const $ = (id) => document.getElementById(id); @@ -17,23 +18,29 @@ function fmt(v, digits = 1) { return v === null || v === undefined ? '—' : Number(v).toFixed(digits); } -// Site-local wall-clock time from an ISO string with offset, shown as-is -// (independent of the viewer's own time zone). +// Site-local wall-clock time from an ISO string with offset (shown as-is, +// independent of the viewer's own time zone). function fmtLocal(iso) { if (!iso) return '—'; const m = iso.match(/(\d{4})-(\d{2})-(\d{2})T(\d{2}):(\d{2})/); return m ? `${m[3]}.${m[2]}.${m[1]} ${m[4]}:${m[5]}` : iso; } +let meData = null; // { device_id, count } +let selectedDetail = null; // last loaded measurement detail (for re-render) + async function loadGrid() { const me = await api('/v1/web/me'); if (!me.ok) return startLogin(); - const meData = await me.json(); - $('deviceId').textContent = meData.device_id.slice(0, 8); + const m = await me.json(); + if (window.MPI18n.supported(m.language)) { + window.MPI18n.setLang(m.language); + localStorage.setItem('mp_lang', m.language); + } const res = await api('/v1/web/reports'); const rows = res.ok ? await res.json() : []; - $('count').textContent = rows.length; + meData = { device_id: m.device_id.slice(0, 8), count: rows.length }; $('rows').innerHTML = rows .map( (r) => ` @@ -47,47 +54,50 @@ async function loadGrid() { `, ) .join(''); + refreshGridIntro(); show('app'); } -// Click a row -> fetch the parsed detail -> draw the trail on the sky map. +function refreshGridIntro() { + if (meData) $('gridIntro').textContent = t('grid.intro', { device: meData.device_id, n: meData.count }); +} + +// Click a row -> fetch the parsed detail -> draw the trail on the sky dome. async function selectReport(key, tr) { document.querySelectorAll('#rows tr.selected').forEach((el) => el.classList.remove('selected')); if (tr) tr.classList.add('selected'); - $('skyCaption').textContent = 'Načítám…'; + $('skyCaption').textContent = t('sky.loading'); const res = await api('/v1/web/reports/' + key); if (!res.ok) { - $('skyCaption').textContent = 'Detail měření se nepodařilo načíst.'; + selectedDetail = null; + $('skyCaption').textContent = t('sky.loadFail'); return; } - const d = await res.json(); - const rendered = MeteorSky.render(d); - showSkyCaption(d, rendered); + selectedDetail = await res.json(); + showSkyCaption(selectedDetail); } -function showSkyCaption(d, rendered) { +function showSkyCaption(d) { const cap = $('skyCaption'); - if (!rendered) { - cap.innerHTML = 'Měření nemá GPS souřadnice nebo čas — stopu na obloze nelze vykreslit.'; - return; - } + const rendered = d ? MeteorSky.render(d) : false; + if (!d) { cap.textContent = t('sky.pick'); return; } + if (!rendered) { cap.textContent = t('sky.noCoords'); return; } const tz = d.event_tz ? ` (${d.event_tz})` : ''; const s = d.start, e = d.end; cap.innerHTML = `${fmtLocal(d.event_local || d.event_utc)}${tz}
` + - `Start ALT/AZ ${fmt(s.alt)}° / ${fmt(s.az)}° · RA/Dek ${fmt(s.ra, 1)}° / ${fmt(s.dec, 1)}°
` + - `Konec ALT/AZ ${fmt(e.alt)}° / ${fmt(e.az)}° · RA/Dek ${fmt(e.ra, 1)}° / ${fmt(e.dec, 1)}°`; + `${t('sky.startLabel')} ALT/AZ ${fmt(s.alt)}° / ${fmt(s.az)}° · RA/Dek ${fmt(s.ra, 1)}° / ${fmt(s.dec, 1)}°
` + + `${t('sky.endLabel')} ALT/AZ ${fmt(e.alt)}° / ${fmt(e.az)}° · RA/Dek ${fmt(e.ra, 1)}° / ${fmt(e.dec, 1)}°`; } let pollTimer = null; async function startLogin() { show('login'); - $('loginStatus').textContent = 'Čekám na potvrzení v aplikaci…'; + $('loginStatus').textContent = t('login.waiting'); const res = await api('/v1/web/device-code', { method: 'POST' }); const { user_code, device_code, interval } = await res.json(); $('userCode').textContent = user_code; - // QR encodes the plain user code; the in-app scanner reads and approves it. $('qr').src = `${API}/v1/web/qr?data=${encodeURIComponent(user_code)}`; clearInterval(pollTimer); @@ -103,11 +113,35 @@ async function startLogin() { loadGrid(); } else if (status === 'expired') { clearInterval(pollTimer); - startLogin(); // restart with a fresh code + startLogin(); } }, (interval || 2) * 1000); } +// Re-apply language-dependent dynamic content whenever the language changes. +window.onI18nApplied = function () { + refreshGridIntro(); + if (selectedDetail) showSkyCaption(selectedDetail); + else $('skyCaption').textContent = t('sky.pick'); + if (window.MeteorSky) MeteorSky.redraw(); +}; + +// Language switcher: update UI now, persist on the device (if signed in). +document.querySelectorAll('[data-lang]').forEach((btn) => { + btn.addEventListener('click', async () => { + const lang = btn.getAttribute('data-lang'); + window.MPI18n.setLang(lang); + localStorage.setItem('mp_lang', lang); + if (meData) { + await api('/v1/web/settings', { + method: 'POST', + headers: { 'Content-Type': 'application/json' }, + body: JSON.stringify({ language: lang }), + }); + } + }); +}); + // Row selection (event delegation). $('rows').addEventListener('click', (e) => { const tr = e.target.closest('tr'); @@ -123,8 +157,19 @@ $('aboutModal').addEventListener('click', (e) => { $('logout').addEventListener('click', async () => { await api('/v1/web/logout', { method: 'POST' }); + meData = null; + selectedDetail = null; startLogin(); }); +// Provisional language before we know the device setting: stored choice, else +// the browser language, else Czech. +(function initLang() { + const stored = localStorage.getItem('mp_lang'); + const nav = (navigator.language || 'cs').slice(0, 2); + const lang = window.MPI18n.supported(stored) ? stored : (window.MPI18n.supported(nav) ? nav : 'cs'); + window.MPI18n.setLang(lang); +})(); + // Start: if already logged in, show the grid; otherwise begin the login flow. loadGrid(); diff --git a/frontend/i18n.js b/frontend/i18n.js new file mode 100644 index 0000000..785e0cb --- /dev/null +++ b/frontend/i18n.js @@ -0,0 +1,124 @@ +// Tiny i18n for the web frontend. The active language is a per-device setting +// stored in the API (loaded from /me, saved via /settings); this module only +// holds the strings and applies them to the DOM. +(function (global) { + 'use strict'; + + var DICT = { + cs: { + about: 'O aplikaci', logout: 'Odhlásit', + login: { + heading: 'Přihlášení přes mobilní aplikaci', + howto: 'V aplikaci klepni Autorizovat web, pak Skenovat QR a namiř na kód níže — nebo kód opiš ručně:', + waiting: 'Čekám na potvrzení v aplikaci…', + }, + grid: { + intro: 'Přihlášen jako zařízení {device} — {n} měření. Klepni na řádek pro zobrazení stopy na obloze.', + received: 'Přijato', status: 'Stav', startAltAz: 'Start ALT/AZ', endAltAz: 'Konec ALT/AZ', + quality: 'Kvalita', gps: 'GPS', acc: '±m', + }, + sky: { + head: 'Obloha v čase a místě měření', + start: 'začátek stopy', end: 'konec stopy', + pick: 'Vyber měření vlevo pro zobrazení stopy meteoru.', + loading: 'Načítám…', + loadFail: 'Detail měření se nepodařilo načíst.', + noCoords: 'Měření nemá GPS souřadnice nebo čas — stopu na obloze nelze vykreslit.', + startLabel: 'Start', endLabel: 'Konec', + }, + dir: { N: 'S', NE: 'SV', E: 'V', SE: 'JV', S: 'J', SW: 'JZ', W: 'Z', NW: 'SZ' }, + about_box: { + tagline: 'Síť pro pozorování meteorů Bolidozor. Web pro nekomerční a výzkumné účely. Naměřená data jsou poskytována pod licencí CC0 1.0 (volné dílo).', + compH: 'Použité komponenty a licence', + compIntro: 'Tato aplikace používá následující open-source software a data; uvádíme je zde, abychom dostáli jejich licenčním podmínkám (zachování autorství / atribuce).', + coordsH: 'Souřadnice a čas', + coords: 'Stopa meteoru je zaznamenána jako dva směry (výška/azimut) v okamžiku měření. Rovníkové souřadnice (RA/Dek) pro vykreslení na obloze počítá server uzavřeným převodem. Čas události je absolutní UTC; lokální čas v místě pozorování se odvozuje z GPS polohy a časového pásma.', + close: 'Zavřít', + liStars: 'Katalog hvězd — Hipparcos (ESA); názvy a čáry souhvězdí dle IAU; obrys Mléčné dráhy.', + liSegno: 'segno — generování QR kódů (server). Licence BSD.', + liTz: 'timezonefinder — určení časového pásma místa (server). Licence MIT; hranice pásem © přispěvatelé OpenStreetMap, licence ODbL.', + liDjango: 'Django (BSD) & django-ninja (MIT) — serverový framework API.', + }, + }, + en: { + about: 'About', logout: 'Sign out', + login: { + heading: 'Sign in with the mobile app', + howto: 'In the app tap Authorize web login, then Scan QR and aim at the code below — or type the code in manually:', + waiting: 'Waiting for approval in the app…', + }, + grid: { + intro: 'Signed in as device {device} — {n} measurement(s). Click a row to show the trail on the sky.', + received: 'Received', status: 'Status', startAltAz: 'Start ALT/AZ', endAltAz: 'End ALT/AZ', + quality: 'Quality', gps: 'GPS', acc: '±m', + }, + sky: { + head: 'Sky at the time & place of the measurement', + start: 'trail start', end: 'trail end', + pick: 'Select a measurement on the left to show the meteor trail.', + loading: 'Loading…', + loadFail: 'Could not load the measurement detail.', + noCoords: 'This measurement has no GPS location or time — the trail cannot be drawn.', + startLabel: 'Start', endLabel: 'End', + }, + dir: { N: 'N', NE: 'NE', E: 'E', SE: 'SE', S: 'S', SW: 'SW', W: 'W', NW: 'NW' }, + about_box: { + tagline: 'The Bolidozor meteor-observation network. Web for non-commercial and research use. Measurement data is released under CC0 1.0 (public domain).', + compH: 'Components and licenses', + compIntro: 'This application uses the following open-source software and data; they are listed here so we meet their license terms (attribution / authorship notices).', + coordsH: 'Coordinates and time', + coords: 'A meteor trail is recorded as two directions (altitude/azimuth) at the moment of measurement. The equatorial coordinates (RA/Dec) for plotting are computed on the server by a closed-form conversion. The event time is absolute UTC; the local civil time at the observing site is derived from the GPS location and time zone.', + close: 'Close', + liStars: 'Star catalogue — Hipparcos (ESA); constellation names and lines per IAU; Milky Way outline.', + liSegno: 'segno — QR code generation (server). BSD license.', + liTz: 'timezonefinder — site time-zone lookup (server). MIT license; zone boundaries © OpenStreetMap contributors, ODbL.', + liDjango: 'Django (BSD) & django-ninja (MIT) — server API framework.', + }, + }, + }; + + var LANG = 'cs'; + + function lookup(lang, key) { + var node = DICT[lang] || DICT.cs; + var parts = key.split('.'); + for (var i = 0; i < parts.length; i++) { + if (node == null) return undefined; + node = node[parts[i]]; + } + return node; + } + + function t(key, vars) { + var s = lookup(LANG, key); + if (s == null) s = lookup('cs', key); + if (s == null) return key; + if (vars) s = s.replace(/\{(\w+)\}/g, function (m, k) { return vars[k] != null ? vars[k] : m; }); + return s; + } + + function apply() { + document.documentElement.lang = LANG; + document.querySelectorAll('[data-i18n]').forEach(function (el) { + el.textContent = t(el.getAttribute('data-i18n')); + }); + document.querySelectorAll('[data-i18n-html]').forEach(function (el) { + el.innerHTML = t(el.getAttribute('data-i18n-html')); + }); + document.querySelectorAll('[data-lang]').forEach(function (el) { + el.classList.toggle('active', el.getAttribute('data-lang') === LANG); + }); + if (typeof global.onI18nApplied === 'function') global.onI18nApplied(); + } + + function setLang(lang) { + LANG = (lang === 'en') ? 'en' : 'cs'; + apply(); + } + + global.MPI18n = { + t: t, apply: apply, setLang: setLang, + get lang() { return LANG; }, + supported: function (l) { return l === 'cs' || l === 'en'; }, + }; +})(window); diff --git a/frontend/index.html b/frontend/index.html index bb28a93..405b628 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -4,128 +4,134 @@ MeteorPointer -

METEORPOINTER

- - +
+ + +
+ +
+
- -
@@ -133,38 +139,25 @@

Přihlášení přes mobilní aplikaci

- - - + diff --git a/frontend/sky.js b/frontend/sky.js index 1f33823..9eab2b1 100644 --- a/frontend/sky.js +++ b/frontend/sky.js @@ -1,103 +1,193 @@ -// MeteorSky — a self-contained local-sky map that plots a meteor trail. +// MeteorSky — a self-contained "horizon dome" view of a single meteor. // -// Uses d3-celestial (BSD-3-Clause), served entirely from our own host: no -// external service, no API calls, no tracking. The star catalogue + Milky Way -// data are static JSON under vendor/celestial/data/. The whole projection and -// drawing happens in the browser. +// No external service or API: bright stars come from a static catalogue we +// host (vendor/celestial/data/stars.6.json, Hipparcos), everything is computed +// and drawn (SVG) in the browser. // -// Given a parsed measurement (start/end RA/Dec + the observing site + the UTC -// event time) it renders the sky as seen from that site at that instant — with -// the horizon — and overlays the meteor's trail (green = start, red = end). +// The sky is shown the way it looked from the observing site at the event time, +// as a half-dome: the flat bottom edge is the HORIZON (with cardinal-direction +// marks), altitude grows upward to the zenith at the top, and only what was +// ABOVE the horizon is drawn. The view faces the meteor, and the trail is drawn +// green (start) -> red (end). Below-horizon sky is never shown. (function (global) { 'use strict'; + var SVGNS = 'http://www.w3.org/2000/svg'; + var D2R = Math.PI / 180, R2D = 180 / Math.PI; - var DATAPATH = 'vendor/celestial/data/'; - var inited = false; - var trail = null; // transformed endpoint coords: [[ra,dec],[ra,dec]] - - function config(width) { - return { - container: 'skymap', - width: width || 440, - projection: 'stereographic', // hemispheric: shows a horizon circle - transform: 'equatorial', - follow: 'zenith', - location: true, // enables the date/location (skyview) machinery - controls: false, - interactive: true, - disableAnimations: true, - datapath: DATAPATH, - stars: { show: true, limit: 6, colors: true, size: 6, designation: false, - propername: false, names: false }, - dsos: { show: false }, - planets: { show: false }, - constellations: { - show: true, names: true, namesType: 'iau', - nameStyle: { fill: '#c9cbe0', font: '11px Helvetica, Arial, sans-serif', - align: 'center', baseline: 'middle' }, - lines: true, lineStyle: { stroke: '#6f7290', width: 1, opacity: 0.7 }, - bounds: false - }, - mw: { show: true, style: { fill: '#ffffff', opacity: 0.12 } }, - lines: { - graticule: { show: true, stroke: '#3a3a4a', width: 0.5, opacity: 0.5 }, - equatorial: { show: false }, ecliptic: { show: false }, - galactic: { show: false }, supergalactic: { show: false } - }, - horizon: { show: true, stroke: '#ff5a5a', width: 1.6, fill: '#0a0010', opacity: 0.45 }, - background: { fill: '#0a0a14', opacity: 1, stroke: '#0a0a14', width: 1 }, - daylight: { show: false } - }; + var starsPromise = null; + var lastDetail = null; + + function loadStars() { + if (!starsPromise) { + starsPromise = fetch('vendor/celestial/data/stars.6.json') + .then(function (r) { return r.json(); }) + .then(function (j) { + return j.features.map(function (f) { + return { ra: f.geometry.coordinates[0], dec: f.geometry.coordinates[1], mag: f.properties.mag }; + }).filter(function (s) { return s.mag <= 5.2; }); + }) + .catch(function () { return []; }); + } + return starsPromise; + } + + // Greenwich -> local apparent sidereal time (degrees), mean (arc-minute fine). + function lstDeg(date, lon) { + var d = (date.getTime() / 86400000 + 2440587.5) - 2451545.0; + var gmst = (280.46061837 + 360.98564736629 * d) % 360; + return ((gmst + lon) % 360 + 360) % 360; + } + + function radecToAltaz(ra, dec, lat, lst) { + var H = (lst - ra) * D2R, dr = dec * D2R, lr = lat * D2R; + var sinAlt = Math.sin(dr) * Math.sin(lr) + Math.cos(dr) * Math.cos(lr) * Math.cos(H); + var alt = Math.asin(Math.max(-1, Math.min(1, sinAlt))); + var az = Math.atan2(-Math.cos(dr) * Math.sin(H), + Math.sin(dr) * Math.cos(lr) - Math.cos(dr) * Math.sin(lr) * Math.cos(H)); + return { alt: alt * R2D, az: ((az * R2D) % 360 + 360) % 360 }; + } + + function meanAz(a, b) { + var x = Math.cos(a * D2R) + Math.cos(b * D2R); + var y = Math.sin(a * D2R) + Math.sin(b * D2R); + return ((Math.atan2(y, x) * R2D) % 360 + 360) % 360; + } + + // Project (alt,az) onto the half-dome facing azimuth A0. + // Returns unit coords {x:-1..1, y:0..1} (zenith at (0,1)), or null if the + // point is below the horizon or behind the viewer (front hemisphere only). + function project(alt, az, A0) { + if (alt < 0) return null; + var a = alt * D2R, z = az * D2R, A = A0 * D2R; + var e = Math.sin(z) * Math.cos(a), n = Math.cos(z) * Math.cos(a), u = Math.sin(a); + var xc = e * Math.cos(A) - n * Math.sin(A); // right = (cosA, -sinA) + var zc = e * Math.sin(A) + n * Math.cos(A); // forward = (sinA, cosA) + if (zc < 0) return null; + var k = 1 / (1 + zc); + return { x: xc * k, y: u * k }; + } + + function el(name, attrs) { + var node = document.createElementNS(SVGNS, name); + for (var k in attrs) if (attrs[k] != null) node.setAttribute(k, attrs[k]); + return node; } - // Register a custom canvas layer that draws the current trail on every redraw - // (so it follows pan/zoom and date changes). Added once, before display. - function addTrailLayer() { - Celestial.add({ - type: 'line', - callback: function () {}, - redraw: function () { - if (!trail) return; - var ctx = Celestial.context; - var a = Celestial.clip(trail[0]) ? Celestial.mapProjection(trail[0]) : null; - var b = Celestial.clip(trail[1]) ? Celestial.mapProjection(trail[1]) : null; - if (a && b) { - ctx.beginPath(); - ctx.moveTo(a[0], a[1]); ctx.lineTo(b[0], b[1]); - ctx.lineWidth = 2.5; ctx.strokeStyle = '#ff3b3b'; ctx.globalAlpha = 1; - ctx.stroke(); - } - if (a) { ctx.beginPath(); ctx.arc(a[0], a[1], 5, 0, 2 * Math.PI); ctx.fillStyle = '#5dff5d'; ctx.fill(); } - if (b) { ctx.beginPath(); ctx.arc(b[0], b[1], 5, 0, 2 * Math.PI); ctx.fillStyle = '#ff3b3b'; ctx.fill(); } + var CARDINALS = [ + { key: 'N', az: 0 }, { key: 'NE', az: 45 }, { key: 'E', az: 90 }, { key: 'SE', az: 135 }, + { key: 'S', az: 180 }, { key: 'SW', az: 225 }, { key: 'W', az: 270 }, { key: 'NW', az: 315 }, + ]; + + function dirLabel(key) { + return (global.MPI18n ? global.MPI18n.t('dir.' + key) : key); + } + + function draw(detail, stars) { + var host = document.getElementById('skymap'); + if (!host) return; + var W = host.clientWidth || 600, H = host.clientHeight || 400; + + // Half-dome geometry: width 2R, height R, centred in the panel. + var R = Math.min((W * 0.96) / 2, H * 0.94); + var cx = W / 2; + var baseY = (H + R) / 2; // horizon line y + var P = function (p) { return [cx + p.x * R, baseY - p.y * R]; }; + + var A0 = meanAz(detail.start.az, detail.end.az); + var lst = lstDeg(new Date(detail.event_utc), detail.lon); + + var svg = el('svg', { width: W, height: H, viewBox: '0 0 ' + W + ' ' + H, style: 'display:block' }); + + // Sky fill: clip to the upper half-disk. + var clip = el('clipPath', { id: 'domeClip' }); + var arc = 'M ' + (cx - R) + ' ' + baseY + ' A ' + R + ' ' + R + ' 0 0 1 ' + (cx + R) + ' ' + baseY + ' Z'; + clip.appendChild(el('path', { d: arc })); + var defs = el('defs', {}); defs.appendChild(clip); svg.appendChild(defs); + svg.appendChild(el('path', { d: arc, fill: '#070710', stroke: 'none' })); + + var g = el('g', { 'clip-path': 'url(#domeClip)' }); + + // Altitude grid arcs (30 deg, 60 deg) sampled across the facing hemisphere. + [30, 60].forEach(function (altLine) { + var pts = []; + for (var d = -90; d <= 90; d += 3) { + var p = project(altLine, (A0 + d + 360) % 360, A0); + if (p) pts.push(P(p).join(',')); } + if (pts.length > 1) g.appendChild(el('polyline', { points: pts.join(' '), fill: 'none', stroke: '#2a2a3a', 'stroke-width': 1, opacity: 0.7 })); + }); + // Vertical guides toward each visible cardinal direction. + CARDINALS.forEach(function (c) { + var pts = []; + for (var alt = 0; alt <= 80; alt += 4) { + var p = project(alt, c.az, A0); + if (p) pts.push(P(p).join(',')); + } + if (pts.length > 1) g.appendChild(el('polyline', { points: pts.join(' '), fill: 'none', stroke: '#20202c', 'stroke-width': 1, opacity: 0.6 })); + }); + + // Stars. + stars.forEach(function (s) { + var aa = radecToAltaz(s.ra, s.dec, detail.lat, lst); + var p = project(aa.alt, aa.az, A0); + if (!p) return; + var xy = P(p); + var r = Math.max(0.5, (6.2 - s.mag) * 0.42); + g.appendChild(el('circle', { cx: xy[0], cy: xy[1], r: r, fill: '#eef0ff', opacity: Math.min(1, 0.35 + (6 - s.mag) * 0.13) })); }); - } - function setTrail(start, end) { - var geo = { type: 'FeatureCollection', features: [ - { type: 'Feature', properties: {}, geometry: { type: 'LineString', coordinates: [start, end] } } - ] }; - trail = Celestial.getData(geo, 'equatorial').features[0].geometry.coordinates; + // Meteor trail (use the measured alt/az directly — exact, no inverse). + var ps = project(detail.start.alt, detail.start.az, A0); + var pe = project(detail.end.alt, detail.end.az, A0); + if (ps && pe) { + var a = P(ps), b = P(pe); + g.appendChild(el('line', { x1: a[0], y1: a[1], x2: b[0], y2: b[1], stroke: '#ff3b3b', 'stroke-width': 2.5, 'stroke-linecap': 'round' })); + g.appendChild(el('circle', { cx: a[0], cy: a[1], r: 5, fill: '#5dff5d' })); + g.appendChild(el('circle', { cx: b[0], cy: b[1], r: 5, fill: '#ff3b3b' })); + } + svg.appendChild(g); + + // Dome outline + horizon line. + svg.appendChild(el('path', { d: arc, fill: 'none', stroke: '#ff5a5a', 'stroke-width': 1.4, opacity: 0.55 })); + svg.appendChild(el('line', { x1: cx - R, y1: baseY, x2: cx + R, y2: baseY, stroke: '#ff5a5a', 'stroke-width': 1.8 })); + + // Cardinal-direction ticks + labels along the horizon. + CARDINALS.forEach(function (c) { + var p = project(0, c.az, A0); + if (!p) return; + var x = cx + p.x * R; + svg.appendChild(el('line', { x1: x, y1: baseY - 6, x2: x, y2: baseY + 6, stroke: '#ff7a7a', 'stroke-width': 1.5 })); + var label = el('text', { x: x, y: baseY + 22, fill: '#ffb0b0', 'font-size': 13, 'font-weight': 700, 'text-anchor': 'middle', 'font-family': 'system-ui, sans-serif' }); + label.textContent = dirLabel(c.key); + svg.appendChild(label); + }); + + host.innerHTML = ''; + host.appendChild(svg); } - // detail = { start:{ra,dec}, end:{ra,dec}, lat, lon, event_utc } - // Returns true if it could render (needs both RA/Dec, a site and a UTC time). + // detail = { start:{alt,az}, end:{alt,az}, lat, lon, event_utc } function render(detail) { - if (!detail || !detail.start || detail.start.ra == null || - !detail.end || detail.end.ra == null || + if (!detail || !detail.start || detail.start.alt == null || + !detail.end || detail.end.alt == null || detail.lat == null || detail.lon == null || !detail.event_utc) { return false; } - if (!inited) { - var el = document.getElementById('skymap'); - addTrailLayer(); - Celestial.display(config(el ? el.clientWidth : 440)); - inited = true; - } - setTrail([detail.start.ra, detail.start.dec], [detail.end.ra, detail.end.dec]); - Celestial.skyview({ date: new Date(detail.event_utc), location: [detail.lat, detail.lon] }); + lastDetail = detail; + loadStars().then(function (stars) { if (lastDetail === detail) draw(detail, stars); }); return true; } - global.MeteorSky = { render: render }; + function redraw() { + if (!lastDetail) return; + loadStars().then(function (stars) { draw(lastDetail, stars); }); + } + + var resizeTimer = null; + global.addEventListener('resize', function () { + clearTimeout(resizeTimer); + resizeTimer = setTimeout(redraw, 150); + }); + + global.MeteorSky = { render: render, redraw: redraw }; })(window); diff --git a/frontend/skytest.html b/frontend/skytest.html index 925c897..2a1ebae 100644 --- a/frontend/skytest.html +++ b/frontend/skytest.html @@ -4,26 +4,22 @@ MeteorPointer — sky render test - -

Standalone render test (real parsed RA/Dec, no login).

+

Standalone half-dome render test (real measured alt/az, no login).

- - - +